diff --git a/cw4zad2.py b/cw4zad2.py new file mode 100644 index 0000000..b636dd4 --- /dev/null +++ b/cw4zad2.py @@ -0,0 +1,101 @@ +import lzma +import pickle +from collections import Counter + + +def words(filename): + with lzma.open(filename, mode='rt', encoding='utf-8') as fid: + for line in fid: + separated = line.split('\t') + prefix = separated[6].replace(r'\n', ' ') + suffix = separated[7].replace(r'\n', ' ') + text = prefix + ' ' + suffix + for word in text.split(): + yield word + + +def bigrams(filename, V): + V = [word for word, count in V] + with lzma.open(filename, mode='rt', encoding='utf-8') as fid: + for line in fid: + separated = line.split('\t') + prefix = separated[6].replace(r'\n', ' ') + suffix = separated[7].replace(r'\n', ' ') + text = prefix + ' ' + suffix + previous = '' + for word in text.split(): + if word in V and previous in V: + yield previous, word + previous = word + + +def P(previous_word, word): + if word not in V: + return 0 + if (previous_word, word) not in V2: + return 0 + return V2[(previous_word, word)] / V[word] + + +def candidates(w1, w3): + cand = {} + for w2 in V: + cand[w2] = P(w1, w2) * P(w2, w3) + cand = sorted(list(cand.items()), key=lambda x: x[1], reverse=True)[:5] + try: + norm = [(x[0], float(x[1]) / sum([y[1] for y in cand])) for x in cand] + except ZeroDivisionError: + norm = [(x[0], 0.2) for x in cand] + norm[-1] = ('', norm[-1][1]) + return ' '.join([f'{x[0]}:{x[1]}' for x in norm]) + +# WORD_LIMIT = 5000 +# +# V = Counter(words('train/in.tsv.xz')) +# V = V.most_common(WORD_LIMIT) +# with open('V.pickle', 'wb') as handle: +# pickle.dump(V, handle, protocol=pickle.HIGHEST_PROTOCOL) +# V2 = Counter(bigrams('train/in.tsv.xz', V)) +# print(V2.most_common(100)) +# with open('V2.pickle', 'wb') as handle: +# pickle.dump(V2, handle, protocol=pickle.HIGHEST_PROTOCOL) + + +with open('V.pickle', 'rb') as handle: + V_tuple = pickle.load(handle) + V = {} + for key, value in V_tuple: + V[key] = value + +with open('V2.pickle', 'rb') as handle: + V2 = pickle.load(handle) + + + +with lzma.open('dev-0/in.tsv.xz', mode='rt', encoding='utf-8') as fid: + with open('dev-0/out.tsv', 'w', encoding='utf-8') as f: + for line in fid: + separated = line.split('\t') + prefix = separated[6].replace(r'\n', ' ') + suffix = separated[7].replace(r'\n', ' ') + w1 = prefix.split()[-1] + w3 = suffix.split()[0] + w2 = candidates(w1, w3) + print(w1) + print(w2) + print(w3) + f.write(w2 + '\n') + +with lzma.open('test-A/in.tsv.xz', mode='rt', encoding='utf-8') as fid: + with open('test-A/out.tsv', 'w', encoding='utf-8') as f: + for line in fid: + separated = line.split('\t') + prefix = separated[6].replace(r'\n', ' ') + suffix = separated[7].replace(r'\n', ' ') + w1 = prefix.split()[-1] + w3 = suffix.split()[0] + w2 = candidates(w1, w3) + print(w1) + print(w2) + print(w3) + f.write(w2 + '\n') diff --git a/dev-0/out.tsv b/dev-0/out.tsv index 767c25c..70d91d1 100644 --- a/dev-0/out.tsv +++ b/dev-0/out.tsv @@ -1,10519 +1,10519 @@ -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +own:0.24600201352236187 use,:0.215455332045114 way:0.19346508712731056 head:0.17254055947027774 :0.1725370078349358 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +pany:0.4260634680222688 mittee:0.30167302932655926 mission:0.2034810805330977 mon:0.04907527091194301 :0.01970715120613118 +a:0.949619835546043 no:0.017827095359930104 him:0.015066621252235731 in-:0.0088536825828598 :0.008632765258931257 +trees:0.3798394917847145 and:0.28861839943395046 is:0.20078075475461876 was:0.06850595578664016 :0.06225539824007622 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.6448618145158277 as:0.2474503624498555 that,:0.04909321783161723 even:0.030136819601496917 :0.0284577856012026 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4934701869864286 show:0.24120697567320648 be:0.14447869982742223 be-:0.0893263737503899 :0.03151776376255278 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.23768346797960274 country.:0.21189045855555677 world.:0.20868222926294183 place:0.1764674516351094 :0.16527639256678928 +to:0.8703739626651745 a:0.03980367012260023 and:0.03629262112765753 I:0.03365418098921676 :0.019875565095351082 +The:0.41258510409528587 No:0.1871248344659923 It:0.17316855571675868 I:0.12088650204059294 :0.10623500368137014 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +posted:0.2660689327136443 known:0.2587796174549372 founded:0.20849126216109506 as:0.18430325451598542 :0.08235693315433791 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.39490408714116115 to:0.34541130191917413 can:0.1229129754472219 should:0.07320819327575634 :0.06356344221668654 +went:0.28922704423966783 carried:0.2184088425888961 carry:0.1798410865231085 sent:0.16011476599744415 :0.15240826065088328 +and:0.36340252133697554 city:0.2026227354451952 avenue:0.169725381890133 is:0.1544326206115337 :0.10981674071616244 +ma:0.49794369336015093 a:0.16655257998759615 to:0.12953270391836058 unable:0.11408992834378684 :0.0918810943901057 +in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 +a:0.5621971396076333 the:0.25881496278882776 and:0.0868589906738228 your:0.054899889533548504 :0.03722901739616777 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.569723662033542 his:0.17571880171874568 her:0.09783596182565325 my:0.08413283929858621 :0.07258873512347279 +rest:0.5980181605782765 range:0.18402842915124998 row:0.08526535052376225 dent:0.0689967496079184 :0.06369131013879284 +at:0.9082491374823662 was:0.03135155048033782 who:0.025233547533375724 had:0.02018458743431152 :0.01498117706960857 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +think:0.2862033024477591 yet:0.20917107377509456 known.:0.2041327938691424 make:0.15581931625678977 :0.14467351365121417 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2835220886016776 about:0.2472786533722869 for:0.17892875331799857 to:0.1469248568119564 :0.14334564789608056 +had:0.4368423516496384 do:0.17846264558993008 am:0.13769353683079488 felt:0.12657145912614115 :0.12043000680349551 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Township:0.34329208438080827 block:0.2670922565662159 range:0.19426577775066733 township:0.10716670115331828 :0.08818318014899028 +by:0.7315415611303044 in:0.10383235375166504 for:0.0753649083349489 without:0.05125110729825265 :0.03801006948482894 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4361667124334472 this:0.4047086639982368 said:0.10436385814059397 our:0.03293389962372132 :0.021826865804000766 +of:0.46139357537502107 capital:0.38602187724891285 the:0.0724969204288579 in:0.05141288667731449 :0.028674740269893577 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +said:0.5788144992845426 was:0.1786055308799538 an:0.08720452369645934 primary:0.08327943097464668 :0.0720960151643974 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4543853759797768 to:0.18744632853873358 of:0.17416584393883036 on:0.09784772653614553 :0.08615472500651379 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +difficulty:0.3065793508411808 trouble:0.2769286132971931 body:0.144923558853432 success:0.13800378234710453 :0.13356469466108958 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9125245734558857 tho:0.028835224047652548 a:0.028175175314098737 one:0.01594284164895181 :0.014522185533411143 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.43004295176737534 of:0.18660474313108774 the:0.15920859189851702 a:0.12775480148900006 :0.09638891171401992 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +is:0.4444749587756546 seems:0.21137095243808565 was:0.13941926833021356 seemed:0.12798029257969082 :0.07675452787635521 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8432888902129119 a:0.05426770543163569 his:0.04469518784879191 tho:0.032129897298680175 :0.025618319207980324 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +his:0.4847111465802023 her:0.21159048800932412 per-:0.13847940181329407 a:0.09744553818983351 :0.06777342540734603 +And:0.44167427119246977 and:0.31430149447881817 But:0.11246864016669698 That:0.06878609103978846 :0.06276950312222666 +and:0.4051949455556613 out-:0.3788308389970136 matters:0.10404492279859748 world:0.057880963819174396 :0.05404832882955333 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +way:0.2912281259206911 right:0.22110020146674944 wife:0.1854758735001724 return:0.15819311668545358 :0.1440026824269334 +husband:0.43657264012962865 husband,:0.1772045847668641 father:0.15297333672375465 home:0.12070531727165422 :0.11254412110809825 +amount:0.299864503817939 country:0.18732705574621494 person:0.18392956246067046 people:0.17840187147175235 :0.15047700650342322 +terest:0.5449502969399911 crease:0.3612798182748024 formed:0.03958267591786972 stead:0.03490178396847522 :0.01928542489886155 +while:0.3412667158380007 as:0.18248559567555775 girl,:0.17771372442708294 ones:0.1661548332946367 :0.132379130764722 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.23267481581277422 that:0.22847719863912913 and:0.20816936963099777 it:0.1654583726216997 :0.16522024329539925 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.5161983310983306 our:0.25355860087095855 its:0.08577544683986499 of:0.0732936942284325 :0.07117392696241326 +two:0.2672355438288352 law:0.21730257568369798 city:0.182407130093737 person:0.18157610707596214 :0.15147864331776772 +good:0.34325934097809657 high:0.20973091133350139 reasonable:0.16172614956197226 little:0.15178708812637187 :0.133496510000058 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.9381609123977712 tho:0.024657671673000037 this:0.019406289532033546 tbe:0.014045084059503587 :0.0037300423376915416 +laying:0.4328828038219466 lay:0.3204557038848614 the:0.10358039278449506 grade:0.07787723125316608 :0.06520386825553079 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.3312557801767928 this.:0.2849345494033658 manner.:0.14324767132284086 that.:0.1327478441637276 :0.10781415493327307 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +husband:0.43657264012962865 husband,:0.1772045847668641 father:0.15297333672375465 home:0.12070531727165422 :0.11254412110809825 +been:0.38777215483374855 made:0.19389168978602642 since:0.15567541373379362 lost:0.1429746170010904 :0.11968612464534108 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.4880824586728134 almost:0.16382107719562244 now:0.13386854521932443 made:0.1141673471374148 :0.10006057177482489 +there:0.6150848025394537 sold:0.12093073923935985 here:0.10593594348059578 made:0.08840691558579014 :0.06964159915480037 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6044087499223803 a:0.3087508252290729 its:0.043212564228516076 tho:0.024571619154742697 :0.019056241465288018 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5986958384628001 a:0.16051413657722693 our:0.11003946546566296 for:0.08898156704326694 :0.04176899245104311 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.25249902776203453 one:0.2520420963055112 for:0.25111074057779453 person:0.13167625249472367 :0.11267188285993597 +knows:0.3052753016612514 that:0.2829226012282115 else:0.15162399431578166 but:0.13490347033618505 :0.1252746324585704 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.37963752471083995 which:0.277996593669485 that:0.19837650456215203 said:0.07692210289720748 :0.06706727416031558 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.911955419231492 tho:0.04581228602582826 tbe:0.015742811380651506 a:0.015563524865122979 :0.010925958496905289 +so.:0.39882236428440876 on.:0.26659352705683287 alone.:0.16399749898265756 to:0.10500942102382911 :0.06557718865227168 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +up:0.2823092149688504 together:0.25230653794792557 them:0.16896787327954418 him:0.14945412024604432 :0.14696225355763554 +it:0.3060325733268504 as:0.2117445357599935 owing:0.18232142498893752 not:0.15224176984016674 :0.1476596960840518 +ties:0.5156822661931676 ty:0.38157620395574743 amount:0.044077046343970576 son:0.030149603686366506 :0.02851487982074791 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.6505737311578887 be:0.1619157621337637 be-:0.11251710400443458 over-:0.03869209084900787 :0.036301311854904886 +chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 +j:0.30352479019510104 |:0.2215282954679594 !:0.17814366206175833 the:0.17714359348137834 :0.11965965879380296 +parts:0.477856820340464 kinds:0.24264877681462593 forms:0.13275731694103912 departments:0.07425754036480217 :0.07247954553906881 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +home:0.26286055368536093 friends:0.2322107141819424 life:0.20389665008456553 hand:0.15553758543332877 :0.14549449661480246 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.2779417613393955 with:0.24894694533538586 and:0.20836040554222396 of:0.1473234679996105 :0.11742741978338404 +of:0.40159582631529084 in:0.3229567734300948 that:0.12387586479109555 which:0.07980667784196228 :0.07176485762155649 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.47626531590090276 make:0.19047637937345788 his:0.1577421253268924 a:0.0944519717334408 :0.08106420766530602 +who:0.25771724624198394 said,:0.2307226704668646 says,:0.2035718790617865 said.:0.19159368740952165 :0.11639451681984336 +hundred:0.8146913538746463 thousand:0.14084697536519025 square:0.03494491303257053 million:0.005028602904955783 :0.0044881548226370725 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7068201388797339 his:0.10473643186845953 my:0.07505973318514902 their:0.07110306975471446 :0.042280626311943036 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 +they:0.31941768038025886 you:0.28661129449296796 there:0.19409030378002937 we:0.18786630776857688 :0.012014413578166891 +the:0.668418584349697 a:0.1319203311129627 this:0.068322336482838 their:0.06743868177617912 :0.06390006627832327 +the:0.5284939290033316 will:0.23351528046931364 would:0.12254088021708973 to:0.06404994549360286 :0.051399964816662196 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3392148090936964 and:0.18882397952847826 from:0.17424583815699093 in:0.15767536571122048 :0.14004000750961404 +is:0.5879703509684495 was:0.2147260076952549 soon:0.06674228423876495 seemed:0.0653502256052731 :0.06521113149225757 +and:0.40850568175649865 age:0.16297857678242395 as:0.1573378830119462 Point:0.15193989605048364 :0.11923796239864767 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8406861882805621 a:0.08089783281298217 tho:0.03549910004934155 10:0.026304660633102498 :0.016612218224011734 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8695826777572843 tho:0.04860791003102441 a:0.04689677176760675 he:0.019624738672132314 :0.01528790177195241 +that:0.28842543043994334 in:0.27062201404251374 with:0.16350461918424508 at:0.14039636874891917 :0.13705156758437867 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +Any:0.44860932105495205 The:0.15884486095510456 No:0.15547272398180292 A:0.13504085569130944 :0.1020322383168311 +is:0.5990030301559554 was:0.2178764183774884 Is:0.06417375623222307 time:0.06138562354639804 :0.057561171687935266 +life.:0.3230045691386579 head.:0.2107649026010411 hands.:0.15983470833983168 own.:0.15476656843882738 :0.15162925148164194 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +of:0.4844677110625118 to:0.1385376950951635 for:0.1326224869385305 with:0.1246608789060206 :0.11971122799777346 +as:0.24149524143603232 impossible:0.23283157014182104 likely:0.2096127732825958 unable:0.17582583595037443 :0.14023457918917648 +old:0.3212314490725795 little:0.2894170019375512 own:0.15015777138464095 young:0.14474849132093792 :0.09444528628429046 +favor:0.4286606174776465 front:0.16663700046522184 spite:0.14436924942848997 one:0.14085741126542772 :0.11947572136321394 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +A.:0.9880406468428994 A:0.004739503060352778 J:0.0032599217242416496 A,:0.0024665907940643592 :0.0014933375784418497 +that:0.41472264569967354 it:0.2707083834339371 they:0.1348136468159461 there:0.10946493435553202 :0.07029038969491139 +will:0.29590348650876386 shall:0.23666103008443473 to:0.18383644506491115 may:0.14335207788176077 :0.14024696046012944 +north:0.45320643239488706 west:0.16621084589786242 east:0.1625096907998096 other:0.11633510236494794 :0.10173792854249307 +side:0.36512043952883544 day:0.31394079956770965 end:0.13581817229506907 part:0.10001497355056445 :0.08510561505782134 +public:0.3898100853689532 high:0.3612506435782259 Sunday:0.09982307054454652 common:0.07537662931033404 :0.0737395711979403 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +view:0.22942680055693515 favor:0.2084749829296014 one:0.20675992105939456 spite:0.18970126498115217 :0.16563703047291678 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +no:0.4458300651821836 the:0.20197417185907363 much:0.137999786972573 all:0.1351167612630294 :0.07907921472314028 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.8277477740840845 a:0.06793921773452043 those:0.036660105957607936 then:0.035804913345518795 :0.03184798887826837 +of:0.8940385466223364 in:0.04041786827661279 by:0.03175494166841652 ot:0.01842138155360281 :0.015367261879031396 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.48277880957222274 in:0.30554554029573033 and:0.1277514459661744 that:0.0452556045023297 :0.03866859966354295 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +western:0.28434167591423914 field:0.21729793258185648 bread:0.18413772699780104 man:0.17773306215321732 :0.13648960235288599 +favor:0.4286606174776465 front:0.16663700046522184 spite:0.14436924942848997 one:0.14085741126542772 :0.11947572136321394 +the:0.7318311379282902 this:0.12058472663718613 a:0.061215135129431275 State:0.04619673538864036 :0.04017226491645197 +the:0.7169504632249578 a:0.1578156750289905 one:0.05585518237525677 southwest:0.03474540105848574 :0.034633278312309335 +many:0.3284054587036723 two:0.23018835285399875 the:0.18565850431830078 three:0.12802762557941008 :0.1277200585446181 +Spanish:0.4166352649805643 British:0.20291179228297293 American:0.1431771494052699 Atlantic:0.13269972937585603 :0.10457606395533682 +States:0.23021126364359648 up:0.21757380617631814 in:0.2082353960155363 States,:0.18655142532309787 :0.15742810884145117 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +several:0.3361166855296873 two:0.22815644441172625 three:0.22627290907361394 four:0.149632285554778 :0.05982167543019455 +who:0.9676045230329414 which:0.01397997212444324 he:0.009647401005735799 they:0.004723954335113971 :0.004044149501765648 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.26976805018750943 man:0.2212536601680126 world:0.1999252944402413 I:0.17191175539649353 :0.1371412398077432 +track:0.30167246448491014 play:0.2017807522319319 row:0.18821447249021903 up:0.1857541712106953 :0.12257813958224367 +and:0.2479753792580113 that:0.21167846049539688 .:0.20988061484726614 o'clock:0.20042799331769584 :0.13003755208162993 +of:0.30667113564731757 that:0.22895362087277243 by:0.2281292491417123 in:0.12092390411548254 :0.11532209022271513 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.3810615372766169 have:0.27087910569387424 not:0.13070947154475404 make:0.1145795671299865 :0.10277031835476828 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +others:0.2774060435131188 are:0.26013147582040863 those:0.17893012273454537 in:0.15794152149341611 :0.12559083643851107 +C:0.28474600709676084 E:0.18519546315133983 B:0.18332411609027244 W:0.17875587287094405 :0.16797854079068283 +the:0.5450072831451728 other:0.1779570189682393 district:0.11420743392033558 circuit:0.10113536308665688 :0.0616929008795953 +or:0.3773214332858835 and:0.2503058614105699 but:0.20094759212648877 for:0.12834580261290188 :0.04307931056415594 +Beginning:0.9898858582679748 beginning:0.004889043791376756 All:0.0027569771038324087 That:0.0013047375469877472 :0.0011633832898282335 +they:0.6382774966838255 we:0.19718405307235704 there:0.08386922131995972 you:0.07320676989162543 :0.0074624590322323 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.7746356403032499 have:0.13610359637453923 bo:0.05349370265484454 not:0.021444992604338246 :0.014322068063027943 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +It:0.34416207604055726 it:0.2063210238100373 he:0.1703514584752785 "It:0.1510008139452288 :0.12816462772889817 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +carry:0.34219199989907045 get:0.24758956182419325 go:0.20592285480345687 find:0.11220601581206473 :0.09208956766121472 +sum:0.21724853066521582 payment:0.212339397798406 city:0.19546532436856495 State:0.19158701478116472 :0.1833597323866486 +people:0.43671396033738324 men:0.22586492652706128 following:0.13303621497199694 latter:0.10411557441943095 :0.1002693237441277 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.24488514188455773 who:0.23725045443210685 were:0.20602302709375028 are:0.17416810095642513 :0.13767327563316006 +morning:0.3362331849729064 country:0.2153909295960501 afternoon:0.17409165191286985 city:0.15861053005288173 :0.1156737034652919 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +bearing:0.47460063243802153 with:0.20402686271827294 and:0.14724429165086572 of:0.11270020679910787 :0.06142800639373205 +in:0.3046538453248887 and:0.20450478240771922 on:0.19758809611828543 to:0.15746364712241007 :0.13578962902669667 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +above:0.2753984828752391 time:0.25208737667378567 of:0.200334354233471 following:0.1645277099062733 :0.1076520763112309 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8541307498935982 our:0.058369903078921336 tho:0.03455271743633561 its:0.030848665827762932 :0.022097963763382043 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4361922725082296 two:0.25517138870280015 three:0.12163139895875633 any:0.11091829762090913 :0.0760866422093048 +attention:0.39146636766964016 answer:0.2934049318039674 failure:0.1270982389131824 duty:0.10421139828764522 :0.08381906332556477 +trust:0.5181087342488289 them:0.1498772356682265 land:0.12921996744817074 war:0.11296495982784593 :0.08982910280692803 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +as:0.36472426753842896 with:0.20698610497760156 in:0.19084387375812237 after:0.12160154885217636 :0.11584420487367077 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.41760860650444204 and:0.3206035973009414 as:0.19179613057572464 in:0.037648797500096746 :0.03234286811879503 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.5226783063746663 had:0.2116696473809748 has:0.09940910562937041 is:0.09604968509030261 :0.07019325552468594 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +tion:0.31199560289155054 one:0.24404715705513305 day:0.16094070245339678 ment:0.14718338146130766 :0.13583315613861185 +people:0.289557714011365 world:0.23429470738372057 trustees:0.16459121796997547 country:0.16273552738585376 :0.1488208332490852 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +body:0.2600359286768659 life:0.2546438055725996 face:0.1981694803881542 name:0.16936589050619957 :0.11778489485618071 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +order:0.31226293762662755 which:0.28440127486187233 the:0.20570412102134844 any:0.11112693272756807 :0.08650473376258366 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +neces-:0.9994112450213696 it:0.00023649650247626803 i:0.00012988858542554958 u:0.00011379967208475853 :0.00010857021864387839 +side:0.48193886993806734 line:0.22847454497161682 quarter:0.15406192018187542 corner:0.07941577042754575 :0.05610889448089465 +that:0.8652448488291902 what:0.07048290385010691 anything:0.02344594783721889 when:0.0207272348411766 :0.02009906464230739 +the:0.8396214609731788 July:0.06178090377897737 tho:0.04065349007970962 January:0.03516237872916924 :0.022781766438964974 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7884598754287572 its:0.07543405227441864 their:0.05380013503281142 his:0.04626371042234843 :0.03604222684166438 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.8603091987288051 to:0.06444734487517745 not:0.04267922257644708 a:0.02138897518320265 :0.011175258636367768 +are:0.3613918211132997 and:0.2978138670043008 concerned:0.16280832129848402 that:0.10418506480376485 :0.07380092578015073 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.6908094736755075 so.:0.13046911611279685 it.:0.07527379312095259 what:0.06360155917232233 :0.03984605791842071 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7603644840884225 to:0.0689583597731256 from:0.06685123252051764 in:0.053081776798202085 :0.05074414681973213 +committee:0.28524841982471627 body:0.24432588242134334 department:0.18568743035735885 action:0.17343262803172774 :0.11130563936485378 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.30275950603015933 latter:0.2028345201386374 men:0.18294126911424535 doctor:0.16924051029329285 :0.14222419442366482 +of:0.4282052128909177 paid:0.22826216190178406 and:0.1889569142865572 for:0.10317565206470015 :0.051400058856041 +the:0.6534919704353981 our:0.19278455951326154 his:0.07577312413111183 American:0.04337971552319509 :0.03457063039703348 +in:0.5191816512098837 of:0.1482963163389704 to:0.1308611956374292 at:0.11326230816353498 :0.08839852865018169 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.45350174188603676 the:0.45231706234227564 this:0.03898670418783587 tbe:0.03675208635946899 :0.018442405224382733 +greatest:0.2717230706448164 great:0.23928076903491077 proper:0.2065569712557682 utmost:0.15629173853010953 :0.12614745053439508 +it:0.6240057802824778 came:0.12292787192303999 made:0.11252066817895595 brought:0.07042324642478624 :0.07012243319074021 +full:0.3028302081436251 great:0.2974221948614924 horse:0.19717455206581497 political:0.12519459143681475 :0.07737845349225272 +year:0.33723905569500773 day:0.2189139232920089 meeting:0.16029626472077635 session:0.15937987552629104 :0.12417088076591604 +to:0.9830997704296486 and:0.010382059931318835 lo:0.00449084837192817 te:0.0011144684687858402 :0.000912852798318691 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8876064065554378 tho:0.03733606247834862 his:0.03454858396270792 be:0.022786022428191274 :0.017722924575314457 +with:0.354352477185787 to:0.2758266329381632 upon:0.15214350693868978 that:0.12032195324300755 :0.09735542969435257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6192389239013268 that:0.15503559463531216 on:0.0927715324139974 from:0.07411950916052358 :0.058834439888840136 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +is:0.6433450063906189 court:0.14790110322026007 school:0.07215357319803252 committee:0.07073419384063472 :0.06586612335045369 +scribed:0.4357110631119298 voted:0.2355723591990026 mand:0.12100108518591376 lay:0.10839742696120874 :0.09931806554194508 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.5348013480067784 question:0.1541505854738633 medicine:0.13063480637624478 bad:0.090322082758781 :0.0900911773843325 +am:0.7293871920802105 have:0.11628448310922848 was:0.07191915984973368 can:0.05105543827701401 :0.03135372668381337 +at:0.5574250877389224 the:0.18790716292422194 are,:0.14610689909481553 therefore,:0.07801915429337476 :0.03054169594866524 +or:0.33662181361889576 either:0.261815778174826 trial:0.14380028102536127 Saturday:0.14304087523249198 :0.11472125194842508 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.4763418370333663 that:0.23819491576976637 which:0.1920576549385153 this:0.04850952499400939 :0.0448960672643427 +the:0.8356886755628292 its:0.0700396637098888 their:0.051490929343874274 tho:0.025062170655362013 :0.017718560728045736 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5055538249375892 that:0.2821970751434257 on:0.08892005734212322 in:0.08504007030084443 :0.03828897227601752 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.3017812137133732 he:0.234278683070456 then:0.1846502571791671 be:0.16229141645267928 :0.11699842958432441 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6650530373741228 their:0.13039833479281243 all:0.0907565500295485 equal:0.05914285762187543 :0.0546492201816409 +due:0.2735617049390783 now:0.22173185851909474 dull:0.18692645910430544 true,:0.1751971225975963 :0.14258285483992508 +body:0.3168904444989973 body,:0.24313948984340236 man,:0.15203343185916557 peace:0.14631106640606004 :0.1416255673923747 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8622911606562524 in:0.06764198311159628 for:0.02653152507750228 at:0.02376132433691662 :0.019774006817732538 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +filled:0.24244494535671712 covered:0.23589689849022813 connected:0.20001231129998537 familiar:0.18040280991221141 :0.14124303494085802 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.714515407623874 a:0.14075192426889754 this:0.06538010864835496 most:0.04110227619562418 :0.038250283263249384 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.8956504078563851 as:0.03571874061527998 when:0.02611810242431896 how:0.026073376886319163 :0.016439372217696768 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +much:0.4747377817002089 day:0.15884568732714907 best:0.14455649174629648 few:0.11286922476895608 :0.10899081445738946 +be:0.3810615372766169 have:0.27087910569387424 not:0.13070947154475404 make:0.1145795671299865 :0.10277031835476828 +to:0.41835912629288885 that:0.20089845110524668 in:0.17449237964188052 of:0.10807266691519664 :0.0981773760447873 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.4602790085731507 so:0.2788720865407558 not:0.1455157879450288 too:0.07228536057555476 :0.04304775636551001 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.9290650902927783 also:0.024120658815614912 already:0.01963885353151187 recently:0.014721569929642976 :0.012453827430451973 +estimated:0.31216009318061655 not:0.2793701898665078 now:0.17193194726558897 held:0.12964251283969072 :0.1068952568475959 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.5845347974092793 were:0.2071767900116028 have:0.13125164418821567 entirely:0.04400398402685147 :0.033032784364050924 +side,:0.35790926038112986 line:0.27268686301692396 cast:0.1405408973105514 of:0.13073746746363757 :0.09812551182775732 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.22369456742961225 amount:0.20773323631999405 day:0.2060255143945402 part:0.18175789781806492 :0.18078878403778864 +part:0.5201812084285321 portion:0.18058597911711066 end:0.17994158642236704 side:0.06294685849659533 :0.056344367535394894 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8294367652991074 said:0.05364461658883438 tho:0.041671064724442236 a:0.038807801956727464 :0.03643975143088851 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +much:0.4305291923359648 early:0.19497322456359684 rich:0.13965201237893596 best:0.12129346754385353 :0.11355210317764886 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +secured:0.4622510530411453 and:0.2913540665463123 acquired:0.08534774177137851 granted:0.0833551138153789 :0.07769202482578517 +to:0.2928806656865884 and:0.2669263168864714 will:0.21523476091866428 but:0.11877726794998626 :0.10618098855828978 +thrown:0.24198676832991245 put:0.2408925077509726 taken:0.2022982994034611 brought:0.16467747856048162 :0.1501449459551722 +ing:0.404964105120695 cause:0.23545844045814077 come:0.16516230040291272 fore:0.13319886339887294 :0.06121629061937863 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +fore:0.7306767087403003 cause:0.21022666512970725 ing:0.0308538084352726 came:0.017316504707628206 :0.010926312987091782 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +mind:0.2992418590095368 opinion:0.29045680855818284 belief:0.1962613694348331 way:0.1304606888103838 :0.0835792741870633 +.:0.870598701198796 Miller,:0.045189604536316444 Hall:0.031340463116685896 M:0.030320240412733217 :0.022550990735468332 +war:0.2978885064528891 same:0.24446637794937368 company:0.18423266211273176 country:0.13954157797736816 :0.13387087550763727 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Johnson:0.352859170354952 B:0.22622912531461647 An:0.18501396162842426 The:0.12385229578757645 :0.11204544691443082 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +failed:0.23285022364306351 come:0.22033299427397599 been:0.19791801323131356 gone:0.1950553578571899 :0.15384341099445706 +favor:0.4286606174776465 front:0.16663700046522184 spite:0.14436924942848997 one:0.14085741126542772 :0.11947572136321394 +people:0.23768346797960274 country.:0.21189045855555677 world.:0.20868222926294183 place:0.1764674516351094 :0.16527639256678928 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +District:0.23567600232918642 part:0.23219691088990452 Union:0.2133630368552405 steam:0.1846068532792938 :0.13415719664637468 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +called:0.3414414128794704 levied:0.20166127668596015 placed:0.1908415113929987 made:0.15486433114891746 :0.11119146789265323 +but:0.43489728292527524 and:0.3243893224753386 has:0.11710798785243863 is:0.062274975858414516 :0.06133043088853304 +that:0.30952392707016385 and:0.2520012900433058 which:0.2477234179311381 as:0.12085565209375972 :0.06989571286163247 +of:0.7300081711993696 for:0.08412486248033998 before:0.06914917278558591 with:0.05976569745429807 :0.056952096080406356 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +years:0.24336747073640788 dollars:0.21893395845681596 times:0.19193408815832144 or:0.17997049275647467 :0.16579398989198002 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.3205361940571806 not:0.18569710528518604 not,:0.185033190521309 see:0.15878960724303123 :0.14994390289329307 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people.:0.2594582454346749 country.:0.2267309127071025 people:0.2210400306547149 word:0.1505211621422868 :0.14224964906122103 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +down:0.6401140215234212 out:0.14360451149507533 aside:0.10934869646734342 up:0.07320523690733101 :0.033727533606829084 +the:0.6374566104136408 they:0.11951487034089445 a:0.09001037180889294 we:0.08692324294347711 :0.06609490449309478 +of:0.37222819900174764 in:0.27421066801457084 all:0.13434439594704725 on:0.11729145192866643 :0.10192528510796796 +is:0.34823471485303403 was:0.2898454613631334 in:0.15538884751732587 for:0.1210653517874934 :0.08546562447901332 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3588242574920508 that:0.2603264355104737 of:0.14803426575443307 as:0.13170388659014903 :0.1011111546528934 +great:0.4107621327269631 mineral:0.18136806617399648 national:0.16510367508494436 vast:0.16033176663757218 :0.08243435937652394 +taken:0.3481726340799203 received:0.21937074286966665 come:0.2112200367436742 heard:0.11449869115664021 :0.10673789515009866 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8537512961352011 a:0.07360249621935343 tho:0.03237021546642795 this:0.027020963976699335 :0.013255028202318315 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.5409418776152077 as:0.16783465743570072 is:0.10663181847810235 also:0.10341770428908416 :0.08117394218190499 +of:0.9373319211137218 from:0.027064518242290614 ot:0.013479137604465296 that:0.011968357512317758 :0.01015606552720453 +was:0.3434894135114893 he:0.2127200222158124 then:0.15476166954876103 almost:0.1526535475439835 :0.13637534717995364 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +running:0.29953570405684077 street,:0.2158799162248661 road,:0.19426570526645187 street;:0.14530545640989215 :0.14501321804194917 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.2707085148578193 not:0.2557614636120444 get:0.21056892254999968 find:0.13875736556550078 :0.12420373341463585 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.3130296474336706 he:0.31120539277711146 I:0.17531792303371438 we:0.1269073066279321 :0.0735397301275714 +reputation:0.25474047127266813 and:0.21432650631715652 prices:0.2073131642315115 position:0.16712916599941333 :0.15649069217925046 +will:0.36388420921439624 would:0.1838385363797403 may:0.18088962505809225 can:0.14291700862641105 :0.12847062072136012 +the:0.5070412755297733 any:0.214747438707911 all:0.13946907601184796 some:0.0707188496361277 :0.0680233601143399 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +would:0.5508179173735609 could:0.15755553307236075 might:0.12233114445444143 will:0.091722734742332 :0.07757267035730497 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +days.:0.3320858164484232 men.:0.2602498496104292 people.:0.222336518212269 years.:0.10765890327413194 :0.07766891245474673 +fact:0.33147881955527014 and:0.2305082183612032 certain:0.1986853812768079 of:0.13653794007428507 :0.10278964073243384 +it:0.46701791285478866 they:0.21828434737855248 there:0.1324191784629664 he:0.12634748954270428 :0.05593107176098825 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +well:0.507440036807576 soon:0.22371580522050646 far:0.1680701560236044 much:0.06808586124717403 :0.03268814070113902 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +a:0.5364137808540813 the:0.34736923662517 as:0.04530902538705733 such:0.03561698730323921 :0.03529096983045212 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +did:0.41936818141456866 does:0.20862895215919994 should:0.16861854641743976 do:0.16022048010232945 :0.04316383990646216 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6057686672489465 near:0.20267705267727038 at:0.0977024666299132 tho:0.048779921274311924 :0.04507189216955797 +is:0.34253415132515436 of:0.2853443425072046 and:0.16037533272448923 are:0.13326739041462546 :0.07847878302852644 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.5128503683169106 a:0.26499402025855356 not:0.09425377584771275 in:0.06995558936341625 :0.057946246213406875 +a:0.4724824651194827 the:0.40626500431399326 tho:0.08097364254880601 n:0.026220264859326235 :0.014058623158391766 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.46164887672311916 check:0.23701247328286942 to:0.22835284120164717 copy:0.03740590363580651 :0.0355799051565578 +called:0.34574090266980906 placed:0.2521315031918603 forced:0.14171172363561105 made:0.1303204654425142 :0.1300954050602053 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.2968607504626671 by:0.20230993539351416 to:0.20048897038510352 of:0.1740776630572085 :0.12626268070150673 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.7094563993641898 that:0.1176676516989643 him:0.11145157506895702 me:0.03368734132261656 :0.027737032545272274 +it:0.632712229109945 he:0.12260856479077353 It:0.1121441255743704 there:0.09739010622955688 :0.03514497429535426 +vicinity:0.4942605103295576 possession:0.15068715408414565 cause:0.12851541247542975 action:0.1273569830173757 :0.09917994009349135 +not:0.27388538794750583 made:0.27149605404774746 in:0.2522741374294984 to:0.10478429931461893 :0.09756012126062918 +of:0.7863494700128401 to:0.14073118397325995 at:0.038177800235388686 that:0.01956262663949753 :0.0151789191390139 +that:0.5358683133983891 as:0.16310162522781843 if:0.12062127707176971 when:0.09045967274610246 :0.08994911155592034 +south:0.3133951237034383 north:0.30023622898857144 due:0.1364592729200719 east:0.12732203510638818 :0.1225873392815301 +the:0.7119355447169781 said:0.15672089365395414 this:0.07858214613222306 tho:0.02729129195298425 :0.02547012354386044 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +women:0.2884975829274051 evening:0.23721172217956815 great:0.17825997931819454 men:0.14963406791300174 :0.14639664766183041 +due:0.2843986887424714 now:0.2762806325131591 bounded:0.16287026122200962 known:0.14666897456786082 :0.1297814429544991 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +fact:0.6811856975996785 said:0.129424747603616 ground:0.0668337494128204 belief:0.06258864438599437 :0.05996716099789066 +of:0.5346565734466369 you:0.13168563883431836 whether:0.11595092178266239 what:0.11474008294905672 :0.10296678298732559 +he:0.2820261662868672 there:0.2797018998308392 and:0.18908850414671663 she:0.12522669781043347 :0.12395673192514334 +mat:0.37496163295222834 time:0.24221763018265347 above:0.13285119540587045 cause:0.12708252478293133 :0.12288701667631649 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +same:0.28100852377992835 country:0.21997135574273222 world:0.1860091939743425 city:0.1574309443129809 :0.155579982190016 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4367258169035495 in:0.17707904594154758 on:0.16602725719831757 at:0.11028929626981444 :0.1098785836867708 +of:0.4443690865964889 in:0.18566618135060078 on:0.18338689120994942 for:0.12167634110132954 :0.06490149974163154 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.3162160335555731 times:0.275370399439143 and:0.23693377010234584 times,:0.11673524397608584 :0.05474455292685229 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +were:0.3853136618775459 are:0.2957132589497391 went:0.1408036871395959 go:0.08942418656909688 :0.08874520546402216 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.7768194032676419 various:0.07769771563370642 different:0.06220993463699789 the:0.052160562370897286 :0.031112384090756572 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6301364066637849 his:0.15993237375857147 an:0.108023373498786 their:0.07246970078610016 :0.029438145292757532 +the:0.5276900322801625 are:0.17915313286154683 is:0.13651555690905806 was:0.08348235201847687 :0.07315892593075579 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Saturday,:0.43828841568084315 Monday,:0.36752589242631073 the:0.1511547281350247 until:0.02321162915514016 :0.019819334602681284 +up:0.4755610184737805 waiting:0.15695677467156274 him:0.13287661254416155 open:0.12067020361983667 :0.11393539069065865 +all,:0.3573827794885445 due:0.25034488337656013 him,:0.14940737271008617 date,:0.1297695813496176 :0.11309538307519157 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.7426987381417238 a:0.1224890170058014 our:0.05003577557570288 his:0.04972959065363565 :0.03504687862313619 +and:0.4096498864670847 train:0.18207932484739006 week:0.14513185959637392 .:0.13653063500363527 :0.126608294085516 +known,:0.2932989465124555 ;:0.23892220303401832 know,:0.17436824186487576 believe:0.1715727448496607 :0.12183786373898975 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +go:0.409634576180319 come:0.1820413690832247 him:0.15491679222342905 try:0.12769469573402084 :0.12571256677900647 +a:0.6115032596815821 the:0.19473970648036162 in:0.08895107448909463 as:0.061329232381986704 :0.04347672696697493 +were:0.7460977772284075 will:0.10903451932076251 are:0.07632298312746927 would:0.037826909537150594 :0.030717810786210165 +more:0.308787530705738 very:0.30262842721311173 a:0.1803217393406137 so:0.11111431000901607 :0.0971479927315204 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.4110764496822824 you:0.2574020939146862 whom:0.1394453370984725 them:0.1078411194824198 :0.08423499982213906 +a:0.446461019004872 the:0.3522136859532366 other:0.08991667859660907 that:0.05651853065166525 :0.05489008579361722 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +come:0.3175402221467192 escape:0.22384009754258677 recover:0.1560774848032916 him:0.15259520439595395 :0.1499469911114485 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +years:0.5172964500044135 days:0.22702616893512279 months:0.1396172112951102 hours:0.08613387285444604 :0.029926296910907316 +to:0.44401486852810307 of:0.3688424374374955 for:0.08957130573861234 by:0.04925290342263198 :0.048318484873157104 +who:0.9435048810600896 which:0.020828142340359117 things:0.013933827090290125 they:0.011370986886931465 :0.010362162622329751 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5311298527944982 of:0.3028857220305583 a:0.1040884717900375 and:0.03187822870834022 :0.0300177246765658 +the:0.7445784073211016 these:0.1568036968486573 tho:0.03873169250914285 about:0.03349255983003158 :0.026393643491066793 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +carefully:0.4081838465413548 was:0.19394531187810388 seriously:0.15610297769567388 fully:0.13363939754833257 :0.10812846633653485 +of:0.43149112284280133 for:0.1959422016209594 in:0.14042629074409488 to:0.1379950043726352 :0.0941453804195091 +scribed:0.5701550443537398 signed:0.33272339137095114 voted:0.039619604423110244 tained:0.03426499036712205 :0.023236969485076805 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.915466996225056 bo:0.04786042974271814 now:0.013747572651001407 he:0.012211393223762673 :0.010713608157461882 +of:0.32217325311431927 for:0.20411362424243623 from:0.16966011303413034 on:0.15987162507737884 :0.1441813845317352 +them:0.35591390801031375 Deeds:0.23898128743073002 land:0.16427108330298018 interest:0.12632544005277482 :0.11450828120320115 +the:0.39775285274166555 of:0.32820334679779484 a:0.2013709506455519 this:0.04908873820821548 :0.023584111606772127 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.5481249946711444 had:0.17050391941828666 are:0.11838245757481843 find:0.11171278053034484 :0.051275847805405644 +object:0.26513304856112657 justice:0.2423469110890553 aim:0.17624072111023079 clerk:0.16287354975589474 :0.15340576948369256 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.8557620232667768 to:0.053674561079980795 as:0.04076408450955794 and:0.027259100165834743 :0.022540230977849882 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.812228501368502 and:0.07094065344668532 in:0.043269863305264944 for:0.04063271617049945 :0.03292826570904826 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +rear:0.39741363374187555 national:0.34569734847796046 advance:0.09414022703743481 old:0.09037562750861661 :0.07237316323411246 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.43078906532385713 was:0.23653488304255632 can:0.14809047839382425 and:0.10776231055246586 :0.0768232626872963 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +bill:0.5554672189565311 roll:0.20084447936125663 appropriation:0.08358888635769587 bureau:0.08166749849370607 :0.07843191683081042 +in:0.3444369305734278 to:0.21872380327564678 on:0.18933238125254873 at:0.14543416671343312 :0.10207271818494358 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.6604299810732988 side:0.13520631913347048 is:0.08312949403408623 are:0.06660092477931284 :0.05463328097983171 +the:0.482109588177098 Mrs.:0.1418502605859553 Mr.:0.13316748991145413 John:0.13299582177855646 :0.10987683954693613 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +all:0.31956123596302205 that:0.24562922725583497 in:0.16247797620830112 which:0.14011324524419969 :0.13221831532864214 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +committee:0.2895964643256264 work:0.2057180801513136 Committee:0.20503680541207173 city:0.1636414949199141 :0.13600715519107417 +much:0.48299941763352844 as:0.29222338377173934 far:0.08772676274403203 anxious:0.0752430284646978 :0.061807407386002294 +the:0.7942494054126932 our:0.06580909729499207 his:0.04942655456780062 said:0.04870622888222422 :0.04180871384228992 +that:0.33223694322558345 all:0.29154011281917946 which:0.233450522455781 under:0.07510799224395104 :0.06766442925550509 +time:0.2662007269602721 demand:0.20374566206278708 necessity:0.19227363546651788 work:0.17423850470127075 :0.16354147080915216 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.35338764815396123 will:0.2663581353650478 do:0.17215778423789616 can:0.11005164372759929 :0.09804478851549549 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.5150839238435061 but:0.13962199042109275 based:0.1308850718143126 holding:0.12177277318418063 :0.09263624073690795 +The:0.49386928719703843 the:0.33385631332886573 Charles:0.07914851162426145 Washington:0.048949355195996615 :0.044176532653837634 +a:0.31914723508365483 the:0.2673051405599313 with:0.18240404362181623 and:0.1350188574956942 :0.09612472323890328 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.4034003574492826 had:0.243143355175947 is:0.20933228350494443 has:0.10109724189284679 :0.043026761976979196 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.3140669146222644 they:0.24102134242915607 there:0.16187409967810254 he:0.15288449132689638 :0.1301531519435807 +make:0.34495488144820075 pay:0.1722806064713843 take:0.16834105627599397 get:0.1575504848418362 :0.15687297096258482 +The:0.912140598432805 Tho:0.03388208361985929 A:0.02334714367320951 Our:0.016982437470097606 :0.013647736804028488 +it:0.44809171643072104 there:0.2605723890180332 he:0.15481368637776266 It:0.10290163380554197 :0.033620574367941095 +is:0.6154334705446304 was:0.1657054572879145 Is:0.12651511084981526 a:0.0673639194664616 :0.024982041851178312 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +days,:0.49505189112750947 States,:0.14705955403540535 men,:0.13016553388376467 times,:0.12267365975118891 :0.10504936120213156 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4556530177743978 of:0.38177247325753155 to:0.08222987405452041 and:0.04535254108766604 :0.034992093825884425 +it:0.3864689792249559 which:0.1988596250986965 he:0.18212627087855382 they:0.14326624964607082 :0.0892788751517227 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7073625930885031 of:0.11379684488105953 no:0.07999624889216973 their:0.05618436453497376 :0.04265994860329384 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.24814051025576145 do:0.23813940721298887 know:0.21545494313780073 see:0.18368007371682743 :0.1145850656766215 +re-:0.6002093133325074 re­:0.1274963559672514 re¬:0.12683294591290137 ac-:0.08434095441243315 :0.06112043037490659 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.37336678912199434 point:0.1722450793410543 and:0.17190440556958733 change:0.14389658464366833 :0.13858714132369584 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7274224217474807 in:0.08825364104446706 on:0.08083613622049765 upon:0.06808633044651687 :0.035401470541037657 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.2507041416681069 it:0.22583424596027493 time:0.20887970652465848 day,:0.16934891304830973 :0.14523299279864987 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +important:0.5156051621250397 great:0.15899561739958343 few:0.13177008782899838 Important:0.11475959059204084 :0.0788695420543377 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.3775582575303948 it:0.27820313971650956 there:0.17708783376580198 she:0.09767003058746972 :0.069480738399824 +other:0.37641962784469873 extreme:0.198246105719124 proper:0.1658586099099227 war:0.15202347541443134 :0.10745218111182328 +right:0.5173362719545237 help:0.17850912416523454 little:0.11092261828242625 bottle:0.10902862599379905 :0.08420335960401638 +think:0.3859902187840195 am:0.29406937401495714 thought:0.14932709644854963 believe:0.0926970784505556 :0.07791623230191817 +the:0.5786762436762167 this:0.1514307210604088 one:0.11237698888578128 a:0.10640029274994864 :0.051115753627644624 +the:0.46440322666422534 Mr.:0.3709653179324766 President:0.10424664756473152 Fort:0.032568628137721926 :0.027816179700844608 +men:0.335536625925091 people:0.27266876101749005 officers:0.13931310621831855 guests:0.13177328285499493 :0.12070822398410558 +young:0.4951371277102692 old:0.2914719286644638 first:0.07498043016915264 poor:0.0707977973769783 :0.06761271607913594 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +railroad:0.2957882719056077 county:0.27051798512098546 telephone:0.15139420031761222 and:0.1452569459560122 :0.13704259669978242 +time:0.3119106609737767 moment:0.2675292502635207 day:0.14897294722368723 period:0.13806279021329423 :0.1335243513257213 +not:0.3252399397691813 in:0.1934030524125223 no:0.18900229607783578 command:0.165530971901049 :0.12682373983941167 +in:0.3247520521496308 that:0.22117999781496467 for:0.16417075548217291 to:0.15331087086920925 :0.1365863236840223 +the:0.5802179820133307 this:0.13837883348139168 and:0.12107545863062959 our:0.09188233854358947 :0.06844538733105847 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.5382896721284737 is:0.33029395925798005 showing:0.04721253638582178 Is:0.044934010700653566 :0.039269821527070925 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +whole:0.30338090474383184 same:0.18897934102314992 heavy:0.17932150730283886 great:0.16683374187341446 :0.16148450505676498 +was:0.38585504823335554 is:0.249097393593802 had:0.2010704649081898 saw:0.08702013394434917 :0.0769569593203034 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.30619734328280335 about:0.2188194567729883 given:0.2092385082695088 told:0.13746381429664858 :0.12828087737805083 +much:0.48299941763352844 as:0.29222338377173934 far:0.08772676274403203 anxious:0.0752430284646978 :0.061807407386002294 +more,:0.41055988114657155 more:0.28331790193962336 again:0.1208945738886712 in:0.09698196949422154 :0.08824567353091228 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.469748492180796 the:0.2935069568798095 that:0.0805131807783868 this:0.07832707370777872 :0.07790429645322895 +not:0.9255165344198552 the:0.03898014839106117 found:0.012630067493199957 made:0.011976830800653126 :0.010896418895230398 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.5717144305194846 not:0.19149089587760856 fully:0.11703554282110142 thoroughly:0.06777041212687794 :0.051988718654927435 +more:0.5411687871284478 less:0.1682521629232557 rather:0.12298834181447031 better:0.12012957327638875 :0.047461134857437276 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.26128806699314844 latter:0.21243958735154803 people:0.18718584731224464 committee:0.1726727817611006 :0.16641371658195822 +the:0.821444698549687 a:0.0962910165262761 our:0.030250450446717446 tho:0.02807490492136814 :0.023938929555951113 +on:0.47475825725423737 the:0.2356123332551317 a:0.1247423441358801 of:0.118288070248972 :0.04659899510577892 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7239180537985582 this:0.16106304917560513 said:0.05301315460459084 tho:0.03335983822644552 :0.028645904194800155 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +know:0.7021382124518015 see:0.12583295305965742 exactly:0.06983647715227534 only:0.0525665718709338 :0.04962578546533206 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.44612362902552954 to:0.27926926021066345 one:0.10064066881104376 that:0.09070108436832382 :0.08326535758443948 +110:0.2562512907928973 the:0.23661584232216465 100:0.18318117544060988 six:0.16786086998422373 :0.1560908214601044 +influence:0.5541747378470877 agent:0.15919060458092849 interests:0.1067966021562029 combination:0.09982884612713852 :0.08000920928864248 +and:0.28628984571172406 things:0.23463185457650823 condition,:0.16756915426355642 faith:0.16252581890481013 :0.14898332654340107 +is:0.47918128136361055 was:0.13829448303439104 the:0.13813053060221436 in:0.12454932851825098 :0.11984437648153307 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.26362728554659587 was:0.24562617460972008 has:0.1782597877908629 they:0.1565670329086607 :0.15591971914416047 +the:0.6120923462568137 to:0.1460409833039874 of:0.14473381296763962 and:0.05088823593686333 :0.04624462153469585 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +on:0.547601804519906 to:0.43107831342720687 that:0.013172529774924951 full:0.004200370633636897 :0.003946981644325223 +of:0.8105118593380418 and:0.06528574189129974 in:0.052375042903926305 Central:0.04788881568847733 :0.023938540178254582 +word:0.4487925334590327 good:0.258171078114191 man:0.10427586762686993 little:0.10052590913544732 :0.08823461166445913 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +arrival:0.26080865878167986 home:0.2419191311504419 hand:0.16954420212987395 friends:0.1683633536542074 :0.15936465428379687 +and:0.4648902079560549 that:0.201020188584332 as:0.14542698480790375 which:0.10957826567217618 :0.07908435297953309 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8100822187170237 tho:0.10581387125093997 Missouri:0.04285994438244291 Ohio:0.022747519949403053 :0.018496445700190392 +him:0.39091667483528525 them:0.2707607154161339 me:0.15233149372633087 himself:0.10335330318486131 :0.0826378128373888 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +able:0.40678286427927557 allowed:0.16837189371372713 made:0.16004441386181978 used:0.13387521084376586 :0.13092561730141164 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.5238292175200329 of:0.24874563977281128 from:0.09942011474732892 for:0.07548399151869842 :0.052521036441128384 +ment:0.8304115285271386 ments:0.12460121770635481 ing:0.026340213590783604 master:0.009742734909653017 :0.008904305266069829 +that:0.694861266794534 the:0.20768917924024274 of:0.06785117400211448 our:0.017629090219583463 :0.011969289743525244 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +debt:0.5987366524691644 party:0.20494714882708986 note:0.12449022987496304 sum:0.05738078166685933 :0.014445187161923192 +same:0.27905913715653313 present:0.2491606791809853 State:0.1605905937171786 beginning:0.15878575393041286 :0.15240383601488994 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ago:0.7137856481330065 ago,:0.12391336519740982 and:0.07576765147224233 that:0.06321942705402392 :0.023313908143317432 +d:0.2517468042964821 rent:0.24205372979433454 and:0.22671238027013152 ties:0.1471147498786491 :0.13237233576040267 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.2714929284734621 the:0.23601564839173195 Mrs.:0.2078456971371903 John:0.18478114943117396 :0.09986457656644164 +that:0.8796229954167166 to:0.06608663806923783 in:0.02274878308495468 In:0.016744804215907277 :0.014796779213183524 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5297341031894305 an:0.23488674863870784 this:0.1322714477520564 some:0.05477994751572167 :0.048327752904083525 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3242249188454487 by:0.23374120302550644 the:0.21013138225780562 from:0.1269544497268616 :0.10494804614437779 +but:0.3742431966339834 and:0.32045272080509174 did:0.16177162306701157 was:0.07416364075951715 :0.06936881873439603 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5576780905303342 of:0.32778013788452054 and:0.049799521082854785 additional:0.03387591197005023 :0.030866338532240196 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7092043247066231 a:0.14822658175898598 this:0.057087693777929556 present:0.046940337778735554 :0.038541061977725825 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +benefits:0.26558867247900947 patient:0.21629199715501649 ground:0.19917603008151857 first:0.17772590353443946 :0.14121739675001604 +the:0.4396448115414024 this:0.2363955619378203 be-:0.1322004923300031 be:0.10814857364893 :0.083610560541844 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.3568008594934692 make:0.31808503883297123 the:0.1173055260573736 take:0.10614738894196328 :0.1016611866742229 +those:0.5821444474136416 one:0.2570532474431004 all:0.07281478842283937 he:0.05112280521868737 :0.036864711501731505 +They:0.45356052606060987 There:0.333695802668287 We:0.12810507905774896 Both:0.04477966664306325 :0.03985892557029094 +would:0.32724475192082647 will:0.3028937823651089 to:0.1886894039802662 may:0.11154633819457539 :0.06962572353922311 +in:0.387671143415924 to:0.24866066359177055 of:0.13839284351101275 all:0.12885008114206647 :0.09642526833922627 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Francisco:0.9929166673575125 Louis:0.002223074131142022 people:0.0018778949889998997 wo:0.0017307973302132446 :0.0012515661921323074 +the:0.8369802587180419 tho:0.048231327127423854 civil:0.03864538555529781 this:0.03848529007531558 :0.03765773852392079 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +has:0.7694501181225609 had:0.17802551942741168 lias:0.022926694067758824 not:0.01706932709204072 :0.012528341290228149 +be:0.36229560011740214 do:0.17636607619922204 come:0.16838823234807407 give:0.14934455431860266 :0.14360553701669912 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +corn:0.38847019501717445 meal:0.2776332182816676 oil:0.13540465051413306 bed:0.1055816072535064 :0.09291032893351858 +the:0.4946440856048 of:0.1911948780417127 or:0.17751208329505827 and:0.11063338872412895 :0.02601556433430004 +to:0.3885769452136231 by:0.18103566715219757 in:0.17101354324234447 for:0.13136830138236127 :0.1280055430094735 +been:0.6696954370370573 made:0.10823892216365727 had:0.07808331738989421 not:0.07378010246583468 :0.07020222094355666 +the:0.9337795843134823 tho:0.02991105008140766 tbe:0.015698535753133066 this:0.012216747934094092 :0.00839408191788284 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +agreed:0.3042471927932731 called:0.29027965073695644 decided:0.1754344364373611 waited:0.11529521619459651 :0.11474350383781287 +such:0.6565819405276382 that:0.1132066184439417 them:0.08934185961561471 making:0.08396647000126202 :0.05690311141154352 +that:0.4624229128572096 when:0.22760449992323536 if:0.16351973767988218 which:0.07514939990004255 :0.07130344963963016 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.41004992427404924 everybody:0.17325586259419945 who:0.1678551561139393 one:0.1439846886242435 :0.10485436839356846 +of:0.6402640818831368 with:0.1349410680451666 in:0.08034530117585321 and:0.07512259045041601 :0.06932695844542738 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 +people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 +one:0.31999157117598714 some:0.1962370487763305 all:0.19205423789939108 interest:0.17684663520784297 :0.1148705069404483 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.3228524233678251 one:0.22681637968273077 per:0.20748542902219536 10:0.1329820593689748 :0.10986370855827399 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.26976805018750943 man:0.2212536601680126 world:0.1999252944402413 I:0.17191175539649353 :0.1371412398077432 +and:0.5873329571993368 Bryan:0.23797196988317734 Roosevelt:0.05965090473686382 Smith:0.05811133961136898 :0.05693282856925294 +part:0.3618539875851836 person:0.19457608048414674 time:0.1659892306908341 man:0.14463871358231617 :0.13294198765751927 +not:0.2795121817920691 likely:0.1955066928538332 going:0.18913954902219285 necessary:0.17840335755718467 :0.15743821877472008 +wait:0.6016069737317855 remain:0.15443781604754403 continue:0.10906546620936673 him:0.06982493461258635 :0.06506480939871752 +in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 +to:0.6627679619340757 of:0.10648658109025655 by:0.09937399479760624 a:0.0774886992520455 :0.05388276292601594 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +parts:0.5811587612638888 kinds:0.2558900962260675 sections:0.06966388404385453 portions:0.057338255685099475 :0.03594900278108986 +he:0.3239677306573394 and:0.29020530257434746 it:0.1684924376619984 He:0.11319558199821361 :0.10413894710810116 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.24414468540837556 year:0.23241798550517853 week:0.19535775414944145 month:0.19122621209105303 :0.13685336284595154 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +na-:0.6183300163884655 ac-:0.1630935688938501 mo-:0.09951447079191252 elec-:0.0745881315312214 :0.04447381239455052 +in:0.45551857938362594 at:0.1649416761489755 for:0.14489757803609837 on:0.13717188155770696 :0.09747028487359315 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +I:0.33621576419635524 he:0.21742855608118525 they:0.1776431185575937 and:0.15910199537909808 :0.10961056578576767 +least:0.29387515866443525 once:0.2223105113924933 work:0.19650111629694159 home:0.1819420486728582 :0.1053711649732716 +of:0.8161040208764668 to:0.07245226930843655 from:0.0667181384305637 by:0.023934141525416973 :0.020791429859115845 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.8623170264115115 bo:0.05251763952112908 have:0.03541907755902976 soon:0.02997461007743938 :0.019771646430890147 +the:0.722717864745653 said:0.10821942559383624 a:0.07108200089339098 any:0.06195924764672988 :0.036021461120389814 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.3178759751755856 them.:0.2392308177037045 sale.:0.21537010795225692 life.:0.12698993345535597 :0.10053316571309702 +that:0.3236704376168104 and:0.25692049217269514 of:0.2279858626385575 to:0.12240696727423173 :0.06901624029770533 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.6192775019433209 if:0.14579606696465144 as:0.1281744602835655 and:0.061287799657090934 :0.045464171151371295 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +demand:0.3161025670595171 reason:0.236995538646501 bill:0.17502591222495167 market:0.14025820626842792 :0.1316177758006024 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.3607600365235615 would:0.2397506929100848 may:0.1954534490063931 should:0.10820782251068554 :0.09582799904927516 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.6549965071589536 a:0.15480808900626294 the:0.07891880810900408 and:0.0603842170566563 :0.05089237866912305 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.383343445783201 is:0.259813515115275 were:0.14682413119878282 are:0.1347893078794407 :0.07522960002330048 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +own:0.43321598930541605 official:0.16324655803534488 military:0.1515864385991838 best:0.13623783258947145 :0.11571318147058383 +given:0.2298939905386076 seen:0.2151068503053136 been:0.1942994923665737 learned:0.18415671855596097 :0.1765429482335441 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.2693652377491786 is:0.2069143195321312 was:0.20607580941154463 has:0.17042657819055204 :0.14721805511659336 +Army:0.6388698208963787 Jury:0.1350767034593226 street:0.0955559363132264 avenue:0.07010774355719808 :0.060389795773874454 +met:0.2919587193915587 was:0.2619276280670338 had:0.16992308423522123 filled:0.14232060024684495 :0.13386996805934126 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +at:0.4505185384167464 of:0.3372354949474719 for:0.09126702031416838 in:0.06612316054018406 :0.05485578578142932 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +said:0.28573746813487055 Rev.:0.2456555288550772 city.:0.20001226596669452 bill.:0.1360297828223242 :0.13256495422103357 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.279639721002356 then:0.23171802833499192 wife:0.16656440492018137 it:0.16412755858855746 :0.15795028715391318 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.23234944307136934 take:0.2206244636911852 keep:0.1999454682200261 give:0.17934088703210121 :0.16773973798531808 +he:0.547152895578757 they:0.13983684492447665 has:0.11751495956197602 I:0.11112242901824396 :0.08437287091654626 +2.:0.659894493865448 3.:0.20661103121342086 4.:0.09762356369281129 .:0.021126035365564535 :0.014744875862755448 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +own:0.6335721297769814 native:0.13132856364187218 said:0.08930325312233106 sister:0.07863297496088703 :0.06716307849792832 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.7467833510760585 have:0.16610474403759917 bo:0.04660546215370489 his:0.021879086246328634 :0.018627356486308914 +and:0.4500231927591389 was:0.2465652582009546 is:0.1201032462613363 in:0.10067436295361058 :0.08263393982495981 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6568715904308972 a:0.15015727500332257 other:0.07351685904041984 this:0.06637082507574338 :0.053083450449616834 +wife:0.26726643275912904 costs:0.260259939405742 Mr.:0.20906944216049175 then:0.15283548529173913 :0.11056870038289802 +up:0.5964215325472794 them:0.18051296886384507 alive:0.07988165371002806 down:0.07254099651305206 :0.07064284836579551 +of:0.3284473239690617 in:0.22231732350878827 on:0.1683426454808093 to:0.14939341870684006 :0.13149928833450072 +they:0.3431108429472445 we:0.22986876028419434 I:0.18827005065576102 to:0.16222800333943097 :0.07652234277336925 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.27353892423957155 by,:0.23756925880909327 said:0.18245418048529674 under:0.1584541970885238 :0.1479834393775145 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +mortgage:0.3288277045838553 that:0.2957576239333694 lot:0.16136774434218135 premises:0.11368039740482738 :0.1003665297357664 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.4648992926917519 put:0.18622300172743123 assist:0.1250201765404788 him:0.11290369569300782 :0.11095383334733018 +people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +Court,:0.43682509203076453 Court:0.33644801632010124 and:0.10946144822827415 court:0.06914963926854407 :0.04811580415231598 +to:0.3051587888298159 shall:0.22647119640490238 and:0.1703876142927413 Council:0.15011522148514006 :0.14786717898740034 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +when:0.7160070514822064 from:0.1125401759176305 and:0.08446244745266664 as:0.04491219685928584 :0.04207812828821049 +the:0.8865447258449777 tho:0.041832184241860894 its:0.04089277474890244 tbe:0.016607771889580833 :0.01412254327467817 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.4081688283690139 as:0.1777829241825146 surprised:0.1722316880851765 thereof:0.12832742995251395 :0.1134891294107811 +money:0.2651157147709687 active:0.22642674304305413 so,:0.18921477114057084 healthy:0.16573986877967314 :0.1535029022657331 +into:0.5830666204587445 among:0.16427866617231532 between:0.09694373178091435 Into:0.08435372058171356 :0.07135726100631223 +second:0.46227234110717186 first:0.36402940057192695 chief:0.07737634647570599 third:0.07165289880800305 :0.024669013037192072 +of:0.852049294826192 for:0.05916586054721057 ot:0.036819629983698504 in:0.026922834857088292 :0.025042379785810646 +First:0.32798716706879394 which:0.19054830020517946 the:0.1725881272751902 said:0.1571639937962759 :0.15171241165456034 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +issue:0.3146656201079772 years:0.24502076270794562 visit:0.19747544615801618 years,:0.12224560724640612 :0.12059256377965485 +County:0.25238105257050786 deed:0.24715346637445168 county:0.17341080776496423 Board:0.16569919638178154 :0.16135547690829463 +is:0.5670267692372785 was:0.26529127789549156 Is:0.1179355383667739 has:0.037622996326004125 :0.012123418174451749 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +morning:0.35351016363708077 time:0.23550762900318567 rest:0.14566690423786693 water:0.1417953501259054 :0.12351995299596116 +the:0.7347542251977873 these:0.15435989314224804 such:0.03846725207272424 their:0.03686298410166686 :0.03555564548557363 +or:0.5800496933537846 about:0.20665261118946737 over:0.11330236660556871 of:0.05897356105839725 :0.04102176779278225 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9532926000445168 by:0.015008291123332452 is:0.011949107199954677 day:0.010050070377205381 :0.009699931254990723 +and:0.7123291875688375 Bryan:0.12017667339912456 Cleveland:0.06588152642715082 Roosevelt:0.052214785296249185 :0.04939782730863795 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.5378014061238415 may:0.16105087499791038 shall:0.13825426290880458 to:0.08249673875260134 :0.08039671721684227 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.34495488144820075 pay:0.1722806064713843 take:0.16834105627599397 get:0.1575504848418362 :0.15687297096258482 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.7876652803792912 it:0.09939828513597514 ho:0.060715862536446036 she:0.04058123144630719 :0.011639340501980292 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 +is:0.4267387874693918 in:0.17654803066596406 was:0.1682819797356149 to:0.15877959804404332 :0.06965160408498602 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +see:0.5248556989035553 know:0.15640536982260608 told:0.11642298355444174 show:0.10330656406411892 :0.09900938365527791 +and:0.3153427798225797 therein,:0.20800181724895245 comes:0.18576294381604627 died:0.1632100990556347 :0.12768236005678688 +in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 +a:0.3627262213637926 the:0.25385260615318006 southeast:0.1346462891417965 southwest:0.13448146495567465 :0.11429341838555622 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +nothing:0.3182470105903257 him:0.2963897542857493 how:0.23762301460624746 enough:0.07498045935581202 :0.07275976116186555 +this:0.3607268813453243 which:0.34085273206587025 It:0.17297835928743172 that:0.06855906156759886 :0.05688296573377491 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +up:0.3885993070730181 down:0.2514580500699462 away:0.18453246106805907 out:0.10912356514817025 :0.06628661664080622 +and:0.4096498864670847 train:0.18207932484739006 week:0.14513185959637392 .:0.13653063500363527 :0.126608294085516 +so.:0.33730611554320095 not.:0.32429191931839857 it.:0.19215140435778794 before.:0.09051536985171461 :0.055735190928898025 +it:0.4096628457091822 there:0.20613529896728033 that:0.1467496776644971 now:0.12495303200871617 :0.11249914565032404 +the:0.8454088769572711 a:0.05360701374165598 too:0.036407805612679936 his:0.03405496748956222 :0.03052133619883072 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.596264226146174 been:0.22932330369525664 the:0.10921976844306841 some:0.03590495657470177 :0.029287745140799036 +of:0.29429515696927255 ceived:0.24108681259069437 in:0.19886756817761778 to:0.15697929829033955 :0.1087711639720756 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +away:0.5085018434051933 down:0.15796308273716494 over:0.14380604797702545 out:0.11399499172723884 :0.07573403415337752 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +now:0.3397150866326594 not:0.23384014546633738 situated:0.16031857120743634 made:0.13936289499483412 :0.12676330169873284 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.4143319027377889 I:0.25659703457928945 dead.:0.13682425992463512 it.:0.1230141962990651 :0.06923260645922141 +and:0.2833639396197249 of:0.252983063978598 in:0.23856442316811344 to:0.1219410228541299 :0.10314755037943378 +him:0.3463302277767007 me:0.23081520614792456 them:0.20415005522964566 us:0.1742448569179836 :0.04445965392774553 +one:0.8966383106069915 two:0.030227940506039695 five:0.02580782054882363 ono:0.025369324795628857 :0.021956603542516405 +the:0.779245513019498 his:0.13045595856200895 a:0.03777325903214931 tho:0.027852252064349933 :0.02467301732199369 +hundred:0.49883839189611756 thousand:0.3970239307576412 million:0.09957447563559493 of:0.0031211452288987663 :0.0014420564817474051 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.43355482344712987 but:0.30510933533225115 together:0.09104578959672686 level:0.09001013594567187 :0.08027991567822013 +own:0.5199908452807135 way:0.1796555588125598 return:0.1548050226452841 old:0.09177529650833406 :0.05377327675310868 +is:0.30763476665823053 was:0.2781120124580114 Company,:0.2225824924843772 company:0.10175962083661941 :0.08991110756276151 +;:0.45179318260716167 nothing:0.1706563697005915 tion,:0.1583755277630503 Nothing:0.11996468329364678 :0.09921023663554968 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.5227646171354214 has:0.22949977908820954 had:0.16201557970860286 and:0.056147896748375684 :0.02957212731939056 +was:0.23791584077489955 soon:0.2072994349095612 regarded:0.2019713379408976 well:0.17687728983557652 :0.17593609653906514 +well:0.36345571888638784 them:0.17490906271057458 out:0.16405442143739105 him:0.1533481523269609 :0.1442326446386856 +cause,:0.26371605080583616 taxes,:0.21246951401424094 same:0.19030526993702634 matter:0.18880820731132308 :0.1447009579315736 +the:0.6232958132985676 all:0.16006701777781837 other:0.08147915375891425 bright:0.06815027603653066 :0.06700773912816889 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +as:0.6527934163218351 in:0.12060843191512459 at:0.10156134986078788 near:0.06487689949132584 :0.060159902410926606 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +has:0.5070324395464924 have:0.1955950410007873 had:0.17828030318615398 having:0.07627123307507434 :0.04282098319149189 +h:0.269433016527188 amount:0.20626714264601553 people:0.20324987635464137 sum:0.17980625047898494 :0.14124371399317026 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.2710251608287042 of:0.23458696520466085 with:0.23338432156684932 for:0.1366966376282848 :0.12430691477150073 +be:0.5195111631538822 have:0.18590723470858253 so:0.12181293192849485 been:0.10253658449361616 :0.07023208571542419 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.34495488144820075 pay:0.1722806064713843 take:0.16834105627599397 get:0.1575504848418362 :0.15687297096258482 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.37827890523201035 down:0.20665933069104234 the:0.1671158951706223 out:0.15736264985833315 :0.09058321904799185 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8510298750356863 all:0.052376022757991726 his:0.035328357930661136 tho:0.03500461513907006 :0.026261129136590785 +which:0.6457971615934561 both:0.10304728999807644 that:0.09249635776820156 these:0.08300343886681982 :0.07565575177344605 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.3388174482333482 as:0.30807518430876996 that:0.16961671797174027 way:0.11295283985444488 :0.07053780963169666 +is:0.8449603279207167 was:0.05456661936654427 Is:0.045503581615769145 has:0.033464457059401195 :0.021505014037568874 +not:0.9088177658552207 do:0.032993497637983975 nothing:0.020313074270259534 anything:0.019488932097612023 :0.01838673013892375 +that:0.8476786309764416 to:0.04641833797802778 in:0.046382683733301344 for:0.04191765964726129 :0.01760268766496818 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.3006955254169456 we:0.24806414334094623 would:0.19138405700854033 I:0.1521457767383761 :0.10771049749519163 +country:0.37578545336408753 notice:0.21625593175334304 city:0.16472127691001748 notice,:0.13318678524587335 :0.11005055272667864 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +right.:0.3087677747684756 night.:0.1969851237381789 day.:0.1942216632628393 times.:0.18310665217296576 :0.11691878605754033 +country.:0.26803284903240115 world.:0.2291145910069688 city.:0.21879424978954234 people.:0.15398937800370113 :0.13006893216738652 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.3358957699721858 also:0.22411300047922555 generally:0.18271749146734567 ever:0.17346543956439509 :0.08380829851684789 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +said:0.36951764679573884 the:0.31345085194079 a:0.17160668383009425 certain:0.07815017995635887 :0.06727463747701797 +of:0.6703519983163931 at:0.1350372713203018 to:0.10204605401952298 into:0.07143155809362907 :0.021133118250153023 +made:0.33649601782069855 engaged:0.27741125290338137 placed:0.15496249722535935 found:0.127012770473925 :0.1041174615766357 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8839008347723076 tho:0.04329253194242115 private:0.027362488980959578 his:0.023565307032743288 :0.021878837271568297 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +miles:0.7531157935097601 yards:0.0837410620626216 feet:0.0736737331793592 times:0.054392300944964396 :0.035077110303294835 +is:0.6626496944359227 was:0.16228550436482822 Is:0.14808621836298813 has:0.01549648271222249 :0.011482100124038356 +to:0.9284600437094027 and:0.03400563167110587 labor:0.015529113030694099 work:0.013998749238843384 :0.008006462349953837 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.2922188401739546 and:0.21901134277136144 are:0.1828135322505111 have:0.1735013695605596 :0.1324549152436133 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.47825954316803876 who:0.19764855208083218 and:0.12028322962857561 which:0.11566629703697062 :0.08814237808558281 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.32804250614731045 and:0.31367545765646143 The:0.21144093882913662 n:0.08197176761031996 :0.06486932975677136 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +so:0.3010865794669811 found:0.26710495047956123 given:0.16841271551974873 stated:0.1380450587970695 :0.12535069573663937 +a:0.4710054884061558 the:0.2957676375730253 being:0.17280850071635787 this:0.03828196028233943 :0.022136413022121555 +depend:0.278189398750476 only:0.20982078040427932 look:0.20632945689014923 based:0.16304367824707353 :0.14261668570802194 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.6384831472172849 was:0.15097115853703727 Is:0.09995445189098194 and:0.06042368869392389 :0.05016755366077207 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.24915589253745718 city:0.22854406432363528 payment:0.20642614765754363 day:0.1602732853515545 :0.15560061012980947 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.5285364908270632 before:0.17123586493673848 at:0.15932769118092935 in:0.09128822897953873 :0.049611724075730244 +Rev.:0.25537395156511083 Hon.:0.22800919175668083 said:0.1983757172759902 year:0.17177091318704207 :0.14647022621517608 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 +have:0.5346385899240225 had:0.23492820981649992 under-:0.14780348760153708 he:0.05329714805559687 :0.029332564602343666 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.6642298991830925 as:0.14813060624481528 when:0.11717599274292109 sure:0.03948180131086157 :0.030981700518309407 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.7639470751686241 they:0.08068047814804465 we:0.05647562477461819 will:0.055402535194323664 :0.043494286714389395 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Jack:0.42547513087720146 He:0.19837496133175106 Franklin:0.16434377692084443 and:0.10843367907639144 :0.10337245179381158 +a:0.6007697742279707 two:0.1348537068514391 the:0.12992012262031497 this:0.08381742234368224 :0.050638973956593024 +own:0.2557219167306443 mind:0.20343426144878257 head:0.19790200195050583 opinion,:0.18071651487363063 :0.1622253049964366 +of:0.3798981099561131 on:0.2224846293129623 upon:0.17797419099904402 that:0.1315844433417764 :0.0880586263901042 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.272542629233529 which:0.2426317292726945 that:0.22568101955903805 whom:0.14193277316888264 :0.11721184876585579 +not:0.9110141388036173 the:0.0373934848170908 now:0.02837621506343358 being:0.015379770021280137 :0.007836391294578216 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +good:0.3085833215502971 new:0.26485695877464005 large:0.21358448899110039 short:0.12926982443446014 :0.08370540624950219 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.7060411271788392 a:0.18407584768937268 not:0.05282666652313885 become:0.04273353951186737 :0.014322819096781826 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8901837157482254 White:0.03603145243020992 this:0.02901611424655982 tho:0.02241139715534315 :0.022357320419661833 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 +Smith,:0.3173356993110606 side:0.20269081120219146 One:0.1932349622742555 Many:0.1508774548883389 :0.13586107232415362 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.2948323250102336 made:0.2712566378106736 in:0.2015436028280816 only:0.11679946258640639 :0.11556797176460491 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5353273756062149 Ohio:0.16469489315734337 New:0.1326356102966561 Mississippi:0.08661304747489815 :0.08072907346488747 +he:0.4029308148534864 remedy:0.16575742842951066 man:0.1502567703105011 and:0.14108354351139324 :0.13997144289510854 +100:0.4425271035924046 25:0.1746605534570558 square:0.16640731971119133 six:0.11374242599056206 :0.10266259724878625 +cer-:0.9481486341929731 con-:0.029202984560884954 re-:0.009246593004722952 con¬:0.007686012542091543 :0.005715775699327586 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +above:0.2753984828752391 time:0.25208737667378567 of:0.200334354233471 following:0.1645277099062733 :0.1076520763112309 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9082442741842038 and:0.027387962994499283 to:0.023640755787618893 with:0.020405324830079268 :0.02032168220359868 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.750899960483654 probably:0.09335066619449489 to:0.06781875750829983 thus:0.050490821536840175 :0.037439794276710986 +to:0.6694466447191543 for:0.2866597996129766 by:0.01773733728671381 in:0.017075723146223 :0.009080495234932233 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.6123662562211499 make:0.1287415409118293 not:0.10712252326114452 have:0.08437450903561178 :0.06739517057026446 +a:0.5685319630833733 every:0.22706052248055927 any:0.07640484632208254 the:0.06605397185668867 :0.061948696257296425 +young:0.4951371277102692 old:0.2914719286644638 first:0.07498043016915264 poor:0.0707977973769783 :0.06761271607913594 +protest:0.35873064228010404 vote:0.20366150918412398 judgment:0.17043003586877886 suit:0.15538698177273783 :0.11179083089425537 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +do:0.3492520740524179 see:0.18264301165120758 take:0.17711874217641985 get:0.15829609244678158 :0.13269007967317292 +me:0.5516915745428138 time:0.1695445751043529 going:0.1401852246844848 him:0.0795782466325621 :0.05900037903578632 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +strong:0.5220489381052733 direct:0.1564185238864287 special:0.12166680875416154 powerful:0.1170265600743778 :0.0828391691797586 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.5592994397522594 to:0.16718456031014103 in:0.101165889512026 for:0.08869057053978231 :0.08365953988579117 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.5290170045537385 or:0.412085047237294 the:0.02827623718232935 of:0.016955083727645245 :0.013666627298993055 +and:0.3687055612744499 that:0.2702815799323966 which:0.15137396593738622 as:0.1288231838161274 :0.08081570903963994 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +any:0.3590777752174976 it:0.28699525187804986 is:0.1384277596302258 a:0.11964718495055289 :0.09585202832367387 +of:0.8364741692089713 for:0.06256527478588618 in:0.046372018372237075 attending:0.03233144144411509 :0.022257096188790244 +pressed:0.35484143126430095 cept:0.27702951864097397 tended:0.23359208636573736 posed:0.08795235584656728 :0.04658460788242056 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +now:0.29192405110955233 so:0.23200680917044678 as:0.22659078966487212 but:0.12981433899842051 :0.11966401105670837 +of:0.7267527276366693 in:0.09116759079703453 on:0.07126641748047033 to:0.0643680605248287 :0.046445203560997024 +the:0.8239439746315161 our:0.0959204841257017 tho:0.03818334236566733 his:0.0228085778008858 :0.019143621076228926 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.3924530920131939 in:0.23691799047090553 things:0.18590066747186715 principles:0.12130418656289267 :0.06342406348114077 +be:0.5079015902992625 well:0.30065314224721434 not:0.12738405501524225 deem:0.03618636778727998 :0.027874844651000843 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.7604933914003824 thousand:0.09785621496218828 twenty:0.06363578223340358 fifty:0.04194557097159162 :0.03606904043243406 +would:0.387537633886221 am:0.2341731761889176 was:0.22331396350556826 had:0.1057743819736834 :0.049200844445609716 +home:0.2272952342569261 work:0.2242078405598838 hand:0.18746363659881116 duty:0.18418389046488912 :0.17684939811948994 +is:0.6292553506784105 was:0.29969956606622616 Is:0.04067119713709532 has:0.017516845445560834 :0.012857040672707095 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +new:0.5416860665356086 great:0.2767409245701354 city:0.10936357475227396 special:0.037564195061355304 :0.03464523908062678 +be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 +roll:0.39866725312184115 first:0.36976618711276926 re-:0.09058916540734994 second:0.07412216519604929 :0.06685522916199048 +the:0.4119608153457172 a:0.18780413615511693 can:0.15871343735968094 have:0.13230920252880546 :0.10921240861067945 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be.:0.35532876623939347 not.:0.22737302037482388 do.:0.16846738771964936 say.:0.1593146632786749 :0.08951616238745827 +same:0.48047863796999085 present:0.28227007580815844 first:0.13755936088053886 second:0.056664129213140464 :0.043027796128171356 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +said:0.3965165858739642 the:0.282117234842873 this:0.2655856010780727 Police:0.03505901490469557 :0.020721563300394583 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.3025271400268702 for:0.20870564676831657 of:0.17164197244252122 that:0.16423965037076502 :0.15288559039152697 +he:0.38407841181666 they:0.316528815308182 we:0.1432113321517147 she:0.08537502586953734 :0.07080641485390604 +in:0.40736808816516523 to:0.1931187509344111 with:0.1683757926904172 from:0.13006043894101643 :0.10107692926899 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.4648992926917519 put:0.18622300172743123 assist:0.1250201765404788 him:0.11290369569300782 :0.11095383334733018 +people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 +and:0.26929259325435734 times:0.26672520815993916 faith:0.24370480015933838 city:0.12029644055403396 :0.09998095787233112 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +same:0.4132988023636672 office:0.2272777295652964 people:0.1275153741930064 manner:0.11874815325276082 :0.11315994062526916 +first:0.43511769672865147 next:0.3418329446552917 second:0.08647805394911312 following:0.07468074201971824 :0.06189056264722559 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5627982039966725 a:0.22531995017273757 raw:0.08771384258536692 any:0.06326224003150148 :0.06090576321372168 +a:0.8366790998843219 the:0.1233676200771519 w:0.014353626253866263 one:0.013360381049253895 :0.012239272735406303 +is:0.443141106366431 was:0.2157620677433479 are:0.1282055140392446 in:0.11914448263343212 :0.09374682921754446 +provided:0.4499735022022903 than:0.26228265595269473 interested:0.10701234609008749 be:0.09395898052784225 :0.08677251522708528 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +W.:0.27787937842254623 J.:0.19441448763701744 H.:0.18657179656471753 L.:0.18551260950813767 :0.15562172786758102 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +m:0.7050896775502418 m.:0.15952086786882436 D:0.07727964992256776 M:0.04666806368421906 :0.011441740974147123 +a:0.6858111813455827 no:0.161902849942606 the:0.08622114336396766 one:0.04890987621924693 :0.017154949128596712 +life.:0.35894417819436797 money.:0.25966877388879056 hands.:0.15007798396137545 heart.:0.11591798193668008 :0.11539108201878609 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.42213360144369094 in:0.3428881929816946 as:0.09523733604947877 that:0.09359701888791289 :0.0461438506372227 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +bank,:0.5299827517142411 bank:0.26554172133305504 hotel:0.07349586855943674 Bank:0.06975170125794805 :0.06122795713531914 +people:0.32040168297440197 government:0.2076175258439789 same:0.16874312876381944 city:0.15630119621138694 :0.14693646620641276 +time:0.644990832215232 way:0.17245341340917655 one:0.0742965596040825 reason:0.06479547042386097 :0.043463724347647885 +seem:0.33676462367658705 have:0.22521145443269291 not:0.20734071238879856 go:0.13543340828169684 :0.09524980122022475 +Democratic:0.37031798654874154 Republican:0.36883060159072434 republican:0.13100776078470663 democratic:0.10072192468847045 :0.02912172638735696 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4184448490798628 of:0.187379145633359 officers,:0.16249955079819042 or:0.14092993024636077 :0.09074652424222698 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +has:0.39686502250840694 have:0.25995600193221685 had:0.23259114041801932 having:0.06869537161889294 :0.041892463522463924 +man:0.4552285696113747 lady:0.15930632860262578 gentleman:0.1433571448214688 he:0.13784063490754006 :0.10426732205699074 +an:0.3138163769925881 a:0.2539811300160424 the:0.1764852121871398 not:0.14860588173402448 :0.10711139907020546 +corner:0.4161622498347786 One:0.1544731758405243 All:0.1526148774494868 Smith,:0.15127407203033288 :0.1254756248448775 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.5999309956571209 day:0.1481409514543817 only:0.08838961519033192 morning:0.08310273430412177 :0.08043570339404364 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +they:0.5148898128280488 there:0.2483628990712214 we:0.16275211061956227 you:0.06003634860230726 :0.01395882887886023 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.5990030301559554 was:0.2178764183774884 Is:0.06417375623222307 time:0.06138562354639804 :0.057561171687935266 +have:0.4769921064770261 had:0.19697521840002102 were:0.18258911447135115 are:0.12802729204681687 :0.015416268604784969 +present:0.3020956076969052 new:0.23584945431072468 tariff:0.17304474675376547 same:0.16115658455637555 :0.12785360668222912 +the:0.7076648063526616 of:0.14929801496137843 that:0.07045677663066138 tho:0.0379482566984706 :0.0346321453568279 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.5436525137001919 is:0.1377379068302485 City,:0.11194399259359966 are:0.1060146243022994 :0.10065096257366075 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.34305567258126207 there:0.20086642497337379 I:0.18488202470631518 it:0.15682714799287378 :0.11436872974617515 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3290555693393237 into:0.2954001720574926 about:0.15018739525639482 over:0.11473735846724029 :0.11061950487954864 +of:0.881666477485117 for:0.03980695269651728 in:0.027699751951019844 or:0.02651501111401945 :0.024311806753326438 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +court,:0.23372186531655517 jail:0.2278764835651543 court:0.19249141872246442 seat:0.18286547020372448 :0.1630447621921017 +Of:0.9019404008857276 The:0.06296723639370619 This:0.023013375182816112 His:0.006060767706673494 :0.006018219831076567 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.42681354919686476 came:0.18864042912110748 went:0.1574093888762809 was:0.14180089560892425 :0.08533573719682265 +time.:0.40767872390348586 way.:0.27412216855015337 thing.:0.15578019083165623 day.:0.08329163928769857 :0.07912727742700608 +a:0.30310228987037136 the:0.2839085432200448 some:0.24522278768655686 any:0.13615183978807843 :0.03161453943494848 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him,:0.27380728172181573 be:0.19649795736085857 him:0.19098230879313408 me,:0.17372011034931062 :0.1649923417748811 +the:0.9402890615276965 tho:0.026563758230470132 tbe:0.01708259437514443 this:0.013144530782526967 :0.0029200550841619235 +our:0.29747044900995934 its:0.2441531913829407 the:0.2291187737584312 her:0.13193604357091626 :0.09732154227775237 +a.:0.5077969914898307 p.:0.3344005408869825 p:0.12999985848444223 a:0.014058439869458938 :0.01374416926928561 +first:0.6754047839969607 present:0.2585950067824264 one:0.028633336727764448 single:0.020506506475563707 :0.016860366017284783 +of:0.7310998341155918 that:0.1271067358826697 in:0.08641890578193527 to:0.031414557960761785 :0.023959966259041565 +to:0.3147831299923212 well:0.273513928922061 it:0.23025274682129973 possible:0.10494274539204305 :0.07650744887227492 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +here:0.28829627930305923 ;:0.25022806489289573 in:0.24047526810005193 here,:0.11277123448807125 :0.10822915321592184 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.3068407897604979 was:0.26446371473580094 saw:0.1999439853594232 had:0.12822860893463942 :0.1005229012096385 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Jones:0.24953667302288432 Smith:0.24732693264218705 Miller:0.19029675626787423 Davis:0.16072051777026397 :0.15211912029679056 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6537348452282937 a:0.2587889725502582 this:0.03357892738470374 tho:0.02949795757317757 :0.024399297263566763 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7862900727472745 an:0.11398330790267347 his:0.041956622187029106 tho:0.03847858621915464 :0.019291410943868242 +and:0.3696134424952974 I:0.23605229411059805 he:0.21730306175911182 who:0.08966923176385756 :0.08736196987113508 +I:0.2989971569942677 they:0.2780721664210977 we:0.21802782310267188 to:0.14075848993019277 :0.06414436355176989 +fine:0.5606210150817574 voting:0.16519262225296485 light:0.12330512461405736 tain:0.10177290146928887 :0.04910833658193151 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.4152709987592493 it:0.2863906317979847 I:0.13183227245318366 she:0.10552800124843749 :0.060978095741144885 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +than:0.8054320866365849 or:0.08039181062803666 of:0.054726516836642446 for:0.030656098502400204 :0.028793487396335755 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +state:0.42124708148811185 State:0.4022676853619187 one:0.07142438988228078 and:0.05645727286892728 :0.048603570398761384 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him:0.35142131588718967 them:0.18404364103472884 it:0.17148496497600157 over:0.16665244214717553 :0.1263976359549044 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.569364483877002 was:0.17874646007525502 are:0.13127685720556198 Is:0.06821883032997914 :0.05239336851220174 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.487785919573225 by:0.16821450564722829 upon:0.14733612702772975 among:0.11132591436655598 :0.08533753338526082 +large:0.3447095553383672 good:0.30035499424799844 liberal:0.13411419835551186 full:0.11201320959836303 :0.10880804245975957 +re-:0.4604403476667843 re­:0.25930232224170974 re¬:0.10564592732525992 time:0.08856903920792261 :0.08604236355832351 +person:0.538320506439836 one:0.16220778341904202 man:0.16148557131781685 day,:0.08457286869347748 :0.053413270129827585 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.3075346206441583 man:0.19362987365373235 latter:0.17843613941196482 time:0.1619119895678424 :0.15848737672230215 +and:0.44836467433735794 just:0.30632158749915034 the:0.08297374188111224 all:0.08213005154480832 :0.08020994473757112 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +shall:0.399912839196563 to:0.36566926867582317 will:0.10134241355994951 can:0.08055341036826968 :0.052522068199394666 +bers:0.3425001670554699 bodies:0.25730463158341355 bark:0.13603876558555122 body:0.13557993288403333 :0.128576502891532 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6191304262757191 a:0.3195782987962172 his:0.026273053244490096 their:0.018877969208747233 :0.01614025247482617 +was:0.3693919004306505 had:0.25308047081607604 has:0.13938747673939902 would:0.12000784741990796 :0.1181323045939664 +an:0.36094160682519494 pending:0.26252719401623525 -:0.2084248576894281 j:0.09290675906892601 :0.0751995824002157 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.8112429709109126 that:0.06091700301609688 some:0.05894139491717141 the:0.03979566415081201 :0.029102967005006995 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +set:0.7173518715073695 facts:0.1385954082159889 and:0.07237676478603564 one.:0.03764892528612383 :0.03402703020448217 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +whole:0.47360280716820125 color:0.17563748236870047 new:0.14445537763209837 general:0.13693047398067545 :0.06937385885032449 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.822897615351007 procure:0.04900319537513554 live:0.04673828671172486 sell:0.04420307533661173 :0.03715782722552085 +up:0.32855145100776517 down:0.25956268797640375 them:0.16438588608557175 out:0.1586999464159495 :0.08880002851430976 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +I:0.3731753744951924 He:0.27082406760047617 We:0.18769455452636458 They:0.11023437551805652 :0.0580716278599105 +of:0.4562491375794132 township:0.16160328970590362 and:0.15874146985652052 other:0.14417686064280338 :0.07922924221535937 +the:0.9171618790124816 tho:0.030719401641354005 a:0.029256864924255128 tbe:0.015084750481317489 :0.007777103940591705 +the:0.7256959462673532 his:0.1230417314761488 their:0.07485312060755354 her:0.039747671664153196 :0.036661529984791184 +the:0.9152473167056397 tho:0.03529795730549005 a:0.024008160623718137 tbe:0.015141666405817742 :0.010304898959334488 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.3607600365235615 would:0.2397506929100848 may:0.1954534490063931 should:0.10820782251068554 :0.09582799904927516 +and:0.6424064997342154 but:0.125401637825081 so:0.11670972431989995 is:0.05960814936084277 :0.05587398875996092 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.6904668853314265 the:0.14012581186672643 most:0.08754162450668602 very:0.047108910558215485 :0.03475676773694552 +year:0.22236284663100492 man:0.2216963917815124 certified:0.20105767903898927 fixed:0.18762249760489025 :0.1672605849436031 +more:0.4786609092198665 less:0.26259951128501163 better:0.12904777556824193 larger:0.0764387762085685 :0.053253027718311384 +of:0.5628974834881455 in:0.1384875672220178 to:0.13192243499892023 and:0.09694407588977952 :0.06974843840113695 +in:0.2951945132924931 are:0.2685870966940785 of:0.18589759292913025 and:0.16909023266930162 :0.08123056441499647 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.2844609484949513 city:0.19896139887196546 day:0.18314003208191001 amount:0.16704582819028854 :0.16639179236088472 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6980713566917636 his:0.12826418776071136 this:0.07438237663845206 a:0.05414269362649323 :0.04513938528257972 +sale:0.35522573083478864 men:0.17376865390459875 liberty:0.1674417122797457 them:0.15217582762416984 :0.1513880753566971 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.41518862660024775 and:0.22932656058597298 he:0.18533288880995427 it:0.08900988328125055 :0.08114204072257437 +the:0.6758481519292461 West:0.23568219407905625 tho:0.032010430744446094 a:0.02958281823978798 :0.026876405007463713 +up:0.3611312924416059 place:0.2845223586311958 place,:0.18577445634504433 him:0.11968229851289819 :0.048889594069255894 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.5287209234938688 it:0.23249066386245054 she:0.10685321342238234 there:0.08365310080307628 :0.04828209841822201 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.27042750728122394 in:0.2138085083816815 of:0.20009108990244448 at:0.1686313185443771 :0.1470415758902731 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.3178759751755856 them.:0.2392308177037045 sale.:0.21537010795225692 life.:0.12698993345535597 :0.10053316571309702 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Republican:0.2949993201642995 front:0.2843347828370097 Democratic:0.22808797858911833 republican:0.11297298062457983 :0.07960493778499264 +various:0.5258532348404027 other:0.21323182125493048 worst:0.16315113468727907 different:0.05229368049708348 :0.045470128720304176 +made:0.2953436452185395 found:0.20477720760346002 but:0.19752370900401406 seen:0.1694502632380247 :0.13290517493596166 +ported:0.8091014660495516 turn:0.06186414493161803 -:0.061678329325224886 public.:0.03695898235446755 :0.030397077339137917 +be:0.4669814762001833 the:0.32267125673145874 b:0.09168745613250397 go:0.06222509774681977 :0.05643471318903428 +that:0.5267254593664162 but:0.19526318729883035 as:0.10811129297782436 whether:0.08856609020833901 :0.08133397014858999 +the:0.5979448499083612 a:0.18746267630468186 any:0.11295338671420294 this:0.053164360433463766 :0.04847472663929014 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.40183964905000685 no:0.24540934266469946 not:0.17005835453516774 much:0.10644500128299958 :0.07624765246712628 +seat:0.3041582687220176 court:0.23187363399809027 and:0.20187433916071224 clerk:0.15382549371913226 :0.10826826440004764 +would:0.5454767398070173 could:0.15441668413587795 might:0.11745439392378189 will:0.09715594013071575 :0.08549624200260714 +of:0.4394744139893164 here.:0.1914673526795274 in:0.13610591724805438 market.:0.1296985208940613 :0.10325379518904049 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +mand:0.44270878126555 crease:0.17229171635486462 scribed:0.1546895217617128 signed:0.13187505332042324 :0.0984349272974493 +the:0.7074267598055957 a:0.12716292263385093 his:0.06259600046214973 this:0.06025087836832997 :0.04256343873007387 +very:0.39636811867347416 so:0.23813324699360738 not:0.16346921099188855 exceedingly:0.10478734771837564 :0.09724207562265434 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +children:0.3220507969029579 ones:0.2540705261680616 girls:0.17718787385144705 boys:0.14618692285955345 :0.10050388021798004 +not:0.3221154864755227 situated:0.23391352690244643 now:0.18971640892441632 located:0.15051907292151603 :0.10373550477609858 +figures:0.6068071164553871 facts:0.20556505389809737 records:0.07374001136888285 and:0.059146831972704976 :0.05474098630492769 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +at:0.7109855377209183 when:0.1567302260545456 that:0.0708122773369099 where:0.03616632108301759 :0.02530563780460848 +in:0.2800944683377412 to:0.27706855470998304 for:0.18617168547164809 on:0.1442909634369626 :0.11237432804366498 +of:0.37800032598960676 to:0.33647041808407047 into:0.1312869308177955 on:0.0857687263007827 :0.06847359880774458 +the:0.8847783025960911 tho:0.04543564526036151 not:0.028432493239755406 his:0.025036104907075075 :0.01631745399671684 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.868595654861289 a:0.05437870019000001 his:0.02909691585359813 tho:0.02789673816560917 :0.02003199092950368 +he:0.3096984838008487 it:0.271398482801287 and:0.18884574531306558 I:0.1325503312492551 :0.09750695683554364 +him.:0.3168207361725723 them.:0.30264464863618906 it.:0.16438967706764335 us.:0.16235117607660504 :0.05379376204699035 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7976230382774767 a:0.1228825776796683 tho:0.03193189739723689 his:0.02911836106843402 :0.01844412557718414 +is:0.6671518838539491 Is:0.2177150898444027 was:0.08563909573145084 la:0.015820428474911753 :0.013673502095285698 +a:0.3767906108703856 the:0.2877362222619325 said:0.23297182253915824 each:0.05545642457468647 :0.04704491975383725 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5364551962818305 this:0.2219260219752172 some:0.1021431656932798 any:0.07328125221886454 :0.0661943638308079 +they:0.5857784158821724 we:0.25967207468763576 you:0.07743542793420705 there:0.06708278602459707 :0.01003129547138763 +mortgage:0.2688092171642949 described:0.21966934619300804 that:0.1879952254539108 sale,:0.16376033193403416 :0.1597658792547521 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.3499850782665 in:0.3171775928872306 and:0.13079910354100516 to:0.12672562801327128 :0.07531259729199291 +carry:0.34219199989907045 get:0.24758956182419325 go:0.20592285480345687 find:0.11220601581206473 :0.09208956766121472 +In:0.39792751148341227 At:0.21223324224205523 On:0.18375498033764553 When:0.11618925746185228 :0.08989500847503466 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4384362938482187 in:0.35262819684648006 In:0.10058783006846425 story:0.07292392200320025 :0.03542375723363678 +wife:0.2973359242653394 father:0.20457011783865026 name:0.17523120183549598 life:0.17460968528322512 :0.1482530707772894 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +able:0.40678286427927557 allowed:0.16837189371372713 made:0.16004441386181978 used:0.13387521084376586 :0.13092561730141164 +country.:0.26803284903240115 world.:0.2291145910069688 city.:0.21879424978954234 people.:0.15398937800370113 :0.13006893216738652 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ques-:0.405250864393749 elec-:0.21998708668975997 sec-:0.21378165834153567 na-:0.09652804049922353 :0.06445235007573161 +more:0.5390239629089191 rather:0.353217772439362 less:0.06883003492658667 better:0.02602895071127579 :0.012899279013856521 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +large:0.2434858258935918 same:0.23765150894954362 whole:0.21747504833012526 greatest:0.15422611946003853 :0.14716149736670087 +of:0.4309435915550185 in:0.19161342056659467 is:0.14499609326384777 to:0.13477890024971417 :0.0976679943648249 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +said:0.32466400547723895 School:0.238666145729258 Judicial:0.16595800028045568 Southern:0.15385664615022707 :0.11685520236282022 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8913150715532998 or:0.03411979695809589 on:0.025440805757229356 and:0.024646043695616474 :0.024478282035758532 +minutes:0.35470826718389825 degrees:0.2745438641587711 min.:0.17507003198994642 feet:0.10333811216886318 :0.09233972449852099 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +less,:0.2916823577692669 not,:0.25773584845958303 more,:0.18689038684292697 anything:0.1600772122716349 :0.10361419465658822 +of:0.6691933661794512 to:0.12813031021384316 in:0.09306084882584602 that:0.07142326735377702 :0.03819220742708251 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Point:0.39898286988339837 man:0.27044495843952365 and:0.13181052280297417 Bill:0.10274881735715186 :0.09601283151695189 +of:0.5499170249821463 and:0.15037722041004378 with:0.11901316992337747 in:0.11142224619466962 :0.0692703384897629 +House:0.4754792922583434 House,:0.3920027592929039 House.:0.0675933229154743 held:0.03605437805124451 :0.028870247482033744 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5717636096971369 to:0.2637310449690589 up:0.06368626772524802 at:0.053490449347699774 :0.047328628260856424 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +way.:0.42503882891517686 side.:0.19947537778729288 day.:0.16138427099550928 people.:0.11268828094326995 :0.10141324135875095 +people:0.23768346797960274 country.:0.21189045855555677 world.:0.20868222926294183 place:0.1764674516351094 :0.16527639256678928 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.786186433437887 in:0.0715285628883407 whether:0.04883710493637502 that:0.0486956900518984 :0.04475220868549906 +called:0.39270521725650426 made:0.21916132739266228 placed:0.20438667767239457 forced:0.09277459002618173 :0.09097218765225708 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6166595522536467 its:0.12818096854685532 our:0.09752378066168645 your:0.0808783507040727 :0.07675734783373876 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +gone:0.2678064334918426 come:0.2357847201966092 taken:0.17691664099966734 fallen:0.1615280729188828 :0.15796413239299814 +we:0.27817458395988726 it:0.23843135311103214 they:0.17628988662815606 he:0.16843337633776273 :0.13867079996316178 +if:0.29219855894740815 in:0.228207033562893 whenever:0.16762140902926023 is:0.16514482141299203 :0.14682817704744655 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.30582825305453076 have:0.2772149223747322 had:0.17151356423719336 am:0.15793654305734844 :0.0875067172761953 +and:0.4993036466351207 of:0.38927743760842803 in:0.05385685036633161 to:0.02936611220846231 :0.02819595318165733 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.4718263101872752 the:0.18140942502142113 it:0.13676285476848873 you:0.11370269104068478 :0.09629871898213012 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Central:0.44399615926140124 Department:0.35123566889019847 Council:0.09018376649110091 Oil:0.08530120588489482 :0.029283199472404528 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.6701330389164601 it:0.1500044528455433 she:0.10445978740422185 ho:0.048060416199935604 :0.027342304633839087 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3375272930060441 east:0.23005223776308092 west:0.22048465356960895 northeast:0.145608406166719 :0.0663274094945472 +hand:0.2566870729771534 earth:0.19681471262449893 Main:0.1906089617202598 board:0.18391052290532056 :0.1719787297727674 +no:0.2934673289271832 its:0.26520993664275466 the:0.1705489835328194 their:0.15493088655211903 :0.11584286434512375 +him:0.4135779835659834 them:0.21169817760075738 again:0.14334509572483786 and:0.12690061409950026 :0.10447812900892103 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3096132289225458 shall:0.24832970774488586 will:0.1769688172929696 that:0.13329292698525502 :0.13179531905434383 +of:0.2586090959257587 than:0.23844050751419107 any:0.2234178974108351 and:0.15193475792456668 :0.12759774122464831 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.5894856402626475 had:0.12978710153300113 Smith:0.10162269297995999 was:0.09167222408405307 :0.08743234114033822 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.46351961923673923 that:0.1950437620183713 when:0.16439815346041567 as:0.11159839558978675 :0.06544006969468694 +that:0.6740520574178749 to:0.16141569301389758 by:0.06362448833159957 county.:0.05446407794386133 :0.046443683292766484 +able:0.49557616965793255 forced:0.17953351268856563 courage:0.15324720768588707 try:0.0873035783378639 :0.0843395316297509 +was:0.6596699926174143 had:0.11151641401657968 has:0.10937659780526446 is:0.08037560492961734 :0.03906139063112413 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.29986683679102905 a:0.2433767308685789 the:0.22003635748624545 some:0.1266821457075817 :0.11003792914656495 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +young:0.6066319456751718 happy:0.17109633363012397 old:0.10833024915148788 past:0.06465174975688312 :0.04928972178633313 +not:0.6326536769872628 probably:0.18451370932775793 soon:0.08195490950471516 never:0.05697079485280065 :0.043906909327463495 +ago,:0.4230219727023989 ago:0.28012778774408015 old,:0.20507459911029957 past,:0.05051941439515471 :0.041256226048066696 +office:0.30633772009681415 part:0.1968056389290929 member:0.19303929875600387 line:0.15602563189328295 :0.14779171032480617 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +real:0.8501836218248544 said:0.12142189936108247 entire:0.010338086569760159 whole:0.009714613264066202 :0.008341778980236818 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.5281845338372311 and:0.20781672938800405 are:0.09932271784456066 be:0.08848185869917485 :0.07619416023102943 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +me:0.3644328405454947 him:0.3311687267900046 us:0.11974563184708452 notice:0.10479098101451284 :0.07986181980290338 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.4069383414673033 was:0.1922473537921826 will:0.18949083908937173 has:0.10617020523313478 :0.10515326041800759 +well:0.606008536601065 few:0.1428041255654125 little:0.11772481455423002 best:0.08694431290255049 :0.04651821037674205 +it:0.3794283455553316 far:0.21220655206108227 well:0.1950546986870786 set:0.10743467070819318 :0.10587573298831447 +the:0.8709098264946726 tho:0.039804348235153324 his:0.03635516526745109 said:0.02838350999370896 :0.024547150009014054 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.46773484397634235 coun-:0.21896358831993648 will:0.1383425497273329 then:0.09416236487628202 :0.08079665310010632 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.4105412702097181 to:0.2252969235117525 that:0.16406328491857608 by:0.10832756243111381 :0.09177095892883953 +went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.34909311073949156 all:0.18004324113867423 sale:0.17415866967489554 those:0.15068587496883507 :0.14601910347810348 +life:0.2639426300178261 name:0.25239093844708693 wife:0.21753073453778635 work:0.13420485644463254 :0.13193084055266824 +be:0.886932390879986 have:0.047754181716362434 bo:0.03711295577386795 not:0.016955379540452946 :0.011245092089330807 +the:0.43193248394730827 that:0.21277413638425668 no:0.14805792519804425 a:0.1456462693893802 :0.06158918508101047 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +men:0.3061694475073808 Bank:0.2576632202423662 army:0.20511591362830944 party:0.12123129030594376 :0.10982012831599976 +principles:0.3107477314997632 parts:0.2801038751403944 days:0.16124232376464345 members:0.13639968563470106 :0.11150638396049777 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +mar-:0.41842942612939993 thing:0.193872244567952 ¬:0.14961690917038412 fee:0.12466573997613334 :0.1134156801561307 +would:0.23149089878320653 shall:0.22982898694935758 may:0.21074839557301475 to:0.18832860003272583 :0.13960311866169542 +deeply:0.31907734886007943 much:0.27641193338899533 he:0.17465344735276644 re-:0.12120374262498068 :0.1086535277731781 +in:0.26637273380932064 by:0.20051727514903264 if:0.17963416269367316 at:0.17731810622096542 :0.1761577221270082 +of:0.9370363214591065 ot:0.02138266814209277 in:0.02009486631254055 ol:0.0121797001116051 :0.00930644397465502 +the:0.5469470607282613 this:0.15291095361012622 any:0.13287716350475326 present:0.09001949409318984 :0.07724532806366959 +the:0.5898238091538647 his:0.17812608524570336 her:0.08187508631084864 their:0.0752995679944066 :0.07487545129517674 +the:0.8164159369983375 an:0.1378367964262802 tho:0.027817446243588832 tbe:0.012019884095615534 :0.005909936236177752 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.41126722953731665 there:0.1963555184632774 he:0.1940899695228259 and:0.11170463808053797 :0.08658264439604213 +among:0.2798666267228233 told:0.24145512073930536 to:0.18580101505143656 of:0.15700092041549282 :0.135876317070942 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.38932113891132664 and:0.3426572847678081 between:0.11764412524841895 are:0.0823552689853334 :0.06802218208711298 +upon:0.310308256914436 by:0.27255837623731305 to:0.24074883361916266 for:0.1234543493230703 :0.05293018390601806 +were:0.39882274857856687 having:0.22535703376423682 have:0.21738940706277154 are:0.08533571773952212 :0.07309509285490262 +near:0.3153394353828562 much:0.3101849664604432 far:0.17825434566690151 in:0.10544410550260491 :0.09077714698719404 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 +the:0.5827984201199012 a:0.3167425172245791 this:0.05031336906957065 tho:0.027424773909992917 :0.022720919675956148 +visited:0.25709206399336143 to:0.23428160438614937 with:0.19119116470868444 he,:0.18823512733385264 :0.12920003957795212 +up:0.29718027079749554 them:0.25388858492262234 it:0.2118556690085857 him:0.1716648417884689 :0.06541063348282762 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +this,:0.8645770078244913 persons,:0.043304047235688724 have,:0.0365023166772704 right,:0.027853199981043707 :0.02776342828150585 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.4713734231703206 hardly:0.21750833678596143 well:0.14199246981549224 easily:0.08920285983354723 :0.07992291039467843 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5441107528461251 a:0.18290512179436 the:0.16183510715344318 and:0.07228555379944827 :0.038863464406623596 +in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.42834192874156163 are:0.2237263138296264 were:0.17150178010661848 of:0.09492519815402324 :0.08150477916817017 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.41187291449833774 the:0.33214560115621505 to:0.15125755303695 threatened:0.056417848187860546 :0.048306083120636716 +him,:0.27380728172181573 be:0.19649795736085857 him:0.19098230879313408 me,:0.17372011034931062 :0.1649923417748811 +work:0.3073701911362385 and:0.24694485733928664 institutions:0.24393813037742398 interests:0.1422545108154432 :0.05949231033160765 +are:0.4165105793038792 were:0.2611270063156417 do:0.1726740084869574 have:0.08739021045940396 :0.06229819543411789 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.3764283682384076 these:0.27501419042506775 them:0.15117436227444098 men:0.12068109191433858 :0.07670198714774516 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +their:0.5366580864895562 the:0.40141567518780874 our:0.026608540840773937 said:0.020817951661705764 :0.014499745820155226 +been:0.8675929111674118 stood:0.04480703452951998 always:0.04163534061069716 not:0.0295556842477326 :0.016409029444638408 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +spite:0.25937599619441193 favor:0.24856633178795834 view:0.18836076534936974 one:0.15714766874062056 :0.14654923792763935 +is:0.6025280331867188 was:0.18878138663812166 Is:0.1201681496904671 may:0.05589566033418999 :0.03262677015050252 +is:0.28745874121040554 could:0.2122240621702804 would:0.16962200794249177 will:0.16904759026558278 :0.1616475984112394 +the:0.8485923807397914 an:0.06933403223389709 tho:0.040541388219985736 his:0.024879664682623433 :0.016652534123702437 +of:0.35813181851676923 such:0.32025904881549544 that:0.1270660245731757 over:0.0989769988653793 :0.09556610922918027 +;:0.50616205438852 in:0.26047657654901807 made:0.09815758024028146 to:0.06940513034730715 :0.06579865847487311 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +less:0.4944685262962415 more:0.2170833548020447 er:0.13199197909354773 r:0.08330915364095183 :0.07314698616721431 +the:0.577559063671812 his:0.19195844387620192 a:0.1761252833542547 my:0.03238148045218752 :0.021975728645543948 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +cent.:0.4400730280284874 day.:0.18377327256160603 acre.:0.17641418015348723 month.:0.12184259674672886 :0.07789692250969052 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +thereto:0.35955913892774344 instead:0.26034528128892037 south:0.14215438800819635 one:0.1309527452147516 :0.10698844656038818 +and:0.26315414278704313 building:0.22390946164685324 trial:0.18206120243046495 home:0.17761600338955622 :0.15325918974608255 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +who:0.9775018169111734 de-:0.006906064684853337 persons:0.006671994421366485 having:0.0045165357797058246 :0.004403588202901102 +in:0.4804537405194439 for:0.15498031876015395 made:0.13501508914336718 on:0.12635785516331022 :0.10319299641372491 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.43109120763091724 was:0.25051002905983183 is:0.11995397281704705 comes:0.1030931429335302 :0.09535164755867383 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.6558493266411921 but:0.1424022205763678 that:0.11460909340248174 and,:0.06795968200123852 :0.019179677378719825 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.35591390801031375 Deeds:0.23898128743073002 land:0.16427108330298018 interest:0.12632544005277482 :0.11450828120320115 +them:0.4179819757446783 sale:0.2371048635855559 said:0.14151019495314104 that:0.10759785025224289 :0.09580511546438182 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.4179819757446783 sale:0.2371048635855559 said:0.14151019495314104 that:0.10759785025224289 :0.09580511546438182 +a:0.6450276661369805 the:0.28129154336451 some:0.028398226861310376 his:0.022812597213852526 :0.022469966423346525 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.45953108506847035 carrying:0.222222866877548 getting:0.1233632437659661 her:0.09748001390928855 :0.09740279037872698 +the:0.7650804716053691 a:0.09190928546100079 this:0.05452841097139893 state:0.05186506016290206 :0.03661677179932916 +and:0.43047599295048194 but:0.2897680057622762 thence:0.12219811043833881 it:0.10812318352764069 :0.04943470732126247 +and:0.4235125991417933 was:0.17785873313809583 went:0.14514917772919655 is:0.1430907558723351 :0.11038873411857934 +way:0.4248088415886431 power:0.2097541557980693 devotion:0.1432368156608365 relation:0.11329618134356556 :0.10890400560888543 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.6085008677921365 but:0.16156494636311086 or:0.08979546304646785 it:0.07240219022343465 :0.06773653257485 +this:0.37445636198684934 its:0.22429089863487017 the:0.1459023940827611 their:0.13078427500127207 :0.12456607029424722 +be:0.7618800138621875 have:0.16535829415667644 bo:0.05622620107066147 hereafter:0.01222510539809209 :0.004310385512382606 +is:0.5298044326650824 are:0.23922864998389992 was:0.11132430040544919 Is:0.061619819175389064 :0.058022797770179525 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6020987603797833 existing:0.12498097373535713 its:0.1020758599324009 other:0.08936610208197793 :0.0814783038704807 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +morning:0.3362331849729064 country:0.2153909295960501 afternoon:0.17409165191286985 city:0.15861053005288173 :0.1156737034652919 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +matter:0.3435242673147506 shadow:0.3090857872457205 purpose:0.15094348824430703 question:0.10107902332005947 :0.09536743387516239 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +part:0.31028899527683895 portion:0.20218365376756128 one:0.1889578423695801 day:0.17618667258820278 :0.12238283599781698 +the:0.5513736338565813 par:0.15760816881939452 The:0.15435457940543662 in:0.06997794076246694 :0.06668567715612063 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.724322720265166 this:0.1523097366905969 a:0.08437129549991695 every:0.019721671659859448 :0.019274575884460746 +of:0.7608798684649742 in:0.07133885232717116 to:0.06277278877376864 and:0.060655483155753136 :0.044353007278332926 +made:0.23938138541240508 held:0.23031708610711968 found:0.20705012666367806 used:0.17758149660284384 :0.1456699052139533 +on:0.5611628486677717 in:0.22393657793805935 upon:0.10243470237182797 of:0.057904466007181285 :0.054561405015159735 +of:0.6093198697730888 for:0.3306817006084994 in:0.023824754648917364 was:0.0182507289239203 :0.017922946045573995 +tended:0.3294706923844169 cept:0.24504728050498703 tent:0.21170540942025162 pressed:0.1104971766704814 :0.10327944101986301 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +I:0.394103963614548 we:0.32079199124999724 it:0.12614015330147837 they:0.08720740324195869 :0.07175648859201761 +as:0.2758355335620881 not:0.2661533481899142 being:0.180787107723217 clearly:0.13875793633679612 :0.13846607418798457 +be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 +a:0.6294729700128158 very:0.14740128212442183 own:0.08671428008459355 in:0.07266179875088821 :0.06374966902728077 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.47871884183727115 this:0.24530163550204057 his:0.11889513408659966 their:0.08928565649312561 :0.06779873208096289 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.355973280017357 a:0.21748000465857123 recent:0.19748975914776665 his:0.18222351278761578 :0.04683344338868925 +a:0.4681988313265661 the:0.3810067249302071 all:0.057396692148168345 that:0.0482862364486941 :0.04511151514636438 +good:0.3446126638962584 single:0.2719635886128749 right:0.18088264942136076 quick:0.10459854490425687 :0.09794255316524901 +in:0.26637273380932064 by:0.20051727514903264 if:0.17963416269367316 at:0.17731810622096542 :0.1761577221270082 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +hundred:0.2502767045823328 large:0.21688536435617353 man:0.20733062651268858 good:0.18723035529853752 :0.13827694925026754 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him,:0.2880239519030564 them,:0.19793263682460835 interest:0.1766953373878456 him:0.1756541515384352 :0.16169392234605437 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +get:0.3969082051275087 make:0.18458410180994042 have:0.15343490909582813 find:0.1350781403167928 :0.1299946436499298 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +put:0.2595306196083462 placed:0.19096377299855247 bounded:0.18549797734665052 carried:0.1841342007496199 :0.1798734292968309 +The:0.5865503592479635 the:0.1965665649336647 Smith,:0.08332092903986833 and:0.07493983478674289 :0.058622311991760497 +to:0.34056599918913094 matter,:0.24776471737599487 more:0.14347163650655814 whether:0.141351501232356 :0.1268461456959601 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +once:0.6148788979775339 was:0.15440695180645778 twice:0.0841233069699453 be:0.07956358123442055 :0.0670272620116424 +in:0.265783303656089 from:0.23038050703809965 on:0.1696077520298465 to:0.16809244590815575 :0.1661359913678091 +re-:0.24517750551827977 re:0.220732172254855 con-:0.20132581538022346 con:0.1881747766244556 :0.14458973022218624 +ten:0.33278532338352135 fifty:0.212948043543752 five:0.18023747143984611 forty:0.14722222953998335 :0.12680693209289717 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +con:0.42244983777808953 position,:0.21786871769796626 j:0.13492003856300824 !:0.13327417312465298 :0.09148723283628307 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.36069868999182664 in:0.203483528135048 at:0.17825088054698895 and:0.13740411824000762 :0.12016278308612884 +long:0.38337830678612894 well:0.2169569119218413 large:0.1744648695656167 good:0.14565992151957216 :0.07953999020684091 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.46585168067352223 there:0.2755428430070541 It:0.10304821354962643 he:0.08568412880616033 :0.06987313396363697 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8295833319905672 our:0.07494543816510979 tho:0.03750800642452875 their:0.03184707316969808 :0.026116150250096115 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7301867122412211 for:0.11910432726367698 from:0.05863174243856943 out:0.048667560692503276 :0.04340965736402924 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +able:0.4081416956615866 made:0.22572806479799212 unable:0.14330007169873005 compelled:0.1131605658418616 :0.10966960199982966 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.6013447385007744 there:0.17666220390221052 we:0.13209054151831628 you:0.08129847134525511 :0.00860404473344367 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.4165105793038792 were:0.2611270063156417 do:0.1726740084869574 have:0.08739021045940396 :0.06229819543411789 +been:0.9234409982798012 not:0.043035379696267854 scarcely:0.011998623643086136 better:0.011216907184523426 :0.010308091196321287 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +almost:0.44782850852384204 which:0.15698679060258625 case:0.1553399863391237 doing:0.1372082271083482 :0.1026364874260997 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +once:0.6690201790489289 which:0.17567915190355118 greatly:0.06370842859220807 all:0.04724025606354942 :0.04435198439176248 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +manner:0.4184038112747542 a:0.1937411700858646 sale,:0.14913431282157041 cases,:0.1321731291179284 :0.10654757669988238 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +believe:0.35006072858151865 think:0.2272883310590541 know:0.20589410836029934 say:0.11778857650325211 :0.09896825549587589 +bonds:0.39275356865297745 corporation:0.259578773507715 he:0.11917932775837302 election:0.11477309631504193 :0.11371523376589258 +the:0.5524405403731458 their:0.15715481147958107 more:0.09985125531445366 his:0.09925683700275137 :0.09129655583006827 +after:0.4024143181702699 one:0.19994335920620868 1st:0.18217184047368296 a:0.10822488596374612 :0.10724559618609236 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.7671035104162773 Brown,:0.13299409436654788 Miller,:0.05328653416053697 of:0.025694524347785505 :0.020921336708852274 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.44159550563305755 would:0.2659959104976168 can:0.12336500242766273 could:0.09283603069389666 :0.07620755074776629 +the:0.8933094049150311 tho:0.04386694136463119 its:0.03344966798274337 tbe:0.015180726287918157 :0.01419325944967633 +this:0.5130989105026615 the:0.31850655501934416 his:0.07571510516982802 its:0.06647576976497307 :0.026203659543193217 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8947710948116536 tho:0.04293713718516073 a:0.02489139147961979 tbe:0.019229614697412013 :0.018170761826153778 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.541487529339834 the:0.31800885483329405 his:0.06087377885475748 so:0.05063171726277787 :0.02899811970933663 +in:0.317804166534933 of:0.2058573712886621 that:0.18449583390257895 but:0.16464637990512695 :0.1271962483686991 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.517692506817228 their:0.16181198175170172 his:0.12204205772306856 a:0.1014198604756428 :0.09703359323235883 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +when:0.551574350055641 to:0.18944357901768333 before:0.12767201914817536 and:0.07889851410124711 :0.05241153767725317 +by:0.2778172116136986 in:0.21596400103612678 at:0.18722922454260196 that:0.16212055911437298 :0.15686900369319967 +the:0.3228259734952524 th:0.28727735333057625 tl:0.1819663244303162 t:0.1294230078210604 :0.07850734092279485 +say:0.3204912966662207 be:0.19140953800199428 know:0.18464243896282215 remember:0.16483214234261148 :0.1386245840263515 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.527112588172096 can:0.18530768856680843 the:0.11195725711327238 were:0.09889042760684785 :0.07673203854097549 +then:0.42023485448291087 he:0.20098785408042144 re-:0.18063535649354906 I:0.11289229652996545 :0.08524963841315315 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.6761194614689269 or:0.11507788519397685 in:0.10109728866918241 party,:0.06393492526337144 :0.04377043940454239 +the:0.9326428407036597 tho:0.043786587626083145 tbe:0.015033337724739516 these:0.0045858493488774585 :0.003951384596640375 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5934207147971375 West:0.34124718459063197 tho:0.027677055726699942 a:0.02041166283185165 :0.017243382053678754 +for:0.5214797228934829 in:0.19563393200090304 against:0.12643930354369223 by:0.1196479307583831 :0.03679911080353859 +the:0.664183597492425 a:0.18130711704640617 any:0.08459932061141054 tho:0.03684595636806215 :0.03306400848169638 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +a:0.47116851043316554 the:0.19095429288860213 each:0.18970365566954164 this:0.10130845712449062 :0.04686508388420021 +of:0.445595303123461 and:0.1781859395754557 for:0.1507102316802917 without:0.12271726038893667 :0.10279126523185486 +filled:0.24244494535671712 covered:0.23589689849022813 connected:0.20001231129998537 familiar:0.18040280991221141 :0.14124303494085802 +to:0.6497715303636693 of:0.18573170415634707 in:0.06345800814876844 lo:0.051129465727787766 :0.04990929160342738 +to:0.3569959688871489 of:0.25323996519878517 know:0.16215845325548237 hands,:0.1164865332557308 :0.11111907940285279 +north:0.35414378425469484 south:0.35230048356462457 west:0.12380417378626778 N.:0.0891903905261265 :0.08056116786828642 +10:0.35729799434226184 6:0.23005225977359245 5:0.17645014932498146 7:0.12259394660005912 :0.11360564995910516 +against:0.2811718439957967 to:0.23544012031979486 in:0.176368526315404 at:0.1671708008637212 :0.13984870850528333 +to:0.7437612520454873 the:0.13543704378969273 and:0.07235487723925242 his:0.029591386047143866 :0.018855440878423665 +same:0.47485405520850643 legal:0.17112927310779247 water:0.1366016996077962 constitutional:0.11864764545613087 :0.09876732661977397 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.24357252763844509 it:0.20249684527511203 I:0.1902169528619586 and:0.18458870696435795 :0.1791249672601263 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.39166784590974657 a:0.1819473043279691 and:0.16710573146626082 he:0.14743906665112472 :0.11184005164489885 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +,:0.2672131915614693 .:0.22586399453403355 Smith:0.202002120992399 Mr.:0.18897153468569877 :0.11594915822639934 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 +of:0.6271532326261835 by:0.1378025507469002 along:0.1052644706583674 on:0.07129890290143791 :0.05848084306711083 +board:0.31127323081597674 officers:0.2095878882092363 treasurer:0.17273095372435407 department:0.15484049567684025 :0.15156743157359262 +the:0.5727792780054209 a:0.22754865949910358 of:0.07385450178017233 high:0.06475185396602806 :0.061065706749275125 +which:0.3764283682384076 these:0.27501419042506775 them:0.15117436227444098 men:0.12068109191433858 :0.07670198714774516 +in:0.293190618317258 of:0.2695606941137432 during:0.16458064155211014 and:0.13648498102343815 :0.1361830649934505 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.3688422722993829 matter:0.2107952241818109 means:0.18592441083285283 part:0.14920929055869567 :0.08522880212725777 +deal:0.5907301958349878 sense:0.12161705304350205 condition:0.11174991563087111 many:0.10918125879914733 :0.0667215766914917 +this:0.3582515024062592 said:0.29625967704834644 the:0.28243944677282595 Lake:0.0325536710073279 :0.0304957027652405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.7451355300238411 have:0.0747948619300503 also:0.06628398802907486 bo:0.06331821896337338 :0.05046740105366022 +all:0.37799425716071594 talking:0.19533555505091935 bringing:0.16809488240776393 said:0.15639242206632997 :0.10218288331427076 +to:0.38520206870779045 been:0.28241774584628043 in:0.1613653891227006 on:0.09760791031333199 :0.0734068860098965 +In:0.3551672646478269 At:0.2665026887932004 If:0.2020701922915384 But:0.09503617520124642 :0.08122367906618791 +the:0.6863033752650348 his:0.18132969025595733 her:0.060156300782088466 a:0.03854158581895511 :0.0336690478779644 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.313088206760604 was:0.2250677691014318 has:0.2241398994496896 is:0.1514438622192155 :0.0862602624690591 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.8661089087665743 had:0.08212496420101369 already:0.024921131820361906 not:0.017143546943098976 :0.009701448268951146 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.37855887090930923 on:0.3011772007163886 and:0.1500988679933202 upon:0.11333702575158028 :0.0568280346294016 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +tended:0.24391395185134807 terest:0.2359202207000852 sure:0.22753170743554665 formation:0.18066167991944942 :0.11197244009357069 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +part:0.2395593779445603 way:0.2349486372242833 time:0.23194577383672849 person:0.1732350930745947 :0.12031111791983312 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.28517127270493625 served:0.24901022035090936 is:0.17092414512523507 found:0.1487397602724888 :0.14615460154643048 +the:0.823608577809892 took:0.07413497462365663 its:0.04491979262643287 a:0.028866458867648628 :0.028470196072369863 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.3090148245302924 of:0.2633990546533138 with:0.23021020379029278 as:0.11413298963621366 :0.08324292738988721 +and:0.3914493500665467 of:0.2032891397393734 as:0.1750290260695068 which:0.1434272018243613 :0.0868052823002119 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.2710999970893284 that:0.2706273581182823 for:0.2546944303652237 by:0.10729987987842703 :0.09627833454873852 +person:0.40612010839438967 as:0.1836536920007641 bonds:0.1766502426502626 election:0.12692693293270857 :0.1066490240218752 +the:0.5084975537245854 a:0.3841642666373606 some:0.042787601951559055 all:0.03302933329450157 :0.03152124439199348 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +condition:0.26670503523065425 day:0.22083879031959752 system:0.20155767860982932 time:0.1787631907240076 :0.13213530511591132 +people:0.344590370213163 man:0.28270613457884597 men:0.24749205800916033 person:0.07206840613674627 :0.05314303106208454 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +great:0.6618958010419314 greater:0.10155524133211014 certain:0.08816650159720456 serious:0.08246261381849898 :0.06591984221025485 +to:0.34527996946239115 in:0.2931790416823714 New:0.24561309559029826 London,:0.07443971834958556 :0.041488174915353566 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +mortgage:0.37222054759223683 mortgage,:0.3668598300329682 lot:0.10059747927498155 piece:0.09940761333334588 :0.06091452976646764 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.4145008079280911 best:0.19798954946949465 course:0.13713074618198534 way:0.12932002068107526 :0.12105887573935357 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.31554231043708736 same:0.21332547551137776 country:0.16027869436190653 city:0.15585135602884304 :0.15500216366078537 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +said:0.28573746813487055 Rev.:0.2456555288550772 city.:0.20001226596669452 bill.:0.1360297828223242 :0.13256495422103357 +important:0.2620077795049094 money:0.20643055559641854 effective:0.18644314495602088 rapidly:0.17713521709650543 :0.16798330284614582 +few:0.5207111858462905 two:0.19738462435072054 three:0.1307109045361222 six:0.09826008612996825 :0.05293319913689837 +and:0.2932602455964607 ,:0.2358599614022944 d:0.17304323486255802 ly:0.16138272547153842 :0.1364538326671485 +to:0.4130209028279239 much:0.17451835525448975 it:0.14459572012210417 that:0.14004861800637983 :0.12781640378910242 +come:0.26721080324424784 gone:0.25288761293903966 not:0.18052936896212757 failed:0.16236324396165827 :0.13700897089292655 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.3717480207066242 mortgage:0.3571410194296957 it:0.10908461709351759 that:0.08587344715093662 :0.07615289561922568 +part:0.6052874064406949 day:0.10606026043057953 history:0.10479169317515884 hour:0.09896549557063117 :0.08489514438293567 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +own:0.3152119229682106 wife:0.1886229768898389 way:0.1813171795894081 right:0.1574809051825998 :0.15736701536994252 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.36883692271073776 greatest:0.17177886038182494 it:0.1556856306767947 highest:0.15258495256015578 :0.1511136336704869 +to:0.3855817094230681 from:0.19674422791413762 in:0.17691136194129914 up:0.12712072465058413 :0.11364197607091098 +had:0.4512034170627585 was:0.4160139710463385 has:0.06923271305446367 is:0.04799132046373734 :0.015558578372701958 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +do:0.3982846521950611 get:0.19285570440678426 see:0.15092462979672722 make:0.13762015287442791 :0.12031486072699958 +for:0.22337100278548094 in:0.21545451646273622 is:0.20053785442707778 to:0.19189251201091695 :0.16874411431378797 +entirely:0.5607714201123974 entire:0.14110591529875932 open:0.1136196101596352 a:0.10916543793721666 :0.07533761649199142 +per:0.9996721388339009 par:0.00025505540896798547 ner:3.535238995211747e-05 r:2.322040125952227e-05 :1.423296591913168e-05 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.49061045574783135 a:0.29185678549301286 the:0.08368844172890601 become:0.06743779839616225 :0.06640651863408747 +if:0.27838368631223653 that:0.262172474209477 whether:0.18643175520192393 before:0.15746830900081218 :0.11554377527555044 +come:0.36454736988843367 came:0.23655413182093887 ing:0.18857853245926207 cause:0.13027244871892815 :0.08004751711243707 +above:0.2673419666009935 of:0.23068647031160908 time:0.21516313428499712 following:0.1574028506116551 :0.1294055781907452 +time:0.2695578693720629 year:0.249838603634441 til:0.1998821923374066 month:0.15112272335357047 :0.12959861130251893 +pro-:0.38732503622014486 sup-:0.21502544905564114 dis-:0.14524660216795898 com-:0.12636518517455203 :0.12603772738170294 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +than:0.8882566241895069 of:0.03485323571410008 inclined:0.02802656837576315 according:0.026006169498287057 :0.02285740222234281 +to:0.32497190683857685 on:0.23759402191175735 in:0.20260265788018697 by:0.12668609256342558 :0.10814532080605323 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +virtue:0.49027458314010086 deed:0.14907298603540964 means:0.1484581059307114 one:0.12436968669233539 :0.08782463820144273 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +five:0.30989048799434554 25:0.20020827594865725 ten:0.17358762870662492 10:0.16700352199803759 :0.1493100853523348 +H:0.3548809412150663 J:0.1780523207170399 C:0.15608408135270474 B:0.15605524475464294 :0.15492741196054602 +order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 +same:0.6127182710121508 long:0.10376742499231306 well:0.09710558662472232 manner:0.09324468605195613 :0.09316403131885768 +and:0.5943836674230007 with:0.13601082128750572 when:0.10896492642765872 but:0.1000742465730156 :0.06056633828881913 +the:0.5905474619486789 mineral:0.11690510492166423 his:0.11637210818176817 their:0.09178406346580496 :0.0843912614820838 +of:0.5744513807647079 in:0.3215884440144446 In:0.07027448816762456 the:0.02072034486912112 :0.012965342184101785 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.4186845515066419 which:0.2608232452378421 there:0.14751124450830308 them:0.09389180397066457 :0.07908915477654835 +impossible:0.5604615767107658 as:0.2010570256061872 ready:0.09315119143950049 equal:0.07567756638318276 :0.06965263986036375 +the:0.6200275658677815 Mr.:0.16749827216210667 Gen.:0.08729154630856235 General:0.06437610540152083 :0.060806510260028666 +We:0.46030758038530606 I:0.2849446152579634 They:0.19740757001967385 There:0.03248063945762531 :0.024859594879431405 +the:0.9137065800077041 tho:0.04010078242770236 a:0.02668470840338429 tbe:0.014827369047573206 :0.004680560113636093 +way.:0.4234150481160482 condition.:0.17680537539931387 time.:0.17260366744580743 manner.:0.17127553082539132 :0.05590037821343918 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8741784887448942 a:0.053079899510374784 tho:0.04126430892636956 our:0.01813467803510773 :0.013342624783253739 +and:0.2925293517323419 as:0.2214014982268207 up:0.21401090045320714 again:0.18914644449624315 :0.08291180509138713 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +seen:0.29430903108938744 called:0.24968920604996503 carried:0.15359654168682707 found:0.15204367174405528 :0.15036154942976515 +that:0.39629315856499436 as:0.2191702336525819 when:0.1657725654627641 to:0.11665692658747018 :0.10210711573218939 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.5882497094439769 had:0.14463861933495342 has:0.14181713698815504 then:0.07945722768243998 :0.045837306550474535 +fact:0.4208107239136939 certain:0.22020088970114907 true:0.12847881237059872 and:0.11817711412279136 :0.112332459891767 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.34219807401368796 said:0.2987450614565088 their:0.14193496042884565 foreign:0.11697068882608433 :0.10015121527487336 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +no:0.2594274482107354 the:0.2240554250296065 every:0.2142785983720492 that:0.15480448886433426 :0.14743403952327452 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +like:0.26153607401341283 not:0.23498635788901162 have:0.17752466069132072 be:0.1686522603480573 :0.15730064705819757 +the:0.7202116359870787 a:0.12469513655429396 my:0.071919505126974 this:0.05412521635248271 :0.0290485059791705 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.8956009387404954 the:0.07226669601883083 every:0.014232710014955798 some:0.010049413052264398 :0.007850242173453554 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.907315456779319 tho:0.03966673648430535 this:0.02180867364495187 tbe:0.019605868100044114 :0.011603264991379465 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.36576050701153173 that:0.25403497452450413 whom:0.1516626821039713 what:0.14776942442240276 :0.08077241193759013 +contact:0.5759566374903492 communication:0.16219937771897144 connection:0.1358711343507546 filled:0.06947689915730411 :0.056495951282620804 +date:0.6356125004319874 one:0.12991370957532497 more:0.10932331837531582 those:0.0780145561197848 :0.04713591549758696 +more:0.4548940741081455 other:0.16439136970613075 less:0.12992134648793818 lower:0.12619297717173553 :0.12460023252605014 +and:0.3024293019241597 has:0.2702574152134024 is:0.1586812794703624 of:0.13680548417356553 :0.13182651921851 +of:0.7360995077512107 such:0.07449831988662416 by:0.07001848226048756 and:0.06626931859644834 :0.053114371505229296 +not:0.41426630630357586 to:0.33134234856228395 no:0.14701097731251622 the:0.057269225520278376 :0.050111142301345654 +But:0.41928658471992697 He:0.2630757647250215 And:0.11197677778688335 Not:0.10500414580432353 :0.10065672696384456 +of:0.69860202158146 in:0.17410755602728106 and:0.05102239628371365 toward:0.042477089202746364 :0.03379093690479906 +the:0.5670198939648231 he:0.1874945950779649 an:0.12058987739485426 they:0.075520659746684 :0.04937497381567379 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +once:0.2998658157158485 least:0.24344729974513143 home:0.17892993850826558 night:0.16025833063562037 :0.11749861539513404 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +hundred:0.6956218032913215 thousand:0.23439733509554087 million:0.0667385531323773 of:0.0016535096418900984 :0.0015887988388700739 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5975150890329847 a:0.29833563744153363 his:0.038944326340317706 tho:0.034719079584584735 :0.030485867600579135 +The:0.8236115622126586 "The:0.0634643326752037 Tho:0.04937733667117994 “The:0.032441347690130046 :0.031105420750827648 +many:0.5051241458288576 much:0.421670718930611 one:0.04066909850884459 any:0.016298717122352334 :0.016237319609334486 +a:0.7000994963729859 each:0.1788393198337596 every:0.054477003456460574 per:0.04295240806874561 :0.02363177226804824 +the:0.6352655102509397 a:0.25003277952382846 very:0.04249611131926688 so:0.03793017875113363 :0.03427542015483134 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +of:0.898485570000543 for:0.055540414235274234 ot:0.02236934378609186 which:0.016220395487710454 :0.007384276490380603 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him:0.2501880022564517 reason:0.247773270677015 said:0.19732211526982188 way:0.15312627441000004 :0.15159033738671135 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +mind:0.25989909492416124 life:0.25039285163831376 opinion:0.17889522256946985 heart:0.16242847606148247 :0.14838435480657272 +duty:0.2372963852281673 people:0.2365533150996598 attention:0.18319710963392397 way:0.18160577983651732 :0.16134741020173163 +to:0.9522472550235404 that:0.03327366152484512 not:0.008382947271830182 lo:0.003149626821891678 :0.0029465093578926165 +are:0.5480882805323621 were:0.41984296357135853 arc:0.015481145840550478 ar:0.008819587180282982 :0.0077680228754459036 +and:0.31526399952117196 men:0.2643670469764758 thousand:0.19290379316163406 were:0.11905173547546823 :0.10841342486524999 +result:0.24281601955784213 number:0.22925850381580123 people:0.1822410601220826 amount:0.1818487372336084 :0.16383567927066556 +has:0.3738914621366105 was:0.33420399570187037 had:0.1784139903417057 then:0.08330346092726973 :0.030187090892543695 +upper:0.29007847580521645 other:0.20294052265380166 lower:0.20168204777424578 north:0.16095911202041766 :0.14433984174631834 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.2896265438536908 would:0.20883578444777723 that:0.17694213531359626 may:0.16985083130535022 :0.15474470507958563 +than:0.2106563133991321 stated:0.20740862542930402 reduction:0.1972405440411808 relief:0.1933457985425462 :0.1913487185878368 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +I:0.558985105188386 J:0.21398523581327758 T:0.09548956455301803 1:0.08290538678285538 :0.04863470766246303 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.277750740297812 with:0.1904337481531305 for:0.188400057264903 is:0.17717500647455406 :0.16624044780960057 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.4602424668638733 and:0.1669080785322608 into:0.14164253070052066 without:0.11757698499380889 :0.1136299389095365 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.34724289226643135 them.:0.24167652961942734 beginning.:0.1446273007386631 water.:0.13689182388014362 :0.12956145349533468 +for:0.33284240913063584 with:0.2672867249746143 in:0.17148314819410929 and:0.16346080779999647 :0.06492690990064402 +be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +feet:0.4891737292496325 days:0.21807928079594213 cents:0.12154563472340922 acres:0.09466429519528181 :0.0765370600357344 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6929702508870622 Main:0.15436585404344674 Wall:0.06422643573918793 Congress:0.054000659200075116 :0.034436800130227874 +subject:0.29835472514255235 addition:0.2578182635336027 as:0.17123268773351005 thing:0.15621051053450258 :0.11638381305583233 +was:0.35039665079412247 is:0.25020028829694013 came:0.21442368579893903 that:0.10637456412587183 :0.07860481098412662 +Mr.:0.5409826527128734 1:0.1299843593569491 I:0.11486237911469532 God:0.11398512795235118 :0.10018548086313109 +ac-:0.621838119069764 ac¬:0.11805646139873417 ac­:0.11693160553185937 ac:0.09270024217268913 :0.050473571826953244 +or:0.42670069043162495 a:0.16722476867167801 aged:0.15771245413976884 of:0.13358305303722687 :0.11477903371970141 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.6080860506037264 in:0.17465120576635546 if:0.10505401815202012 that:0.06111591985348445 :0.051092805624413616 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.3835278984364407 to:0.24974656859046843 shall:0.16020061511743727 would:0.10686458104940767 :0.09966033680624599 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.677809748303708 to:0.14953015712274692 on:0.07276988327233033 time,:0.0630746524210894 :0.03681555888012542 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +said:0.5765783233828752 all:0.18173173597835926 fact:0.08830429772946394 them:0.08778662429412723 :0.06559901861517435 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +m.,:0.43481491508766057 m.:0.29422603306264783 m:0.17103940650841934 .:0.06304189053904931 :0.03687775480222292 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +very:0.5474390735891138 most:0.22845125999550014 more:0.12963026639245837 highly:0.05767180777621663 :0.0368075922467111 +more:0.6046127430991579 less:0.15764987338530645 other:0.13135770669181487 better:0.0647490854178017 :0.04163059140591889 +Mr.:0.38474342205678175 Mrs.:0.28564187259059987 Dr.:0.13887075756726605 Rev.:0.1043884940404148 :0.08635545374493746 +been:0.2653346834738978 be:0.20767353195633642 saw:0.20242689371826886 had:0.17100614160869643 :0.15355874924280047 +in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 +two:0.2672355438288352 law:0.21730257568369798 city:0.182407130093737 person:0.18157610707596214 :0.15147864331776772 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.4457516040488303 found:0.17630523019322042 in:0.14760877610410078 as:0.1272853303158914 :0.103049059337957 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.819994949951605 be:0.13066155997043843 have:0.032195806565155596 probably:0.008603126804018292 :0.008544556708782753 +seem:0.24502219568648895 only:0.23220317799461734 likely:0.183776612839227 want:0.17868271241138023 :0.16031530106828637 +of:0.49510461877024164 in:0.19755260526399948 and:0.11814145178909964 to:0.1038587338046586 :0.08534259037200073 +it.:0.3178759751755856 them.:0.2392308177037045 sale.:0.21537010795225692 life.:0.12698993345535597 :0.10053316571309702 +us:0.2978247925381735 him:0.2747573964327062 to:0.19091729776172414 them:0.11990685709055716 :0.11659365617683908 +one:0.34909311073949156 all:0.18004324113867423 sale:0.17415866967489554 those:0.15068587496883507 :0.14601910347810348 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5777859887188438 this:0.2562696072172906 one:0.059847242998582274 that:0.053781584029719415 :0.05231557703556413 +will:0.36377701759878767 to:0.32491365425970004 may:0.12876985482454031 should:0.09280907108416944 :0.08973040223280251 +which:0.5028485214677351 it:0.17740358781128937 that:0.12513518639165291 this:0.11975450946492218 :0.07485819486440032 +no:0.519859949984242 not:0.1997145541810611 only:0.1673304419423324 the:0.057674431962151135 :0.0554206219302134 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.5085255653395109 in:0.1907348435358431 is:0.10567805807364651 at:0.10193810311902524 :0.09312342993197427 +made:0.3962248791403346 given:0.16330583264340004 followed:0.15945010195568401 taken:0.1560638116651507 :0.1249553745954307 +seen:0.4401936836429388 in:0.1998231851558372 kept:0.12174830892680842 made:0.11940700399326143 :0.11882781828115418 +a:0.6669940128557565 and:0.20991257527603238 was:0.05362467082493602 more:0.03800940133459436 :0.0314593397086808 +a:0.38326739447883384 a.:0.31742400730687687 not:0.12811617123917984 now:0.09229905014585865 :0.07889337682925095 +the:0.7949393350626632 said:0.11882695247456505 this:0.04358401750075775 tho:0.025506745120818658 :0.017142949841195226 +in:0.8163548373008307 In:0.08621586962962649 to:0.0434222449453588 with:0.027743455440345052 :0.026263592683838922 +as:0.9743367046687252 ns:0.011037730869346642 aa:0.011012801064646903 a*:0.0024341470462859206 :0.0011786163509953176 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +which:0.3964503529073719 it:0.21256590002490372 this:0.18493762091534127 that:0.11573863145451538 :0.09030749469786772 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3538710496338779 of:0.2752227551429842 and:0.1427462605821771 have:0.11467590533719497 :0.11348402930376579 +people:0.3075346206441583 man:0.19362987365373235 latter:0.17843613941196482 time:0.1619119895678424 :0.15848737672230215 +have:0.6225421564253071 had:0.3424889471305159 havo:0.012384175594545585 bad:0.012080320076838862 :0.010504400772792468 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +3:0.35706412691460826 2:0.2727361936246575 American:0.1692217711471007 of:0.10594032152074406 :0.09503758679288954 +Do:0.36575055192571754 Why:0.23459511170508415 If:0.167578735199281 It:0.1405799390975107 :0.09149566207240674 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +work.:0.3252206922699259 life.:0.26291721613328334 house.:0.15614777808925323 labor.:0.141242484896793 :0.11447182861074448 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +law:0.2415154069083313 bill:0.19478009397581153 amount:0.1929926626018558 country:0.19043831197547426 :0.18027352453852716 +it:0.40421865824322095 he:0.2260099620472129 there:0.1697226008042566 I:0.10736606997508978 :0.09268270893021989 +the:0.4250411049061061 to:0.38623872785299745 any:0.08854023648584396 physical:0.05072288113065169 :0.0494570496244009 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.41971893439849534 person:0.1730153055940066 one:0.1677127249476663 day:0.1328757459983413 :0.10667728906149039 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.37119957852186347 them.:0.3119168523158486 ?:0.1551193021697069 him.:0.08153165226765957 :0.08023261472492152 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +per:0.9968019317682564 five:0.001492528683270367 one:0.0007408211410443436 per-:0.0005078743556566292 :0.00045684405177218705 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +war:0.3398084719850216 charges:0.18805456304076865 protection:0.16305474961856875 case:0.16254304186971286 :0.14653917348592813 +accompanied:0.26524029987558745 occupied:0.24697169294490393 made:0.20132854658496097 followed:0.1478989987167155 :0.13856046187783205 +case:0.2913677572614345 remarks:0.18721384295651286 speech:0.18646334076559476 being:0.17630785889933892 :0.158647200117119 +had:0.25487938660346593 went:0.2505466441599175 was:0.19684330087856647 is:0.15975910861351597 :0.13797155974453398 +they:0.36131899371189485 we:0.20485250720159895 he:0.1625676685345118 it:0.1464269183807949 :0.12483391217119943 +that:0.4887119143502511 which:0.24578744597704938 and:0.10146696180911716 fact,:0.09090413541249731 :0.07312954245108506 +not:0.5651574037366404 soon:0.17648077513845306 probably:0.1294013263570925 always:0.0767808329512615 :0.05217966181655252 +condition.:0.4485168870818506 school.:0.28484926972455626 times.:0.14173215730672348 position.:0.0629167178332918 :0.06198496805357784 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.3174965076557622 a:0.31060488137918574 this:0.26279818062533017 last:0.061013634900365654 :0.04808679543935619 +home:0.38888634642322545 once:0.22500432859221636 work:0.14710710695917845 least:0.12187627637792184 :0.11712594164745785 +the:0.8361258275575344 this:0.06832885708899855 tho:0.03916540502625218 our:0.03570294218669264 :0.020676968140522185 +away,:0.44438907170609615 away:0.18846780064061122 over:0.14819748588758785 on,:0.11230808111097737 :0.10663756065472733 +be:0.46176589458639467 he:0.27652231555345586 have:0.1849134578191365 lie:0.048267199868873345 :0.02853113217213971 +or:0.9500526934430443 of:0.02545080915392626 described:0.010312266341460112 and:0.007247086811057094 :0.006937144250512182 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.4663960971625217 have:0.22970975730693394 were:0.16862822877567782 had:0.09925006111956468 :0.03601585563530199 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +said:0.361842779504285 final:0.2656756252172303 recent:0.13472245994610532 immediate:0.12934064392828945 :0.10841849140408977 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +result:0.24281601955784213 number:0.22925850381580123 people:0.1822410601220826 amount:0.1818487372336084 :0.16383567927066556 +Port:0.3421397031199822 B.:0.20905151414926196 W.:0.15780553361873384 Miller,:0.15633766158813453 :0.13466558752388758 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.953089026249618 havo:0.023100897824380847 having:0.010313808925276452 bave:0.007401021493397786 :0.006095245507326969 +a:0.5054291761182546 and:0.3673413988555032 as:0.08389323962829236 system:0.02179986054618483 :0.021536324851765036 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sale:0.8239854087991582 directions:0.04901948147489727 facts:0.04784653262264667 bill:0.03959388140646754 :0.03955469569683032 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +effect:0.6882652450016579 consideration:0.10763345352858011 one:0.07920266029731199 all:0.0628308386936603 :0.06206780247878966 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +action:0.2505592500471259 agreement:0.22747306910816265 injury:0.19618748198758643 amount:0.1651436616499348 :0.1606365372071903 +man:0.26128806699314844 latter:0.21243958735154803 people:0.18718584731224464 committee:0.1726727817611006 :0.16641371658195822 +been:0.8887150840349928 never:0.05371165048652994 ever:0.02526887297033334 had:0.0202275238491952 :0.012076868658948635 +to:0.22259761886061358 on:0.21084103927777653 in:0.19838051684438665 abandoned:0.18568525868386596 :0.1824955663333574 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ter:0.9641793770537171 tor:0.018144892116676737 to:0.007296818256553834 foi:0.006116048157454175 :0.004262864415598237 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.9318989773249647 you:0.031033645615051612 I:0.023315803443235538 uot:0.00708105831516032 :0.006670515301587639 +to:0.3411998866703954 the:0.3358941549588756 and:0.13143094898124494 some:0.09842860156295453 :0.09304640782652963 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.32095877730235006 look:0.21314328190160264 call:0.20707911510968813 bear:0.13386484303721355 :0.1249539826491457 +and:0.43251602749650586 are:0.2403632742882989 were:0.1616172238724712 men:0.09541703255128205 :0.070086441791442 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.6191679130932525 have:0.1536812730628329 not:0.083797097879841 make:0.0729546040524317 :0.07039911191164179 +chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +lot,:0.32779353352810514 lode,:0.21731789975017904 street;:0.16911119858066673 road,:0.14847825237525394 :0.137299115765795 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.3942403101735654 have:0.2882044630613151 not:0.13679646683995964 pay:0.10688658903185866 :0.07387217089330124 +The:0.2730020515473231 And:0.2113637967486664 A:0.20340310905632766 So:0.17548168332713432 :0.13674935932054869 +the:0.8997415926701186 which:0.036520722758358666 tho:0.033806161106692344 tbe:0.016951387977072796 :0.01298013548775768 +two:0.2672355438288352 law:0.21730257568369798 city:0.182407130093737 person:0.18157610707596214 :0.15147864331776772 +home:0.37844094619443275 husband:0.21005571815346602 life:0.15090215392675485 hand:0.13619940086480134 :0.12440178086054512 +days:0.5724890989891621 years,:0.12230185270934274 minutes:0.1163653283180002 years:0.11415910538721219 :0.0746846145962828 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +main:0.29105651076257966 primary:0.2217860589454049 first:0.18180462526294344 great:0.15273444667885136 :0.15261835835022053 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6574962822024767 all:0.1594435050023744 these:0.11631976905238596 tho:0.04128535609644571 :0.025455087646317202 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +It:0.3255683919841728 We:0.19413537042027593 I:0.19363776787790588 Why:0.1607583648930762 :0.12590010482456915 +in:0.3616836231941399 to:0.2749914705806748 into:0.1454763914446576 on:0.11659925445901621 :0.1012492603215115 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3257098223455058 is:0.27897665423604145 but:0.15400272936976928 it:0.14871824979820752 :0.09259254425047601 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +upon:0.32250771650896654 for:0.2765750819139418 to:0.16190381438444418 on:0.1441471536535188 :0.09486623353912865 +to:0.45255007491554683 into:0.20994040893857785 on:0.1952575329884051 through:0.07398488710955141 :0.06826709604791875 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.2666484158544237 use:0.24730350899251596 being:0.17807826460719448 way:0.1694384813425528 :0.13853132920331301 +It:0.3721977234680337 H:0.21931019940497137 II:0.15624672364561665 Smith:0.12969440958472989 :0.12255094389664846 +and:0.5174058612360855 but:0.23452629352100823 it:0.10939867637774435 and,:0.07329402734442442 :0.06537514152073746 +it:0.4340752629332528 is:0.18237240966646576 time:0.14915784562865575 was:0.12550002808331956 :0.10889445368830607 +man:0.3016312737743372 resolution:0.29874583133507193 bill:0.18706016980108583 meeting:0.11048995390867294 :0.10207277118083209 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +most:0.6152558936634556 other:0.17943317665194367 only:0.08138925950645914 more:0.06803720020870532 :0.055884469969436294 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.552452820168632 as:0.14119990008787955 so:0.12328068623180605 the:0.09607555987720494 :0.08699103363447741 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.26023053048162254 for:0.2344257855108119 by:0.21841275526605272 with:0.18309758803018006 :0.10383334071133277 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +fifty:0.5652122048214459 two:0.12275306194044978 five:0.11156057600667736 twenty-five:0.10103879548411308 :0.09943536174731374 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.7101024605533188 the:0.11049890337319752 one:0.063736531006943 too:0.06042489153190168 :0.05523721353463899 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.34883734280694156 Court,:0.20454921305656376 Court:0.16447624541493278 has:0.14919148991478515 :0.13294570880677678 +of:0.44478830996610946 in:0.34405913850492215 to:0.09894930479646608 and:0.06326573863667931 :0.04893750809582283 +the:0.679327289025709 at:0.10199268129133968 not:0.10085667526017307 to:0.06850963870149068 :0.0493137157212875 +and:0.39404059188340684 containing:0.3050413852618757 to:0.11979195514585708 about:0.11336067112643716 :0.06776539658242327 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.4304428633000064 they:0.20053628697374426 and:0.18574737349501313 it:0.0964936557707751 :0.08677982046046115 +to:0.6122106883730413 not:0.3067674686891382 also:0.0450195143531149 always:0.021232943708938006 :0.01476938487576769 +very:0.6500311318416184 too:0.1149714501643642 so:0.0913190345557095 bow:0.07886382768635854 :0.06481455575194929 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5365103548397133 just:0.1815372397613624 very:0.15437784634221627 a:0.08822954859984744 :0.03934501045686047 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6062180518896152 to:0.18155688915839263 into:0.147130413674735 that:0.04334227229280061 :0.021752372984456595 +W.:0.289279830679701 H.:0.2332556276431757 A.:0.17357631560698136 C.:0.16165359300699317 :0.14223463306314874 +men:0.2881706291484499 facts:0.2490226447981753 figures:0.1895500658092821 things:0.15472763232517792 :0.11852902791891486 +well:0.35208966528424074 known:0.25061997726232177 just:0.13655261849561445 regarded:0.13191230777931956 :0.1288254311785033 +of:0.863107356085169 or:0.04520339771518073 ot:0.04413384352248848 ol:0.035855562508351965 :0.01169984016880983 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.23886251282227441 to:0.2317351242647677 with:0.21717244389793328 as:0.17892895399990388 :0.13330096501512073 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +In:0.41105267869459206 in:0.37540132304915064 of:0.1955193915670031 the:0.012190701280716466 :0.005835905408537712 +offices:0.3876958734119646 -:0.1735297838479751 cent:0.16520091976139673 cured:0.15357576146107382 :0.11999766151758973 +of:0.8759936125162087 to:0.06629281600754329 in:0.025106715181525872 for:0.017077840651088052 :0.015529015643633943 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.7501431959338895 is:0.1154287909125623 began:0.07691542988918817 stood:0.034084595236772625 :0.023427988027587467 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.5670267692372785 was:0.26529127789549156 Is:0.1179355383667739 has:0.037622996326004125 :0.012123418174451749 +position:0.3092413018698182 a:0.3038604209629229 its:0.16611689387153092 the:0.11390767767416271 :0.10687370562156531 +to:0.42497400844835614 would:0.18811376311347353 will:0.14600339120313538 could:0.12663527456391674 :0.11427356267111811 +five:0.22162257119855133 ten:0.2150141464914112 three:0.19266342448105667 fifty:0.1854162053878146 :0.18528365244116624 +turned:0.5097139159047644 turn:0.15441962518499885 moved:0.13309587041373183 moving:0.10628227622601405 :0.09648831227049083 +interested:0.43796123792398794 interest:0.1743624842448833 as:0.1594827082406362 money:0.1147008331771675 :0.1134927364133252 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +young:0.44775043802601017 business:0.2100754050502717 two:0.14556514954165906 best:0.11453258713641219 :0.08207642024564692 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.42941058535461196 there:0.36200648174789735 It:0.11349072284513323 he:0.05474749565534708 :0.040344714397010394 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +New:0.31465301149854014 in:0.2833180046640806 of:0.27026381869251614 if:0.08323451655162228 :0.048530648593240897 +opposition:0.6235428122318942 enough:0.12430992779918412 and:0.11082015968026152 fruit:0.07102592089272292 :0.07030117939593732 +upon:0.3174300166292209 of:0.27304744727487257 on:0.1641722704417035 in:0.13168841420988286 :0.11366185144432027 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +of:0.39217196200627213 and:0.3835266545277791 with:0.07781549877677688 that:0.07338247056514403 :0.0731034141240278 +make:0.35652843383901023 be:0.3319927755103968 give:0.10608353801276137 take:0.10407661924883956 :0.10131863338899204 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +few:0.2919870144558133 little:0.258568727358419 matter:0.16893345017861408 man:0.14676718012339593 :0.1337436278837576 +course:0.32925175580269034 circumstances:0.2431428278708028 business:0.1630474297123984 process:0.1359706083512867 :0.12858737826282185 +that:0.4293738541449859 which:0.25689581745551593 least:0.13453860757079644 once:0.10989069372837806 :0.06930102710032353 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5681448725854734 to:0.263430183602866 in:0.09523961734604333 and:0.03838657264727326 :0.03479875381834401 +of:0.9197148959400677 ot:0.027547772264666297 in:0.022823405070998105 ol:0.018945419770339977 :0.010968506953927797 +of:0.9206817252383912 to:0.03019070660857513 and:0.02317612389489635 with:0.014432375122516989 :0.011519069135620298 +give:0.36144968199401956 enable:0.21495145218197764 make:0.1800811319923168 take:0.12225904350080533 :0.12125869033088063 +law:0.25688250336708285 bill:0.21216112176748023 country:0.19343378196209854 work:0.1715252195996577 :0.16599737330368072 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +the:0.6993361104774326 these:0.14894630071566364 business:0.05697902997256045 his:0.04845034695459184 :0.04628821187975155 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +purpose:0.22811020987118516 work:0.21624235193964111 deeds:0.1923092765982957 spirit:0.1914867397172161 :0.17185142187366198 +it:0.26652268834011733 he:0.2447592185947469 the:0.19690093812973447 they:0.1617743638153608 :0.13004279112004055 +highest:0.3177466605530098 new:0.18788074718168093 said:0.1796836742110362 final:0.1749088318385615 :0.1397800862157115 +money:0.23880029941126588 corn,:0.22993559370479175 wheat,:0.20086695566973922 money,:0.17049665085929916 :0.15990050035490402 +that:0.6420274989769454 nearly:0.1655335728996061 doing:0.07733106137241966 as:0.06030342494411868 :0.05480444180691022 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.36475761878076746 are:0.20149375275522882 of:0.16406129299039068 here:0.13574925404637025 :0.13393808142724273 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.38720817160721166 that:0.2283922323362671 and:0.1604338377889232 as:0.13055928774965367 :0.09340647051794437 +of:0.5012864452145854 to:0.2224591582611084 in:0.11646246783832694 as:0.08854315132040395 :0.0712487773655753 +on:0.3280913773209322 by:0.29861187233723663 one:0.13683070945357337 to:0.1230129454778369 :0.11345309541042099 +paid:0.3147895870180797 done:0.2398740356465111 made:0.20584867028049098 necessary:0.12743447241476025 :0.11205323464015805 +the:0.8265463029473903 a:0.10652028964049333 tho:0.02861994527725383 any:0.023605058585148 :0.014708403549714623 +a:0.47274673300471975 the:0.3092007832270797 to:0.0834006991005553 file:0.08174991644052643 :0.052901868227118884 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3420761367726229 came:0.23460695943722526 the:0.18127502250383185 went:0.15784574956677658 :0.0841961317195434 +again.:0.3902376731287598 there.:0.3187881248059539 the:0.10839542642470258 here.:0.09860941076434959 :0.08396936487623403 +which:0.5702434733606769 that:0.13604348363583843 this:0.12108600666574275 it:0.0930675987579469 :0.07955943757979497 +a:0.7876853574735205 the:0.1291244464171133 large:0.03247955702063683 great:0.03197105637261753 :0.018739582716111876 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +through:0.35944275651690827 by:0.2905858233327929 in:0.11807648220404506 over:0.1177906999011091 :0.11410423804514475 +it:0.3085936196490978 which:0.2984530979647076 and:0.1743690359756837 there:0.16797912492796682 :0.05060512148254404 +to:0.9495360406603879 will:0.017345253374445067 would:0.01699267799752119 a:0.008601206051563389 :0.007524821916082349 +of:0.756237470023212 increased:0.11589366643435628 and:0.06678591815297545 in:0.044452081690792504 :0.01663086369866382 +ing.:0.48976791024558847 -:0.22167715572526075 ment.:0.1255659436619851 ::0.09191486659662727 :0.07107412377053847 +of:0.4645395387156748 with:0.28805137810397957 about:0.16298796979193944 in:0.048612430195799784 :0.03580868319260643 +it.:0.2723381840526283 June,:0.22055427355482993 them.:0.21771751996586058 war.:0.17385182297385898 :0.11553819945282211 +bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5327219034494991 upon:0.21687302607215087 for:0.09490084384509233 to:0.08467872029177956 :0.0708255063414781 +filled:0.3046100094272481 charged:0.197043674196014 done:0.18490123726853452 supplied:0.15911673389378053 :0.1543283452144229 +him.:0.3259010631798155 it.:0.24812188436273688 them.:0.244778952492682 her.:0.10388198851383418 :0.07731611145093148 +other:0.2922587374872431 first:0.2528405152333098 various:0.17739735942279466 official:0.16418011668509386 :0.1133232711715585 +them:0.3605071166223901 the:0.3273497366189582 land:0.15565138225020955 life:0.08787882178618889 :0.06861294272225311 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3964133705533792 way:0.21031766494785464 as:0.20513354829730623 knowledge:0.12066583272002172 :0.0674695834814383 +portion:0.27537735849742934 part:0.26212457122098687 day:0.21040105267605266 one:0.1577344937988007 :0.09436252380673046 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +who:0.4864369761424519 and:0.23685926604591256 but:0.12441639255275887 he:0.07745554694464783 :0.07483181831422885 +world.:0.2640367111746353 country.:0.23178389373806066 people.:0.19682201850485836 other.:0.1579133213924044 :0.14944405519004136 +as:0.9518623090444283 aa:0.016882225034197836 is:0.01361703797911291 ns:0.008827251503856196 :0.00881117643840463 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +amount:0.299864503817939 country:0.18732705574621494 person:0.18392956246067046 people:0.17840187147175235 :0.15047700650342322 +of:0.5030478201770016 and:0.2416070313530757 are:0.09442653458768162 the:0.08124200769943726 :0.07967660618280399 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.6090105657538881 been:0.1718038662425354 have:0.13207950568066404 yet:0.04659926932991139 :0.040506792993001355 +favor:0.4286606174776465 front:0.16663700046522184 spite:0.14436924942848997 one:0.14085741126542772 :0.11947572136321394 +will:0.3835278984364407 to:0.24974656859046843 shall:0.16020061511743727 would:0.10686458104940767 :0.09966033680624599 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +pay:0.35470195733247695 provide:0.3132795704599423 vote:0.1460095227201354 call:0.09682153722008563 :0.08918741226735961 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.283398539723086 States:0.26702518051907764 States,:0.2131344283615544 at:0.12670877831817115 :0.10973307307811074 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6973207436148603 farm:0.20165706193398325 tract:0.05388169613636988 on:0.02688698462509791 :0.02025351368968858 +terest:0.4998522339737485 crease:0.4075587059765514 formed:0.04951394798629473 duced:0.024230660236565713 :0.018844451826839827 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.7870607450748736 of:0.10680596254893386 in:0.049664222178056744 on:0.03130665441199175 :0.025162415786144157 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +large:0.38111046443248536 vast:0.20673321388243657 great:0.18625976724671117 additional:0.15909493667066202 :0.06680161776770491 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.954955436256363 may:0.019289670472856877 they:0.009309601361689259 will:0.008452115263308711 :0.007993176645782174 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.3722295567447382 was:0.23518295461203476 is:0.2120959934959104 were:0.14637022631632093 :0.03412126883099574 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.6081690147870586 seen:0.11181474822659883 done:0.10621367812892284 made:0.10289032955598296 :0.07091222930143658 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.34909311073949156 all:0.18004324113867423 sale:0.17415866967489554 those:0.15068587496883507 :0.14601910347810348 +order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +never:0.40007194528618134 ever:0.20229979744799576 have:0.15392156404319357 was:0.13635803402173474 :0.10734865920089451 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4972568692954267 as:0.1969894752600474 in:0.14348585762088256 share:0.08466780795948081 :0.07759998986416247 +seem:0.36776571687006265 be:0.2102324364841674 have:0.15893568314002243 not:0.13610036708504536 :0.1269657964207023 +no:0.32242415405455954 any:0.2225140903119049 that:0.19707880973625516 some:0.1864730884049093 :0.07150985749237092 +only:0.23694719322869442 surprised:0.22812804411284837 but:0.19479428643924457 made:0.17044879999792495 :0.16968167622128766 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +other:0.29231943425129375 new:0.22259424369523087 simple:0.210721054707854 legal:0.15070619021694465 :0.1236590771286768 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +into:0.3068272228173874 to:0.28813348154686663 through:0.14560641715780384 in:0.13320800977138642 :0.12622486870655575 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +in:0.5188855472289482 of:0.20012024203644824 and:0.12961504608201907 In:0.1225584658401351 :0.028820698812449176 +follows::0.43599927429491275 to:0.22241457962012467 the:0.16821080082266382 a:0.11867587626329147 :0.05469946899900724 +easy:0.376031446827357 so.:0.18711666441308533 alone.:0.16323170688202887 good.:0.15040747732281884 :0.12321270455470987 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +taken:0.2991435782610154 received:0.21498099152323358 made:0.20593216892876431 removed:0.1779900085225189 :0.1019532527644678 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +I:0.2858580106044382 they:0.27037562066760273 he:0.24653180350593937 once:0.10195483046175212 :0.09527973476026766 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +his:0.8171844133138535 a:0.059015339731711164 bis:0.05716485966940941 the:0.042989777975713586 :0.023645609309312265 +is:0.35478808010919416 was:0.28195736809957245 are:0.21307741463095348 were:0.1258161296163554 :0.024361007543924517 +we:0.22740756431201908 it:0.2263187718030482 he:0.20721104431196474 they:0.2018653480331116 :0.13719727153985653 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +great:0.6309393734384992 powerful:0.13114137725276664 whole:0.1082616411905071 new:0.06695625555175914 :0.06270135256646793 +believed:0.2640500489021859 so:0.20969041137632236 probable:0.1908103524339782 stated:0.17261078774836847 :0.16283839953914506 +ago,:0.4407216364858434 in:0.23765870934268468 the:0.22557869959303062 later:0.048911208305966195 :0.04712974627247517 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.38520206870779045 been:0.28241774584628043 in:0.1613653891227006 on:0.09760791031333199 :0.0734068860098965 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +dollars:0.5463200945546344 dollars,:0.32298353879479386 miles:0.0609060390886724 feet:0.03999965352694258 :0.02979067403495687 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5592004699987456 a:0.22503920401427735 this:0.12084516744958196 any:0.06073096682830899 :0.03418419170908608 +is:0.4686344940958317 was:0.247777728069299 still:0.1225289545717911 Is:0.08479765606661625 :0.07626116719646212 +of:0.7188405952075662 in:0.12329287228656839 and:0.060186300188150306 to:0.05147200380210851 :0.04620822851560663 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +I:0.404476513901982 he:0.23696221155021088 night:0.15140655056640703 week:0.10430527461846942 :0.10284944936293067 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.279639721002356 then:0.23171802833499192 wife:0.16656440492018137 it:0.16412755858855746 :0.15795028715391318 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ernment:0.9685496046555634 j:0.015809612288072646 |:0.006904894677554588 -:0.004371826760137404 :0.004364061618671873 +40:0.25727751318266556 20:0.19505416615862986 C,:0.1912518037822811 30:0.1899021392113276 :0.16651437766509603 +attorney:0.4656501173860456 court:0.42115806497913544 and:0.04856159485867925 courts:0.034856947429746675 :0.029773275346392847 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +result:0.2348976511795785 following:0.21883624409225189 question:0.21288170737869797 fact:0.17837350394983845 :0.1550108933996331 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +such:0.5575044500893693 him:0.13295408513134396 both:0.11315600012999563 them:0.09857265818634504 :0.09781280646294598 +of:0.7378491639697534 in:0.12864998957189105 from:0.060949521171531 to:0.043349150809748785 :0.029202174477075692 +and:0.7201130250293295 Bryan:0.0952034538654455 Cleveland:0.06798732998641138 Smith:0.06241960227289813 :0.054276588845915644 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.31266702445042327 and:0.2756494897874316 out:0.16454141488224225 it:0.12895649529524317 :0.11818557558465975 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +made:0.3172132515378427 due:0.24133849395393464 made,:0.1740560679210998 done,:0.1432970708610888 :0.124095115726034 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.3864689792249559 which:0.1988596250986965 he:0.18212627087855382 they:0.14326624964607082 :0.0892788751517227 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.4001509528112826 for:0.30054525401689564 that:0.16897676355692554 in:0.07957728159503799 :0.05074974801985827 +reason:0.4431359497558511 excuse:0.21372077714928664 necessity:0.12344476784393212 means:0.11638563951216144 :0.10331286573876869 +right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 +we:0.3094880123311409 I:0.2459309941278098 it:0.19066615016901825 they:0.17227383452477044 :0.08164100884726049 +sure:0.3268878277009224 him:0.22623632504256705 them:0.18248137823527225 me:0.14174826887719566 :0.1226462001440426 +He:0.63070970256846 and:0.11879915225291664 was:0.09461365558377581 is:0.07901958774967786 :0.07685790184516988 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.4561331684383627 and:0.21570724887549317 few:0.1288228264019675 the:0.11313677167721714 :0.08619998460695939 +to:0.8618426781416014 shall:0.07072713706409069 and:0.033678152568420244 may:0.018452229132389992 :0.015299803093497454 +he:0.335176382446265 it:0.23772932853911055 they:0.17916294626646953 I:0.14021456397366527 :0.10771677877448972 +to:0.38520206870779045 been:0.28241774584628043 in:0.1613653891227006 on:0.09760791031333199 :0.0734068860098965 +the:0.8699754714715136 his:0.0394145601092854 tho:0.03906066451440094 their:0.026550358745929384 :0.024998945158870776 +and:0.3117048087036252 or:0.2991603352306561 a:0.21996735274701698 the:0.1187722517629195 :0.050395251555782214 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +side:0.32056071538876246 parts:0.24410934586853963 day:0.18353269187517868 members:0.14703349966100004 :0.10476374720651908 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +fact:0.6811856975996785 said:0.129424747603616 ground:0.0668337494128204 belief:0.06258864438599437 :0.05996716099789066 +made:0.2779901826267672 arrested:0.19980263295671252 born:0.1868817776721978 made,:0.17161346003385894 :0.16371194671046363 +day:0.5200244084130894 session:0.15100957667892762 out:0.12737429320302696 number:0.10118222881306 :0.10040949289189595 +and:0.31869585339108353 demand:0.20944313597604397 of:0.16743294757604055 advantages:0.15895890468432225 :0.1454691583725097 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +serve:0.4493044638821727 serving:0.3030259216698833 sent:0.16168446518381444 j:0.051865828747945764 :0.03411932051618365 +the:0.5010050057284939 southern:0.22694745365480226 S.:0.10692646861666436 by:0.08779735342917326 :0.07732371857086606 +that:0.2886932629420538 Saturday,:0.2136193445346821 Monday,:0.20292921366353753 hand:0.17950628257767942 :0.11525189628204724 +sum:0.21724853066521582 payment:0.212339397798406 city:0.19546532436856495 State:0.19158701478116472 :0.1833597323866486 +been:0.27613122168678994 made:0.22593941404400894 been,:0.195878559885622 done:0.16262477216754362 :0.1394260322160355 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made.:0.6026550800095967 done.:0.16923479841411526 used.:0.10453446196474404 present.:0.08280712568780277 :0.0407685339237412 +the:0.4567745766975836 no:0.3108068110451085 an:0.09544787360956981 any:0.08184514883224633 :0.0551255898154919 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ones:0.29966449283969 buildings:0.26417887833963466 and:0.16586995608920285 men:0.16223590665174317 :0.10805076607972948 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.24547619945598173 hand,:0.2205507419507985 than:0.19145681532836525 day:0.18221341751035075 :0.16030282575450383 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.4931792202362264 have:0.36905312205775176 not:0.06153993052011724 he:0.043408567900083045 :0.03281915928582161 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.45884077215892544 connection:0.17715348597667507 matter:0.1289410401461493 parallel:0.11840508343751481 :0.11665961828073544 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +It:0.4593507860895871 There:0.22786156069103308 He:0.13852170301045524 This:0.10715537634783266 :0.06711057386109191 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ai:0.30942749349080506 -:0.30329604867242693 following:0.16485773541646667 same:0.11367105972185722 :0.10874766269844403 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +run:0.29066701301605374 !:0.23774218407301972 ;:0.20658940432015513 c:0.14588369326026934 :0.1191177053305021 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +no:0.5143169812806508 the:0.28030539422402456 any:0.09943386162681 all:0.06277540315017949 :0.043168359718334985 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +committee:0.2895964643256264 work:0.2057180801513136 Committee:0.20503680541207173 city:0.1636414949199141 :0.13600715519107417 +be:0.46739394401155293 the:0.2235959224797817 do:0.11106992989468346 a:0.10039525449417867 :0.09754494911980316 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +into:0.40023502668862027 up:0.19259745806502845 out:0.17510384268437998 in:0.13902763635446 :0.0930360362075113 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +his:0.38426609507771464 the:0.2755770649533121 her:0.20890179036210385 my:0.08927989443900959 :0.04197515516785983 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.47929412232107144 by:0.41641712924129615 and:0.05738073563823503 in:0.026063401565355478 :0.020844611234041813 +in:0.5049435370060565 for:0.14861319601558812 made:0.12235114169496095 on:0.11734190051709899 :0.10675022476629545 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.29367058080832836 can:0.2738506165191144 to:0.22248109732486307 would:0.11635949766054345 :0.09363820768715057 +principle:0.29998611208482445 acres:0.2938890071913096 view:0.1569987252875276 sense:0.1258219306913487 :0.12330422474498962 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.5940501835575268 was:0.29143633222507964 has:0.04358606755343859 in:0.035791668430804405 :0.03513574823315065 +the:0.6154338311446211 their:0.23106248280535457 our:0.10007332897796944 tho:0.030273815684957513 :0.023156541387097315 +go:0.2798275858762923 come:0.19804377388253017 carry:0.18899759011463618 find:0.16744752248500286 :0.16568352764153862 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +only:0.2358729038665443 chief:0.21218862162242805 main:0.20071187914094002 same:0.1872990197193192 :0.16392757565076824 +is:0.4083051024149447 was:0.38184495859416706 had:0.0856607210140714 has:0.07409714927975194 :0.050092068697064764 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +on:0.8357465518198911 of:0.07668073521110398 the:0.0489209647729683 and:0.023715004299616562 :0.01493674389642006 +try:0.5105165902024021 ty:0.24919415057689095 ty,:0.13218369093159532 ties:0.08976041889214748 :0.018345149396963946 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +other:0.4015671973987891 three:0.2291882862977231 two:0.17370490947423414 five:0.10805662388355287 :0.0874829829457008 +to:0.876084109307201 and:0.05976124512539463 will:0.039642632582505534 may:0.015701557813317838 :0.008810455171580888 +person:0.6817487532970923 longer:0.12449923345106542 man:0.06647319671810278 time:0.06612603147914183 :0.06115278505459761 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.3416119316805803 that:0.2770965023025837 which:0.24114041110127982 and:0.09790441813596261 :0.042246736779593744 +of:0.3942058385435952 and:0.2434435348093704 at:0.21881276771548172 No:0.07227601815387708 :0.07126184077767579 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.49275834720500183 in:0.22424967889926958 true:0.10422101623280706 strong:0.08988207958893475 :0.08888887807398668 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.685869464948585 the:0.11712323184668884 an:0.09926048686763547 which:0.050478062554671944 :0.04726875378241871 +little:0.3705853945109688 small:0.2669014201782772 native:0.21472186032680177 good:0.07530497465721879 :0.07248635032673327 +as:0.31037657843834887 manner:0.23768863171094468 case:0.1785711859030029 men:0.16330732187589006 :0.11005628207181352 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +going:0.25764174126496203 unable:0.2096599122249072 not:0.20500623635875526 able:0.1814447163183151 :0.14624739383306046 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.26805376617466203 own:0.21081848864094035 country:0.2033867187879137 present:0.16573774521020865 :0.15200328118627512 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sides:0.4983165262084478 houses:0.20167127432571452 men:0.1181908541201773 parties:0.09478815999553453 :0.0870331853501259 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.3789038492919325 to:0.30394472015282126 in:0.18414744863555607 out:0.08210348115681158 :0.05090050076287863 +before:0.3762073078455166 to:0.22989055228561006 saw:0.17539731092533134 in:0.11143767348143944 :0.10706715546210256 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.46585168067352223 there:0.2755428430070541 It:0.10304821354962643 he:0.08568412880616033 :0.06987313396363697 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7267527276366693 in:0.09116759079703453 on:0.07126641748047033 to:0.0643680605248287 :0.046445203560997024 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3768240709438673 character:0.32497443809827525 principles:0.10993040393958611 influence:0.10607872425028567 :0.08219236276798572 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +great:0.3587454351525329 important:0.2750793084463515 vital:0.15214158684141912 the:0.1273024679205357 :0.08673120163916087 +be:0.8750322434073632 bo:0.07420793946853846 have:0.02199460872673379 easily:0.017280676292344803 :0.011484532105019754 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +mortgage:0.42154500890121777 mortgage,:0.313259003046185 county,:0.09836771966833602 county:0.08643033245472659 :0.08039793592953473 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.57204330025558 from:0.16004263829242807 so:0.10409531231030958 In:0.10100794284315127 :0.06281080629853096 +of:0.6499467361113361 for:0.1922045151063244 to:0.09448515765064255 in:0.032950102393025524 :0.030413488738671633 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4656730029277265 a:0.304793397466712 something:0.09114925745408249 anything:0.08041965352871645 :0.057964688622762495 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.6203362558715391 the:0.16163419298616663 Smith,:0.0893081583136233 My:0.0783856447447591 :0.05033574808391186 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +carrying:0.38720705722485244 him:0.23087545619241273 them:0.199654584477034 it:0.10354140192196891 :0.07872150018373189 +such:0.5554589570281726 him:0.19442625238655184 as:0.08858644013022197 which:0.08147956346238802 :0.08004878699266552 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.39337065127017484 when:0.2436577372285483 if:0.1435115544366602 then:0.12776661242254575 :0.09169344464207098 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4527615237638839 a:0.15143733161333897 to:0.1500867513936728 the:0.12707971139141302 :0.11863468183769123 +the:0.7343493880287707 a:0.13513655673106392 this:0.07567745463756115 that:0.028885080674717095 :0.025951519927887193 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.527634100310821 but:0.23810758475696636 not:0.1302719105462149 dis­:0.05301150612720565 :0.05097489825879201 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +capital:0.9167066205923794 and:0.027023637955410254 in:0.02347976327568718 the:0.01647670846267521 :0.01631326971384805 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +same:0.2473837782583738 p:0.2257870879784335 last:0.21793202962741529 sum:0.15841656887542194 :0.15048053526035543 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.691805878730527 as:0.11528740785139986 is:0.07935944445820327 was:0.07602679941308431 :0.03752046954678551 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +men:0.3934385625235438 and:0.3255222859787074 man:0.13235182679582885 he:0.0923621069304806 :0.0563252177714393 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +no:0.35511093007303984 still:0.30278208145484864 a:0.1518662849473129 hereby:0.1385004192435126 :0.05174028428128593 +cause,:0.26371605080583616 taxes,:0.21246951401424094 same:0.19030526993702634 matter:0.18880820731132308 :0.1447009579315736 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.39215381793830223 on:0.17850483299453793 to:0.16784660744132276 at:0.13875156909182068 :0.1227431725340163 +it:0.43561896354422575 what:0.18686447707036705 who:0.12829722730654972 which:0.12538190964153992 :0.12383742243731753 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3210473262562483 tin:0.2375791942134478 lying:0.17324016555886143 f:0.13654064395357057 :0.13159267001787192 +of:0.6842651836929006 in:0.1447453401510731 to:0.08581225040799449 on:0.044168036785747385 :0.0410091889622845 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +line:0.3060283380834578 street,:0.2285126212281845 street:0.17292515797340374 ence:0.15924124463256456 :0.1332926380823894 +fact:0.47937756232303064 truth:0.24405748633628765 question:0.1675741304918259 result:0.07457368294067179 :0.034417137908184035 +people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 +he:0.4029505609955214 I:0.18211068555142865 they:0.15130281519171782 it:0.1474457693180673 :0.11619016894326493 +next:0.346700357586101 same:0.29025764365009704 attorney:0.23741276254016713 last:0.07171402270246455 :0.05391521352117 +of:0.8254661108449765 in:0.10953487250736446 and:0.030938169498543208 to:0.0185002835934326 :0.015560563555683379 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +part:0.5358268386932779 portion:0.2287830844097507 number:0.1493241380522897 amount:0.04676658691062375 :0.039299351934057966 +hour:0.5327106538293975 old:0.28683698626053145 early:0.12794473329999725 long:0.02855337641967752 :0.023954250190396084 +say:0.38962403882348745 see:0.1896022161155592 show:0.16372765363851213 believe:0.1309843469651658 :0.12606174445727536 +the:0.48254043209367536 no:0.19618359554944861 a:0.16350596572811743 any:0.09383575444508714 :0.06393425218367137 +are:0.25443961658050834 in:0.21765943537297944 as:0.19436846614339148 have:0.17788083121031953 :0.1556516506928011 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.37222819900174764 in:0.27421066801457084 all:0.13434439594704725 on:0.11729145192866643 :0.10192528510796796 +time:0.5773165624430431 reason:0.17595641688082814 excuse:0.09111279616560516 way:0.07927571720603267 :0.07633850730449103 +in:0.3232578678422387 with:0.22460415559175245 if:0.16420132216032007 as:0.15098735082966172 :0.13694930357602725 +the:0.5569270790186648 a:0.29989062662366045 this:0.08859282526468473 no:0.02899593031894894 :0.025593538774041257 +feet:0.5790901490958945 inches:0.14205376606324854 years:0.11979629055205429 miles:0.09472464622217443 :0.06433514806662838 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5650372019867911 in-:0.2584303799641988 in¬:0.07106384001475598 in­:0.061289181503773806 :0.04417939653048017 +to:0.5687794893468335 will:0.15292308073584493 may:0.11958193455142827 would:0.09052919045198592 :0.06818630491390731 +well:0.5051921422478133 is:0.19914743876973254 was:0.1193205830530191 also:0.08831042325459687 :0.08802941267483808 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +husband:0.43657264012962865 husband,:0.1772045847668641 father:0.15297333672375465 home:0.12070531727165422 :0.11254412110809825 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +did:0.3016805091749588 is:0.18852711344428932 does:0.1824750845405936 will:0.1687847375987981 :0.15853255524136012 +in:0.31991173296665487 on:0.27164176543318996 and:0.2364081417085471 at:0.08889941151626798 :0.08313894837534005 +going:0.3217901891210058 him:0.259632601397609 them:0.153657825971661 it:0.13581058494222767 :0.12910879856749652 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.438530548215532 is:0.2609852029717083 has:0.10809399853987003 but:0.09736181946183957 :0.09502843081105013 +off:0.32045919102678155 in:0.2576838859215474 down:0.15504591106491653 into:0.13787493789812622 :0.1289360740886283 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.44326926764104846 for:0.17532987270128922 a:0.1289522864819735 of:0.12736317311156914 :0.12508540006411967 +not:0.27388538794750583 made:0.27149605404774746 in:0.2522741374294984 to:0.10478429931461893 :0.09756012126062918 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +It:0.4170727633321902 He:0.2536547730796011 There:0.1383745267514418 I:0.11547816089430099 :0.07541977594246603 +engaged:0.25702586496894847 made:0.21896952176304826 placed:0.2091973485765652 found:0.18092104883677196 :0.13388621585466606 +he:0.4424599661552178 it:0.41253838018680156 she:0.09834379692480474 It:0.02396638957196705 :0.022691467161208907 +to:0.3349431600699248 will:0.3279032273728979 would:0.13394002637599003 shall:0.10754966060337227 :0.09566392557781497 +did:0.354796743149662 could:0.2218289274794014 was:0.15394835531848963 does:0.13863198479968464 :0.13079398925276234 +but:0.37980323529355703 and:0.3110512297861681 until:0.13464699829055368 as:0.09869851319723265 :0.07580002343248853 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +on:0.5523966830691055 and:0.15340698163283478 in:0.12141002101184889 from:0.10272464316287862 :0.07006167112333227 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8213770422470758 his:0.08935835029708664 tho:0.035310625936350856 a:0.02863285981825827 :0.025321121701228622 +in:0.3769193104423524 with:0.29206579963061857 of:0.12328502312513677 In:0.10727682260258131 :0.100453044199311 +necessary:0.24096588207560182 impossible:0.22199192684643873 not:0.20049942933006623 ready:0.17027816810835814 :0.16626459363953505 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.773817414665169 in:0.1187012768580031 and:0.04581213397045864 at:0.03162221933553308 :0.030046955170836335 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +of:0.5932643890823308 or:0.1424284545352993 to:0.09704435289380342 and:0.08751616432533701 :0.07974663916322952 +one:0.34909311073949156 all:0.18004324113867423 sale:0.17415866967489554 those:0.15068587496883507 :0.14601910347810348 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.4245870400006902 time:0.42140278473406606 time,:0.09441238982926511 and:0.029848758190325425 :0.029749027245653096 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.3909554252415782 myself:0.19239934916288298 and:0.15032410635676802 was:0.13701003029966938 :0.12931108893910145 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8888578691300698 a:0.035400032598741776 tho:0.03479210055887068 his:0.0238736633643683 :0.017076334347949387 +it.:0.3410322711059898 there.:0.2810374278250659 them.:0.1666273150975089 up.:0.11037536566218539 :0.10092762030925005 +posed:0.4812370640740628 regard:0.16711784018736767 tribute:0.1287763869830329 position:0.11641105188185669 :0.10645765687367988 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +little:0.44277020807869694 shade:0.23025455017376692 much:0.13798762539086534 few:0.127839710096451 :0.061147906260219834 +bill:0.3130192209026884 result:0.207745711953939 bride:0.1790661194044228 man:0.1504124945085327 :0.14975645323041717 +in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +could:0.24433194600151115 did:0.24300743390716462 .:0.19223478479281597 am:0.17637544317190618 :0.14405039212660214 +could:0.40149999659898555 can:0.2575160733017666 will:0.18416374875768884 would:0.0817865322019596 :0.0750336491395994 +in:0.3555376612880513 of:0.27108030598882527 on:0.18771261160038766 at:0.11475888180086136 :0.07091053932187427 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +much:0.4241789998321079 far:0.16986977292033606 arranged:0.14827152491498824 as:0.14705921514239365 :0.1106204871901743 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +life.:0.31601517135396623 death.:0.21149507261440967 wife.:0.1877948346781055 own.:0.16012413490798005 :0.12457078644553832 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +I:0.36581173095763353 tin:0.2204234011183812 -:0.138874714291513 the:0.13803614667379388 :0.13685400695867841 +which:0.4110764496822824 you:0.2574020939146862 whom:0.1394453370984725 them:0.1078411194824198 :0.08423499982213906 +with:0.27557003786096634 the:0.26992693071556617 his:0.18988742466911016 and:0.14023295424249818 :0.12438265251185913 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +aid:0.4008491912012015 number:0.19567968368122216 piece:0.13948133094254336 line:0.1338636013980199 :0.13012619277701304 +time:0.27401422574056494 him,:0.22633655533520494 Mr.:0.18078362767583855 it,:0.16489232659378641 :0.15397326465460512 +side:0.32056071538876246 parts:0.24410934586853963 day:0.18353269187517868 members:0.14703349966100004 :0.10476374720651908 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +accordance:0.45567474297272426 connection:0.36276114350371136 contact:0.10855163254712391 conflict:0.04534622397643834 :0.027666257000002366 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +being:0.46849791436146054 which:0.3726700527571485 those:0.08862135180186329 himself:0.03705968767063931 :0.03315099340888834 +the:0.6935414161031792 a:0.23296449390227028 tho:0.03156031228059098 large:0.026240197188799004 :0.015693580525160494 +few:0.9093051745551868 six:0.026074495886080216 summer:0.025766066305745402 three:0.019923822688325463 :0.018930440564662154 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +plenty:0.2519505633222797 some:0.19534897260960368 heard:0.1931920356395986 power:0.18336266369755808 :0.1761457647309599 +.:0.9285593936653189 t:0.020393147859047694 V.:0.02025317220917073 M.:0.016500377772284865 :0.014293908494177854 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +can:0.4208463484411206 could:0.3532990160355529 had:0.08473508266005192 are:0.08119633813163588 :0.05992321473163859 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4398114023353183 open:0.1608979853317519 wide:0.15897200050580904 opened:0.12537138364503914 :0.11494722818208157 +said:0.40320126333542466 time:0.3595409908140984 day:0.0839955797679585 best:0.07757820046903845 :0.07568396561348001 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +Canada:0.32565761790805736 and:0.2222116170321594 Union:0.20874382993354823 States:0.12847587871984 :0.11491105640639505 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +subject:0.2708521342199717 right:0.22636552663948697 order:0.18426917705445378 way:0.1622515487311221 :0.15626161335496536 +acre:0.7827824357693669 ex-:0.06683574671079487 immense:0.05856040691813479 at-:0.05744668189038912 :0.03437472871131433 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.8788337401623526 aud:0.0382175139287708 thousand:0.032480404526317196 or:0.026711548011672394 :0.023756793370887024 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sale:0.8849084282204059 which:0.06300322923219458 sale,:0.02193815222446916 trust:0.01727010331995741 :0.012880087002972688 +protest:0.21197699853583007 claim:0.20466370045893412 one:0.20201925043917834 case:0.19972600594266293 :0.18161404462339453 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +now:0.306813831909966 engaged:0.18934038531521988 interested:0.1889322859730126 not:0.16446278780639428 :0.1504507089954072 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2667507745902356 Mr.:0.2629244174797201 Mrs.:0.1672371706905338 said:0.15719304614428986 :0.14589459109522068 +the:0.696285046667983 at:0.1298675789654359 to:0.06851873488425286 The:0.055584238300930205 :0.04974440118139785 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9015239725672651 tho:0.07181636056552992 tbe:0.01731352045689764 a:0.006052682714003579 :0.0032934636963037377 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8196043089329572 any:0.05178581524270606 tho:0.05140151574714726 those:0.047775448279350353 :0.029432911797838985 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +than:0.928495713893626 or:0.02736210992997846 and:0.017690770302807943 because:0.015041893610581076 :0.011409512263006516 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +going:0.25764174126496203 unable:0.2096599122249072 not:0.20500623635875526 able:0.1814447163183151 :0.14624739383306046 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ago:0.42586827114697046 and:0.2121450690949589 of:0.1609168867420531 old,:0.10643830129097619 :0.09463147172504126 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.8264103974651795 and:0.08156470288284426 will:0.04371181397221545 would:0.027566496758002573 :0.020746588921758256 +the:0.8683315824512863 this:0.058390034927911436 tho:0.04334793406883611 civilized:0.015042926264653807 :0.014887522287312398 +of:0.7558185702212386 in:0.09488228341919429 to:0.06543979046467338 upon:0.04763385159460769 :0.03622550430028597 +the:0.790584901689543 an:0.09835614538511549 their:0.056367524360414964 its:0.02791412965935272 :0.026777298905573822 +a:0.8185293576605857 the:0.12807191178165878 my:0.0182316799246996 other:0.01760080741250257 :0.017566243220553387 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +well:0.3841459616912554 follows:0.22431054652770974 it:0.19025611550294916 aforesaid:0.12108469304478914 :0.08020268323329664 +think:0.36386458168060254 want:0.19932984032050519 thought:0.1741946667132035 hope:0.1409243067540886 :0.12168660453160005 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.925111256951744 him:0.029965487320909406 them:0.015427385001628442 it:0.014913622505352202 :0.014582248220366044 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +deed:0.26524402694524746 amount:0.2081995842440134 tract:0.18157651848419434 number:0.1731725460154946 :0.1718073243110503 +hundred:0.8577904117820284 year,:0.04048115438049983 year:0.03727109210214192 side,:0.03399877949254926 :0.030458562242780485 +on:0.3065516624561744 in:0.24379741988062284 to:0.22162222935655498 from:0.12013404365903674 :0.10789464464761102 +him:0.4253450914285171 them:0.18564183605766446 us:0.14446435858878848 me:0.1437038324937616 :0.10084488143126825 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4479001209394811 per-:0.18505507422837467 his:0.14420007941587162 their:0.13484305246815412 :0.08800167294811855 +been:0.6208088156691433 to:0.17941358218696377 lost:0.07361376720553633 in:0.0646655674689739 :0.06149826746938276 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7940107014386386 said:0.08063890760491586 County:0.06622437279734911 Police:0.03552234413786754 :0.023603674021228815 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5744167983940197 th.:0.19260774292266222 a:0.11943695383690418 the-:0.06415781434564026 :0.04938069050077377 +the:0.2871323840790679 that:0.27974108171801026 ago:0.1582377284751515 others:0.1393327179027138 :0.13555608782505651 +time:0.3138797632232669 him:0.2524973822392309 them:0.1625265567011679 going:0.14487702312763204 :0.12621927470870217 +fund:0.8065281513135238 condition,:0.06620885648197491 down:0.058536370268660154 down,:0.04093797040501888 :0.02778865153082208 +right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +if:0.5643213806620258 when:0.1328546325888365 If:0.11799869935404066 time:0.10539766926895913 :0.07942761812613806 +in:0.28218306737541077 to:0.23907725642475344 on:0.17013324058886484 for:0.15507896630579363 :0.15352746930517736 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +more:0.5295331748571389 two:0.1801815317048414 three:0.11763314324439253 one:0.10610624163066416 :0.06654590856296297 +in:0.49270757665522347 the:0.13161886116890334 thus:0.13095516393606424 of:0.12710344195998122 :0.1176149562798277 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.3823634481619528 and:0.19862969780786105 in:0.18777543785762965 by:0.11692934139407962 :0.1143020747784768 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +go:0.409634576180319 come:0.1820413690832247 him:0.15491679222342905 try:0.12769469573402084 :0.12571256677900647 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.4145008079280911 best:0.19798954946949465 course:0.13713074618198534 way:0.12932002068107526 :0.12105887573935357 +know:0.30777271439161624 believe:0.2950578506344941 so:0.14959199005035662 think:0.12619838322756602 :0.12137906169596699 +is:0.4444749587756546 seems:0.21137095243808565 was:0.13941926833021356 seemed:0.12798029257969082 :0.07675452787635521 +of:0.38621636873717846 from:0.3332631785992378 the:0.10503637793058436 down:0.09620319021249027 :0.07928088452050905 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +quired:0.5384097234074416 ceived:0.19089128111507495 port:0.134919929889006 ports:0.07121183883712953 :0.06456722675134773 +point:0.3777182727974111 man:0.18829101347037677 attack:0.1809593259859826 place:0.15279508837726724 :0.10023629936896224 +in:0.3055596787145823 and:0.2909721838437867 as:0.17969501044149583 that:0.11345619552831972 :0.11031693147181557 +and:0.3029900193576326 it:0.20653331038378417 that:0.18632205594527346 as:0.16422269935278622 :0.13993191496052343 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6712506073664865 this:0.14941973661345992 said:0.10965088367035296 tho:0.04366047771971513 :0.026018294629985575 +that:0.6375399496403442 him:0.18155040117343862 me:0.08178415943825879 how:0.05896158191660374 :0.04016390783135465 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.8860031045439709 that:0.04059585239489983 to:0.029918438748119208 as:0.026510643456491043 :0.016971960856519145 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.23263085152943788 do:0.2307685898095691 get:0.2264895172389247 sleep:0.173970024094039 :0.13614101732802952 +the:0.9326428407036597 tho:0.043786587626083145 tbe:0.015033337724739516 these:0.0045858493488774585 :0.003951384596640375 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +funeral:0.5663626043244238 wedding:0.13715267302555573 first:0.12846598235915177 latter:0.0923270901432453 :0.0756916501476235 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.35591390801031375 Deeds:0.23898128743073002 land:0.16427108330298018 interest:0.12632544005277482 :0.11450828120320115 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +long:0.9028025038946822 only:0.05737125929757385 that:0.02245958526896197 so,:0.009004787828966866 :0.008361863709815289 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +or:0.47249293876086057 feet:0.21800465754420692 hundred:0.18414621706003997 of:0.07224872493747157 :0.05310746169742099 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +never:0.24362086934101598 been:0.22118536260859156 ever:0.21425824384205233 had:0.19305624530129092 :0.1278792789070492 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.5039170956514777 the:0.2165163750426205 an:0.16966200520809538 and:0.09092226172479063 :0.018982262373015802 +that:0.2835001458075167 that,:0.2626172574125911 in:0.20376066420052463 himself:0.13796292189985654 :0.11215901067951099 +think:0.4146581956040134 and:0.16298115795908766 thought:0.15576163118193995 believe:0.14227260945824954 :0.1243264057967095 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +no:0.35879119967193096 the:0.2465414906475815 an:0.23340638637574912 any:0.09297822156442041 :0.06828270174031816 +a:0.5670579437501018 the:0.34927485466861535 least:0.03282285127138052 once:0.027870196800602553 :0.022974153509299804 +this:0.5273046997499307 an:0.22720901733651133 the:0.15306040573651675 any:0.05346641975537177 :0.038959457421669445 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +almost:0.39740537590295355 not:0.23669877736415781 taken:0.16594682755978796 arrested:0.11378707288908653 :0.08616194628401427 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.3335265811209809 of:0.25998733259890616 and:0.17165959182299687 for:0.1676944474268749 :0.06713204703024116 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.44801772865131767 the:0.23842712644788258 to:0.20212894393957762 in:0.08263175696878555 :0.028794443992436646 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4270392601011483 county:0.29848148523990076 It:0.10556116147825817 there:0.08760018261004564 :0.0813179105706473 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.2698315495873536 by:0.2431251706193758 to:0.2135208714500239 all:0.1681705380317102 :0.10535187031153648 +did:0.354796743149662 could:0.2218289274794014 was:0.15394835531848963 does:0.13863198479968464 :0.13079398925276234 +to:0.5143396006711137 and:0.22623957290338736 will:0.11983153037496685 which:0.078678646737873 :0.06091064931265904 +the:0.6135637836838991 an:0.2519620072902758 his:0.07160969719446704 their:0.03244649351123993 :0.030418018320118315 +and:0.23476313793717246 he:0.2118634447803961 it:0.20492654404874647 which:0.184616913979644 :0.16382995925404098 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.29569425473897115 make:0.19378736189873516 in:0.19355625644555668 have:0.17579223979420877 :0.1411698871225283 +American:0.42902152397438315 whole:0.27493048640317086 young:0.10850298016370712 colored:0.10693133720200369 :0.0806136722567352 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +years.:0.369752770029808 days.:0.21272233578266522 months.:0.19351462862437457 hours.:0.17538588224030857 :0.04862438332284368 +been:0.9482552207194972 had:0.02308169708221881 recently:0.01637748739466198 always:0.006216705415440767 :0.006068889388181197 +a:0.5293446527569017 much:0.18106855357162416 still:0.10777180412312798 the:0.1070127117060525 :0.07480227784229382 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +can:0.2627609760448367 should:0.2532714665706594 will:0.21129907646175683 must:0.13817856439427484 :0.13448991652847228 +time:0.3303960289524154 right:0.18586476112897235 names:0.18521163808165092 country,:0.15450226977379966 :0.14402530206316172 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7059375924512171 and:0.09820574565271606 to:0.08113118997622681 in:0.07867913725156268 :0.036046334668277176 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8383415392822263 a:0.08755423264971893 his:0.030390276423768035 tho:0.02470787391250059 :0.01900607773178615 +parcel:0.5909479099506468 any:0.1791916136708397 some:0.08873858015682487 part:0.07361809121316343 :0.0675038050085251 +have:0.336615318200091 be:0.28956817248537786 been:0.2069959376555431 only:0.09936353624279952 :0.06745703541618861 +people:0.26817505621003856 man:0.22010859150067927 bill:0.19086816596948514 farmer:0.16085203719390448 :0.15999614912589266 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +six:0.21336674250931592 three:0.21233605686139043 two:0.19925633682069332 ten:0.19271425768467582 :0.1823266061239246 +of:0.48866380851156166 the:0.18872911386189145 and:0.14182890375905055 to:0.1002347525352725 :0.08054342133222384 +price.:0.6167373487636701 prices.:0.1636655184748407 one.:0.09988704901124842 land.:0.06934612689243351 :0.05036395685780725 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +hand:0.2985044084515125 earth:0.19024965631422006 it,:0.18691055166528167 board:0.17297951477659307 :0.15135586879239268 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 +ahead:0.33835467833836586 out:0.2880202303327906 more:0.1579948511440568 as:0.11670181406512763 :0.09892842611965898 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +point:0.26648883359667247 city,:0.23708542319481446 country:0.23364999506713482 place:0.1638222310431068 :0.0989535170982713 +light:0.7467713686539794 story:0.1420812879994317 |:0.04526699889031518 a:0.03752050171169563 :0.028359842744578184 +of:0.5032127877254985 in:0.17179796208172718 is:0.15586722097466943 was:0.09186788322662505 :0.07725414599148 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +al:0.5934453848210441 ;:0.16556488571788344 knife:0.08487506274786842 up:0.07896766717766077 :0.0771469995355433 +the:0.7505722013462824 our:0.08344674760633163 an:0.0827167301786004 his:0.0464481362907492 :0.036816184578036405 +a:0.4846253430431945 the:0.4047661151287998 this:0.0636921920881886 some:0.03009175276113221 :0.01682459697868485 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +amounting:0.42259113046620567 and:0.22177048912436753 interest:0.1433430543051196 according:0.11145845616299536 :0.10083686994131194 +that:0.49371878689425874 then:0.15104330129084353 not:0.12222771029592831 when:0.11805700633922903 :0.11495319517974043 +there:0.27216887218725855 one:0.25739929739998424 that:0.19347555279594214 it:0.16363777204231172 :0.11331850557450342 +did:0.3016805091749588 is:0.18852711344428932 does:0.1824750845405936 will:0.1687847375987981 :0.15853255524136012 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.7954234806946855 the:0.10855026482903457 to:0.044972054742653894 no:0.027581863813227848 :0.023472335920398116 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.7950123154747399 this:0.10796235737670391 a:0.04921234151180027 tho:0.03426050605033126 :0.013552479586424459 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.4021896564949225 in:0.24903173324619854 from:0.12022117429045637 with:0.11957822611942105 :0.10897920984900145 +The:0.5038281317060951 A:0.31700219134691154 the:0.08232070345085907 This:0.052968316269288065 :0.0438806572268462 +as:0.5181541267952301 about:0.16596285967396052 but:0.1268924749193631 not:0.09679584956289174 :0.09219468904855448 +said:0.5569880431373563 plan:0.15789853574547308 first:0.1314446090680694 bill:0.08724696890029902 :0.06642184314880217 +he:0.2998373568041859 I:0.2864755839454262 we:0.19317879442002525 they:0.12612651061231658 :0.09438175421804593 +Board:0.4680381675979116 Bank:0.24779040464939012 Department:0.15251316805339896 Treasurer:0.07059912230830437 :0.06105913739099506 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +own:0.4749255581209797 respective:0.18462005586418076 officers,:0.13700768796715726 sole:0.12216666928139364 :0.08128002876628852 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +wit::0.3021939301188946 them.:0.20649221786076075 him.:0.20124812714149273 it.:0.17824690288787012 :0.11181882199098189 +him:0.6330632469385085 me:0.1316127628794896 connection:0.09382330546436467 and:0.08056671205971627 :0.06093397265792108 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +all:0.42766840240462006 that:0.2993734721527005 which:0.10844009100744052 least:0.0867683768552149 :0.07774965758002408 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him.:0.2920327446424165 them.:0.2568813511605844 it.:0.1816238648153005 death.:0.14876977438805994 :0.12069226499363858 +the:0.4208232705102259 The:0.24879434055849947 of:0.1423494239999734 to:0.10313188169675928 :0.08490108323454192 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +when:0.3726043616845843 and:0.27629298058019675 if:0.14346799179974046 that:0.1107390978727922 :0.09689556806268626 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.45358146916761205 of:0.2737290333454998 that:0.09795589259442473 to:0.09616227183593613 :0.07857133305652741 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +party,:0.41872537971197643 life,:0.1907104318414429 power,:0.1585479068717099 rights,:0.11640434770826809 :0.11561193386660257 +the:0.8406414281589848 our:0.07059120373105515 tho:0.036097989074009365 his:0.0319063158289447 :0.020763063207005907 +side:0.48193886993806734 line:0.22847454497161682 quarter:0.15406192018187542 corner:0.07941577042754575 :0.05610889448089465 +States:0.5656821172806845 States,:0.4207305784952803 states:0.0059476988349809225 State,:0.00393338830393115 :0.003706217085123002 +which:0.36576050701153173 that:0.25403497452450413 whom:0.1516626821039713 what:0.14776942442240276 :0.08077241193759013 +those:0.6880897775035371 one:0.14434670463908553 all:0.10117063278283239 men:0.035686691440246596 :0.03070619363429823 +it:0.5050446473979147 room:0.2871166303372664 and:0.0702542317537016 rooms:0.06881698016257765 :0.06876751034853952 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +oath:0.23649231608207202 is:0.23074147321165284 came:0.1958876107550201 as:0.16926911167981956 :0.1676094882714355 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +himself:0.263156118197747 is:0.20743901029257983 a:0.20171394002881085 that:0.1782470131419835 :0.14944391833887882 +final:0.2665725248854949 general:0.23371627469838197 same:0.21369152627771545 slightest:0.19016448402796346 :0.09585519011044416 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +than:0.8624772951069328 or:0.10118938347705442 about:0.018423641277498334 of:0.010304546183026746 :0.007605133955487865 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5662944311983553 for:0.1753986920143275 on:0.1031802819188409 in:0.08650607000800208 :0.06862052486047412 +a:0.43315815947392583 no:0.21854028579198684 the:0.14396222082177387 matters:0.10679706165163444 :0.09754227226067902 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +year:0.3245310708692772 time:0.22935634002162678 and:0.1562031749708597 one:0.15031421581157992 :0.13959519832665643 +be:0.5511300883739231 the:0.17289818356257655 an:0.11583859092877546 have:0.09197191320176408 :0.06816122393296081 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6830206975131039 in:0.16054220841473082 on:0.06507852948749888 for:0.06408337003105762 :0.027275194553608745 +three:0.407604015444524 of:0.24978477831975116 four:0.1735507182336434 six:0.0905512064074241 :0.07850928159465716 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9300605817159296 or:0.029548228704637292 and:0.026907010407589128 along:0.007138432471156976 :0.006345746700686891 +court:0.8006933271546609 judges:0.07838629694180602 command:0.05029401065673476 I:0.037982496159494415 :0.032643869087303955 +No:0.3776583811853884 Every:0.18475396615713308 If:0.1560227955474712 The:0.1425853072764999 :0.13897954983350747 +no:0.4344813761272575 only:0.17421063953015073 the:0.16637913606061142 not:0.13884540078115937 :0.08608344750082085 +in:0.26477055201283245 that:0.2523922178804962 to:0.19029469857840736 for:0.14930715469353087 :0.1432353768347331 +New:0.9842292922090279 Now:0.007493784472734421 the:0.007138995471597404 do,:0.0005966550275451169 :0.0005412728190954367 +the:0.5081918068127601 them:0.13825238830425468 him:0.13378144738980585 us:0.11540745873593115 :0.10436689875724817 +and:0.4447847598148451 passed:0.245827579564472 all:0.1335060751292626 for:0.08997729444498506 :0.08590429104643525 +him,:0.27380728172181573 be:0.19649795736085857 him:0.19098230879313408 me,:0.17372011034931062 :0.1649923417748811 +line:0.7464822241064181 out:0.08618038786144448 ahead:0.07649220622836943 lino:0.049632631998015944 :0.04121254980575203 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3391415357956831 been:0.20858818981602237 lost:0.17203334409706433 made:0.15949765638490168 :0.12073927390632859 +of:0.29949837670665436 mentioned:0.2549041833267049 and:0.21215858402107093 or:0.12653988204161862 :0.10689897390395121 +his:0.3486457300655126 their:0.2626512406747352 our:0.21967212302525618 its:0.09379913913052267 :0.07523176710397358 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.37963752471083995 which:0.277996593669485 that:0.19837650456215203 said:0.07692210289720748 :0.06706727416031558 +do:0.2768551363585908 does:0.2107925518008519 is:0.2050799503049804 can:0.16628661035446807 :0.1409857511811087 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3810199270599464 mixed:0.18803503349458636 himself:0.1658749836379207 met:0.14679643261525005 :0.11827362319229649 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.3161685910131306 had:0.24891151040504572 think:0.16499033169529323 makes:0.13527479002957102 :0.13465477685695953 +appear:0.4304508688605738 described:0.2543701466776704 discussed:0.11355682922950881 posted:0.11105134777327756 :0.09057080745896952 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +failed:0.43262936470522173 been:0.18338895956904946 refused:0.1361670187051644 come:0.12675076893570522 :0.12106388808485913 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +All:0.8691713247937385 On:0.04299826393125529 From:0.04291315775579584 on:0.02256299196814895 :0.022354261551061502 +country:0.22173380547733262 way:0.202585592024491 lives:0.19898128809658852 friends:0.19572233027978644 :0.18097698412180155 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +boy.:0.3279688856489227 and:0.2833243810977152 of:0.13426410926558974 said:0.133135250820155 :0.12130737316761735 +mortgage:0.33046250081340933 order:0.19487989751732326 bonds:0.18898740444644924 proposed:0.1530131467973063 :0.13265705042551187 +hich:0.5812098344144706 ho:0.21632942528364105 ill:0.12153982904761358 re:0.045372005029738156 :0.03554890622453653 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +years:0.7226170776401128 days:0.2206206135431524 months:0.03758309395469057 weeks:0.015519510559373693 :0.003659704302670451 +is:0.3781026087531648 said:0.2070040280821857 was:0.1598640500210593 provides:0.13849319768841378 :0.11653611545517642 +which:0.4110764496822824 you:0.2574020939146862 whom:0.1394453370984725 them:0.1078411194824198 :0.08423499982213906 +resulting:0.48052835280960327 come:0.1683848228526329 comes:0.13853513908624712 resulted:0.10976554770739766 :0.10278613754411906 +we:0.27817458395988726 it:0.23843135311103214 they:0.17628988662815606 he:0.16843337633776273 :0.13867079996316178 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +necessary:0.6178175947320522 sufficient:0.1463847404643463 guilty:0.10998548569856843 it:0.06934104525957423 :0.056471133845458724 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +on:0.3910447285615733 8,:0.25630303161384227 3,:0.18217708628249135 12,:0.09818658867048137 :0.07228856487161159 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +country:0.3126307222279785 world:0.20939825972142323 State:0.18931481010607562 people:0.15723059030680364 :0.13142561763771898 +to:0.5876576139304962 I:0.1536675135504363 not:0.0929050580050531 would:0.08971373345510304 :0.07605608105891129 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.5899966450431731 the:0.19867610080148176 as:0.08259158162342564 to:0.0815692429642446 :0.04716642956767494 +which:0.39228860740784244 whom:0.28557672467718 that:0.1848661180296025 what:0.08475711509539581 :0.052511434789979244 +coast:0.3120361204409019 City,:0.2038203027181137 City:0.19635429268131221 States,:0.18427912144103636 :0.10351016271863593 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +religion:0.3417554588066959 church:0.23902844029631642 association:0.22181486620116714 church,:0.1022511642486875 :0.09515007044713295 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +I:0.25130350431802884 to:0.24339365072089283 we:0.24196357618180467 they:0.18953815584445705 :0.07380111293481656 +that:0.26242037194847034 in:0.24310840161627748 to:0.17971106492130448 for:0.1745622096095853 :0.14019795190436246 +them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 +less,:0.43369946106769247 refuse:0.21007124497171945 otherwise,:0.14740984895191137 ought:0.10770233010147484 :0.10111711490720192 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.6732561897139719 and:0.13899437678218537 cannot:0.0691687096698719 or:0.06107152560807422 :0.05750919822589663 +of:0.6093900094644951 in:0.12177040579469686 on:0.10129135265746396 and:0.09223650057084842 :0.07531173151249569 +time:0.33737323863282304 use:0.2109083100396215 said:0.17561093752822596 fact:0.14936583813304144 :0.1267416756662879 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3221867675807893 .:0.24922051440493345 to:0.1820378028219321 of:0.15532077263977356 :0.09123414255257153 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7528691274905589 a:0.14386031397332255 this:0.04402327276378791 tho:0.0388976497998296 :0.02034963597250121 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4075744763932247 and:0.2716344742097519 was:0.13487550020810565 without:0.11852250453101396 :0.06739304465790391 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +did:0.4976440284587706 could:0.17615918063741728 does:0.13327057496507214 do:0.09822603757117576 :0.09470017836756428 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.5249328107973557 It:0.1591650820847962 case:0.12068885688727296 which:0.11816452761989261 :0.07704872261068255 +together.:0.34439129684342984 as:0.26571271124281615 that:0.14073618744764818 followed:0.13521204193537634 :0.11394776253072972 +tent:0.35470851346777416 press:0.284954858730312 plain:0.14049829483256382 pressed:0.11568934866976831 :0.10414898429958176 +ported:0.7190829720570041 marks:0.19084372260522994 tain:0.05821497171702425 j:0.018154293329218706 :0.013704040291522952 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +United:0.9823903122384878 Southern:0.008335323756619861 Confederate:0.003652086607621244 other:0.0034789154161813493 :0.002143361981089876 +he:0.3775582575303948 it:0.27820313971650956 there:0.17708783376580198 she:0.09767003058746972 :0.069480738399824 +that:0.3121305718328553 which:0.30161177554124746 all:0.2789354906283677 among:0.0728966978356385 :0.03442546416189103 +family:0.4211502050423396 party:0.1756524779126431 house:0.14829679266477835 families:0.13296060825416584 :0.12193991612607318 +the:0.569723662033542 his:0.17571880171874568 her:0.09783596182565325 my:0.08413283929858621 :0.07258873512347279 +West:0.3051632380180549 the:0.3049205800999163 do:0.18505288979291545 East:0.14062779004313625 :0.06423550204597711 +to:0.4898336095051301 the:0.27295918445793926 an:0.09000311677461739 and:0.08793035333776272 :0.059273735924550264 +He:0.22792289152286666 have:0.21353579693297775 be:0.21247044980707014 and:0.17416633782050672 :0.17190452391657876 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.30108265378603943 well:0.2566918497019301 much:0.15878947967410206 provided:0.14388689542299365 :0.13954912141493467 +and:0.5189817492700255 died:0.16650716600042656 will:0.16343153338587024 but:0.12358385885494028 :0.027495692488737473 +fail:0.375745178587817 more:0.1713239034870248 know,:0.16672633327624828 may:0.15049306460472714 :0.13571152004418283 +to:0.4160493289499364 he:0.2474907922272795 she:0.1439767502069939 I:0.10925167775172788 :0.08323145086406238 +they:0.2736658951626495 it:0.19972420367023527 us:0.18040692961489505 that:0.17516569343469077 :0.1710372781175295 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.961934885340569 ot:0.014745413787457307 ol:0.010655242858316255 to:0.009739392737447143 :0.0029250652762102653 +to:0.44973473364838346 will:0.27412433048135787 then:0.10912578523967466 not:0.08530357564406774 :0.08171157498651636 +the:0.6669018886646426 this:0.17449491925387087 any:0.05782775794968469 a:0.052349154777121445 :0.04842627935468033 +It:0.38805580691256225 He:0.28953783043268805 There:0.13161665811966372 I:0.10902597730427577 :0.08176372723081028 +them:0.3605071166223901 the:0.3273497366189582 land:0.15565138225020955 life:0.08787882178618889 :0.06861294272225311 +it:0.37151998841059414 there:0.22787827866976573 notice:0.17803252273962977 he:0.12702708477080968 :0.09554212540920061 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.6158066813538509 is:0.16527878144382036 who:0.08385024490083201 were:0.07533940387429565 :0.059724888427201056 +and:0.38998984850270135 or:0.2884546705887087 them:0.14297502832593678 is:0.1230161543477172 :0.05556429823493592 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +cured:0.26963518142834114 surrounded:0.25502722756464125 destroyed:0.2269929937793801 covered:0.1905402415047081 :0.0578043557229294 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.4075165114382776 he:0.27017278479926493 it:0.1297559661167995 that:0.09644895866901297 :0.09610577897664485 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +going:0.25764174126496203 unable:0.2096599122249072 not:0.20500623635875526 able:0.1814447163183151 :0.14624739383306046 +the:0.299397104817262 w:0.2878077150395598 his:0.2056053485039159 them,:0.11852289911135888 :0.08866693252790328 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5342466821221686 a:0.22912162009805806 his:0.12029815081205872 their:0.07895935823267208 :0.03737418873504232 +or:0.44039240681541225 of:0.19677288194945863 in:0.14928718858832352 for:0.12379530286996263 :0.08975221977684289 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9408614218519559 the:0.020885380324080372 ot:0.020515291232416268 ol:0.009944044863108598 :0.0077938617284388865 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3900740453975317 but:0.1983077291864673 as:0.16460718203786112 if:0.13335622463149804 :0.11365481874664193 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6752269838374613 Wall:0.1466746475126802 Washington:0.07004853560326751 tho:0.06581207393471805 :0.042237759111873004 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ball:0.26632902483665283 Democratic:0.2085566743845302 commercial:0.19259776035503323 local:0.1919466608103939 :0.1405698796133899 +10:0.26783310734855165 length:0.23815888751923533 the:0.1748217920582051 11:0.17049747113697283 :0.14868874193703505 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +taken:0.3481726340799203 received:0.21937074286966665 come:0.2112200367436742 heard:0.11449869115664021 :0.10673789515009866 +car-:0.3848785131957944 car:0.2288047650726832 mar-:0.17580311472210772 coun-:0.1493563528541355 :0.06115725415527914 +cents:0.3577591838684417 12:0.1890670965410419 11:0.17138243660580396 00:0.16639669497123816 :0.11539458801347416 +it,:0.2608878255975971 him,:0.23256579367540162 them,:0.1844105083508123 him:0.1772569189593748 :0.14487895341681417 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +carry:0.34219199989907045 get:0.24758956182419325 go:0.20592285480345687 find:0.11220601581206473 :0.09208956766121472 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.3335080917062807 in:0.1905136758963337 and:0.1873846750677235 ith:0.1465589021506758 :0.14203465517898625 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.3952275789756636 sale:0.234917258757635 North:0.1344814933402235 said:0.12734481414848461 :0.10802885477799344 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8073684228367227 July:0.05617560512368338 a:0.053811223007039596 his:0.04171680208146393 :0.040927946951090435 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +back:0.24460591326307612 duty:0.2128286772293951 mind:0.18844905402037646 way:0.18441381960941589 :0.16970253587773637 +a:0.617132789563955 been:0.20531607538411714 no:0.09379820328092255 made:0.05337495955987378 :0.030377972211131653 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.40296120114766176 by:0.30289451889230634 in:0.12785852975775713 for:0.09787042361386232 :0.06841532658841251 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.7342074830368325 she:0.11964939377898252 it:0.0631918576722196 well:0.04560445641726716 :0.03734680909469826 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.2697580599543355 at:0.2470692708085564 in:0.18157453324212658 to:0.15707163357849935 :0.14452650241648224 +several:0.29541843441978766 some-:0.26261098025399293 three:0.22665254253632755 many:0.13165321016234022 :0.08366483262755166 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +party:0.3890782550200727 situation:0.18885494282182833 life:0.18845562284778505 and:0.1424247778141514 :0.09118640149616246 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.3138797632232669 him:0.2524973822392309 them:0.1625265567011679 going:0.14487702312763204 :0.12621927470870217 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8649202505273011 the:0.05737925805049072 and:0.055491693300906135 on:0.012833545379079233 :0.009375252742222739 +ports:0.6659828986200805 pair:0.08750014770360513 posed:0.08697165963277259 press:0.0832713710802556 :0.07627392296328604 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8566717770407676 this:0.05933272593779106 their:0.031000017426963702 a:0.027962185864336495 :0.02503329373014114 +elec-:0.3526868855395944 ac-:0.2183430201290539 sec-:0.20961088768773875 ac­:0.11728118020249254 :0.10207802644112049 +that:0.26259155708408194 as:0.21712011861303032 if:0.21069928958220768 when:0.1594912036490514 :0.15009783107162863 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.5081102190626005 but:0.181257928435044 for:0.12998908080637844 in:0.10869378003054997 :0.07194899166542712 +now:0.3397150866326594 not:0.23384014546633738 situated:0.16031857120743634 made:0.13936289499483412 :0.12676330169873284 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +own:0.43321598930541605 official:0.16324655803534488 military:0.1515864385991838 best:0.13623783258947145 :0.11571318147058383 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7887463672113436 an:0.12423371874876687 tho:0.032649580998070936 tbe:0.029206892485439524 :0.025163440556379167 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +of:0.5649094439772776 that:0.36949558609514 about:0.026830833554362755 for:0.0259756176004111 :0.012788518772808436 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +see:0.6065212480499358 that:0.12046633527892296 know:0.09313911956430597 be:0.09255428273564698 :0.08731901437118833 +one:0.3688422722993829 matter:0.2107952241818109 means:0.18592441083285283 part:0.14920929055869567 :0.08522880212725777 +place:0.34833724788697323 spot:0.20162386496180532 point:0.18414383965253847 country:0.15714008192469367 :0.10875496557398913 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +than:0.33557148489604294 money.:0.2626670072285147 so.:0.1982657767836895 or:0.1081464873063763 :0.09534924378537654 +impression:0.31379859365182555 report:0.2703162713440056 action:0.18931588012759912 effect:0.143201462389224 :0.0833677924873459 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8626108318573602 to:0.04303553158439236 in:0.042264508671905135 ot:0.027913834335054035 :0.0241752935512882 +not:0.555759747584741 necessarily:0.27433289674147504 soon:0.11252912795453106 also:0.0314289529246645 :0.025949274794588507 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.8649472274259874 that:0.05564637591062505 and:0.03373782000222543 known:0.02809466916322364 :0.017573907497938454 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.33172757094207705 for:0.21243943672781815 and:0.19983442616386426 have:0.140152283091611 :0.11584628307462952 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.824106878623665 City:0.058997082984948435 tho:0.04951262953594191 said:0.042369672158056336 :0.025013736697388173 +and:0.4535335587592947 id:0.17800117563285883 and,:0.16517151309770944 that:0.10562171776822449 :0.09767203474191258 +to:0.4203348917929265 been:0.3371599399720088 in:0.10272864670502378 all:0.08265988272952915 :0.05711663880051194 +ballot:0.5589918132029624 first:0.2790454271348378 jury:0.06980402719028223 second:0.05300294086059829 :0.039155791611319456 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3742523213511161 will:0.18342093045754362 the:0.14937318126322152 women:0.14725688326695516 :0.14569668366116378 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +give:0.28443005174860586 make:0.2632146722725124 keep:0.24123312628563703 take:0.10844734650378057 :0.10267480318946419 +the:0.2643801761738987 any:0.2640870215098413 an:0.17675602665460236 much:0.1679868311270197 :0.12678994453463804 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +free:0.21434111159531763 road:0.20945354400749785 water:0.2069683378284568 people:0.18620643795080932 :0.1830305686179184 +come:0.26721080324424784 gone:0.25288761293903966 not:0.18052936896212757 failed:0.16236324396165827 :0.13700897089292655 +of:0.3518658387285747 in:0.22923873586303162 to:0.15954503433920075 for:0.1314178496602952 :0.12793254140889776 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.378138563345901 events:0.22753226160514017 conditions:0.1620211910302677 life:0.15331923299432454 :0.07898875102436644 +an:0.358119451662206 not:0.22179413114826496 very:0.19408868256109454 so:0.12804189390528423 :0.09795584072315039 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6445330548955509 under:0.11785474920680432 favorable:0.08262638401113839 as:0.07835521872060887 :0.07663059316589767 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.2973082230530125 to:0.288505680135003 for:0.23616873054102766 on:0.10531387682169124 :0.07270348944926541 +in:0.47394533685622225 be:0.1674373835545069 with:0.13897620253699822 have:0.12392586798689575 :0.09571520906537694 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +l:0.24329574116821462 look:0.23546017908632744 extra:0.2213355254928758 and:0.15119840770474993 :0.1487101465478324 +connected:0.31548648332670953 made:0.21515624107374953 charged:0.1747045950181949 done:0.1515130845731932 :0.14313959600815274 +and:0.40672989582250335 when:0.252689457793247 during:0.13651560285795158 but:0.10493804767242393 :0.09912699585387408 +be:0.34309731578759756 pay:0.18221955644451418 not:0.17888169445035892 offer:0.15436694146883165 :0.14143449184869777 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +terms:0.3851799253769217 arrangements:0.2264207219922874 trade:0.14971561409027626 conditions:0.12189906569217497 :0.11678467284833981 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +same,:0.24988887985450783 country,:0.22707589768013137 world,:0.1913512823844303 case,:0.1709796392790603 :0.16070430080187018 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7762139835088805 a:0.08973553811281705 this:0.08717574688350255 tho:0.024536292902133692 :0.022338438592666293 +it:0.4088608041534663 which:0.16078872634919023 but:0.15464436665478332 we:0.14369465984231142 :0.1320114430002487 +notified:0.415520264087964 ordered:0.2562873947286048 fact:0.12743262966638033 stated:0.1270407925849673 :0.07371891893208364 +man:0.34459987963002175 part:0.17504112987565124 day:0.16740302596242193 thing:0.1571605099422874 :0.15579545458961766 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +house:0.343449136809934 houses:0.2436594070356911 house,:0.23850355699883932 was:0.09096135576656707 :0.08342654338896845 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8590143197869649 Attorney:0.0480280884756258 Major:0.03805896349827713 tho:0.03625092809125631 :0.018647700147875704 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +go:0.36559322940636546 be:0.326021078245809 b:0.15832667231232014 h:0.08697340906542067 :0.06308561097008474 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +and:0.48759343908416775 cured:0.20550223593710223 done:0.1245863096692185 removed:0.09413629807769996 :0.08818171723181156 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.38716241933753953 in:0.22166851759469647 to:0.18667456971161772 and:0.10228032785807002 :0.10221416549807623 +the:0.4784286463089214 silver:0.22154547972602173 a:0.1826772835226724 of:0.06001149297364333 :0.05733709746874116 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.29120486923233635 with:0.26559301182560363 for:0.2068509025201751 upon:0.12058643982987509 :0.11576477659201001 +to:0.46678226469322387 that:0.23937477472396507 by:0.1061296023524854 upon:0.1048643403031399 :0.08284901792718566 +the:0.44286723504931713 this:0.2462892246030076 an:0.21761881792026774 any:0.051549265263790604 :0.04167545716361692 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.84358281817863 in:0.05660409512309634 over:0.04755798497854929 by:0.026466290931761324 :0.025788810787962965 +of:0.8254661108449765 in:0.10953487250736446 and:0.030938169498543208 to:0.0185002835934326 :0.015560563555683379 +and:0.3499934266603951 I:0.31007299229635815 system:0.2583471384043092 had:0.05292402444945741 :0.028662418189480055 +and:0.42928583118817815 however,:0.2016922211824705 but:0.1730381980579538 as:0.1028515913745036 :0.0931321581968938 +one:0.3847203537933439 day:0.2722940194206343 date:0.1514943363126427 all:0.09631390718136446 :0.09517738329201458 +the:0.8683315824512863 this:0.058390034927911436 tho:0.04334793406883611 civilized:0.015042926264653807 :0.014887522287312398 +of:0.792238500615347 says:0.06265911500293803 and:0.05730238607018114 in:0.05060963780554815 :0.03719036050598585 +Mr.:0.279639721002356 then:0.23171802833499192 wife:0.16656440492018137 it:0.16412755858855746 :0.15795028715391318 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +himself:0.3358441953624262 out:0.20959065974669333 that:0.18541225279797846 themselves:0.1472324174050903 :0.12192047468781184 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.8233962045776398 a:0.09181235696371778 already:0.034362256722393486 re-:0.027288932220115775 :0.02314024951613293 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.3165150094923971 for:0.30078764874736413 his:0.23974002016304888 her:0.0877304246809044 :0.055226896916285476 +will:0.3780674845500748 may:0.19812453433654917 would:0.19284017783633617 can:0.14709708778448205 :0.0838707154925578 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.7615133032444369 will:0.09935035215790367 and:0.05812541777756779 would:0.044732620476209524 :0.03627830634388211 +he:0.528762927716568 they:0.19171831984925033 she:0.13356016969197412 I:0.09053910399403461 :0.055419478748173025 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8253292763519164 on:0.05654104471206069 tho:0.05274780462513872 to:0.04012035701882205 :0.025261517292062094 +he:0.342177979501088 I:0.2715040339627683 and:0.19367800441240499 she:0.11783874678361977 :0.07480123534011893 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4052434305890119 in:0.32480562939228097 and:0.1595748259969724 to:0.05724667797165734 :0.053129436050077514 +order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 +of:0.8744206255056627 and:0.051758410750967425 ot:0.03332618191039316 by:0.0277606957403702 :0.012734086092606503 +and:0.6480082348584808 in:0.1296068804257248 so:0.09537674602186033 on:0.06389781286231071 :0.06311032583162325 +is:0.3652608125572108 but:0.23924906655321565 are:0.16288666462096227 and:0.14433238805900922 :0.08827106820960227 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5346301264555721 a:0.22710910842892978 this:0.12685928449149017 any:0.07017263448978081 :0.04122884613422715 +in:0.3679623602891249 than:0.16895391201187637 on:0.15577024607864112 is:0.15564605917478153 :0.15166742244557607 +all:0.3665416815310596 that:0.23135779825641822 which:0.17283219759864385 and:0.1495899226760839 :0.07967839993779427 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +that:0.3308774394816098 of:0.2995306170723095 if:0.16967344518417762 and:0.11448727264194257 :0.08543122561996057 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.46241117626042477 were:0.18830807074582176 are:0.17029313647051833 fed:0.0969817696645891 :0.08200584685864579 +not:0.8436261695573332 you:0.09733455839717708 we:0.027343344877790568 I:0.020851496525844344 :0.010844430641854766 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.38560574281562354 a:0.18925577924867049 two:0.17152374396025896 five:0.13782590989113203 :0.11578882408431486 +to:0.36935128545564994 in:0.25129252407937036 that:0.15163348888213585 of:0.1375615453414027 :0.09016115624144116 +to:0.9104084479405277 will:0.06329405126699707 of:0.01646328749479936 which:0.005335961757249559 :0.0044982515404261595 +now:0.28734423821060046 not:0.23095874518787873 situated:0.17547687204843804 recorded:0.1709858307341018 :0.13523431381898102 +re-:0.29451308203860443 official:0.24702584364052269 own:0.23589251635211067 other:0.12897997799143016 :0.09358857997733205 +been:0.6161541220589666 made:0.11108168541517788 seen:0.09628501419537151 done:0.08829569456407718 :0.08818348376640678 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3118835295149181 up:0.19000995115690458 that:0.1899358399072858 out:0.17650364484452996 :0.13166703457636159 +follows::0.9546587210244443 possible.:0.02348417522598228 well.:0.008722942524095997 to:0.006606189314124446 :0.006527971911353093 +in:0.358297768768206 to:0.23328645127779382 on:0.1852699335000188 at:0.16396632424409235 :0.059179522209889 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.7827384434863461 the:0.12484517909304868 is:0.040086811619072196 it:0.027477020136203834 :0.024852545665329354 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him.:0.25323360001717227 it.:0.23464271375427673 them.:0.21055472823234647 do.:0.16587683642092552 :0.135692121575279 +to:0.3286500150658405 at:0.3203054141280292 with:0.12186415728407844 for:0.11514418860901561 :0.11403622491303615 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.3131070564266294 when:0.25513967826923467 if:0.21281199213532687 as:0.14520591507966987 :0.07373535808913911 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.6883388725174645 but:0.1608623599977304 for:0.06033458313258616 with:0.04972006480526614 :0.040744119546952826 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8235012667756029 a:0.07362408554247026 tho:0.05059014338488169 this:0.03164904451099731 :0.020635459786047947 +sides:0.30908349091212883 are:0.23480547156528636 were:0.19767625250185175 parties:0.14494905439546868 :0.11348573062526444 +at:0.32293488287802324 as:0.19566518945806066 is:0.17898945883640657 for:0.17565270845050274 :0.12675776037700692 +the:0.5270479944494159 and:0.1667928132081656 so:0.12623385118391803 to:0.09831962495728573 :0.08160571620121479 +said:0.40320126333542466 time:0.3595409908140984 day:0.0839955797679585 best:0.07757820046903845 :0.07568396561348001 +a:0.40606931057762613 the:0.2692017055975925 elected:0.146816526674705 appointed:0.09705711163235838 :0.08085534551771804 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.24732434061163902 ing:0.2305806163701238 of:0.2189659622143478 to:0.16288994974408091 :0.14023913105980837 +well:0.35208966528424074 known:0.25061997726232177 just:0.13655261849561445 regarded:0.13191230777931956 :0.1288254311785033 +of:0.4591887344371382 to:0.41523305415588546 in:0.0467298644873198 for:0.042566694171481595 :0.0362816527481751 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4787802191351354 to:0.23067398118522803 for:0.10398877312718377 in:0.10029221149788319 :0.0862648150545696 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.5620336842401474 was:0.3018200746512986 Is:0.0675599603975823 are:0.04307090633462361 :0.02551537437634794 +was:0.29952639831799543 is:0.26507756679965644 had:0.19155552615438912 has:0.14786097408798288 :0.09597953463997615 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +st.:0.36575612452742823 i:0.22038024580810256 -:0.15904639502366785 e:0.15024240905858582 :0.10457482558221558 +the:0.5842748690922484 a:0.2039049032283049 this:0.13853515955782322 our:0.03828955657693296 :0.034995511544690674 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ner:0.9205722886807126 nor:0.05470242864843119 gress:0.011781041191563774 and:0.006894680700597956 :0.006049560778694582 +day.:0.5207040008007273 future.:0.18369454223350518 city.:0.13231128459854913 land.:0.10734581477308675 :0.05594435759413168 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +War:0.25481078114391087 State:0.24757734174306176 Treasury:0.24448930250672374 Navy:0.22234485719655678 :0.0307777174097469 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +with:0.2487736375228256 to:0.23917530287278957 for:0.2235610569878513 of:0.14483507585755612 :0.1436549267589774 +hundred:0.5042470432698191 years,:0.18737423217533716 years:0.12996109771195702 days:0.11168559923848645 :0.06673202760440047 +apart:0.39873345459805043 out:0.2640595218148614 up:0.23374653878243049 them:0.06682858614072143 :0.03663189866393633 +most:0.8281284144815104 very:0.06938542269176454 more:0.056957010653609495 same:0.02676398864411353 :0.018765163529002052 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.6326879487593202 was:0.17772926490126803 Is:0.13388766906361882 has:0.033711438879115575 :0.02198367839667722 +run:0.28393457136654515 talk:0.20790482944581448 and:0.20021377148765537 stock:0.15919360294853516 :0.1487532247514498 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +most:0.557400827901477 first:0.25656368976965266 very:0.08012361355144221 other:0.06137956754634973 :0.044532301231078326 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +B:0.2911125912726619 .:0.2901856846908758 -:0.14818745608168252 The:0.1413480998363294 :0.1291661681184504 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +place:0.4275392330133623 office,:0.1553703481615666 home,:0.15039669057285976 room,:0.13547968501482874 :0.13121404323738256 +and:0.30393693334498584 the:0.2309883526557439 by:0.2093299742519478 it:0.1884980158895842 :0.06724672385773817 +the:0.27999952971464803 much:0.2468629310356778 an:0.20060701857620397 very:0.16926166925413882 :0.10326885141933144 +for:0.5885000117489708 of:0.18078547777635295 or:0.09689932217658201 than:0.07649820271044358 :0.05731698558765051 +had:0.4772479818219739 has:0.4324331003036783 have:0.04682590179991954 having:0.024899329468902522 :0.01859368660552565 +of:0.9567108061265609 ot:0.012651303727457295 and:0.01052889180599258 ol:0.010098073669546622 :0.010010924670442522 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him:0.2647010538536375 them:0.21626523392537006 free:0.18428947429339326 miles:0.1759649968348486 :0.15877924109275063 +long:0.27990803274806597 the:0.23651323405456165 a:0.20525842763779548 mean:0.15055112072237906 :0.1277691848371977 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 +that:0.6861359503283683 upon:0.16181039920457313 to:0.08112114214751802 to,:0.036073500787957714 :0.03485900753158265 +the:0.5781443782235325 other:0.14683828818463415 such:0.11498457898062332 of:0.09063337419879924 :0.06939938041241096 +that:0.5097639559109934 the:0.17010101311369483 and:0.13469292741319583 of:0.0930872199034737 :0.09235488365864218 +in:0.3247520521496308 that:0.22117999781496467 for:0.16417075548217291 to:0.15331087086920925 :0.1365863236840223 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.40628494815004546 an:0.24723219484295544 cial:0.1354160874777137 -:0.12286156933045576 :0.08820520019882966 +important:0.5440667001372262 all:0.1420163327407517 other:0.13199017526319337 delicate:0.09551681637499052 :0.08640997548383822 +them:0.3798106293529112 sale:0.2155884603662198 said:0.17885953168372043 that:0.11559044337021852 :0.11015093522693006 +people:0.43671396033738324 men:0.22586492652706128 following:0.13303621497199694 latter:0.10411557441943095 :0.1002693237441277 +his:0.42351024209619204 their:0.2711185196816988 its:0.13392631554925863 her:0.09231815654354045 :0.07912676612930993 +years,:0.5027937559465269 weeks,:0.19406721995489337 hours,:0.11212449743964491 days,:0.1067441030597662 :0.08427042359916866 +all:0.3276276130271439 which:0.2685252297805583 that:0.2425670389449229 and:0.09572453666725896 :0.06555558158011603 +to:0.3725541721248419 for:0.2777496422488867 of:0.15902002009666155 in:0.09673502505064648 :0.09394114047896339 +in:0.402218282367193 on:0.3131663493226501 upon:0.1193908882540143 at:0.08427278436224071 :0.08095169569390201 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +United:0.9823903122384878 Southern:0.008335323756619861 Confederate:0.003652086607621244 other:0.0034789154161813493 :0.002143361981089876 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +with,:0.35397912369698453 in:0.17800127542772065 ;:0.16224606009811 ball:0.16166725203439186 :0.14410628874279294 +to:0.5642974092480816 in:0.2549581431978302 if:0.06543005183712415 though:0.05894551211192669 :0.056368883605037584 +right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 +well:0.3675750893465405 aforesaid,:0.19756651670137643 possible,:0.180439332216918 it:0.13993261169144527 :0.1144864500437199 +from:0.7117950762845763 and:0.1927807270343644 in:0.05714230059237032 of:0.029948822506026058 :0.008333073582662946 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.6420356354585308 the:0.1731036816404522 that:0.09198960848916593 too:0.046967817708985574 :0.04590325670286551 +only:0.36388944494205044 be:0.2994803671572123 to:0.11976851349838633 have:0.11006068090284714 :0.10680099349950367 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.34391862270900925 secured:0.22076062828759993 done:0.1656616804599992 shown:0.1395954667090464 :0.13006360183434515 +told:0.32958080993846883 informed:0.2248485615999509 sure:0.16732803409663854 not:0.13927162483967362 :0.13897096952526813 +was:0.2385552419058073 had:0.236563613546134 made:0.19226762716103746 asked:0.1726288010116566 :0.15998471637536454 +not:0.777496161858464 be:0.09961580260369228 is:0.04839023505327938 of:0.040301223184436116 :0.034196577300128136 +on:0.4467663496383185 in:0.21468075740810819 to:0.1253794177620692 of:0.11254871453975324 :0.10062476065175077 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.5689064642709667 the:0.3197213298931462 this:0.04671457736435659 his:0.03951743072746914 :0.025140197744061222 +this:0.3142625714139419 only:0.2020060673330627 giving:0.19861200122088385 the:0.17792070748473032 :0.1071986525473812 +which:0.35162475885822353 the:0.24820245061627685 whom:0.16626061275470694 that:0.13074203704247173 :0.10317014072832086 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8951025982572647 in:0.07047145457610934 ot:0.013061235873178978 In:0.011326034505357678 :0.010038676788089455 +of:0.7056609964583823 for:0.12496466075721863 to:0.07144894235810244 and:0.0541212961791996 :0.04380410424709719 +be:0.8774784910894295 have:0.06511212213047132 bo:0.04326696594147912 not:0.008672930808011618 :0.005469490030608428 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.3804340160145224 it:0.24187276857864706 they:0.22438157553126795 she:0.07775809784325254 :0.07555354203231013 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +world:0.2847693741127075 same:0.21268402183628637 country:0.1728648424610908 State:0.16719564263840322 :0.16248611895151216 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7856280263475195 its:0.09125791605635851 Its:0.051663895434418475 total:0.04367083490855291 :0.027779327253150615 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +states:0.3094591534805767 and:0.261326944590575 mail:0.1553025723224276 wheat:0.1400383753505512 :0.13387295425586965 +sum:0.3231329965440353 payment:0.20741142341464902 day:0.19873296424285145 city:0.15602152154125767 :0.11470109425720644 +and:0.5380268613574064 or:0.13298031983463954 arising:0.1246830713614688 but:0.1148717054901018 :0.08943804195638351 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.2701491117952495 for:0.2462977931718763 to:0.22925552172214553 reason:0.15464878324266954 :0.09964879006805925 +of:0.9596393390736461 ot:0.013684839789355635 in:0.012292804048836327 ol:0.007802479821024747 :0.006580537267137221 +work.:0.39226005099193234 hand.:0.18706806600443437 doors:0.15504348963650302 door.:0.14052155408177078 :0.12510683928535937 +be:0.8785271962476984 bo:0.052209408390157544 not:0.046071222000299235 act:0.016839743135638238 :0.006352430226206709 +of:0.7956153184585292 upon:0.06355920606795583 and:0.05601405857260481 in:0.04357745767916081 :0.04123395922174953 +made:0.35521071629696976 foreclosed:0.24398410990080924 done:0.14244664034900092 paid:0.14139776831955897 :0.11696076513366108 +had:0.4553789927263089 has:0.3319694800853524 haa:0.09802070144680175 bad:0.07045748601549892 :0.04417333972603804 +the:0.7120350124461335 an:0.15684534885547527 this:0.0588222291680634 his:0.04164771189667809 :0.030649697633649747 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.4739392168507537 that:0.2562059616196249 which:0.12320501518463044 said:0.07820061116942735 :0.06844919517556364 +hundred:0.5497181236653963 thousand:0.3177710899931458 million:0.1177484800592046 of:0.010964414826393518 :0.0037978914558597114 +is.:0.22315819019275288 as:0.22308171941907848 ?:0.2160822407714502 out.:0.18922390472374556 :0.14845394489297284 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5363651295339128 a:0.32241921720517325 many:0.05464626789036334 other:0.044367834855532536 :0.04220155051501807 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.5608240304327541 at:0.34065631537589236 about:0.07850668369914364 by:0.010772904227925833 :0.00924006626428399 +people.:0.4404560272619264 government.:0.35235502419092424 line.:0.09332076662599512 trade.:0.05810241206691598 :0.05576576985423839 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.7717892885854392 will:0.11944487478768907 and:0.04729758076988065 shall:0.03974500989222578 :0.021723245964765294 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +known:0.4447886996926174 as:0.34380612624222956 dressed:0.11318328223055864 and:0.05296811045122756 :0.045253781383366797 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +question:0.2534687913562367 bill:0.20084906941636768 report:0.19472890980175647 deceased:0.18075782634147414 :0.17019540308416495 +go:0.409634576180319 come:0.1820413690832247 him:0.15491679222342905 try:0.12769469573402084 :0.12571256677900647 +the:0.4764911418037578 his:0.25703255071226294 my:0.11483557715841294 their:0.10919999286771088 :0.042440737457855496 +in:0.7301407847261288 and:0.08206729329979096 who:0.08109315692297255 to:0.05803747476529817 :0.04866129028580966 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +time:0.4145008079280911 best:0.19798954946949465 course:0.13713074618198534 way:0.12932002068107526 :0.12105887573935357 +is:0.5828157665026565 was:0.2191823791835575 Is:0.12173194669427344 to:0.0439638967000863 :0.0323060109194262 +of:0.47230403339109184 in:0.3660023985865416 In:0.06279048332979853 to:0.05844690986641807 :0.040456174826149945 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 +the:0.38910448130260594 other:0.3338851408817198 his:0.09969602187712923 attractive:0.09759577468471684 :0.07971858125382819 +made:0.8461505244411804 heard:0.0653862803989803 there:0.03196906798761713 out:0.028440185249721552 :0.028053941922500457 +great:0.2656958492502399 good:0.22662078698297664 little:0.21595810921375386 very:0.1598612886832521 :0.13186396586977747 +to:0.9287492167644572 and:0.03588783581376279 I:0.019655594734102864 will:0.00800217181508974 :0.007705180872587395 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +had:0.38284252759768883 was:0.3584705168222837 has:0.13030014945957308 is:0.07204085282364375 :0.05634595329681056 +see:0.34026189592439443 to:0.17512352777402387 asked:0.16863816175202168 for:0.16375002890257384 :0.1522263856469863 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7994401658028905 tho:0.06440702736925512 an:0.053971325788142094 his:0.04662001264751243 :0.03556146839219964 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +peo-:0.9722936143223777 the:0.014704514116253394 ap-:0.006790685807134313 pur-:0.003354341666749702 :0.0028568440874847663 +will:0.5290542530882634 can:0.22527625819225297 may:0.09418370049816846 to:0.08304331527151888 :0.06844247294979634 +He:0.5449311518532343 She:0.1599093020331452 I:0.155963563231293 They:0.07355764130599213 :0.06563834157633527 +be:0.23226366754823627 do:0.22702300826957306 agree:0.20210927245947508 go:0.17577568764751922 :0.16282836407519635 +United:0.9660871445925763 Southern:0.014847843204905764 Confederate:0.009134564711745638 other:0.005786371306168121 :0.004144076184604209 +a:0.4133146914688902 the:0.2934633593120952 his:0.11567941531653368 no:0.11452506494341273 :0.06301746895906815 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +market:0.2638353415324626 great:0.22164242969527806 par:0.19216188425257255 total:0.18493070617857188 :0.13742963834111488 +of:0.5311181700968074 in:0.20151887560459608 and:0.15594111770437788 made:0.0660185846864857 :0.04540325190773304 +no:0.7227150379438573 the:0.09327439366969052 full:0.0668165452076608 their:0.06261206398941047 :0.05458195918938092 +the:0.8128688558386002 its:0.07350431196502419 tho:0.03982072617681983 their:0.03802957849833031 :0.035776527521225565 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.26206239705496165 Davis:0.2212545185241595 county:0.21843114811153702 county,:0.18918161082127558 :0.10907032548806626 +conveyed:0.34571702449442215 made:0.20179423804778707 owned:0.19320515766414895 appointed:0.1366620621510734 :0.12262151764256829 +made,:0.4681705121457407 done,:0.19594920735600124 used,:0.13366608808371794 nothing:0.10435164255559336 :0.09786254985894684 +in:0.4202448872908036 for:0.2335916937207784 with:0.17612624617826017 by:0.08962255328790422 :0.08041461952225357 +tended:0.3440700901543805 tend:0.3172679593570058 posed:0.14090397555485654 tent:0.11158563539277287 :0.0861723395409843 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +part:0.31028899527683895 portion:0.20218365376756128 one:0.1889578423695801 day:0.17618667258820278 :0.12238283599781698 +placed:0.3096352003107917 put:0.2547204895277975 made:0.17156695559862856 came:0.13205115211531154 :0.13202620244747065 +of:0.7901173920562711 in:0.06976606995026112 to:0.058856987513840345 for:0.04436855137611206 :0.03689099910351538 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +even:0.5387001918470563 hour,:0.15345986662325767 equal:0.11700605658699162 act:0.10410909758430205 :0.08672478735839241 +hands.:0.3192691099889989 own.:0.21896907131309926 work.:0.20182649887891477 condition.:0.13382247118767293 :0.12611284863131414 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.4143395054897673 thing:0.2368653640686496 was:0.1782315303446647 of:0.11274964690680313 :0.05781395319011523 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +gress:0.914224174325943 way:0.05026624713202548 dition:0.015609909587135968 go:0.011204109323728863 :0.008695559631166517 +have:0.3553103447355714 can:0.2557306297579339 could:0.1375315187686412 the:0.12797799271756483 :0.12344951402028863 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.4897567405883019 with:0.17189788567096317 when:0.131707152227847 as:0.11540082324316661 :0.09123739826972134 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.24952119471483095 it:0.21698416866446427 that:0.1863426832216347 with:0.1735836238696795 :0.17356832952939064 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.5999309956571209 day:0.1481409514543817 only:0.08838961519033192 morning:0.08310273430412177 :0.08043570339404364 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +A:0.7223497060211183 H:0.08573064865013198 J:0.07450489023553764 K:0.061240977109837044 :0.05617377798337495 +cept:0.6263598342279868 pressed:0.20350848387068118 press:0.05899344272832158 tend:0.05866450064752028 :0.052473738525490234 +away:0.33503786037635985 them:0.203167031389788 off:0.15776722163414442 him:0.15293780346659788 :0.15109008313310995 +of:0.9178061365974396 that:0.02790584340212725 on:0.023074344196724682 in:0.016365938359049315 :0.014847737444659103 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.4186845515066419 which:0.2608232452378421 there:0.14751124450830308 them:0.09389180397066457 :0.07908915477654835 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.44903767050206184 in:0.19278374633938944 Boston,:0.1522861846634918 from:0.11455403319504306 :0.0913383653000138 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3432992006548758 the:0.24624306868103948 in:0.15375549503048244 for:0.13225684425411016 :0.12444539137949209 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5829483667437553 between:0.27987195552256183 on:0.052891613603178775 with:0.04649119900707916 :0.03779686512342512 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.9138786180796071 bo:0.04872567499627383 have:0.018910786299245166 he:0.010703966792157387 :0.007780953832716508 +was:0.4447615402323723 looked:0.23750256745009832 died:0.119706603900313 is:0.11258584165118132 :0.08544344676603505 +who:0.47155426292529173 and:0.23312478815786974 to:0.20777161487474952 can:0.05190121757735868 :0.03564811646473033 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.37965248635238996 ago:0.29159718538820534 after:0.129403289993999 of:0.10694429250235588 :0.09240274576304977 +in:0.3097108370480123 and:0.2799230480865264 on:0.18738990118415588 where:0.12138413022449344 :0.10159208345681187 +States:0.6833305242669799 States,:0.3071796102836261 State,:0.0065063088189648245 State:0.0020230139689247006 :0.0009605426615044884 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.45199315740604584 he:0.1890160789668664 and:0.1385732829099386 that:0.12594847503658016 :0.09446900568056905 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +say:0.37787397263183303 be:0.20071360717910397 seem:0.15401607081917063 find:0.13949614414447561 :0.12790020522541667 +after:0.3401867355527732 in:0.32875702139210783 on:0.17032733394177837 for:0.0929018017695043 :0.06782710734383621 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.4034003574492826 had:0.243143355175947 is:0.20933228350494443 has:0.10109724189284679 :0.043026761976979196 +he:0.4013453653159783 I:0.20254954246689438 they:0.17189988119460115 she:0.12318850261408457 :0.10101670840844165 +prices:0.32072588248965783 wages:0.2628995309530171 price:0.19377130877346124 rates:0.1214630254623406 :0.10114025232152324 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3929858237463952 see:0.17822447584869247 in:0.16234739946858986 take:0.14013524487362175 :0.12630705606270073 +against:0.30449723293168757 of:0.2854120391293056 was:0.16572170303969208 at:0.12830841783853816 :0.11606060706077663 +time:0.3138797632232669 him:0.2524973822392309 them:0.1625265567011679 going:0.14487702312763204 :0.12621927470870217 +the:0.6294738664115623 Main:0.13996507737068603 said:0.11857407733484716 Wall:0.07038623662716127 :0.041600742255743374 +if:0.5031266793525658 though:0.19512781382877523 that:0.15866615219931884 to:0.07887836429804175 :0.06420099032129835 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +general:0.40943417240726443 hearty:0.2503557704428532 public:0.1457542528955483 entire:0.11118047702420014 :0.08327532723013403 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +going:0.2585235478252685 placed:0.23642330981040433 held:0.17344731448956857 carried:0.17233595493789808 :0.15926987293686046 +in:0.7048663801992143 to:0.09210875416444327 In:0.0759182662943682 a:0.06657699788831131 :0.06052960145366299 +first:0.31264017521969134 most:0.27476376047534146 same:0.18055984886377366 great:0.12354842452123307 :0.10848779091996036 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.5386131815985976 most:0.1807078609314976 very:0.14951020880469593 the:0.067235481573405 :0.06393326709180372 +that:0.25680648942191686 which:0.2269643467709619 should:0.19996441767397208 would:0.1812611756009446 :0.1350035705322046 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3905790862787699 for:0.18336728897533167 to:0.1605065608710758 with:0.14386399889557022 :0.12168306497925233 +an:0.3148112010238913 very:0.2966691785273125 most:0.2046237554510466 more:0.09280751919029358 :0.09108834580745587 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.6852147246970205 yet:0.12233178546935386 having:0.09334949466584878 had:0.05314428404152801 :0.045959711126248734 +sup-:0.5076169237573845 pur-:0.2878627927110612 pro-:0.0998051587928423 pro¬:0.05872312934298346 :0.04599199539572857 +officer:0.5455809677722734 individual:0.19725479223972336 expert:0.10547851027973541 agent:0.08301779949591116 :0.06866793021235662 +order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4826495034433279 an:0.3250353689559593 his:0.07653450217407645 their:0.06759310644393937 :0.04818751898269702 +force:0.30020739063510027 grown:0.17801255793665618 and:0.17793240437984045 benefit:0.1773762586060051 :0.16647138844239792 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +acquainted:0.6653458129940143 known.:0.20673292267407054 connected:0.05547468117584797 possible.:0.04277446778518001 :0.029672115370887396 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +side.:0.45102555898408353 her.:0.33481579224273766 door.:0.10420999651400331 him.:0.06860554140082242 :0.04134311085835324 +at:0.2599656245606889 of:0.24752740231057246 e:0.20765658664426254 in:0.16063101025628646 :0.12421937622818964 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +carry:0.34219199989907045 get:0.24758956182419325 go:0.20592285480345687 find:0.11220601581206473 :0.09208956766121472 +of:0.6052058482109697 in:0.13458212158004879 and:0.10132081786379274 or:0.08658428551537413 :0.07230692682981468 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +of:0.7467479685569529 half:0.08231866454334275 in:0.06458662047105808 is:0.05764316394681715 :0.04870358248182919 +out:0.259740280440485 good:0.23388141114474084 that:0.21792507721082213 room:0.14919702852382155 :0.13925620268013048 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +vast:0.25004963116127343 second:0.24244514374657705 same:0.2382486139101054 people:0.16096151430872047 :0.10829509687332359 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +me:0.2991071846318897 officer:0.276245508733967 position:0.15977666227834614 him:0.15501603928104674 :0.1098546050747504 +the:0.676055014205895 a:0.14386388613315307 tne:0.07050159130492037 tbe:0.06121476244585366 :0.048364745910177726 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +such:0.6566254396566344 regard:0.11357777438254728 this:0.09639258586169677 good:0.07572880491192009 :0.05767539518720141 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +half:0.24750611822843946 of:0.2134578389978743 time:0.18319074465509116 while:0.17847455948790394 :0.1773707386306912 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.3411674099738274 but:0.21145689756677352 I:0.18411025343941811 they:0.1494406560840585 :0.11382478293592237 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5759813590268862 our:0.13209302528757375 all:0.11407655530804332 other:0.09802007073546597 :0.07982898964203079 +of:0.9596393390736461 ot:0.013684839789355635 in:0.012292804048836327 ol:0.007802479821024747 :0.006580537267137221 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him:0.345540771418676 here:0.19085250266671996 hand:0.19062299170587113 them:0.15243363962677953 :0.12055009458195336 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +unable:0.273177137729641 compelled:0.21489434095224683 going:0.1778442415117511 able:0.17407986983570004 :0.16000440997066107 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.789292076572394 their:0.06577861232262507 a:0.05187470472949875 his:0.04747762893007266 :0.04557697744540952 +say:0.38962403882348745 see:0.1896022161155592 show:0.16372765363851213 believe:0.1309843469651658 :0.12606174445727536 +in:0.5938098067078895 the:0.1853822589758331 by:0.10847776659177367 In:0.07095379908062244 :0.041376368643881334 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +ties:0.5156822661931676 ty:0.38157620395574743 amount:0.044077046343970576 son:0.030149603686366506 :0.02851487982074791 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +right:0.313145431028564 over:0.26208402149641913 necessary:0.204187940152817 persons:0.11257858919100876 :0.10800401813119105 +not:0.8539621468915923 never:0.06845464914053649 always:0.03750259055199231 also:0.026120554678857853 :0.013960058737021058 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.4973961975053785 it:0.21356482077295225 you:0.12990945764824224 the:0.0951167107758978 :0.06401281329752921 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +success.:0.48709205152045115 power.:0.15878162785197603 value.:0.1317102031225057 work.:0.12393719189312316 :0.09847892561194402 +a:0.37752521698291724 the:0.21411256309350316 large:0.17426688145816507 A:0.1487073026065106 :0.08538803585890391 +of:0.6845332261924761 over:0.1731577992965732 around:0.06878041223349247 to:0.03998449145547159 :0.033544070821986446 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +country,:0.25647522717650195 country:0.23393142623432564 people,:0.21088449289014816 people:0.15166585597042992 :0.14704299772859422 +are:0.29244454637930073 was:0.24291121377054986 were:0.17647461323205593 is:0.14929738335899256 :0.13887224325910089 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.3128090578317753 done:0.23089776653516594 at:0.17862928606735418 made:0.14208353626904913 :0.1355803532966555 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +see:0.3799754458931045 and:0.26628802687965075 0:0.1348531583838763 .:0.12059224348079446 :0.09829112536257396 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.5658711008566274 composed:0.1633654695627263 capable:0.10694179288348933 worth:0.09088855266136625 :0.07293308403579081 +the:0.610340659377666 a:0.28376910333390054 this:0.05600691488498956 tho:0.028337887977527215 :0.02154543442591666 +other:0.5625178272836079 particular:0.20085753484794158 one:0.18149663355860796 legislative:0.033672929230557425 :0.021455075079285 +not:0.6505392953664775 be:0.18895656361647906 have:0.13154799179201399 needs:0.01672036108895019 :0.012235788136079435 +the:0.41876871464388266 either:0.2222699677085069 each:0.19718485040341 one:0.0916842381002334 :0.07009222914396696 +was:0.5964400937562713 and:0.20573953399033904 were:0.07632928586247804 had:0.06166974275088944 :0.05982134364002228 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.6411497021387552 was:0.23748566184536957 became:0.06120022317984976 Is:0.032414510271604496 :0.02774990256442102 +way:0.3991823640873286 coming:0.2437686478081355 work:0.12325855416260659 cry:0.11793400654740759 :0.11585642739452154 +to:0.9102408860352602 a:0.03643409229557851 the:0.0357298702500003 and:0.0088800253946838 :0.008715126024477111 +more:0.4240902957005251 two:0.18083543660714702 with:0.17185162321752367 one:0.14259006794354384 :0.08063257653126044 +of:0.8012042246387014 the:0.09219339696008427 in:0.07010365400427074 on:0.02215424821731396 :0.01434447617962961 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +long:0.38337830678612894 well:0.2169569119218413 large:0.1744648695656167 good:0.14565992151957216 :0.07953999020684091 +to:0.6672652462653891 only:0.22045464315470337 yet:0.04404195954778333 always:0.04087464530663975 :0.027363505725484457 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3116547541993475 in:0.30037069563571367 with:0.1386169540249669 for:0.13386894020673068 :0.11548865593324127 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +claims:0.386001686973386 terms:0.21089611788865914 duties:0.13944233922191732 places:0.1319882258625984 :0.13167163005343915 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +days:0.31882701394378044 years:0.24860400671858413 months:0.17495178568470846 weeks:0.13689053884436292 :0.12072665480856407 +people:0.26976805018750943 man:0.2212536601680126 world:0.1999252944402413 I:0.17191175539649353 :0.1371412398077432 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.30257832723030337 was:0.23313226593915304 would:0.19950236086180495 will:0.15317295392092448 :0.11161409204781417 +The:0.7035167899194008 A:0.09853369923546915 Other:0.07243968793096212 Tho:0.06495737928005638 :0.06055244363411141 +way:0.2501637392820881 coming:0.2188359812720262 back:0.21196423514768567 fall:0.1727115515396201 :0.14632449275857995 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8176588477355398 for:0.08278484431081018 the:0.05583303578176592 in:0.022425473956329687 :0.021297798215554293 +dollars:0.24807875783260766 ten:0.24456113467699467 six:0.19874383274995844 the:0.15771210253068021 :0.15090417220975896 +fault:0.3466288891672205 mand:0.3137557297852001 scribed:0.1636259873101252 I:0.1074689703089825 :0.0685204234284716 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +cent,:0.41197970955322233 annum,:0.2517147069983461 acre,:0.16522763499362733 cent:0.09466588884539416 :0.0764120596094101 +result:0.2855875466315811 number:0.22944652830896034 members:0.1711509963999548 amount:0.15906508114635787 :0.1547498475131459 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +large:0.5207518450709158 small:0.1463040626963172 certain:0.12190102432201719 total:0.12178955622346574 :0.08925351168728406 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +considerable:0.6232436319726327 great:0.18000813446048364 much:0.11140297249623562 the:0.05539990491606776 :0.02994535615458035 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +known:0.9653792848398776 known,:0.010686541933334775 informed:0.008638115542569443 and:0.008572693657027295 :0.006723364027190906 +number:0.3026426046150244 part:0.19149865887319448 copy:0.18604551240261066 portion:0.16550206060409364 :0.15431116350507695 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +come:0.36454736988843367 came:0.23655413182093887 ing:0.18857853245926207 cause:0.13027244871892815 :0.08004751711243707 +as:0.3691705427439685 and:0.2685005959874782 is:0.20270990005406808 so:0.10364656359659268 :0.055972397617892446 +in:0.2626202880585887 that:0.22473157576430006 with:0.2031786609669086 and:0.16071757587503918 :0.14875189933516336 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.43768618420683164 if:0.18974395903754418 it:0.1621513877871259 do:0.125799900908574 :0.08461856805992425 +been:0.44440383267871536 made:0.21094420362985453 lost:0.14605832220899478 to:0.11689998178287268 :0.08169365969956278 +the:0.4385866634867254 a:0.33533340117792 done:0.08792293275645997 his:0.07145245703524106 :0.0667045455436537 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.24153322600079952 has:0.23902320412126718 he:0.2027124240869635 which:0.18167437634747133 :0.1350567694434985 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8455079451298888 in:0.058021497762959416 to:0.04350099470391134 and:0.028136814854024597 :0.02483274754921572 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.564686615942091 to:0.31041809280136684 also:0.05554394967659881 soon:0.0379598799061034 :0.031391461673840146 +head:0.2440405254451253 name:0.24223183971486265 wife:0.1969525695211571 hands:0.17674142766134882 :0.14003363765750598 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ceased:0.48001252631272917 voted:0.25229494395236846 scribed:0.12717612680667864 mand:0.08551021901592343 :0.055006183912300284 +the:0.9199879460263574 tho:0.04598963493209399 tbe:0.017125797095378984 this:0.011084464230111233 :0.005812157716058401 +not:0.3655010045000921 no:0.32239386965514405 been:0.24060960946118023 nothing:0.03886199290804044 :0.03263352347554316 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.462484869268238 we:0.17928212099514168 who:0.17579656633491014 they:0.1037935683844705 :0.07864287501723974 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.361006940782101 was:0.2742341571608941 is:0.16841456887375403 were:0.0987516129020374 :0.09759272028121337 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.6189891671610418 a:0.27917686932783287 not:0.04145700923802547 the:0.03493803241120836 :0.025438921861891534 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +per:0.8804433971196473 a:0.08290115802384253 each:0.03203354974527651 that:0.0023649016064737284 :0.0022569935047599497 +three:0.22818575938112484 two:0.21636696876531175 twenty:0.19555900108077817 five:0.18015700700819376 :0.17973126376459161 +well:0.507440036807576 soon:0.22371580522050646 far:0.1680701560236044 much:0.06808586124717403 :0.03268814070113902 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 +quarter:0.5271629112316887 corner:0.4265628169990939 side:0.03355766514435427 part:0.007534319951314821 :0.005182286673548347 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.40985145092090564 four:0.22341534227312965 recent:0.1406595663285073 several:0.11472759495322485 :0.11134604552423272 +he:0.4924252076785649 they:0.18995456073922762 she:0.12045341691397464 I:0.11519058879760577 :0.08197622587062697 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man-:0.3706485120016178 man:0.3120218087065212 very:0.15815799788573892 middle:0.0851223165779202 :0.07404936482820196 +favor:0.4286606174776465 front:0.16663700046522184 spite:0.14436924942848997 one:0.14085741126542772 :0.11947572136321394 +pounds:0.21648069718321974 cup:0.21041230364510816 interest:0.1915394490122192 miles:0.19152464964182275 :0.19004290051762998 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.3448219238390545 much:0.25584411764652265 many:0.18600385985317255 part:0.13599459947076745 :0.07733549919048274 +with:0.26272248383247915 of:0.26171405093360933 in:0.19975962395569208 against:0.1396170713306187 :0.1361867699476008 +them,:0.28415966754556465 it,:0.2592280766720697 sale,:0.1604793807466042 land:0.15336635786327832 :0.14276651717248295 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.2705869613252287 miles:0.21051717851192162 ing:0.2016081667541367 taken:0.16473080286976222 :0.15255689053895075 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +com-:0.3675497449027136 pay-:0.29841493827153553 be-:0.1677701112791274 com­:0.08822114178723883 :0.07804406375938473 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +as:0.4438736971739895 attention:0.17448214204489781 thereof:0.1394461881157221 pleased:0.13563943484682447 :0.10655853781856607 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +was:0.4046793094878609 is:0.29839673293099184 of:0.10948960099376105 has:0.10011352396189983 :0.08732083262548641 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6011099755540903 a:0.25672443232029535 this:0.08398793927513061 our:0.03032327750248721 :0.02785437534799664 +other:0.7237216980979613 all:0.14662863339812734 these:0.06302046202541955 many:0.04872207335386636 :0.01790713312462564 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.4593271593652506 I:0.1907967638213524 they:0.16370415547402087 she:0.10116556532562489 :0.08500635601375131 +he:0.4728432150459262 which:0.16287165901043069 and:0.12778127639597403 It:0.12022730528437542 :0.11627654426329366 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +sale:0.3459534941147926 property:0.29496972813074995 sale,:0.18998409191905416 life:0.0879878339394327 :0.08110485189597055 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.6121448179206389 but:0.17728862887554234 he:0.09975308543197005 that:0.05657004114940254 :0.054243426622446134 +the:0.8512366162069798 a:0.08124938883849922 tho:0.03296948800445392 this:0.01795575814857082 :0.01658874880149649 +of:0.5136354452395485 in:0.18631584692360578 where:0.12262669729486819 to:0.09519799245423796 :0.08222401808773955 +the:0.38402807734205857 ::0.22024566555589223 that:0.1783518190657448 real:0.1309011381549689 :0.08647329988133558 +ceived:0.45208093622462764 turn:0.15185650230169606 quired:0.14263372631615284 turned:0.13548897930763232 :0.11793985584989111 +out:0.30860167750433426 up:0.26093594737371595 it.:0.16465549417875727 them:0.13330076676908187 :0.13250611417411073 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9381609123977712 tho:0.024657671673000037 this:0.019406289532033546 tbe:0.014045084059503587 :0.0037300423376915416 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.47999583549588054 a:0.17745255838282128 he:0.1507737529895588 she:0.09763286246987814 :0.09414499066186127 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.2800262179278408 now.:0.21439116609156422 not.:0.17335967509860792 done.:0.1718823077442998 :0.1603406331376872 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +great:0.3268850733866486 other:0.25721544023547654 public:0.20917019178868654 following:0.10892899325618252 :0.09780030133300589 +the:0.31934630423180826 a:0.2729894878604091 his:0.23237896866745072 their:0.1305541373291091 :0.04473110191122282 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9030017138076329 tho:0.050149063250328266 a:0.024120844562589297 tbe:0.01847385702232124 :0.0042545213571284195 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4381178294206576 up:0.2573487200674866 was:0.11548430729519357 out:0.10180552356433287 :0.08724361965232935 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +much:0.4747377817002089 day:0.15884568732714907 best:0.14455649174629648 few:0.11286922476895608 :0.10899081445738946 +the:0.3707566353063251 a:0.3051061608574347 this:0.14682799803105984 his:0.10688222145686767 :0.07042698434831268 +in:0.3934965582233325 to:0.20641538268083015 of:0.16792245089322372 and:0.12052703199867683 :0.11163857620393672 +it:0.7620350415642106 the:0.09113558018611137 ¬:0.07886459170208528 t:0.03639335048011524 :0.03157143606747744 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +seem:0.24502219568648895 only:0.23220317799461734 likely:0.183776612839227 want:0.17868271241138023 :0.16031530106828637 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +every:0.23163780886294116 a:0.21344486131574283 some-:0.21088116823061023 one:0.18268299816127925 :0.1613531634294266 +the:0.7658825882408736 a:0.1829817069961768 tho:0.032634023456226235 tbe:0.009968874050728304 :0.00853280725599511 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.39476326964958663 been:0.35664755091737677 in:0.12167785459164707 all:0.06899769485434601 :0.057913629987043344 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8906726982235548 in:0.03912753294941591 on:0.02688211166254815 to:0.024495839666666575 :0.018821817497814454 +people:0.31554231043708736 same:0.21332547551137776 country:0.16027869436190653 city:0.15585135602884304 :0.15500216366078537 +recorded:0.6481192764283628 executed:0.10206970581162352 and:0.09461234128387165 that:0.09054290894959573 :0.06465576752654628 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.8359551394148821 a:0.09656459723360789 already:0.02782482953680059 not:0.02069383585501996 :0.01896159795968938 +of:0.28312050965950114 in:0.25312606933874937 by:0.17730511062830812 to:0.16524723941545438 :0.12120107095798693 +way.:0.29179090183726347 hands.:0.20497637400052995 country.:0.17582455525026006 people.:0.17251491661869994 :0.1548932522932466 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +most:0.30933309658307584 a:0.2288599447751316 other:0.1847168430760656 more:0.15951633899142248 :0.11757377657430448 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.2652975035863001 issued:0.25884240072263853 of:0.22316557962832995 to:0.14248250268995027 :0.1102120133727811 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4098740609414691 his:0.28105575433045216 her:0.19025105822225963 a:0.0602268134147455 :0.058592313091073586 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.5415905184764669 of:0.1257371680314652 take:0.12232832826596939 make:0.11590789982152223 :0.09443608540457618 +of:0.7119660665338788 in:0.11734831347216163 to:0.07552145179763152 with:0.05948255509859266 :0.03568161309773528 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.8937514843133455 bo:0.05597363073190958 the:0.02179397172473222 a:0.01790896243240588 :0.010571950797606837 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.280492411061459 in:0.2622265462252736 to:0.1651726282573396 and:0.1628986047063671 :0.12920980974956062 +to:0.28172119179980676 that:0.22864121274333143 of:0.19948835622772362 the:0.15782876658792142 :0.13232047264121682 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +doing:0.29783472815871503 that:0.2445642211594589 not:0.15927853080568 worth:0.15723822821047675 :0.1410842916656693 +days:0.3355581368016748 who:0.21000836998184977 States:0.1987682099869918 men:0.1408851588678237 :0.11478012436166002 +active:0.3006540449709395 money:0.2889034479139488 fully:0.1508212127064252 men:0.14274427653911315 :0.11687701786957343 +day:0.24980824492763745 people:0.22224081082283492 question:0.20230242183478755 president:0.17684466143530417 :0.14880386097943593 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +up.:0.3971667225682664 here.:0.2332077970282172 children.:0.1507020401603975 people.:0.12802429757754707 :0.09089914266557184 +the:0.7980081205656371 said:0.13624323874979552 such:0.02370618327969637 tho:0.02234869618067133 :0.019693761224199552 +one:0.32924896752232385 those:0.3078900113268311 found:0.18142612777868453 men:0.10327892629473057 :0.07815596707742999 +a:0.5388743813045417 the:0.16129902134979965 no:0.15955196031569555 any:0.08679118481732821 :0.053483452212634904 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +come:0.2846183197657092 it:0.26654579765521835 that:0.1643699491062161 even:0.16082036835160948 :0.12364556512124679 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +more:0.2441062260383895 portion:0.23866557341724506 number:0.1784589257983367 time:0.17731219952656105 :0.16145707521946773 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.2889273550528222 have:0.21661436896613256 ought:0.1956993604835726 were:0.15191221466628485 :0.14684670083118778 +of:0.35169471213754433 and:0.20371596172668074 or:0.20179513463419874 for:0.16896140479947683 :0.07383278670209929 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +days.:0.2964769778307562 year.:0.21220900920634297 state.:0.18195027029941402 State.:0.17499933633267384 :0.134364406330813 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +tent:0.34567769935304266 press:0.2844575153320419 plain:0.12992840916943185 ports:0.12688972481127309 :0.11304665133421037 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.9367246824162122 steps:0.02349968900626445 that:0.020050538300301693 and:0.012490869513365241 :0.00723422076385633 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +way:0.30096832018195074 lives:0.24592195458369667 own:0.15598924942815243 homes:0.15067919752492642 :0.14644127828127368 +to:0.2843953067744825 in:0.20401274633891334 be:0.18774672308372856 have:0.16545506201609889 :0.1583901617867767 +man:0.7122151880278845 woman:0.09979668372981657 few:0.08052638868939767 person:0.061627053992930614 :0.04583468555997057 +amount:0.299864503817939 country:0.18732705574621494 person:0.18392956246067046 people:0.17840187147175235 :0.15047700650342322 +and:0.590477586733031 knows:0.18338979057973104 is:0.09369270749060797 know:0.07478379846641153 :0.05765611673021826 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +thereon:0.33275574258724494 and:0.32999757011395814 thereon,:0.23252278112812086 of:0.052577310125888586 :0.05214659604478742 +same:0.47485405520850643 legal:0.17112927310779247 water:0.1366016996077962 constitutional:0.11864764545613087 :0.09876732661977397 +find:0.3336780313834963 went:0.23815663746682816 got:0.20211886620463324 came:0.1250200449241561 :0.10102642002088622 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +above:0.2753984828752391 time:0.25208737667378567 of:0.200334354233471 following:0.1645277099062733 :0.1076520763112309 +to:0.3352856826545633 for:0.30113292570789757 and:0.1568068410941113 up:0.11125217342311945 :0.09552237712030824 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.6416554763054443 the:0.18814705452585498 of:0.08426593788641792 money:0.04361020012007396 :0.04232133116220892 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.6660631445365797 the:0.19586405523601108 tho:0.10884305006964357 n:0.016350794925038305 :0.012878955232727533 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.36659805085420116 them.:0.2331912410529638 us.:0.17261134034915693 life.:0.13612476265584192 :0.09147460508783617 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +hand,:0.39796208413654804 words,:0.31073140411261657 purposes,:0.10968639977480454 property,:0.0933514135813045 :0.08826869839472626 +member:0.3662297317797371 port:0.2501336644383082 sources:0.1521353820979181 ports:0.134012877391075 :0.09748834429296156 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +but:0.30839328229704194 and:0.2939329693670659 as:0.15859772438537761 if:0.13319397385336704 :0.1058820500971474 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +may:0.3135397804561777 to:0.2998639532458691 they:0.1978314141790796 will:0.1179771221006473 :0.07078773001822623 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.670128213428348 here:0.10473360295928405 home:0.0822764200953523 to:0.07505318151021403 :0.0678085820068015 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5399870097886941 a:0.3751623735122842 this:0.04006570224049952 tho:0.0263899729327811 :0.018394941525741157 +is:0.5807890936789079 was:0.21006058120304183 are:0.09204524663349903 Is:0.0696594134221988 :0.04744566506235239 +was:0.27220572319542435 am:0.24564516188789573 knew:0.21078150977881357 saw:0.13891164994265257 :0.1324559551952138 +fallen:0.2550935144253032 called:0.22199141089543725 agreed:0.1956829668086346 made:0.16689753182025766 :0.16033457605036722 +the:0.35336727090747155 a:0.20353363688571274 white:0.16958150096719726 black:0.16543363028696026 :0.10808396095265806 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.45323740297607407 his:0.3112035931442363 my:0.08574471152572656 a:0.08019423759291404 :0.06962005476104904 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +say:0.38962403882348745 see:0.1896022161155592 show:0.16372765363851213 believe:0.1309843469651658 :0.12606174445727536 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.8436261695573332 you:0.09733455839717708 we:0.027343344877790568 I:0.020851496525844344 :0.010844430641854766 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.8139533928992386 who:0.06158374514288158 and:0.057971088441668144 a:0.03942190885461261 :0.027069864661598955 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.590588317450143 but:0.14750269473625943 in:0.11554956348915248 for:0.07993116323160768 :0.06642826109283752 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +uses:0.3799576932303182 Wood:0.25672053180318877 Lewis:0.19394530299066315 Hill:0.08908333088137137 :0.08029314109445837 +the:0.4247327541125737 a:0.28614741225183277 any:0.15546477056637248 some:0.0911305654829253 :0.04252449758629571 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6023854671317729 th.:0.15109269115997762 a:0.13600577571183248 the-:0.056818919501619616 :0.053697146494797385 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.45354914326546353 but:0.2855201666882176 when:0.1026205423550931 as:0.09138736500937797 :0.06692278268184779 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4597366739728643 is:0.19084891407684518 grows:0.13202212429449883 seed:0.11689977406003085 :0.1004925135957608 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.6868280602553681 have:0.1533547123457478 not:0.09783029956642462 bo:0.050796044310583606 :0.011190883521875673 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.2281892461150718 we:0.22618139236075066 they:0.20612414335667154 I:0.18108046532430075 :0.15842475284320515 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8638711235643541 tho:0.041835248380505174 said:0.03626480455891716 bearing:0.03087011716068624 :0.027158706335537245 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +seen:0.3057147908938927 made,:0.22290596125623377 more:0.21039641586034225 read:0.14008936384408346 :0.1208934681454479 +fur-:0.8911203907637002 the:0.03125621279706631 win:0.0286875154115233 keep:0.02689759689153704 :0.022038284136173085 +been:0.4913215030881581 a:0.18896298165230183 J:0.1450263148954228 the:0.09203873716859626 :0.08265046319552091 +not:0.27388538794750583 made:0.27149605404774746 in:0.2522741374294984 to:0.10478429931461893 :0.09756012126062918 +opportunity:0.28890486657815 order:0.2249940295307912 attempt:0.21037774289510267 effort:0.1777913698834426 :0.09793199111251345 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +life.:0.32504834355413503 family.:0.3122449812642007 body.:0.17374342252439734 mind.:0.09466324583599313 :0.09430000682127378 +to:0.457391300225274 and:0.3677706123797597 or:0.06325620658742725 weight:0.05682950171766564 :0.05475237908987347 +it.:0.32818118681770747 that:0.22202870344988204 them.:0.18466135514630586 which:0.13296408090878634 :0.1321646736773182 +left:0.3934500882393098 almost:0.2629028186367616 way:0.13182530882122537 being:0.11815845398347699 :0.09366333031922618 +who:0.7786056111990967 have:0.09771783325384129 he:0.0593957343244706 which:0.032757835796811345 :0.03152298542578034 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +own,:0.26703315471989003 work,:0.2596225532415905 country,:0.16894448286611086 hands,:0.15761285782356163 :0.14678695134884706 +in:0.2800944683377412 to:0.27706855470998304 for:0.18617168547164809 on:0.1442909634369626 :0.11237432804366498 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +even:0.36544110204784097 twice:0.2059857181131324 two:0.18917045077412847 either:0.15398779713565952 :0.08541493192923877 +things:0.24288858828066553 places:0.23397398069115377 than:0.20747179529605633 hand:0.17325100618987604 :0.14241462954224848 +have:0.5162760299665899 had:0.14050252466688154 never:0.13630097210928377 was:0.1261509925544268 :0.080769480702818 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ready:0.7104869702450195 been:0.13224099930644817 voted:0.06116794198617599 used:0.048449833801610886 :0.047654254660745556 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.45087123309828075 this:0.31960039860491635 his:0.1048451717319772 its:0.07918676623976023 :0.04549643032506559 +husband:0.43657264012962865 husband,:0.1772045847668641 father:0.15297333672375465 home:0.12070531727165422 :0.11254412110809825 +forth:0.4168641429702252 out:0.3933527030136007 down:0.14775001981501393 over:0.023953134205523037 :0.01807999999563712 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.3233069960635282 that:0.28331570797951655 what:0.16901174970975189 which:0.12923018923204457 :0.09513535701515864 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.4977413373040864 matter:0.13678798048397203 point:0.12914945235724917 result:0.11943237639890907 :0.11688885345578343 +carried:0.5116663224227895 put:0.15766700684868093 so:0.12644340124306633 held:0.10342980093894236 :0.1007934685465209 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4249280870330379 by:0.2273733029815307 for:0.1379445417806927 to:0.11486911463599396 :0.09488495356874489 +department:0.31640982386213035 hundred:0.25416441229255854 alarm:0.17263464069852721 engine:0.1392742134759803 :0.11751690967080351 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +good:0.6475822759081333 large:0.17576358343204912 small:0.08602069700044933 little:0.046272606035638535 :0.04436083762372976 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.45718045892340936 not:0.16476371428460146 be:0.16201056779274697 and:0.14174044294743446 :0.07430481605180765 +And:0.3057033433233787 that:0.2127624394714217 But:0.19867421335920393 and:0.14802565699496698 :0.13483434685102869 +upon:0.4192472128780024 for:0.3416474116416482 on:0.11148139203331564 and:0.06719159872185934 :0.06043238472517439 +estate:0.5339833001248075 estate,:0.3516290971947782 property:0.061515397647783625 property,:0.041297563238892006 :0.011574641793738627 +be:0.26398769654846344 see:0.20314931135706527 make:0.1816466446055846 give:0.18113146774487937 :0.17008487974400735 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3947245019331114 Bryan:0.2791886139419729 Roosevelt:0.1217445581665617 Cleveland:0.11149595689879024 :0.09284636905956384 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +there:0.36428823743634225 it:0.2812278793772329 and:0.1850042686374981 which:0.08562958658631575 :0.08385002796261103 +he:0.5674892518729147 they:0.1681973519408473 be:0.1466967905006717 she:0.08572363427217243 :0.031892971413394075 +opinion:0.25130193045168864 lands:0.22761725976304314 as:0.19851451157246316 schools:0.17487912197205835 :0.14768717624074668 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.260815624967152 their:0.24283544137555713 each:0.23316493421393478 his:0.15387652284549497 :0.10930747659786125 +down:0.36648140043722227 himself:0.28622884993746883 herself:0.1598879766164897 themselves:0.10161344060338993 :0.08578833240542917 +rid:0.4567315970656013 out:0.3861873016525369 some:0.06514367162562114 possession:0.0528971650583694 :0.03904026459787122 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +hand,:0.2931873053619383 wife,:0.23906539191176063 life:0.16308805996113146 life,:0.155571763679979 :0.14908747908519052 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +shall:0.5172139245434447 will:0.1968786733932238 to:0.18231157699579104 would:0.053174020185272924 :0.05042180488226774 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +much:0.4747377817002089 day:0.15884568732714907 best:0.14455649174629648 few:0.11286922476895608 :0.10899081445738946 +wife:0.32079871115411046 own:0.20626726086968203 way:0.168691815342499 name:0.155601390619078 :0.14864082201463055 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +diseases:0.268468147603684 condition:0.2673810886870135 character:0.1580725488977596 element:0.15568194692093554 :0.1503962678906074 +the:0.683933835035265 a:0.2556129098470275 his:0.02392178512124789 tho:0.02373635911502153 :0.012795110881438155 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.28243683817796 that:0.2306189327422228 In:0.1910814607843554 in:0.15067320946540355 :0.14518955883005832 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +had:0.25487938660346593 went:0.2505466441599175 was:0.19684330087856647 is:0.15975910861351597 :0.13797155974453398 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.8742154557803276 was:0.062373469264232706 Is:0.041545900628678335 has:0.01257006061776567 :0.009295113708995733 +right:0.25713588352461564 reason:0.19943811793838703 attempt:0.19294083764245654 desire:0.18478369497441377 :0.16570146592012697 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.40295145948688293 I:0.25111987191748997 we:0.22757327304721375 not:0.06347598945892514 :0.05487940608948818 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +.:0.5480598920407322 street:0.19358602272521783 .,:0.11117337169540122 is:0.09342141409516358 :0.05375929944348515 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.3212276234486541 day:0.1865571679943897 part:0.17540911239191764 kind:0.17376886165058528 :0.14303723451445333 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +who:0.43804744221860825 they:0.21356840309842753 these:0.1271039656417373 kinds:0.11083624532571966 :0.11044394371550752 +could:0.43656569871900763 can:0.2396901924261185 would:0.11632766909118517 don't:0.11551616575885953 :0.09190027400482924 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +placed:0.32239155046340445 made:0.26375167061664184 done:0.17546622792593028 issued:0.1398342833848852 :0.098556267609138 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4044803373048269 a:0.31752684718413215 at:0.11544183033412826 no:0.09544916939342636 :0.06710181578348626 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.6091925884213363 were:0.15833280293825272 and:0.14861733576070357 while:0.04843134438100721 :0.03542592849870021 +in:0.29561002192942665 be:0.2895353878003068 by:0.14185196485200163 to:0.14033305759961173 :0.13266956781865324 +which:0.43019123882358973 that:0.26959135897462855 whom:0.14306050524198047 what:0.08611705525647632 :0.07103984170332489 +was:0.3909993287862728 is:0.2148467760309682 had:0.21446841972231484 saw:0.0995793186942518 :0.0801061567661922 +week:0.3716436859294846 year:0.23446099403024723 they:0.17736617046870248 night:0.13964454306648305 :0.07688460650508264 +R.:0.28289152438825815 W.:0.20537247701788156 H.:0.17663760719124694 C.:0.17337094792670854 :0.16172744347590481 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.32375382993444257 and:0.20260834072187275 protection:0.19546394624313435 evidence:0.14890212066638311 :0.12927176243416727 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6011099755540903 a:0.25672443232029535 this:0.08398793927513061 our:0.03032327750248721 :0.02785437534799664 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.546002887168958 was:0.17938164488619096 as:0.1693317987042671 may:0.06803970657302331 :0.03724396266756075 +is:0.5743677101276762 has:0.14973248230614994 was:0.14570023618492614 had:0.06826688350061219 :0.061932687880635655 +of:0.35729011668583566 in:0.27479631622374723 made:0.15283289914766734 all:0.10811747039952556 :0.10696319754322417 +seem:0.33676462367658705 have:0.22521145443269291 not:0.20734071238879856 go:0.13543340828169684 :0.09524980122022475 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +special:0.45767515360558714 general:0.30101836149923783 primary:0.0976677939640163 new:0.0909899187523932 :0.052648772178765395 +bearing:0.8151913703514785 from:0.11517403176166482 to:0.028561423567652146 the:0.02286998127043806 :0.018203193048766587 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.4073880943697012 on:0.21857146110445475 into:0.2184289204417434 through:0.09383024953492747 :0.06178127454917329 +from:0.2662878973589631 wide:0.24782802890446742 travel:0.19721069048257175 west:0.1541012822320163 :0.13457210102198133 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +But:0.4455138300976967 Then:0.20111133595927091 Now:0.16042158034081072 And:0.10794550016425165 :0.08500775343796994 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.580084045484528 which:0.16370646859189125 they:0.08633972820730774 as:0.08566947747606807 :0.08420028024020484 +the:0.6790176760237322 his:0.15120802258735713 their:0.09408246919601004 such:0.039713199411196345 :0.03597863278170432 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +It:0.3015402041156875 Jones:0.22999859914422052 While:0.18969291453104023 But:0.14859629540287936 :0.13017198680617242 +per:0.9988672438178856 r:0.00043309849603157284 dollars:0.0004249763162792817 p:0.0001769787428089542 :9.770262699454344e-05 +the:0.25852441919464636 an:0.2528564325464374 that:0.23952424950675721 them:0.13725611184054312 :0.11183878691161593 +which:0.37372730011563793 and:0.26151018507795576 it:0.16965596226466573 he:0.10565168015077236 :0.08945487239096837 +not:0.6326536769872628 probably:0.18451370932775793 soon:0.08195490950471516 never:0.05697079485280065 :0.043906909327463495 +we:0.27817458395988726 it:0.23843135311103214 they:0.17628988662815606 he:0.16843337633776273 :0.13867079996316178 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +far:0.35722560040686185 it:0.3337611373379196 he:0.19878640797635255 she:0.0648002751143607 :0.04542657916450529 +time:0.8250613779509361 distance:0.08596627263925848 time,:0.03216633417892921 address:0.03142138967480378 :0.02538462555607241 +to:0.8141441929363245 of:0.16906887633430584 on:0.006360549808244135 in:0.006301253957744445 :0.004125126963381025 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +hundred:0.5307512773259486 thousand:0.40598347132295937 million:0.060535892980536514 of:0.0020317303027283474 :0.0006976280678272119 +time:0.3984963425046753 him:0.18887275268273215 day:0.1440937071215401 one:0.1375857356942887 :0.13095146199676358 +them:0.35444814961076127 Deeds:0.20184404038840703 money:0.1689957948524785 land:0.1391189718746798 :0.13559304327367339 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.40374219264776584 Williams:0.25612859021127604 Smith:0.19635640522103837 I:0.07692234624588151 :0.06685046567403835 +side:0.36512043952883544 day:0.31394079956770965 end:0.13581817229506907 part:0.10001497355056445 :0.08510561505782134 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +great:0.24361639194175835 same:0.23690929885455997 real:0.1924351232439773 be-:0.16483813058847366 :0.1622010553712306 +will:0.3178758402435076 would:0.18808730495849804 can:0.17193037834802855 should:0.16775379589348788 :0.15435268055647797 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9208621099390366 tho:0.032800691845277216 a:0.030351728427239766 tbe:0.011165286462831887 :0.0048201833256143675 +people:0.2615751345337125 man:0.22316869416316598 latter:0.18716453164330188 city:0.16686638490524625 :0.16122525475457342 +the:0.311325764910945 a:0.2637816433976308 no:0.22167974007557165 that:0.1097660246369965 :0.09344682697885603 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.675992226264545 of:0.1522785607745652 their:0.07464115312537543 his:0.05093600111497414 :0.04615205872054033 +to:0.40858382717670894 not:0.20853084370476044 will:0.1496537919906761 they:0.12733704431261497 :0.10589449281523945 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +seen:0.37459512284467156 heard:0.19443144182146527 known:0.18347393012738708 go:0.15993350287981217 :0.08756600232666385 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.45666576406431036 before:0.1955410671159066 for:0.1318993938605424 let:0.11348143191193846 :0.10241234304730215 +and:0.3655165955916575 or:0.20167434960439073 for:0.16446450068787136 of:0.136904970737816 :0.13143958337826434 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.3731320406019427 his:0.1783962902751297 our:0.16348051445635015 the:0.15099752270635367 :0.13399363196022376 +trade,:0.4301596240189072 and:0.2360214598009571 yet,:0.1397886345448919 nothing:0.10513848949467333 :0.08889179214057043 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.51746654913717 there:0.21032682365901526 it:0.17166122552963511 day:0.05080496318631966 :0.04974043848785983 +them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 +of:0.35782248184661725 and:0.22366937838475184 in:0.19785173225670322 on:0.11257537479119789 :0.10808103272072983 +f:0.3343875401417812 -:0.230405245151462 <:0.1757463293918904 i:0.13740733773163244 :0.12205354758323389 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it,:0.2608878255975971 him,:0.23256579367540162 them,:0.1844105083508123 him:0.1772569189593748 :0.14487895341681417 +asked:0.26591505148064126 it:0.22112657683537867 ready:0.18104298309594663 made:0.17565638973160602 :0.1562589988564276 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +and:0.48762507633611657 Johnson,:0.24825432227414548 Jackson:0.14768723219254148 county,:0.05839019274013083 :0.058043176457065485 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +fact:0.6811856975996785 said:0.129424747603616 ground:0.0668337494128204 belief:0.06258864438599437 :0.05996716099789066 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +with:0.8902492622791653 between:0.059799827151827065 of:0.03198893788706246 that:0.010600017675598757 :0.007361955006346298 +was:0.5561735072394446 is:0.19839534706105572 will:0.11052726699659719 would:0.07431190446977347 :0.06059197423312906 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8954133152491479 said:0.04936179462527879 tho:0.03350422270175329 tbe:0.01101415336852677 :0.01070651405529333 +ago:0.5596593134292686 ago,:0.13914955688964495 ago.:0.12476889644894401 before:0.09313564430644894 :0.08328658892569363 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.41662388110466797 point:0.16807091662258078 change:0.16004910728055066 part:0.13649054296501914 :0.11876555202718136 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.2782449166009587 good:0.23919618712710783 as:0.19904573386521324 fine:0.14454218185508902 :0.13897098055163126 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.3780674845500748 may:0.19812453433654917 would:0.19284017783633617 can:0.14709708778448205 :0.0838707154925578 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.2605444798207623 that:0.2524562786202502 hat:0.2241024453658596 >:0.15052308647000176 :0.11237370972312628 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5143635107418151 that:0.33086836503241684 this:0.10877145225482886 his:0.02535495709203809 :0.02064171487890121 +,:0.34518094482328326 much:0.30958142066074623 little:0.17061916158623858 one:0.08845478828913272 :0.08616368464059926 +when:0.5143269010471855 from:0.24988153485070047 and:0.1486929293260928 day:0.05127075521685403 :0.03582787955916716 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.28745874121040554 could:0.2122240621702804 would:0.16962200794249177 will:0.16904759026558278 :0.1616475984112394 +that:0.38932629607721736 which:0.29659228411121763 said:0.11764581443406692 what:0.10970582467618378 :0.08672978070131433 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +conditions:0.22455933776197287 in:0.21898063923498104 year,:0.20942331195412642 ;:0.18247943678360817 :0.16455727426531158 +it:0.3008179508737004 he:0.2862459532771004 It:0.19609795899084284 there:0.15514768893885422 :0.06169044791950217 +of:0.6875562142008533 in:0.17520433808746755 at:0.06108952890642853 and:0.038240057497441554 :0.03790986130780916 +how:0.5620243258989192 nothing:0.1262323099877793 enough:0.10886216912278926 him:0.10298823852456852 :0.09989295646594391 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +greatest:0.2717230706448164 great:0.23928076903491077 proper:0.2065569712557682 utmost:0.15629173853010953 :0.12614745053439508 +any:0.48749999491427026 the:0.15525921809051427 this:0.14007751423687242 no:0.10945580104981123 :0.10770747170853179 +before:0.2926073721702837 seen:0.2076745135831092 have:0.18854819932177577 had:0.17800633100674498 :0.13316358391808628 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3497191537883011 done,:0.1881230472281815 not:0.17897210977396855 so:0.14450451725560515 :0.13868117195394378 +the:0.8594980005581422 our:0.04384241660743275 tho:0.04197211135644421 a:0.03268231210346381 :0.022005159374516987 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +meet:0.26318218299208773 say:0.2238948891594239 him:0.19245791879597127 marry:0.18621654118258402 :0.13424846786993305 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +young:0.5100063690162214 old:0.2764757859584338 poor:0.09927452706232544 American:0.05932691457060001 :0.05491640339241932 +with:0.8902492622791653 between:0.059799827151827065 of:0.03198893788706246 that:0.010600017675598757 :0.007361955006346298 +persons:0.28602365967722176 that:0.2393881104805356 interested:0.16822761757981586 times:0.16441630860446338 :0.14194430365796337 +same:0.25462929411156404 most:0.21526535020424703 whole:0.1988759979430219 debt:0.19109786716778734 :0.14013149057337976 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.6079476323883587 was:0.20198582399694398 can:0.06948733006665683 very:0.06437244094276397 :0.05620677260527641 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.29697887895581104 time:0.19384985812386196 place:0.18885985557539867 work:0.16419017027855629 :0.15612123706637207 +years:0.2886331323432269 weeks:0.1997383217286457 years,:0.192879973466957 hours:0.1657777940155911 :0.15297077844557921 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +some:0.30981892314051906 one:0.23659139228814668 sale:0.19132850777228771 many:0.15060577307030104 :0.11165540372874552 +is:0.24092962666712872 was:0.2279345508781126 and:0.2180411898650243 until:0.1702886992517961 :0.14280593333793842 +to:0.991329492785642 lo:0.0033555842376121075 not:0.0022688774155352896 and:0.0016866189076062588 :0.0013594266536043507 +chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 +January:0.29883933835485355 July:0.23510419818019387 March:0.20852399201925118 April:0.13256079515918812 :0.12497167628651333 +found:0.3234076684373223 remembered:0.2202773322437868 given:0.18162208867405258 so:0.14885244180138496 :0.1258404688434532 +the:0.7217293391885523 his:0.12091002441907422 their:0.08420931306410466 her:0.03898670339721675 :0.034164619931052055 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 +New:0.9143053472674747 old:0.034542030769091646 Old:0.026784831264455484 world.:0.016251258623920413 :0.008116532075057614 +for:0.6240425376802772 of:0.17218902353338095 the:0.08159997371310805 in:0.07216880267181816 :0.049999662401415554 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +deal:0.5907301958349878 sense:0.12161705304350205 condition:0.11174991563087111 many:0.10918125879914733 :0.0667215766914917 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +times,:0.3651916370696664 kinds:0.16511082197008284 parts:0.16441896748087903 places,:0.1570688274607939 :0.1482097460185778 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.43281976912227016 in:0.20917426630435124 for:0.1461026259979018 to:0.12495414146896457 :0.0869491971065122 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Federal:0.5162746888435396 British:0.19454099861776905 National:0.1133583696394982 General:0.096333260486571 :0.07949268241262213 +re-:0.388852347612027 pro-:0.27319572588973756 in-:0.16443652624736263 pro¬:0.08694826789787519 :0.0865671323529976 +100:0.4164992918627912 20:0.2180623605320145 200:0.15012973104222338 17:0.11896232088005886 :0.09634629568291211 +of:0.7294256394983897 and:0.14777560540600004 in:0.07074108636300586 from:0.030041635668801477 :0.022016033063802908 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.4715843300042218 the:0.2652829135133135 physicians:0.10891135300789642 more:0.09165686582944572 :0.06256453764512251 +in:0.3150849384113355 of:0.2615759113094107 on:0.21827033436128723 to:0.10769634742428012 :0.09737246849368646 +to:0.56396261057461 not:0.30849482819448554 never:0.08275218436262392 you:0.02494826921215821 :0.01984210765612258 +known:0.6504719414055063 known,:0.2120484305441275 done,:0.0492592105125626 up:0.045364626268521696 :0.04285579126928186 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +more:0.4389243327734899 better:0.19801865761427156 greater:0.13698735978261667 larger:0.130541279437963 :0.09552837039165873 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.55947145266944 enough:0.19613158308680986 necessary:0.10099015975518359 ;:0.08816341424625572 :0.055243390242310876 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.30732009916538916 which:0.3009406727551868 this:0.16266424125747084 what:0.11489791251065991 :0.11417707431129326 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.26299600735495104 on:0.23320417285912767 of:0.20398544587733183 and:0.19831637767397936 :0.10149799623461014 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +out:0.42368635734020227 it:0.18479384463037832 him:0.1430350669835986 them:0.12607231123308588 :0.12241241981273479 +that:0.6684242237318163 as:0.22331274560025707 far:0.039355374657809056 when:0.03570998834403659 :0.03319766766608093 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8248640036024979 a:0.11033075036014403 tho:0.040574461644795064 tbe:0.01678233074018064 :0.007448453652382234 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ject:0.8384160650824329 tain:0.07481950395176605 scene:0.04089869328718526 tained:0.029240906863109095 :0.016624830815506565 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3987119044236749 in:0.24947521940430645 on:0.12209109432376605 for:0.12065767267684767 :0.10906410917140505 +sum:0.21724853066521582 payment:0.212339397798406 city:0.19546532436856495 State:0.19158701478116472 :0.1833597323866486 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.31346645598530115 it:0.224592836064541 we:0.19009924859101401 he:0.16428035224673251 :0.1075611071124114 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +but:0.25345873077828474 and:0.251068121029271 that:0.25096632362688404 for:0.13803868920864637 :0.10646813535691389 +was:0.4145615779900677 wore:0.1704255374469158 is:0.1523633505766441 then:0.15031894634446513 :0.11233058764190743 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +of:0.9028356449477838 Of:0.08123792933210261 ot:0.008307826827679632 ol:0.0054082616126678645 :0.002210337279765975 +past:0.4093537187164796 last:0.21871982152378075 least:0.14710556148315726 next:0.12140270603841553 :0.10341819223816691 +in:0.3145266481950316 of:0.3044772572229085 to:0.1565927392886817 at:0.1460949348925018 :0.07830842040087628 +the:0.3726767339157255 J:0.193369737931026 M:0.1645554858091777 W:0.14800555942388186 :0.12139248292018902 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +particular:0.5175709049127722 more:0.1651134387350388 special:0.15488036475678316 considerable:0.108377984148518 :0.05405730744688772 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.671376285726277 was:0.19850324512906298 since:0.05246832017122098 is:0.04083369143802711 :0.03681845753541205 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.7024841807973518 citizens:0.10398298783710215 who:0.06987447055035255 troops:0.06212424455929281 :0.061534116255900814 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +session:0.48471394904165277 next,:0.19559744448087557 session,:0.11966288070376349 election:0.1058955470835707 :0.09413017869013746 +of:0.38993464466054334 that:0.30817678057146175 and:0.12040781042602669 which:0.10523251806751582 :0.07624824627445247 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +country:0.429278526174986 government:0.23567160187499306 Government:0.12053817576504845 party:0.10820161624053835 :0.10631007994443423 +the:0.6469929754964362 his:0.13039794085291367 my:0.12000787171593355 an:0.05634965684986068 :0.046251555084855935 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.288669639300302 as:0.28652648466532116 regard:0.15287672898029198 according:0.14955031251139042 :0.1223768345426945 +of:0.5423032209809474 in:0.13171258001319644 ago:0.1280807622671923 from:0.12680062233953782 :0.07110281439912616 +It:0.37671496222290224 it:0.2852719641317484 he:0.13540993896771672 that:0.11331452578406093 :0.08928860889357161 +the:0.5082630772576067 without:0.1717910230378693 that:0.14352693269437822 rare:0.10926209188162428 :0.06715687512852142 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4400741706909161 United:0.42874515511004313 these:0.049539096813676284 those:0.04587329697317851 :0.03576828041218586 +have:0.41747734848010415 was:0.3311052591097342 had:0.2052787006653227 ever:0.02464833830766315 :0.021490353437175872 +made:0.3172132515378427 due:0.24133849395393464 made,:0.1740560679210998 done,:0.1432970708610888 :0.124095115726034 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9060534341861178 tho:0.040480085969067 said:0.03081365839662684 tbe:0.014139105588377542 :0.008513715859810943 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ports:0.3875354031252575 they:0.3057108683789504 we:0.12797748785430896 sources:0.09074149264329501 :0.08803474799818807 +to:0.5692744395239163 and:0.35395964425309684 a:0.03037228941373259 horses:0.02589081243070421 :0.02050281437854977 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5247196609249463 some:0.19928290191615905 a:0.09926852859661496 this:0.09783567712872245 :0.07889323143355711 +of:0.8430584500770908 in:0.05672022983740698 to:0.0390212198579286 and:0.038864359530900006 :0.02233574069667352 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.41649910337189006 a:0.40859429607882647 her:0.09968196711995247 his:0.04100556988883664 :0.03421906354049438 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.32217325311431927 for:0.20411362424243623 from:0.16966011303413034 on:0.15987162507737884 :0.1441813845317352 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +therein:0.5673994787031837 hereinafter:0.4064591049887348 above:0.01624945000321685 herein:0.009557389946398692 :0.0003345763584659193 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made.:0.37308694776376405 made:0.25544919388717946 done.:0.17280425844153233 found:0.11161554201333151 :0.08704405789419269 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8745552150885637 this:0.051637188414458746 tho:0.030649276837279138 a:0.022362558075969236 :0.020795761583729262 +of:0.2498071723332316 on:0.21843958344851025 upon:0.19106279959091338 to:0.1782322678289256 :0.16245817679841928 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.3830862868227035 of:0.32890281988232334 if:0.11600634876664005 all:0.09614282858823153 :0.07586171594010162 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +now:0.3397150866326594 not:0.23384014546633738 situated:0.16031857120743634 made:0.13936289499483412 :0.12676330169873284 +and:0.26248618321347983 again:0.2588197380373711 on:0.24613377886491764 again,:0.13225128174676104 :0.10030901813747042 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +went:0.25005961022080775 want:0.21027051696870752 able:0.1913014810460322 and:0.17871960292450434 :0.16964878883994816 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8596062088643626 his:0.04475432772139557 this:0.038307284125977066 tho:0.032236235181075185 :0.025095944107189586 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +no:0.6524007431404812 a:0.13645725888722351 the:0.11290259855924359 much:0.058367446255864354 :0.03987195315718727 +in:0.3658469304489 took:0.28039694188295505 had:0.12967862473052275 the:0.1277694489164172 :0.09630805402120503 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +before,:0.27646910825782844 morning,:0.18513006055989786 night:0.18308310698529454 ;:0.18260446354008486 :0.17271326065689424 +been:0.2653346834738978 be:0.20767353195633642 saw:0.20242689371826886 had:0.17100614160869643 :0.15355874924280047 +that:0.5641716894875966 if:0.1889094431675402 then:0.10226941534948743 when:0.0859011328662594 :0.05874831912911664 +after:0.4223918763921751 on:0.16254465380991287 upon:0.16066199851589721 to:0.13881572377081663 :0.115585747511198 +to:0.4321887447517647 in:0.3051687285286587 from:0.115055430645434 reduce:0.0821742415427336 :0.06541285453140896 +one:0.2683140205387431 two:0.2613964256103944 person:0.18597162537178472 order:0.14379244286210743 :0.14052548561697034 +as:0.3914749872170536 so:0.17475795964918658 then:0.16631318384053217 but:0.14760705245304828 :0.11984681684017927 +you:0.30603378684155425 it:0.22819760630967542 all:0.196271654816174 so:0.18689637050242408 :0.08260058153017232 +will:0.3607600365235615 would:0.2397506929100848 may:0.1954534490063931 should:0.10820782251068554 :0.09582799904927516 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.6022001801105787 or:0.10768191765232306 no:0.10569767027023384 the:0.10053924663213602 :0.08388098533472835 +great:0.2989359737528927 high:0.2765570581577079 slight:0.1602160585603944 strong:0.14065427049571771 :0.12363663903328706 +to:0.3688335624087515 on:0.35609111636055085 and:0.10541019694206227 upon:0.09820233286042952 :0.0714627914282058 +He:0.4777798831896987 I:0.22058160925490353 We:0.10899449211122965 It:0.10298823394742301 :0.08965578149674501 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +democratic:0.3278083130694424 republican:0.23599732723083813 Republican:0.20671735681879802 Democratic:0.20454169530415414 :0.024935307576767245 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3644713840089572 they:0.21723965732181205 but:0.17475939614036323 who:0.15059657967045564 :0.09293298285841195 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +attorney:0.4656501173860456 court:0.42115806497913544 and:0.04856159485867925 courts:0.034856947429746675 :0.029773275346392847 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3179048517392198 will:0.27520142036734635 and:0.2011697839505526 would:0.12910000346405626 :0.0766239404788252 +by:0.3717247169314916 the:0.3663061205723157 a:0.1553746041998033 in:0.05799855853885085 :0.04859599975753843 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him:0.4482809956281203 them:0.37243400887329053 me:0.09546820134805989 us:0.047401225610109 :0.03641556854042053 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +Mr.:0.3715334348445974 law,:0.24610030853521622 law:0.14242006878024704 him,:0.1320353526388377 :0.10791083520110163 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.3776460925245073 upon:0.21304274304853013 in:0.1753788825882906 on:0.12992072788166825 :0.10401155395700365 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +came:0.27793411330850687 went:0.25922747068350666 with-:0.20820891077545392 was:0.13307786103750704 :0.12155164419502539 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.37145880878974064 was:0.1924633615815205 had:0.19067817287557953 saw:0.13705415320942008 :0.10834550354373935 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +more.:0.4923545496644369 good.:0.17210864904928372 purpose.:0.1177240150459896 other.:0.11027596261384107 :0.10753682362644881 +miles:0.3642603898344749 and:0.18913090717619924 or:0.17210338312195922 years:0.16986722965110862 :0.10463809021625796 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.3961738200821871 so:0.1725975541193058 the:0.1484817040321289 too:0.14270418466015455 :0.1400427371062237 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ion:0.2573221396113938 day:0.20367152697918325 e:0.18663036459475366 one:0.18230889989161767 :0.17006706892305176 +now:0.46960785420375534 a:0.3277494040765566 no:0.0719167183556003 the:0.06758285494929551 :0.06314316841479217 +regular:0.3018566242151768 whole:0.2196376313493547 British:0.17987721073760585 Union:0.15368339814466667 :0.14494513555319608 +M.:0.30072369256335485 Mary:0.2581918432361236 Smith:0.15999454655459133 King:0.14717151399775028 :0.13391840364818 +here.:0.45542260005463436 there.:0.43976439118512445 at:0.04184281738513862 in:0.03976278521965472 :0.023207406155447943 +be:0.7421208303989175 the:0.12479007778284115 have:0.05369681683124798 bo:0.04146508354022549 :0.03792719144676791 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5408841756969746 to:0.15129986351903074 in:0.12368733409621603 for:0.10445071161620331 :0.07967791507157537 +time:0.376531571668328 lots:0.2276218541694941 south:0.15003167444569 north:0.13327532121510824 :0.11253957850137972 +with:0.6049288642112182 between:0.18199020278793612 of:0.1483822664009257 in:0.04372156153159267 :0.020977105068327295 +been:0.3639717305455587 made:0.2682868979784685 received:0.15449417177273292 seen:0.10766838459022374 :0.1055788151130161 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +North:0.3113759258156235 old:0.2779424827634395 great:0.155712663151127 whole:0.13190668078516235 :0.12306224748464764 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.45858758319523857 of:0.19163440387579428 and:0.13639711042252112 is:0.11373911770106722 :0.09964178480537894 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.6834147613577217 it,:0.12301904364544584 and:0.07427996445086678 or:0.06185826020492475 :0.05742797034104099 +city:0.2981920396520641 country:0.20186257968601773 country,:0.18879666668555872 time:0.15604954213173194 :0.15509917184462757 +of:0.6726321151346449 .:0.10260078539987867 Mr.:0.09486394611076443 and:0.08407502881476955 :0.04582812453994235 +who:0.882054897767623 which:0.06007169326088276 that:0.02547856103352815 they:0.016426377845020004 :0.015968470092946045 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8909828281481327 by:0.0342172828702744 ot:0.030492555493546625 ol:0.026961762889396553 :0.017345570598649596 +came:0.2934433501778342 went:0.1969072912925473 got:0.18445887026896718 took:0.18197046918470522 :0.14322001907594603 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +deal:0.5523390010904851 number:0.13034774150088962 majority:0.1170653489874489 many:0.10535134462546654 :0.09489656379570985 +to:0.36446946074860387 in:0.23239115705048882 done:0.17900493542743207 of:0.1255119016027749 :0.09862254517070046 +of:0.2938416208024923 to:0.21346037311010016 in:0.18658027175605824 or:0.15727651925345323 :0.1488412150778959 +the:0.5939534987704579 an:0.17041661040958284 said:0.09562020407626151 his:0.07637034976894465 :0.06363933697475296 +and:0.3627947392158834 in:0.26858264405046783 into:0.16109439111856386 as:0.13182429054125258 :0.07570393507383223 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +power:0.4484163642245352 bark:0.1904882899419636 press:0.14511426205069278 necessary:0.12321359924137582 :0.0927674845414327 +are:0.8355516234393487 were:0.10989581009234509 and:0.01987290649683684 by:0.017562858305338255 :0.017116801666130957 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.682114321606906 about:0.1010376996746824 than:0.09813987783861162 below:0.06500164298129864 :0.05370645789850135 +the:0.6906059806494043 a:0.20564358324358226 its:0.03711039005734978 tho:0.0352075424074157 :0.03143250364224808 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +New:0.2171634818904436 dozen:0.20236133049530292 man:0.19691236096736395 few:0.19439045466781707 :0.18917237197907252 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.4239044618936102 been:0.24607190755880212 not:0.16812697086531042 so:0.13409149734615486 :0.02780516233612227 +would:0.4073571207139694 will:0.40357224348403187 may:0.11650898916602635 might:0.04197697945857304 :0.030584667177399338 +made:0.31017310686940436 delivered:0.29198371001032525 secured:0.16689980006029553 designated:0.11674181474599904 :0.11420156831397581 +was:0.460452545405627 and:0.25158749880843617 were:0.09870546721637959 is:0.09785238247560696 :0.0914021060939503 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +probable:0.2587176468755314 one:0.2196276781261405 anything:0.2077341425418575 in:0.16697208976682934 :0.14694844268964113 +-:0.2615143651348638 i:0.25666925012051534 be-:0.23556171254842048 be¬:0.13922298152953055 :0.1070316906666699 +or:0.44379321388402304 years:0.20159766257837844 men:0.1413215911794033 times:0.13210039209441732 :0.08118714026377803 +find:0.2539389919160987 found:0.24784961025770852 are:0.23066421143746954 were:0.1491622234962161 :0.11838496289250729 +bill.:0.33128232369004446 position.:0.23113422257507446 state.:0.16587169444044658 States.:0.1498243111876684 :0.12188744810676598 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8894846474056033 tho:0.043468692519603 this:0.03398768642972818 civilized:0.019010539774900526 :0.014048433870165064 +in:0.28163892844421706 to:0.2068644969223604 of:0.18795667434435198 and:0.16384955639676269 :0.15969034389230785 +city,:0.2956365855045642 country:0.2521112723997798 act,:0.1603579638384442 country,:0.1573023981720645 :0.1345917800851474 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.33838097047830823 in:0.3260420608769565 of:0.12879570602579318 pro¬:0.10693680938810081 :0.09984445323084123 +case,:0.43014406221326834 therein:0.20252579095658274 when:0.16861560773520928 that:0.12198692290390951 :0.07672761619103007 +said,:0.3349882329347588 made:0.2208625850210736 did,:0.1729910825100002 thought:0.16876765255574697 :0.10239044697842033 +the:0.8462828641411262 a:0.06310781706564017 our:0.03970345400641372 tho:0.03525072591267036 :0.015655138874149488 +to:0.913327483059537 and:0.04344802464312337 will:0.029002825987707273 would:0.011597453984292436 :0.002624212325339919 +to:0.7238623218448622 may:0.1191751033642248 will:0.07837859274193287 would:0.04511059998345777 :0.03347338206552235 +which:0.46435900643850536 that:0.21757519296252192 and:0.14520705888248198 to:0.08893327184105437 :0.08392546987543628 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9427651912547891 and:0.018044311773997544 in:0.01646092777010168 is:0.011479078386349054 :0.011250490814762554 +ten:0.29022353686007585 two:0.22085705810578826 three:0.1768108641435402 five:0.15699702898267173 :0.15511151190792402 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +with:0.2781902004134838 for:0.23436985815135153 let:0.18638370460148754 in:0.1526696009780129 :0.1483866358556642 +have:0.5057182724946927 were:0.19938376354707515 are:0.15377799084767066 had:0.12952495255966548 :0.01159502055089612 +be:0.6139904896971081 have:0.11203878510805251 take:0.10483345523323213 only:0.09469417191296225 :0.0744430980486449 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are,:0.5714560607806157 have,:0.24585013852904086 may,:0.07387685885242126 trust:0.05793676345247902 :0.050880178385443196 +same:0.27905913715653313 present:0.2491606791809853 State:0.1605905937171786 beginning:0.15878575393041286 :0.15240383601488994 +the:0.6319045440612131 a:0.31583786797552826 tho:0.027970083190207887 to:0.012162605130512778 :0.012124899642538038 +right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7705784053511326 any:0.06898169575907526 tho:0.06404295660733131 an:0.05027945518073707 :0.04611748710172384 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.41529615184966645 for:0.2654379446671425 in:0.1716070751857939 and:0.113591257269163 :0.03406757102823429 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.4337496006661466 sell:0.2925498483533703 arrive:0.11203937616289185 not:0.10127666864447234 :0.06038450617311897 +r:0.27289871983383307 -:0.24205398957334245 d:0.19104266052684304 real:0.15249261558901547 :0.14151201447696607 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.2735952418931577 that:0.27231582965676926 which:0.2298014817103934 leaving:0.12406684007474124 :0.10022060666493834 +them.:0.4828563666314067 it.:0.25450866209638895 life.:0.09986113657446609 men.:0.09259081797876241 :0.07018301671897588 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +recorded:0.5102658535580745 distributed:0.16743888907926077 even:0.1177315538220704 are:0.10739567493586034 :0.09716802860473389 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.4382854280847476 they:0.18063194158956475 I:0.1591114305784979 we:0.11227410683259853 :0.10969709291459123 +two:0.31998711305060484 more:0.23555506470456888 three:0.20975249557898917 four:0.1190952221977677 :0.11561010446806937 +result:0.22673795146185902 number:0.21981406619343893 amount:0.2083861426766136 people:0.18921046779946343 :0.15585137186862505 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4744674901924946 that:0.24997689456635483 which:0.13167059777275608 as:0.09506694874643087 :0.04881806872196357 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 +of:0.40422518860608264 to:0.24886233555790463 in:0.13613564022750027 for:0.12594527786600498 :0.08483155774250759 +able:0.40678286427927557 allowed:0.16837189371372713 made:0.16004441386181978 used:0.13387521084376586 :0.13092561730141164 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3894203696630528 was:0.21158372069733666 of:0.16347180594087538 or:0.14940850525219096 :0.086115598446544 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.380838494605282 two:0.3497489341980191 directly:0.10170058350286058 three:0.09370703241331155 :0.07400495528052677 +a:0.8000999910059899 the:0.14607029185283077 great:0.026579159830669667 large:0.01914156698347945 :0.008108990327030234 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5973254016434285 several:0.14911333237282767 those:0.091273589589006 some:0.08618179410776351 :0.07610588228697437 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +place:0.2706940696727083 people:0.2179487114971026 men:0.1769490913470645 was:0.1730209036534874 :0.1613872238296372 +but:0.3229911810463554 and:0.26677311828262257 is:0.14899155615473716 if:0.14318234065292706 :0.11806180386335781 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +day:0.3873252968747829 side:0.3261486284260647 end:0.11781486733524942 part:0.0987508632840418 :0.06996034407986129 +the:0.891010164586811 a:0.05741160991226474 tho:0.033193321734515085 tbe:0.01273060601716179 :0.005654297749247285 +that:0.9646541245497186 what:0.01255928391876691 if:0.012123476614555448 when:0.005334130795246365 :0.0053289841217127164 +the:0.5510810798703982 an:0.19527629762774024 and:0.09558217376900492 of:0.07917746259447572 :0.0788829861383809 +to:0.324510671178833 of:0.32165722475541886 that:0.14694017329912015 against:0.11035309057205103 :0.0965388401945769 +the:0.8130798585846363 a:0.10815686109259746 tho:0.0328869358209085 his:0.03266973900334327 :0.013206605498514552 +own:0.39251127063996 dear:0.18070374768550196 little:0.17371570217093138 mother,:0.1340043513163172 :0.11906492818728942 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them.:0.4828563666314067 it.:0.25450866209638895 life.:0.09986113657446609 men.:0.09259081797876241 :0.07018301671897588 +to:0.2770369793805273 and:0.260860175975903 with:0.18160266916071133 in:0.1590713199750207 :0.12142885550783776 +the:0.5749585785053237 d:0.3454949305836429 tbe:0.027938703474483267 ihe:0.02724984350614047 :0.024357943930409635 +be-:0.9068715399508336 |:0.027793280385361288 be:0.025105422358211386 I:0.02107246221437234 :0.01915729509122147 +in:0.23915571073129302 for:0.21974691115935913 the:0.2190996797150278 to:0.18964983679840283 :0.13234786159591716 +out:0.26855544425516714 up:0.2356337455447198 forward:0.18871059913457877 back:0.15870840571244546 :0.14839180535308882 +a:0.6394854936971411 the:0.2206942222523131 his:0.050012444860256494 such:0.04923340276797579 :0.040574436422313516 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +any:0.45287835168366597 additional:0.1500895709038852 extra:0.14582541823756176 a:0.13261683864939067 :0.11858982052549641 +in:0.32118397354207057 that:0.23676726767576567 to:0.22244148407336878 at:0.1133540442288003 :0.10625323047999466 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.7738970584035777 this:0.07050839427607174 an:0.06292138083636022 one:0.06274213855956019 :0.02993102792443036 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +same:0.31707247529642424 question:0.24927980748801457 bill:0.16121796282635298 well:0.1412767584767507 :0.1311529959124575 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +thought:0.29470780391101764 says:0.23892558005805375 had:0.1634518018687721 then:0.15436074633276517 :0.14855406782939148 +Christ:0.4936469498187686 went:0.15985544511966193 came:0.15066383703334696 is:0.09896573062504019 :0.0968680374031823 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +went:0.28322020810287124 put:0.20716629249854848 took:0.20460834435500888 came:0.15411734927472043 :0.150887805768851 +so:0.2905426530446972 that:0.27469937863766936 as:0.23770704048385966 before:0.09994539063627389 :0.09710553719749988 +York,:0.6920903510689234 York:0.1522457329680088 Mexico,:0.060974917160907874 England:0.05093121006192603 :0.04375778874023401 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +life,:0.28540048368565357 life:0.2533624274522288 sale,:0.18436166692146186 property,:0.14042114733107872 :0.13645427460957704 +made:0.2929635136981908 called:0.20514127171024488 ready:0.18454820896968768 paid:0.17135683871380902 :0.14599016690806774 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +same:0.5688691995997147 State:0.11622412912140526 court:0.11360395807372128 Board:0.10643338582183512 :0.09486932738332357 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9380926547188496 present:0.01965487366158194 in:0.01618866654395095 to:0.013159725453666027 :0.012904079621951472 +a:0.23693857113429903 in:0.23280131977147026 the:0.21564823507403605 is:0.16119362891977407 :0.15341824510042054 +knew:0.23304828827190358 was:0.2248407255316116 thought:0.18301175409849868 says:0.18013828024777293 :0.1789609518502132 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +whom:0.35459524778166396 which:0.2366557904775092 that:0.23322769834999452 what:0.09421541358655347 :0.0813058498042789 +date:0.44155899340185 though:0.24519479383597345 then:0.10928222270778934 charged:0.1091152126104536 :0.09484877744393379 +in:0.28365465127876033 of:0.24700463519309573 on:0.17133391178104518 to:0.163006566795131 :0.13500023495196767 +before.:0.38917171522516536 and:0.3077314088326312 that:0.14111539971406492 air.:0.09288960480947102 :0.06909187141866757 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +of:0.2558678945890786 in:0.23780544882530216 from:0.1975269997559555 on:0.17988847914013809 :0.1289111776895256 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.44809171643072104 there:0.2605723890180332 he:0.15481368637776266 It:0.10290163380554197 :0.033620574367941095 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to.:0.7706142851138766 to:0.1808836739857886 to,:0.03734578399810816 ::0.00675372147529999 :0.004402535426926723 +electric:0.9265596933692943 additional:0.040119578720015786 interesting:0.011976289677713912 extremely:0.01102994530628833 :0.01031449292668784 +the:0.545084757830778 these:0.30419553191934967 other:0.05571594541872197 such:0.0526609922348508 :0.04234277259629946 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4164129343813728 dollars.:0.295551759787722 years.:0.14026120920319907 feet.:0.0829349275617936 :0.0648391690659123 +be:0.3739349765979396 been:0.290902575505458 do:0.16777539788132598 yet:0.08502530757761882 :0.08236174243765758 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.3685579455062032 other:0.3424474496467239 raw:0.1681199699120635 all:0.06573017683912864 :0.05514445809588077 +to:0.4759997845920536 told:0.23179734663198923 made:0.1363987551969579 given:0.07890638276633899 :0.07689773081266033 +the:0.5337257494776403 a:0.27571756842104894 other:0.11087395157391226 raw:0.0417610021167272 :0.03792172841067127 +I:0.566915756093686 and:0.1489360455980788 he:0.10813096825568082 it:0.10494079230022188 :0.07107643775233236 +excited:0.44380869995870953 increase:0.21152359995449466 increased:0.18412157154721362 extended:0.08937259831581464 :0.0711735302237677 +it:0.46585168067352223 there:0.2755428430070541 It:0.10304821354962643 he:0.08568412880616033 :0.06987313396363697 +we:0.3643295412720503 I:0.33771674263056434 will:0.11728350788654647 may:0.09418815072982693 :0.08648205748101177 +to:0.35791735412983877 in:0.2986577502935403 from:0.12048180555810557 on:0.11423486742002487 :0.10870822259849057 +the:0.5429120289977816 a:0.2975071439563829 being:0.06596701721097128 his:0.05213828805559815 :0.04147552177926603 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +schools,:0.2609132821051426 good,:0.22359790689037232 opinion,:0.18805762115390826 service,:0.16816250620093154 :0.15926868364964536 +the:0.8819915559323099 which:0.056970000564927195 tho:0.0337585960589448 tbe:0.019185637887609956 :0.008094209556208109 +but:0.6844400400395741 a:0.15100146764003441 two:0.062440252357212025 and:0.05920932390242325 :0.04290891606075602 +federal:0.33964953948072224 British:0.23384565175157934 city:0.15546579181679032 German:0.13647851268905795 :0.1345605042618501 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +coast:0.417963310224612 Railroad:0.18898516802231702 avenue:0.1623991779434231 railroad:0.1211304484942985 :0.10952189531534953 +and:0.6077291215133233 but:0.18898229421124063 or:0.07519645276070973 except:0.06534412675988238 :0.06274800475484407 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6986762955476941 a:0.20073598472718612 his:0.034973159161401354 this:0.033022053996167276 :0.032592506567551305 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.32229690172197867 but:0.2600514425651857 for:0.15066934785170655 in:0.14106948727885513 :0.12591282058227413 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +said:0.43254826438236765 lode:0.19300452192887638 coal:0.16089051348104136 best:0.11097850382085071 :0.10257819638686382 +mortgage:0.34292648780196966 that:0.22134016466980921 petition:0.15182642168669083 county:0.14562874252475172 :0.13827818331677863 +of:0.710931265619714 and:0.14804629132862415 in:0.07481742114213076 to:0.03315731251660487 :0.03304770939292619 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +founded:0.4973497135856374 as:0.24477894911700843 settled:0.10232503785421786 and:0.08530333378639264 :0.0702429656567437 +and:0.23524514074566752 of:0.23202946505964744 reported:0.21618720244408893 asking:0.17846544338276008 :0.1380727483678359 +part:0.6052874064406949 day:0.10606026043057953 history:0.10479169317515884 hour:0.09896549557063117 :0.08489514438293567 +than:0.7131984663670039 or:0.2438184002744286 about:0.021876529991545348 for:0.010667405482047108 :0.010439197884975033 +of:0.8862325289769349 and:0.03975132322100345 in:0.036473715915438645 to:0.019597855363082194 :0.017944576523540857 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +would:0.3226760403150322 will:0.2822694430741013 could:0.1425697610405298 may:0.13173375946749338 :0.1207509961028432 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +fact:0.34158231410347106 said:0.24391936336744652 order:0.24215339174540285 all:0.11386963032839055 :0.05847530045528903 +an:0.6728208314102484 the:0.25980185474938505 its:0.02312735566862929 of:0.022837473473213712 :0.021412484698523644 +people:0.4845051036449967 same:0.19824107039905886 men:0.14022728286294306 country:0.10165410160191408 :0.0753724414910874 +The:0.7085537816086023 This:0.13417557801060262 In:0.10475020723702555 Tho:0.03003585332058089 :0.022484579823188553 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 +the:0.41377884140412674 England:0.17361979493490698 vain:0.13872672039830106 this:0.13712488070407064 :0.13674976255859456 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +others.:0.34969338916239434 children.:0.2555443375850845 friends.:0.15595607302443615 wife.:0.14177712289247182 :0.09702907733561308 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.3585315263896008 and:0.31152742830313884 which:0.12197251223005827 as:0.11537271632738645 :0.09259581674981562 +it.:0.42463367840287586 America.:0.19476572265509684 them.:0.14396443577860119 Washington.:0.13397389655015335 :0.10266226661327278 +though:0.8838749655147843 ways:0.073477230447075 so:0.0205919419586824 ready:0.016656203047421804 :0.005399659032036493 +made:0.3962248791403346 given:0.16330583264340004 followed:0.15945010195568401 taken:0.1560638116651507 :0.1249553745954307 +of:0.37222819900174764 in:0.27421066801457084 all:0.13434439594704725 on:0.11729145192866643 :0.10192528510796796 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +same:0.6127182710121508 long:0.10376742499231306 well:0.09710558662472232 manner:0.09324468605195613 :0.09316403131885768 +which:0.727671294730938 these:0.09770567781788281 that:0.0930075864151674 all:0.044947838121668124 :0.03666760291434374 +delivery:0.4989501716318931 holder:0.26591015227414294 use:0.07962823793852608 entry:0.0785246846009202 :0.07698675355451771 +he:0.4353508710469657 she:0.17290161239160556 I:0.15702139826863426 they:0.14305695229197138 :0.091669166000823 +of:0.8782187388644859 in:0.05190446835713195 it:0.03308519531994289 all:0.01946722551963269 :0.01732437193880651 +that:0.5683718522648284 in:0.13423198772155023 if:0.11867278594027213 how:0.09282348479470896 :0.08589988927864022 +the:0.575723593497975 both:0.20311135068404917 their:0.08370856102831248 two:0.08140614216376071 :0.05605035262590266 +The:0.7100862774278117 the:0.1863923754270634 Its:0.039685219473422254 their:0.03650968083559838 :0.027326446836104155 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +great:0.35253306138190355 high:0.20526820156810408 same:0.18673590503364165 highest:0.15400303635554363 :0.10145979566080712 +of:0.37222819900174764 in:0.27421066801457084 all:0.13434439594704725 on:0.11729145192866643 :0.10192528510796796 +to:0.3987119044236749 in:0.24947521940430645 on:0.12209109432376605 for:0.12065767267684767 :0.10906410917140505 +the:0.8887209903366957 tho:0.048074635854010596 a:0.0472092865561041 tbe:0.010836917826177933 :0.005158169427011555 +and:0.42208742341588656 which:0.23973591280434045 they:0.12959138418309585 we:0.10972527217523687 :0.0988600074214401 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.49489931239773505 he:0.24021211241986853 it:0.11913356478540141 claimed:0.07828975039869902 :0.06746525999829592 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +thing:0.2589744218772166 enough:0.20729728230657238 little:0.20694899366282798 looking:0.16426452826492935 :0.16251477388845376 +it:0.43148496703840744 place:0.20296764400261316 there:0.14340316605769024 prisoner:0.13226139888293664 :0.08988282401835263 +time:0.32510345049785794 thing:0.1822324342765936 candidate:0.17791274734455906 reason:0.17078754220577874 :0.14396382567521065 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.3975922472399683 with:0.28022971031356747 to:0.14230738537644713 of:0.11482216578227547 :0.0650484912877417 +is:0.5940501835575268 was:0.29143633222507964 has:0.04358606755343859 in:0.035791668430804405 :0.03513574823315065 +others.:0.4021272406355896 children.:0.17700551140968465 wife.:0.16179531225908292 night.:0.13250235032308277 :0.12656958537256005 +the:0.48817244701690937 these:0.21947562255181402 his:0.10935552875855217 business:0.10175350633585038 :0.08124289533687408 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +number:0.3565511933179621 part:0.18417554859008492 majority:0.16254683969320693 member:0.15202040532160624 :0.1447060130771399 +in:0.2845449419757905 and:0.2122001269786216 so:0.1758237782663363 the:0.1715842818723185 :0.15584687090693328 +and:0.44376432472949223 used:0.24152144918723256 run:0.12792713008359446 waiting:0.11396761375812131 :0.0728194822415594 +with:0.5505503453218591 in:0.1653450291756375 on:0.12410440588028367 by:0.080044410831982 :0.07995580879023786 +be:0.6675084231875636 not:0.23783328481810348 bo:0.04059187794775408 have:0.03481267004244147 :0.019253744004137343 +as:0.6081022099383774 to:0.11221765801758535 on:0.11133231850107014 in:0.08836484804425038 :0.07998296549871661 +the:0.43267313364573523 of:0.19619686859687777 some:0.1401748694653548 within:0.11648511672362888 :0.11447001156840342 +made:0.518199917583272 in:0.14696883152184906 found:0.14082067212125995 held:0.1033644880124015 :0.09064609076121759 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +1:0.5835052117540959 I:0.16874037618544127 2:0.1305001579109393 9,:0.0651416073855683 :0.05211264676395517 +ways:0.5778557424098274 most:0.3861681667893232 though:0.01651544554711875 ter:0.01519956588058547 :0.0042610793731452995 +known:0.4935097165723829 distributed:0.17169947992199444 made:0.12345517088532672 scattered:0.12238735488212216 :0.08894827773817371 +the:0.8146535519298496 and:0.08439602351880413 tho:0.03723137729966905 a:0.037132283498103484 :0.026586763753573786 +to:0.7517611010783593 they:0.09156971986585971 can:0.06936882633624535 you:0.04834781512638807 :0.038952537593147506 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.9536063318648471 and:0.022161308594154105 a:0.014269936808606484 lo:0.005806507359498248 :0.004155915372893888 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.2908393200290214 shall:0.1963854895172375 to:0.18556293730632822 should:0.17633804214909982 :0.150874210998313 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.4006078317118906 in:0.38691149438629385 the:0.1606421782260971 In:0.027658257358748498 :0.02418023831696993 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.6733560530296041 on:0.14542256979333917 In:0.13835081230850285 at:0.021833733904878094 :0.021036830963675795 +fact:0.6811856975996785 said:0.129424747603616 ground:0.0668337494128204 belief:0.06258864438599437 :0.05996716099789066 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.9184684559731168 comparatively:0.03398442894222756 very:0.021120585637208974 so:0.01579155575040621 :0.01063497369704054 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +go:0.409634576180319 come:0.1820413690832247 him:0.15491679222342905 try:0.12769469573402084 :0.12571256677900647 +a:0.41553391897907166 post:0.19928106809988935 stone:0.17833040480486959 was:0.1053863850986485 :0.10146822301752087 +to:0.4216603306524696 into:0.16563402059988078 about:0.15531827876877616 up:0.14334781903761265 :0.11403955094126093 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +not:0.2795121817920691 likely:0.1955066928538332 going:0.18913954902219285 necessary:0.17840335755718467 :0.15743821877472008 +all:0.479109142004893 that:0.22658340497209123 which:0.1293369991347514 and:0.09266875769279359 :0.07230169619547076 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +liberty:0.3649608057757107 and:0.2925413252362207 master:0.1775440327225215 that:0.08650312427210022 :0.07845071199344678 +the:0.6708303444732459 be:0.24799919254938144 all:0.0328711930959874 become:0.024504209012357687 :0.0237950608690277 +He:0.48933960571396373 I:0.307805889802768 She:0.08536779361746023 It:0.07133529450049383 :0.046151416365314266 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +use:0.30833286506898255 corner:0.19176613001223175 one:0.190922625727074 be:0.1711156462919077 :0.137862732899804 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.4577284306818429 war:0.16138858839222903 Minnesota,:0.14287714783450617 her:0.12401437431367282 :0.11399145877774909 +feet:0.2777841065336758 equal:0.2540989128193354 years:0.2142431823720469 or:0.13582319066440918 :0.11805060761053264 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +eighty:0.288595806856391 40:0.21010597617086593 80:0.20552264362771586 forty:0.18272916692337138 :0.11304640642165584 +this:0.4969995123764204 every:0.3200367862481354 for:0.08390347043409331 one:0.06196119107587389 :0.03709903986547677 +order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +piece:0.2886838718812382 little:0.1935834481521195 man:0.1837121383300525 person:0.16826751622582306 :0.16575302541076672 +estate:0.6534469418893922 estate,:0.22172391744980333 property:0.10277416746890417 property,:0.015288909072874718 :0.00676606411902555 +the:0.5243831242178495 a:0.37620638235344206 Christmas:0.05313904554343568 another:0.024011605914792126 :0.02225984197048064 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +o'clock:0.8186789665526792 o’clock:0.12819478224443043 o'clock,:0.045394713205392324 minutes:0.004633694990479882 :0.003097843007017989 +the:0.8076914493020628 a:0.07782637206254056 our:0.057733880111234405 tho:0.03308012979526684 :0.023668168728895368 +by:0.43281976912227016 in:0.20917426630435124 for:0.1461026259979018 to:0.12495414146896457 :0.0869491971065122 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.8661089087665743 had:0.08212496420101369 already:0.024921131820361906 not:0.017143546943098976 :0.009701448268951146 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +best:0.4920157745464255 other:0.21797219970002898 slightest:0.11705609066343478 new:0.08847526195930754 :0.08448067313080329 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.5829098825332275 next:0.15589214924300202 In:0.15570467773342103 last:0.08465675867435415 :0.020836531815995193 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Court:0.7012503443720537 and:0.08517968520157362 demands:0.08364114189645028 court:0.07128315097299039 :0.05864567755693212 +the:0.32466808058826246 in:0.23702776542547924 a:0.23478818401117652 this:0.10862087999422385 :0.09489508998085797 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7081969273002308 this:0.19446044100740084 a:0.06180168739898256 our:0.018725743820023493 :0.01681520047336234 +the:0.5594058173028241 a:0.18905000404892625 it:0.09709099845427832 those:0.08585438293654 :0.06859879725743147 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.40987263654370604 other:0.353193229966536 better:0.1368333543253861 right:0.06281153820720198 :0.03728924095716992 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +me:0.4761210936779658 able:0.15579682553659224 d:0.12450265507682762 chains:0.12274009994509205 :0.1208393257635223 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +legal:0.7219215282724637 most:0.22975779086988157 very:0.027315188959618077 more:0.010788504769534805 :0.010216987128501965 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +original:0.4776888005479573 same:0.14816036108014363 exclusive:0.14676596986156834 Federal:0.1298948702693167 :0.09748999824101401 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.36388420921439624 would:0.1838385363797403 may:0.18088962505809225 can:0.14291700862641105 :0.12847062072136012 +day:0.35904912187354876 part:0.19641201572190603 people:0.15796199757750912 end:0.15150200799912097 :0.1350748568279151 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.3249775977357288 in:0.3023472978882229 of:0.1444711773604868 and:0.14017213526734548 :0.08803179174821606 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +has:0.8069333609778578 had:0.0794677784942402 having:0.05399621513842004 have:0.04513145126697851 :0.014471194122503282 +men:0.2912698690422179 feet:0.24747787177212993 head:0.22782918567845445 people:0.11999290032596716 :0.11343017318123048 +them:0.3336832564357497 him:0.28425746824557635 us:0.20154735955797742 up:0.09126589452741155 :0.08924602123328482 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +who:0.7854427177037997 or:0.1637034402632327 whom:0.017510635797417292 and:0.0172619317020659 :0.016081274533484503 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.6994681604548113 and:0.13295029881134116 will:0.07661682867682215 should:0.053124961896333554 :0.03783975016069196 +the:0.6535524830357475 en:0.14537365096914065 a:0.0872790599013985 this:0.05755431469122159 :0.05624049140249168 +in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 +be:0.8526549341095991 hereafter:0.07601558572077018 bo:0.053291450397164736 have:0.00971870570253229 :0.00831932406993373 +of:0.25081106383080026 to:0.22768746724823624 days:0.2194977026852811 years:0.1896351061280672 :0.1123686601076152 +reasons:0.22634620072728615 candidates:0.21832435191638838 remedies:0.1991136818758206 things:0.18166919977132726 :0.1745465657091775 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9066164805502437 tho:0.04064289040843499 this:0.023144503690250052 tbe:0.01549640341001273 :0.014099721941058446 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3453241715000359 in:0.29078010471106375 that:0.14516943181503786 of:0.13060794956887573 :0.08811834240498681 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9762717966384664 ot:0.013758626893916761 ol:0.0062969528244016205 oi:0.0019512549544384932 :0.0017213686887767097 +before:0.41879172408333276 death.:0.4069514062569792 of:0.0697817257050053 the:0.06399752328439857 :0.0404776206702843 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.23938138541240508 held:0.23031708610711968 found:0.20705012666367806 used:0.17758149660284384 :0.1456699052139533 +center:0.28614767835405924 south:0.21071883691999246 north:0.2081845291228014 west:0.14771793774799352 :0.1472310178551534 +and:0.24625273793949246 made:0.2048727211261507 caused:0.19583897645388101 ,:0.18745843666439868 :0.16557712781607706 +in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 +which:0.28842789914351497 that:0.2752444906379823 said:0.2088548594944842 whom:0.1446050227172672 :0.0828677280067514 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4352332561645658 but:0.29615862444531227 as:0.1262354332074375 that:0.07372107021267571 :0.06865161597000875 +the:0.6621991408124169 a:0.22648562053187613 this:0.059063653477388414 his:0.029238591521077054 :0.023012993657241465 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 +south:0.2457968828404529 north:0.24404247147779493 west:0.21590956572120368 east:0.1925224506476388 :0.10172862931290977 +have:0.4887393217003701 do:0.18165549787009944 had:0.17736847078165197 are:0.08085728691784402 :0.07137942273003448 +say:0.38962403882348745 see:0.1896022161155592 show:0.16372765363851213 believe:0.1309843469651658 :0.12606174445727536 +him:0.5347244897948137 them:0.17666739330345183 me:0.11584593389394643 that:0.09176874195014277 :0.08099344105764537 +said:0.5129300566655146 final:0.20342894624786595 immediate:0.1004173954591638 prompt:0.09873266720929239 :0.08449093441816329 +first:0.5937984811648837 same:0.20609513822006736 second:0.11900692247919324 latter:0.04810032724339446 :0.03299913089246122 +is:0.4267387874693918 in:0.17654803066596406 was:0.1682819797356149 to:0.15877959804404332 :0.06965160408498602 +to:0.40352056443907475 of:0.24172604914839932 and:0.17859065352194414 in:0.09776085294837432 :0.07840187994220747 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +better:0.2603398485517936 thoroughly:0.2228849766315824 wound:0.1979176056143719 subject:0.18902971954850992 :0.1298278496537422 +time:0.644990832215232 way:0.17245341340917655 one:0.0742965596040825 reason:0.06479547042386097 :0.043463724347647885 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 +hundred:0.2502767045823328 large:0.21688536435617353 man:0.20733062651268858 good:0.18723035529853752 :0.13827694925026754 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.2670842029732967 the:0.21400093979327986 much:0.21289427202456337 this:0.19616057473881487 :0.10986001047004522 +the:0.9039824316697403 tho:0.03608150081079468 an:0.02147369633994448 its:0.020701500149760174 :0.017760871029760344 +to:0.24580854130999738 for:0.22198033515634738 in:0.21799885858853604 on:0.18687033496207345 :0.12734192998304575 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +went:0.26132247078714205 came:0.2515819944210586 took:0.2102314418243189 looked:0.14110467701591467 :0.13575941595156588 +of:0.9708949469739045 ot:0.013299986063216264 in:0.0064612853786222895 the:0.005385983436054895 :0.00395779814820202 +brought:0.6672115777480467 came:0.16463594916083896 to:0.07379802097690691 went:0.06330404996272321 :0.03105040215148416 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +necessary:0.2983126356312373 that:0.19993562281296834 else:0.18544398539287793 possible:0.17107116826753002 :0.14523658789538646 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +minutes:0.35272837054089823 degrees:0.29115866208232966 miles:0.15850520562998613 feet:0.1345636156661917 :0.06304414608059429 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.6428783483296241 not:0.13091404854381866 remain:0.09848144554750649 come:0.06846395201715164 :0.05926220556189908 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +small:0.26013597347205586 half:0.25371809905006865 large:0.1879473354407213 long:0.1613663447870465 :0.13683224725010756 +he:0.3804340160145224 it:0.24187276857864706 they:0.22438157553126795 she:0.07775809784325254 :0.07555354203231013 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +J.:0.30161646175596674 W.:0.24245101553436743 C.:0.19853115436311047 E.:0.13941714130982025 :0.11798422703673506 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4601081626032401 with:0.1626998135217435 to:0.1530669669828364 though:0.1235235890636219 :0.10060146782855812 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.7616470853439726 person:0.06728417488143436 year:0.06119755417422768 such:0.05984324537548725 :0.05002794022487801 +the:0.9330923868420726 tho:0.03707552931725558 tbe:0.01393426458463973 our:0.012567584088419634 :0.00333023516761235 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.4267387874693918 in:0.17654803066596406 was:0.1682819797356149 to:0.15877959804404332 :0.06965160408498602 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +purpose:0.24142285952381495 payment:0.2291369979276547 number:0.1797514507560867 amount:0.17950631741689538 :0.17018237437554826 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.4672130165431445 not:0.2507452677914416 a:0.20172929074054324 no:0.04343006137524556 :0.03688236354962498 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.28605250207667376 persons:0.2545305906446862 for:0.17715498537644073 in:0.14398466174767793 :0.13827726015452144 +and:0.41234489597256974 which:0.18952056862279787 he:0.1655231089708997 it:0.15656845776038655 :0.07604296867334624 +a:0.3934352838569764 the:0.37544545058920753 any:0.08900979572753553 no:0.0725699695580397 :0.06953950026824084 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +addition:0.45117525212813114 order:0.2836174243931283 regard:0.18388502857632036 reply:0.04106111744362021 :0.04026117745880002 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5171713465028658 the:0.1891623309995455 a:0.14831195629272867 in:0.10881544562290771 :0.03653892058195229 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.28329834258434555 and:0.2473578951164507 that:0.24170506204781136 with:0.13755249501726172 :0.09008620523413077 +a:0.4884400423553446 the:0.39844484895745835 its:0.0417632107270065 general:0.0406490629578171 :0.030702835002373564 +years:0.3543932908905152 and:0.23371851579650327 years,:0.19116240733362216 or:0.12006652081970894 :0.10065926515965043 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.3690857396169852 and:0.35601925793862343 here:0.11182408743857544 in:0.0879163853604494 :0.07515452964536636 +have:0.8768857915004611 had:0.04394988188457251 never:0.036330219010772574 who:0.024673568399572018 :0.01816053920462169 +favor:0.4286606174776465 front:0.16663700046522184 spite:0.14436924942848997 one:0.14085741126542772 :0.11947572136321394 +was:0.34164029160883064 with:0.20822958174906192 is:0.1725031461120452 in:0.13902277823330345 :0.13860420229675893 +in:0.5863105885787088 of:0.1617407484942074 In:0.10507752452225394 by:0.08316720333065356 :0.06370393507417624 +did:0.28829157371321046 could:0.24330719796753783 am:0.1900182008400474 do:0.1832299663455131 :0.09515306113369121 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.338977489378783 country:0.1842754949465732 world:0.1791043788994479 city:0.15640817023308612 :0.1412344665421097 +of:0.6841017174074435 at:0.24904222731121867 and:0.031155630709526382 about:0.019479984844461742 :0.016220439727349673 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +degrees:0.38587168618659057 deg.:0.3667225902780717 min.:0.12966036683668658 minutes:0.11609960686805086 :0.0016457498306003066 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +The:0.6392051916780088 I:0.10995397603672584 At:0.08799392801252627 A:0.08719175490135915 :0.07565514937137997 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.5896269263694419 it:0.11836527647345652 confident:0.11114299727355595 interested:0.09898583683357598 :0.08187896304996964 +made:0.23938138541240508 held:0.23031708610711968 found:0.20705012666367806 used:0.17758149660284384 :0.1456699052139533 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4416014899581615 who:0.18749378480793769 the:0.14088779876438837 but:0.11847794560759184 :0.1115389808619205 +and:0.2878669583241368 life:0.22705717508066423 conditions:0.21811524274014574 relations:0.138318468741205 :0.12864215511384836 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +together:0.6277875664645858 ing:0.1406250872152226 and:0.10391765843471425 was:0.08178780435160052 :0.04588188353387667 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +life.:0.22485432613847578 wife.:0.2178099823680614 head.:0.20251409893357594 death.:0.18728454379336884 :0.16753704876651807 +above:0.2753984828752391 time:0.25208737667378567 of:0.200334354233471 following:0.1645277099062733 :0.1076520763112309 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +The:0.6536069789749348 Their:0.14090574720952076 A:0.08537169570375387 Tho:0.06519563137059092 :0.05491994674119952 +that:0.7653944929944604 to:0.20950785887333181 as:0.013864494938008145 if:0.006234118450527623 :0.0049990347436721745 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +best:0.3685306001891695 new:0.17898760778665457 whole:0.17484129561428952 red:0.155536866342674 :0.12210363006721249 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8356065117525924 this:0.08594235119425245 tho:0.03558176633085733 our:0.022577406329665057 :0.02029196439263285 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city.:0.2687553192465947 country.:0.26474334338264893 world.:0.19881503539006837 day.:0.13473216391929435 :0.13295413806139372 +the:0.6926915993437429 a:0.14851725962255966 this:0.0608213177431329 great:0.05870618946779338 :0.039263633822771156 +mind:0.5504949439037671 experience:0.1440775792498931 friends,:0.1138560488526793 life,:0.10192631242292031 :0.08964511557074012 +will:0.39290955570755365 would:0.26496859823968877 must:0.11665710379596567 should:0.11303641062881425 :0.11242833162797766 +flesh:0.2555847845838608 cold:0.2104622229029885 noise:0.20938411331906703 hand:0.17055702363495986 :0.15401185555912372 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5748039290135961 and:0.1887967902820052 from:0.09660196902044751 in:0.0760769220321753 :0.06372038965177604 +war:0.2978885064528891 same:0.24446637794937368 company:0.18423266211273176 country:0.13954157797736816 :0.13387087550763727 +a:0.5448437253569836 the:0.20288424731915644 by:0.08864504026623658 your:0.08819992182101294 :0.0754270652366104 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.4369160011682525 take:0.1756344063310621 have:0.1633664852992967 make:0.13372317214367255 :0.09035993505771611 +come:0.26721080324424784 gone:0.25288761293903966 not:0.18052936896212757 failed:0.16236324396165827 :0.13700897089292655 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.29892441281108667 them.:0.20737201845705125 age.:0.18726854627598397 Washington.:0.1844597066694412 :0.12197531578643707 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +at:0.3313663295145717 and:0.31585613639331156 of:0.22556513409486992 which:0.06647101160836455 :0.060741388388882316 +a:0.6023990986394188 the:0.24722504060190204 very:0.06714964854180284 so:0.0416676266127124 :0.04155858560416398 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +come:0.2999228401421083 be:0.28865004966829166 appear:0.1726858079133663 stay:0.14176656673460547 :0.09697473554162848 +thought:0.3425889398092274 was:0.20202947952359218 is:0.1612371709224624 heard:0.16075981351947347 :0.13338459622524457 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +you,:0.6095025597227912 be:0.14658526500027477 you:0.08994510657254252 use:0.07990445324328548 :0.07406261546110603 +in:0.35832347792630787 of:0.18468053926800532 with:0.17917664048376333 to:0.14976037789313518 :0.1280589644287884 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made,:0.33449965135087234 over,:0.1850353560596513 said,:0.16987188891493285 done,:0.16762958920016563 :0.14296351447437783 +people:0.4033682026200842 men:0.27777211748644065 present:0.11619392827570985 children:0.10365867661698541 :0.09900707500077982 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.5142512198665002 and:0.2581450549359472 over:0.09376742271509393 about:0.06819775870297 :0.06563854377948858 +election:0.3165515579239989 meeting:0.26999367390721113 court:0.23665580693690025 convention:0.10220525693173264 :0.07459370430015703 +Mr.:0.2234869045869721 land:0.2087347029190895 Columbia,:0.19978642479488057 them,:0.19626883926125935 :0.1717231284377985 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.3989128371382014 to:0.2652669223699023 and:0.11861233315513099 from:0.1102899118536317 :0.10691799548313356 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.5398840199523385 may:0.14133968150214207 should:0.11606767343173088 can:0.11286281460781933 :0.08984581050596945 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +good:0.3347905780960811 this:0.2520659329387569 their:0.1736225933149306 my:0.1417612607878845 :0.0977596348623469 +the:0.508992424403978 be:0.21515899151231294 have:0.19580267545009092 recover:0.04278228422346382 :0.03726362441015441 +the:0.38788276634279034 a:0.2798228727110235 young:0.1324988098943016 every:0.10917215868059782 :0.09062339237128683 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +cost:0.4249453427209086 and:0.23035085265558894 prices:0.13475067466301827 standing:0.11079894499874515 :0.09915418496173901 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +about:0.49406457120759717 nearly:0.1522114967840846 in:0.13769371176864165 only:0.12870543931515266 :0.08732478092452395 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.3394356105471077 them:0.21064835293302323 him:0.20538029521247964 them,:0.13461405514720434 :0.1099216861601852 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.49570236185451455 to:0.19259448237447205 at:0.18286297180194092 on:0.06866988830327082 :0.06017029566580167 +when:0.32630345229877555 and:0.2642752396390058 but:0.1960169303057167 which:0.1172847579544946 :0.0961196198020074 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ply:0.7024528399885765 port:0.19960370212676634 pressed:0.04889141366984309 ported:0.02721948028441023 :0.021832563930403687 +a:0.37781532370763704 that:0.17018968999235703 said:0.16224329751732375 one:0.14794339905754134 :0.1418082897251408 +time:0.3030502286676768 soldier:0.1973315551605814 friend:0.177985353433301 bell:0.165631413848523 :0.1560014488899178 +be.:0.43250064949687705 do.:0.3348536918706862 party.:0.10201375476788258 use.:0.0694310152973763 :0.06120088856717785 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4459428573858665 but:0.20689886403742141 for:0.15414096928217721 or:0.12789909424084517 :0.06511821505368974 +in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 +but:0.31607224560704855 has:0.3082347929482461 who:0.19704916149413396 and:0.1071334862469641 :0.07151031370360737 +a:0.6845421843414917 the:0.19616078154252872 his:0.06280344204043437 so:0.03305082702085086 :0.02344276505469425 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +am:0.42363914478791503 think:0.24014958859221458 believe:0.12487685424716159 thought:0.10961015666675004 :0.10172425570595872 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.35006130371238336 a.:0.31855169693597946 it:0.12528219157087211 well:0.11161568617608028 :0.09448912160468484 +payment:0.230792487352589 part:0.22531449542619947 proceeds:0.2036993338045452 plat:0.18567282479308475 :0.15452085862358161 +and:0.510894460723319 but:0.18074877504283815 however,:0.15103999529519357 it:0.0880034026043942 :0.06931336633425517 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8294609987013005 through:0.05203258593116058 on:0.048715698811516175 in:0.03914261151494005 :0.03064810504108258 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Nevada,:0.3862472239127407 Montana,:0.20070303433078113 Iowa,:0.1854871375998962 Missouri,:0.1342708372961998 :0.09329176686038225 +of:0.53430331230853 and:0.19335880275755044 or:0.12375233554115114 at:0.0783284046959053 :0.07025714469686312 +to:0.3116547541993475 in:0.30037069563571367 with:0.1386169540249669 for:0.13386894020673068 :0.11548865593324127 +for:0.5444221053553128 to:0.1469036486506101 off:0.13896584083880284 of:0.08838207714476552 :0.08132632801050879 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6022294876929728 a:0.29466244092748234 their:0.035301708424627556 tho:0.03423655559686332 :0.03356980735805394 +not:0.5812862196402239 you:0.17317988705880508 we:0.12065857318132306 they:0.06558223994461523 :0.05929308017503275 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +well:0.680432546279653 better:0.11948429271528346 little:0.10395165856143855 remedy:0.0503925291318238 :0.04573897331180128 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +had:0.3991802482832699 was:0.18266458091741028 returned:0.17466291871131517 knew:0.14196186909355465 :0.10153038299444991 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.526839348947628 by:0.30656315753568475 before:0.07927164870943393 upon:0.04748100647793588 :0.039844838329317435 +that:0.5185346083414208 quarter:0.2744814786573281 this:0.07901690432848042 third:0.06463048264959213 :0.06333652602317855 +is:0.3872351042088435 was:0.24710105449050007 great:0.14065544805967964 time:0.12600916565247441 :0.09899922758850245 +the:0.928242024807794 tho:0.0394796870321879 tbe:0.01369893078610645 Washington:0.013489677545003536 :0.005089679828908008 +world.:0.2742299389453739 house.:0.26698441183205984 city.:0.22655819947263 door.:0.12425166118017131 :0.10797578856976502 +anything:0.4346692008654793 of:0.1993497325826467 and:0.15629959926234271 was:0.1130511816714123 :0.096630285618119 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7926993649152583 a:0.07628661332558749 very:0.054400652399606376 at:0.04828771270480641 :0.028325656654741422 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.3266364425622414 the:0.27055625322520327 a:0.16862222524712547 and:0.15130384341538525 :0.08288123555004466 +not:0.7699721876892721 probably:0.09531138765437643 never:0.05891260454223101 soon:0.04569168140624439 :0.030112138707876126 +states:0.41690965512258643 world:0.18238525824761762 country:0.15258337325867335 line:0.13260451324818734 :0.11551720012293518 +the:0.7165675648695987 our:0.13378870515645502 a:0.09811146987297924 tho:0.03507159009843343 :0.01646067000253346 +to:0.35884434906640844 as:0.2842267039798616 in:0.15307280466483866 that:0.14003429088057912 :0.06382185140831226 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +a:0.6360455659841393 every:0.16624300010404686 the:0.09091963686529454 lost:0.06317473743928287 :0.043617059607236504 +the:0.8348408308543473 his:0.07587357810575268 tho:0.04116988517626417 a:0.024075078928622883 :0.02404062693501281 +right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4168897441221419 that:0.32082984828367406 with:0.10634299703333051 a:0.09524908500557462 :0.060688325555279 +the:0.835385142521384 fresh:0.05944067591615678 tho:0.037621008854879734 pure:0.03610076374987483 :0.03145240895770469 +bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.46611612230270894 but:0.1687204320068492 in:0.15529665403282025 for:0.11136232382967597 :0.09850446782794557 +stock:0.33009271066525736 money:0.3231173714364639 general:0.14253564805879315 highest:0.1027864929698104 :0.1014677768696751 +the:0.69544335056296 a:0.12036492691543861 active:0.11173568867073735 direct:0.03972158338688583 :0.032734450463978104 +time:0.4894120425427251 thing:0.16021008480564278 day:0.13445903718408803 attempt:0.11501955137275967 :0.10089928409478434 +of:0.8215453612251047 on:0.0581178773540706 in:0.04175006929424165 and:0.04137205011616839 :0.03721464201041472 +all:0.3090994558079657 that:0.2502297852672965 which:0.23650961243215987 whence:0.11801128066017944 :0.08614986583239866 +m.:0.48269661239589085 m.,:0.1744225782547118 in.:0.16502608123007448 m:0.1439868004062711 :0.03386792771305159 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +der:0.529099023851938 even:0.1724611229454443 paid:0.1348159682619514 becoming:0.08189970033563217 :0.08172418460503404 +the:0.9282932148560069 tho:0.03885015817801704 tbe:0.01806170314482177 thc:0.008175226603115891 :0.006619697218038332 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +tween:0.4909485440834693 fore:0.3239658688517474 ing:0.11448699969660278 cause:0.05898931156674674 :0.011609275801433843 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +did:0.3016805091749588 is:0.18852711344428932 does:0.1824750845405936 will:0.1687847375987981 :0.15853255524136012 +Court:0.6177636808475657 White:0.27627136484611475 State:0.04423500077763587 next:0.03527814298083248 :0.026451810547851094 +sooner:0.36593249795559796 man:0.2952858751504985 one:0.21218622787364785 person:0.08149256585005743 :0.045102833170198246 +it,:0.37267904338498237 all:0.2319057083132383 fact,:0.1629769991589131 time,:0.11686246055741578 :0.1155757885854505 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7388869531924472 an:0.15532046734187394 tho:0.03666412123424247 his:0.03617463385715968 :0.032953824374276554 +to:0.6268622830250657 by:0.26606273860355206 in:0.04890426684116072 for:0.04196176504794788 :0.016208946482273535 +party:0.852338506939443 party,:0.048900701261051845 leaders:0.04331679366435323 ticket:0.02851163999753969 :0.026932358137612123 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +min.:0.6894895279364883 deg.:0.12277146328040901 degrees:0.11383061716741544 minutes:0.048069858006316024 :0.025838533609371283 +they:0.3375270272343705 bonds:0.2225619949599119 that:0.1897107185681465 there:0.15219535049159416 :0.09800490874597681 +resting:0.5300123841690682 action:0.15184898549063783 hearing:0.13025200443309448 vote:0.10122040712875742 :0.0866662187784421 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.39071171871001137 known:0.34033858635122755 enough:0.11434024502461099 adapted:0.10568069965007323 :0.04892875026407683 +meeting:0.5947796860187303 convention:0.29807243839601527 meeting,:0.08563970186205895 had:0.011653147470935645 :0.009855026252259562 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.5579707756071741 It:0.1743264232153529 In:0.11564628602748976 He:0.08208058271096214 :0.06997593243902099 +they:0.45178790902969207 there:0.2626815524029223 we:0.15209295702396872 who:0.08191310601524777 :0.051524475528169224 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +much:0.48299941763352844 as:0.29222338377173934 far:0.08772676274403203 anxious:0.0752430284646978 :0.061807407386002294 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9326428407036597 tho:0.043786587626083145 tbe:0.015033337724739516 these:0.0045858493488774585 :0.003951384596640375 +been:0.6730999101203717 done:0.10812407498946341 come:0.10321657004607189 made:0.060497121807887404 :0.05506232303620542 +people:0.5340216431228111 men:0.13854308742444435 I:0.12562795294032067 country:0.10898129682762674 :0.09282601968479713 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.8674253641421141 was:0.07089543589932992 Is:0.03275877725524834 be:0.019920405278950795 :0.009000017424357068 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +or:0.23951807375603273 according:0.2283789511059852 assigned:0.21393535056352134 delivered:0.1817075861478071 :0.1364600384266536 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +law:0.2415154069083313 bill:0.19478009397581153 amount:0.1929926626018558 country:0.19043831197547426 :0.18027352453852716 +has:0.5084991803651944 was:0.31609962545549347 have:0.06287112568277012 had:0.05975004680319331 :0.052780021693348764 +as:0.3572807766921138 is:0.3072907031067343 was:0.1364032081323438 came:0.1008572950200361 :0.09816801704877205 +it.:0.48695297736904475 them.:0.13953735044363316 America.:0.1282836917874065 order.:0.12380614002775049 :0.12141984037216516 +His:0.5319516729444709 The:0.3323707292750528 These:0.06161162934594846 No:0.04095996374772617 :0.033106004686801666 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9390533761209332 ot:0.021842811073830754 and:0.018625469440137172 for:0.012573853912757726 :0.00790448945234107 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.45576390794054766 that:0.17430895765499038 to:0.15537985259191334 in:0.11687786784623302 :0.09766941396631552 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +rose:0.3249755335907529 came:0.21693014023905732 comes:0.20385969976771826 and:0.13860571578294062 :0.11562891061953101 +no:0.35879119967193096 the:0.2465414906475815 an:0.23340638637574912 any:0.09297822156442041 :0.06828270174031816 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5979512496941846 sought:0.13954384653186971 the:0.10113952472152361 lesson:0.08537518014346247 :0.07599019890895962 +they:0.5491724118993412 she:0.16343192689049182 he:0.157481046000519 we:0.0820003075099764 :0.04791430769967149 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +lots:0.3382341811986566 township:0.27459906101619314 Lots:0.174954490564756 12,:0.11922168894856078 :0.09299057827183356 +so:0.8088854104008716 |:0.06759834200072481 I:0.04954804935549004 and:0.038658347796564414 :0.035309850446348955 +found:0.24632557518589404 held:0.19925375992537323 made:0.19566861592337453 used:0.18365984320017875 :0.17509220576517953 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.3745652516672113 to:0.270901062544531 in:0.1609525836390594 for:0.12616298503999282 :0.06741811710920548 +to:0.8348813896190032 and:0.059638469771656766 further:0.035979584603259764 on:0.035760778832355 :0.0337397771737253 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +went:0.3167397927246767 came:0.24230611775047686 sat:0.18341705056968066 go:0.1391356398749751 :0.11840139908019068 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +able:0.40678286427927557 allowed:0.16837189371372713 made:0.16004441386181978 used:0.13387521084376586 :0.13092561730141164 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him:0.2966230296091174 as:0.2840504571322502 equal:0.15735501112293884 them:0.13098637645863373 :0.1309851256770598 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.8864850378185054 bo:0.05893579907923245 have:0.03301189743250558 he:0.012660910636019004 :0.008906355033737668 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7470309867474711 any:0.10658075403269952 present:0.061984816895226995 a:0.05956057829814216 :0.02484286402646023 +he:0.5144230835599531 it:0.19407464626516682 she:0.12457902772734576 and:0.0896211598045646 :0.07730208264296973 +have:0.3714329539305315 has:0.34237759125721273 had:0.2671211487012492 bad:0.01000248269506761 :0.009065823415939039 +of:0.715979068059031 to:0.1330798730359889 and:0.07942604399865415 from:0.03602351241821438 :0.03549150248811171 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.31903068838496285 and:0.2742699490495268 duly:0.23946065115921888 as:0.10210669604737996 :0.06513201535891167 +them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 +the:0.8359800290601528 this:0.077639105736723 our:0.03809607432274916 tho:0.028409723648485753 :0.01987506723188926 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +so:0.5529501439526827 in:0.15761374701236605 all:0.11708226743890834 said:0.08817307574883741 :0.08418076584720546 +an:0.5106899015221423 the:0.3655310604385533 too:0.06030464713136965 very:0.036858628797726646 :0.026615762110208222 +York.:0.4844227930856356 York,:0.43182345674808853 York:0.06616987458806628 England:0.010827392067175786 :0.006756483511033822 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.43047599295048194 but:0.2897680057622762 thence:0.12219811043833881 it:0.10812318352764069 :0.04943470732126247 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +said,:0.4607315781836426 who:0.18487564304195342 thought:0.14892301673339647 never:0.11534788330907264 :0.09012187873193492 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.6021283065193739 was:0.2621370453512656 Is:0.06960487741713924 are:0.035630048746761615 :0.030499721965459817 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +year.:0.26405076221249674 country.:0.2031066972282455 building.:0.19757792705259242 world.:0.17766619351491114 :0.1575984199917541 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.2689769450306217 is:0.26005250752280584 notice,:0.19602302229622817 has:0.18310240427158356 :0.09184512087876075 +J:0.30280630880775883 W:0.2431059476697931 C:0.19075154703324312 E:0.14522697782784205 :0.11810921866136297 +M.:0.3793601955676401 B:0.16743055922267056 K.:0.15998611923664258 Smith,:0.1492987494068893 :0.1439243765661576 +the:0.5206241790971304 a:0.3474645509701614 wheat,:0.05189467954528854 to:0.04431842281562524 :0.03569816757179447 +be:0.7949226081741961 amount:0.06634607649858917 become:0.06579275681377386 not:0.04730413967864664 :0.025634418834794257 +a:0.6512952710773384 even:0.13031483214670422 most:0.08458193722435248 more:0.07905238781920368 :0.054755571732401115 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +or:0.5769302591132225 and:0.13209812328988985 of:0.1312707437583774 for:0.10695629707379675 :0.052744576764713356 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +then:0.34871996846599823 I:0.32192348893300893 he:0.14844572983530202 was:0.09708276457641943 :0.08382804818927156 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.5359637440157589 live:0.1653556360502131 exist:0.1075811013402712 succeed:0.09950702161590691 :0.09159249697785002 +he:0.33921029092920363 it:0.2337290115988769 they:0.22824968172202784 I:0.1017961060863465 :0.09701490966354516 +the:0.46161872943194615 take:0.28885953585529583 his:0.1181077119082334 employ:0.08443977716206197 :0.04697424564246284 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +go:0.2891396088088796 have:0.25713603817389885 come:0.17822733945404773 be:0.16073622905955376 :0.11476078450362003 +the:0.6100336297561193 under:0.14003150372907397 its:0.10588876898096865 their:0.08563158882745565 :0.0584145087063825 +have:0.38557832792849855 had:0.3116962304024056 will:0.13110817564941704 would:0.12606987978468617 :0.04554738623499263 +be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +p.:0.7561094793298052 a.:0.12603880665988665 p:0.08221778450036464 am:0.01846886236532607 :0.017165067144617577 +of:0.7551707151657875 grown:0.1403769115467423 and:0.07802356834976067 extent:0.016153586568840743 :0.01027521836886889 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8262002239132155 in:0.07729885386470244 that:0.03817175682238413 to:0.036864538084438014 :0.021464627315259943 +to:0.9380460527522806 and:0.03321138602228892 will:0.016607469287476567 would:0.007389794745111146 :0.004745297192842759 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.42766840240462006 that:0.2993734721527005 which:0.10844009100744052 least:0.0867683768552149 :0.07774965758002408 +it,:0.28732793109763616 them,:0.27887578485896525 course,:0.19139267831219164 life,:0.1264002559654954 :0.11600334976571142 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +no:0.3083213435198566 the:0.24454772696404437 a:0.1857379437431397 even:0.15575166078531022 :0.10564132498764908 +or:0.3186192599922418 by:0.2303134961696417 for:0.17797434771650716 to:0.1497974173135268 :0.12329547880808266 +is:0.327427442423124 very:0.2792071314870597 a:0.1956452186730169 great:0.11984396596336147 :0.07787624145343787 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.36340086628579665 to:0.23438477458732046 of:0.16411599856047165 all:0.12078877542460353 :0.11730958514180773 +bidder:0.2509790378016872 reasons:0.19436402422577587 place:0.1936550770203936 bill:0.18654035528585083 :0.17446150566629245 +morning:0.33945303897175055 afternoon:0.32232767912027815 and:0.11712038395629668 afternoon,:0.11220853966963282 :0.10889035828204179 +terest:0.7422155780609739 formation:0.08009300977013147 formed:0.07095814525976346 crease:0.05418618070872877 :0.05254708620040234 +last:0.4978218766044445 next:0.2411919198129518 past:0.1318838136741195 fiscal:0.0660763812392769 :0.06302600866920714 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +several:0.2369920767455623 ten:0.23003811142740566 three:0.20431487084777342 those:0.17054413030328686 :0.15811081067597157 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.4076386087124439 was:0.17411790700116056 has:0.14646716595062834 had:0.14372860160125744 :0.12804771673450965 +the:0.6367728647004773 each:0.2352010815331408 any:0.0661891207981596 tho:0.034311893034834076 :0.027525039933388458 +in:0.39215381793830223 on:0.17850483299453793 to:0.16784660744132276 at:0.13875156909182068 :0.1227431725340163 +point.:0.39174695792123304 -:0.21801428931710118 !:0.17932459452425062 j:0.13170487953100093 :0.07920927870641427 +by:0.4766619817890272 to:0.41227511282312745 for:0.07730921731726785 and:0.019565884109913417 :0.014187803960663858 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +tween:0.45394264979448196 fore:0.35523694271006034 ing:0.113829157662684 cause:0.06354902962254973 :0.013442220210224036 +do:0.38632623385915166 meet:0.25453642554188405 go:0.16273758190751408 him:0.11113823743447639 :0.08526152125697391 +have:0.43712522680471805 are:0.3277420861006477 do:0.08494846702891605 had:0.07547785648829718 :0.07470636357742105 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.5328508303371737 to:0.14794988274368676 they:0.13149890847879564 would:0.12382128660211758 :0.06387909183822621 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.592436469856042 on:0.23316649479322035 In:0.10355880510627546 at:0.04284052622537206 :0.02799770401909012 +come:0.3175402221467192 escape:0.22384009754258677 recover:0.1560774848032916 him:0.15259520439595395 :0.1499469911114485 +and:0.4058347220198405 that:0.30774660106765184 will:0.12391345692678328 as:0.0909435056394351 :0.07156171434628941 +had:0.34710057655784676 is:0.3410606461532934 and:0.11023961569228766 was:0.10487327011119987 :0.09672589148537243 +are:0.5261798324788639 is:0.28352213633646206 has:0.08217788646091606 have:0.06708803366785311 :0.04103211105590497 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.43381071061869164 without:0.34500220006115634 any:0.09530343403501833 immediately:0.06630574453269426 :0.05957791075243945 +order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.3448219238390545 much:0.25584411764652265 many:0.18600385985317255 part:0.13599459947076745 :0.07733549919048274 +held:0.2413972363206686 placed:0.24053160270689386 made:0.18780208327570927 due:0.1713522810500942 :0.158916796646634 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.2507041416681069 it:0.22583424596027493 time:0.20887970652465848 day,:0.16934891304830973 :0.14523299279864987 +it:0.3912428845763365 such:0.33877550055010197 is:0.11942521155677531 time:0.08232498847695631 :0.06823141483983003 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +The:0.6236628271582576 Our:0.3211584978073122 Other:0.021785309575267416 Some:0.01751721992187084 :0.015876145537291848 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +recorded:0.4984399731733091 that:0.14957083603055452 it:0.12778864120976063 interest:0.12105971834665655 :0.10314083123971923 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 +the:0.6906053625248346 its:0.10662283186511277 in:0.08515537898818089 their:0.06475692876391215 :0.052859497857959695 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +believe:0.4454595542946292 know:0.243070708425332 hope:0.1266987846809243 think:0.09976499590860088 :0.08500595669051368 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.40633010950319315 this:0.2671319938407176 any:0.1703929380198183 a:0.09887482613496498 :0.05727013250130596 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.46725390726880284 an:0.3374914466132473 his:0.13976456226775524 their:0.0314256099808571 :0.024064473869337497 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.33424722771831056 country:0.2169844612251395 time:0.16442378185094678 I:0.14748785846021836 :0.13685667074538493 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.2655444757049975 give:0.24768179968931184 take:0.19313079360224605 see:0.15779179819151923 :0.13585113281192537 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.22614761638177275 provides:0.21624484021658102 it:0.21556615352858488 time:0.18376722346925736 :0.1582741664038041 +?:0.3522321841900804 them:0.16708904337452452 do:0.16403846465303631 be:0.15900470960774873 :0.15763559817460995 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +days:0.42293448405446765 minutes:0.236020745243483 years:0.1460367571235806 weeks:0.13172945686811224 :0.06327855671035658 +those:0.30915000096558454 land:0.2576449086404568 that:0.1555567859506852 land,:0.14252034063578264 :0.13512796380749098 +of:0.5938879268894328 in:0.14873662323540324 next:0.12378166087387356 last:0.10296339343003684 :0.030630395571253466 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.2917104823876517 am:0.2576555369413741 found:0.19297910632837453 believe:0.15990483007660258 :0.09775004426599702 +by:0.4989681564058235 as:0.19884695447876238 on:0.14905281682914664 in:0.08975579751961851 :0.06337627476664882 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7921024469764437 a:0.0834044313966272 precious:0.04473877907574598 this:0.043105384785658805 :0.036648957765524445 +to:0.39733227673133953 taking:0.23317168451562298 talking:0.171150344253336 looking:0.12007222639471364 :0.07827346810498782 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.4827282498215172 time,:0.29196400374922415 one:0.0882865248328127 years:0.0813860115574876 :0.05563521003895835 +he:0.2729848515800274 It:0.25608167097903833 it:0.20509051155233896 He:0.13803793500951733 :0.12780503087907807 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +use:0.30833286506898255 corner:0.19176613001223175 one:0.190922625727074 be:0.1711156462919077 :0.137862732899804 +Mrs.:0.6111467751169514 John:0.13149512285662202 J.:0.08963912468218735 the:0.08525541945303124 :0.08246355789120809 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.6197494553982044 is:0.1416970158214827 has:0.0913171764916109 were:0.07687527122201471 :0.07036108106668747 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +tariff:0.28113329732234965 Senate:0.24999338616295075 House:0.19017271430618138 senate:0.1415516184398363 :0.13714898376868204 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +estimated:0.31216009318061655 not:0.2793701898665078 now:0.17193194726558897 held:0.12964251283969072 :0.1068952568475959 +going:0.25764174126496203 unable:0.2096599122249072 not:0.20500623635875526 able:0.1814447163183151 :0.14624739383306046 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.23938138541240508 held:0.23031708610711968 found:0.20705012666367806 used:0.17758149660284384 :0.1456699052139533 +to:0.8219575437608809 only:0.10719275341745477 help:0.046813735519384087 merely:0.012534222929820902 :0.011501744372459441 +is:0.4776419988878637 delivered:0.19440039164399212 was:0.14630073593707088 given:0.09452697538632657 :0.08712989814474675 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +country,:0.255714336521947 world,:0.24966444254928408 people,:0.18397271953541283 time,:0.15542103659202702 :0.15522746480132904 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +his:0.3497006512857437 their:0.3027492082868531 our:0.13867087258811966 its:0.12600906067150824 :0.08287020716777542 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +first:0.39643075180578174 last:0.17522190439366678 people:0.1599745625434154 interest:0.14847639606171187 :0.1198963851954243 +is:0.3815021573122253 time:0.21623464843103052 in:0.15656182894144346 to:0.12992553047821742 :0.11577583483708329 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.3132499625767866 ?:0.23316932781480557 there.:0.1981947777749733 to:0.13046708434022278 :0.12491884749321186 +and:0.5752469089907472 was:0.12523319154192677 of:0.10941663117659833 at:0.10416119656580046 :0.0859420717249273 +taken:0.36557095972088793 derived:0.1931671096776762 removed:0.1734367459531808 obtained:0.14051787463044768 :0.12730731001780737 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +those:0.4797015036936935 age.:0.18803956021522364 it.:0.17364346447110512 them.:0.0811269356650595 :0.07748853595491813 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.9617039335973444 a:0.02065590901132395 to.:0.00821171031007968 him:0.004880721144021416 :0.00454772593723069 +be:0.42115849324033183 the:0.23229446367489917 a:0.13690558436712563 do:0.10780839498326072 :0.10183306373438271 +is:0.45656315686808124 was:0.2895533919547336 has:0.09716624127577259 had:0.08277640319635403 :0.07394080670505859 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +mand:0.42664295925468315 scribed:0.3775715689617984 voted:0.09800152407828076 ceived:0.04908251035566268 :0.048701437349575195 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +quite:0.5210533798753827 more:0.2831798991801052 known,:0.0882042649944776 known:0.05586313526127405 :0.0516993206887603 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +provide:0.5990225097570039 do:0.11686475604471039 pay:0.1038264509114101 remedy:0.10299740935908941 :0.07728887392778629 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.500132101775197 will:0.1510937523468082 can:0.13972550516460006 may:0.11721373668557063 :0.09183490402782417 +was:0.3218745293424024 and:0.25809980650299597 is:0.21318551429340452 engine:0.12198336792398543 :0.08485678193721176 +of:0.8345274536149215 in:0.06660971208673461 and:0.0476819162946391 to:0.03267028602581228 :0.018510631977892635 +men.:0.35085260436121757 citizens:0.19645171862388305 men:0.175161525539205 man.:0.16812047240803013 :0.10941367906766435 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +way:0.48191332381020574 free:0.1447467631676159 members:0.13207302649981556 leading:0.13179009217830548 :0.10947679434405733 +and:0.4056787995787514 Bryan:0.17755424220505092 I:0.14614565557701373 Smith:0.14004091324667764 :0.13058038939250638 +of:0.7723450482647879 that:0.13526411317718876 in:0.05650126836670774 and:0.018654351180848103 :0.017235219010467574 +the:0.8681337310374498 a:0.048137737158813525 tho:0.03522872820796132 in:0.027535753998646665 :0.02096404959712851 +well:0.40355947772923645 up:0.2679930697104767 him:0.1519591018812787 them:0.10798588522009488 :0.0685024654589132 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +who:0.4716901934634818 were:0.2425121968046001 and:0.10728557564696461 of:0.0898528867599225 :0.08865914732503093 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +their:0.5100914814912193 the:0.38912730803377243 our:0.03918351744390781 have:0.03396278668075688 :0.027634906350343567 +mode:0.2842234427807977 attention:0.24964284807981788 kind:0.18669569272122247 part:0.14404430367530935 :0.13539371274285275 +most:0.4711216345731325 first:0.24296523204318793 second:0.18541936979753304 upper:0.06134285370755359 :0.03915090987859299 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6674386721551056 and:0.12793405875907485 in:0.08279567242855497 from:0.07264772385696713 :0.049183872800297575 +deal:0.33357138025916333 demand:0.2703090940270673 and:0.16796756947297128 men:0.11590969687738502 :0.11224225936341294 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +with-:0.31128163672712794 work:0.2742751821939246 pointed:0.16835297950598851 times:0.12471716917273226 :0.12137303240022658 +of:0.6619521708598454 in:0.19902355443446035 on:0.05090580070658903 to:0.04914241809958432 :0.03897605589952084 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +mand:0.47253701302785445 crease:0.19814157997944068 scribed:0.12765602353326838 signed:0.11538873282068102 :0.08627665063875553 +of:0.2579430328214127 than:0.22041772236928842 in:0.2020665142279125 words,:0.1647129037035039 :0.15485982687788238 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +directly:0.38009412773959156 as:0.3743347026749448 Commissioner:0.08451133704907826 on:0.08168165199590201 :0.07937818054048343 +law:0.2415154069083313 bill:0.19478009397581153 amount:0.1929926626018558 country:0.19043831197547426 :0.18027352453852716 +and:0.33662952772748783 to:0.22332650851583236 in:0.18713544106828642 so:0.15210544866877676 :0.10080307401961665 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4052695579985274 provides:0.2592083136654604 books:0.18159484570884396 providing:0.08159255219796464 :0.07233473042920362 +of:0.6866637267776233 in:0.14591251442561085 to:0.06488613868737199 for:0.058946142251727764 :0.043591477857666185 +long:0.6843602186319134 new:0.1707464163293072 whole:0.055552695628405584 second:0.04688083334247222 :0.04245983606790177 +did:0.354796743149662 could:0.2218289274794014 was:0.15394835531848963 does:0.13863198479968464 :0.13079398925276234 +and:0.5548647960530696 are:0.1516748988592256 by:0.13466780025885589 for:0.08742789888197326 :0.07136460594687569 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time,:0.2704948862266997 year,:0.2048911973114478 week,:0.18317697614566916 small:0.17726699252353248 :0.16416994779265082 +that:0.532585321222338 that,:0.15830284722445978 the:0.12640142456061126 day,:0.09621799868081636 :0.08649240831177464 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.42083370438357626 in:0.23573817593463223 to:0.15715251433983787 on:0.1193273543001569 :0.06694825104179676 +far:0.5881495083588533 much:0.16943929992548518 well:0.10596868716913298 long:0.10265131826634176 :0.03379118628018675 +opinion:0.3844943843558082 mind:0.37256440950913466 belief:0.11621442419247448 opinion,:0.0751337878541098 :0.051592994088472954 +is:0.3815021573122253 time:0.21623464843103052 in:0.15656182894144346 to:0.12992553047821742 :0.11577583483708329 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5452726518408596 to:0.14779430095786356 as:0.12467412213661129 in:0.10477043227866516 :0.0774884927860004 +and:0.7357740612285554 annum,:0.175127675161612 made:0.03506787790331226 nnd:0.027469143478294024 :0.026561242228226294 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.42463367840287586 America.:0.19476572265509684 them.:0.14396443577860119 Washington.:0.13397389655015335 :0.10266226661327278 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one.:0.3557718684352867 home.:0.23915419986441033 life.:0.19370757377183448 man.:0.11155595199776279 :0.09981040593070586 +or:0.9168577251581581 nor:0.026723245704426687 than:0.024780192211006396 un-:0.017373965541408853 :0.014264871385000022 +piece:0.2886838718812382 little:0.1935834481521195 man:0.1837121383300525 person:0.16826751622582306 :0.16575302541076672 +of:0.35366556922808207 time:0.27632183847355324 think:0.19256481647063758 say:0.10782554876044279 :0.06962222706728426 +time:0.38372316710678994 best:0.1792130012443636 way:0.1535109271866731 said:0.14962321006019672 :0.13392969440197655 +much:0.48299941763352844 as:0.29222338377173934 far:0.08772676274403203 anxious:0.0752430284646978 :0.061807407386002294 +the:0.3842977715696187 a:0.3345043103708771 even:0.11182799083828704 still:0.09314206015719105 :0.07622786706402608 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4446018555024738 that:0.16896332690814958 a:0.13152716055485564 first:0.13074619750760463 :0.12416145952691625 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +those:0.7211154233551041 men:0.12412846917238905 all:0.06904661178572712 one:0.0478192844083785 :0.0378902112784012 +new:0.2557122466661221 high:0.21223012258290305 social:0.20461648589831455 good:0.16905355807810082 :0.15838758677455958 +be:0.39105954633220086 have:0.24287457330835063 he:0.22268059429151682 which:0.0916144214853697 :0.051770864582562054 +they:0.3221044081963326 he:0.2510697472185581 we:0.18685177766439232 it:0.12683913572862993 :0.113134931192087 +off:0.28405949479765186 in:0.25318877434677584 into:0.21642309910221705 with:0.12736317625280735 :0.11896545550054807 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +reason:0.7730346894987457 reasons:0.19493321049045176 cause:0.021234675994130765 and:0.007449294454159764 :0.00334812956251202 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +years:0.8821122807781052 months:0.06794321694514747 weeks:0.03961916063887997 days:0.006252829413599067 :0.00407251222426835 +only:0.4802428778748002 first:0.19849115841299067 least:0.18205053178956698 last:0.07596790646082333 :0.06324752546181889 +have:0.43566196875438806 had:0.27025921546081283 was:0.16689286729673758 am:0.07895371023658736 :0.04823223825147413 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7197322409688109 a:0.13997704523653906 such:0.052050988283418975 his:0.04527961209293989 :0.04296011341829122 +that:0.7780740048577516 they:0.07073644038077462 who:0.06241005296358912 she:0.051651418972123164 :0.037128082825761556 +the:0.38431026051942246 a:0.28521913498156687 this:0.2213709158391217 his:0.07207996458692542 :0.037019724072963424 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7458689468755577 a:0.1711266272159236 tho:0.029660246973979093 new:0.027761121545867046 :0.025583057388672423 +to:0.41952903502948147 pro-:0.20716896005845994 of:0.14639285097935403 and:0.13182076980994473 :0.09508838412275987 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.8013279302183882 and:0.07563541060445987 by:0.07418703926876401 the:0.02495435008247844 :0.023895269825909393 +is:0.4248782868184779 was:0.23023030235131212 being:0.14326638703247274 are:0.13865479255414076 :0.0629702312435965 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.6081180471027439 In:0.20233266906567313 as:0.06888686334164094 on:0.06829535484441651 :0.052367065645525505 +went:0.27673095518362745 orders:0.22021905435923295 efforts:0.18236101785656678 attempts:0.1805521855749978 :0.14013678702557505 +is:0.3815021573122253 time:0.21623464843103052 in:0.15656182894144346 to:0.12992553047821742 :0.11577583483708329 +He:0.4933069405096333 I:0.21102540125637745 She:0.16064218038623984 They:0.0835341228669473 :0.05149135498080214 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7259999745874841 this:0.16075149201551853 tho:0.0412324965751167 a:0.04025290848798212 :0.031763128333898646 +failed:0.23285022364306351 come:0.22033299427397599 been:0.19791801323131356 gone:0.1950553578571899 :0.15384341099445706 +not:0.27704312744361254 likely:0.2371434664494363 entitled:0.21210164823881894 claimed:0.14212117221906162 :0.13159058564907056 +of:0.4346648684311583 in:0.18472519089697179 to:0.15660802917822855 on:0.11270681805147077 :0.11129509344217067 +we:0.2594606320945463 who:0.23399107026576518 and:0.21103597253890144 I:0.15570131071714022 :0.1398110143836468 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.31219898163706883 states:0.222214085011119 which:0.2033484732570931 he:0.15420596982824786 :0.10803249026647113 +go:0.36080905261796875 get:0.21572081582449512 the:0.19245800982018244 come:0.1390059287436487 :0.092006192993705 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8638568328306641 in:0.04753028886251863 to:0.03964909605070989 that:0.0250594184502428 :0.023904363805864713 +been:0.2617572464191035 made:0.22823278566478852 come:0.20429536100632267 gone:0.17922235903234837 :0.1264922478774368 +was:0.3558160836835885 it:0.2495016765303829 that:0.19429082922805652 is:0.11388404415415745 :0.08650736640381461 +willing:0.2574168564203219 going:0.24215777082517712 not:0.1940711234741652 able:0.16218887352176606 :0.14416537575856986 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +three:0.2118785574492995 six:0.20358408791404697 eight:0.20304564231874164 five:0.19188922020077787 :0.1896024921171339 +afternoon:0.24245046139708273 and:0.23738868258544285 evening:0.1907667248190773 of:0.1744265278350207 :0.15496760336337642 +the:0.7884284601024382 tho:0.07952229344755292 its:0.058553075291276305 tbe:0.04901160611583929 :0.02448456504289313 +order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.35058555992380724 in:0.24152962253753274 with:0.1885239268101377 from:0.11405870343003813 :0.10530218729848416 +to:0.7951174616004176 ones:0.0605948504015583 I:0.05292994744997487 can:0.04670209827244911 :0.04465564227560001 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3021025167969741 for:0.2618994421712474 but:0.2405497941064475 to:0.0998699542786841 :0.09557829264664695 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +am:0.3699573222226719 think:0.3413648463611118 wish:0.1097634815568768 believe:0.09347157110393674 :0.08544277875540267 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.9762100669798146 or:0.010904652363161765 and:0.005008901564322668 lo:0.004744855429119449 :0.003131523663581508 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.38480503676456956 that:0.22832358276469975 to:0.14759877338080848 on:0.13243997629071969 :0.10683263079920259 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +of:0.3063970551673443 to:0.2607344896666734 in:0.19168061057581354 on:0.13808190643723048 :0.10310593815293842 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.6192185053989371 was:0.12939348708475887 a:0.12438814178439951 the:0.07983815742316344 :0.04716170830874119 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5954329503015001 a:0.33344694247191886 this:0.03250635160422614 tho:0.027167661284427415 :0.011446094337927504 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +nothing:0.40040469154891456 ,:0.2186694530123132 true,:0.1499029010681221 now,:0.1345668595448489 :0.09645609482580117 +it.:0.31728322507312373 America.:0.31503204273511926 town.:0.14591238966498696 life.:0.11291462925719344 :0.10885771326957676 +to:0.3709896037545103 that:0.17492227984725822 In:0.16572592875299577 of:0.14443701347871915 :0.14392517416651648 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +life.:0.26038581757999624 death.:0.2173609639471723 head.:0.19558642029184775 wife.:0.18702020344718678 :0.1396465947337968 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.45271906427048053 men:0.3377598416610024 people:0.09458540452989839 man,:0.061827401927931146 :0.05310828761068768 +him:0.419990194462673 them:0.22725414675846306 us:0.13857993037442054 me:0.13257856854771097 :0.08159715985673244 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.7510350919020462 and:0.0894629714131973 of:0.0675360249301599 or:0.05460477313342706 :0.03736113862116943 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.8129881874863701 have:0.11027809928281294 bo:0.041935932249524584 not:0.02939832880777159 :0.005399452173520749 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +lot:0.2708706425517555 June:0.23143110662265107 lots:0.17106395469853164 section:0.16793108481539407 :0.15870321131166776 +to:0.40296120114766176 by:0.30289451889230634 in:0.12785852975775713 for:0.09787042361386232 :0.06841532658841251 +character.:0.4323036007541603 place.:0.16815501216099174 price.:0.14476518288363618 manner.:0.13000075676094452 :0.12477544744026717 +be:0.6892635663054129 have:0.17755788408159526 make:0.0476277576497332 bo:0.042789721949922685 :0.04276107001333597 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.43295196928214796 by:0.21979533370306373 in:0.17946051680063416 that:0.11572591920095153 :0.05206626101320254 +made.:0.33014963326848606 good.:0.227832231643349 used.:0.19819402805979067 over.:0.1320004689311219 :0.11182363809725246 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.5530068003866004 done:0.17952533515054078 heard:0.09609506107751609 seen:0.09018984117853761 :0.08118296220680504 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +lots:0.24699110105269634 Range:0.24343892334324338 the:0.20444230887013612 course,:0.17908740595048128 :0.12604026078344277 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it,:0.2608878255975971 him,:0.23256579367540162 them,:0.1844105083508123 him:0.1772569189593748 :0.14487895341681417 +in:0.453772302676593 of:0.2739977217260374 if:0.12540453228468382 In:0.09364553856877382 :0.05317990474391206 +the:0.8251826767679633 North:0.08742039052045479 South:0.045953630115944756 tho:0.026854820311203037 :0.01458848228443415 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.5378042258965463 of:0.22057726376602302 two:0.09336321948247502 forty:0.07575177811195212 :0.07250351274300344 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.41610090183465637 a:0.16389372412706105 assumed:0.15996083853440474 his:0.15567186657142829 :0.10437266893244952 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +said:0.39488842256010137 public:0.368693869612399 tax:0.13789398394312585 great:0.053394538171676574 :0.04512918571269742 +to:0.39434086846496963 by:0.23867912099476962 for:0.20744929656178296 in:0.07996304206546452 :0.07956767191301332 +candidate:0.39789734701993856 good:0.1680462666624389 vote:0.16550426145230196 week:0.16030475784400067 :0.10824736702131987 +homes:0.24567215230248393 one,:0.22585511193679056 home,:0.21927764274588066 life:0.158168786935321 :0.15102630607952378 +the:0.801368548254406 this:0.11767138050982076 a:0.02994917247628616 our:0.02866535920756394 :0.02234553955192329 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +members:0.4555825311719899 member:0.22110954665509186 rights:0.12984337967917045 cases:0.10540339869922018 :0.08806114379452767 +not:0.9298371099346171 hardly:0.040838613424415506 never:0.011881706422594703 do:0.009268424624423583 :0.008174145593949186 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.4485896440527666 it.:0.15085660468535972 him.:0.13913901180138927 give:0.13075284728999134 :0.130661892170493 +of:0.6707155363641587 that:0.306261002333619 ot:0.010094303727695162 ol:0.007020749775659105 :0.0059084077988680395 +court:0.431492686817822 same:0.28410797125006987 future:0.11253570904847286 man:0.08638094504412495 :0.08548268783951032 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4265500601304632 about:0.22602332794000202 at:0.18823513668177985 aged:0.09051636858886516 :0.06867510665888962 +above:0.5413192902511024 facts:0.2126236712502215 further:0.109252992988164 next:0.0694693140475861 :0.06733473146292612 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.5440061520615991 have:0.2224594953236838 pay:0.08592319403575285 take:0.0825452694486206 :0.06506588913034371 +the:0.8888578691300698 a:0.035400032598741776 tho:0.03479210055887068 his:0.0238736633643683 :0.017076334347949387 +the:0.7452216315807746 this:0.18216364738069524 tho:0.029270744249434197 our:0.021893153011430938 :0.021450823777665072 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.27935704426109065 that:0.23845597018017975 and:0.21480808432362386 which:0.1747831795212046 :0.09259572171390115 +it:0.3386163041651109 Co.,:0.16935301802611177 and:0.1666962738104987 Co.:0.1630598027774199 :0.16227460122085877 +horses:0.28100500647611787 who:0.2798254348909735 they:0.19188518993925124 which:0.13982033816498032 :0.10746403052867702 +about:0.5452942449533034 only:0.1421939025413962 nearly:0.12716765714345882 in:0.09485206148635687 :0.09049213387548471 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7639146167895515 this:0.13765447782341278 tho:0.034960891133173494 our:0.03315917268584718 :0.03031084156801495 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.504558759057298 this:0.24874549690796194 an:0.1575250349070068 they:0.053424597759016264 :0.03574611136871709 +it:0.5014979596287077 he:0.238332971802412 there:0.12393385393775638 It:0.09053231539009109 :0.045702899241032935 +;:0.24644573841081077 it,:0.22527880124231262 them,:0.20570230580753543 him,:0.18019298845726842 :0.1423801660820728 +north:0.21356441425188846 same:0.2076575944729774 only:0.20720368184686808 south:0.20167922950265135 :0.16989507992561467 +days.:0.40175734607160357 men.:0.2243532340234256 people.:0.1554824755360203 years.:0.14117652089828248 :0.07723042347066798 +the:0.6515240742832058 this:0.1341016232678009 such:0.09122313270219475 a:0.07916114089815965 :0.04399002884863885 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.30765680452725974 I:0.21190636109101024 they:0.18673954247840993 "I:0.14820068909756262 :0.14549660280575744 +able:0.4081416956615866 made:0.22572806479799212 unable:0.14330007169873005 compelled:0.1131605658418616 :0.10966960199982966 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.28218306737541077 to:0.23907725642475344 on:0.17013324058886484 for:0.15507896630579363 :0.15352746930517736 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.5724820533685476 done:0.13493670522284365 given:0.11859696023873191 taken:0.08936843723916216 :0.08461584393071463 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +south:0.2457968828404529 north:0.24404247147779493 west:0.21590956572120368 east:0.1925224506476388 :0.10172862931290977 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.37958538029943345 women:0.2046109511771398 as:0.18972835994456522 but:0.1302700415129641 :0.09580526706589743 +meetings:0.26304067574582984 schools:0.19609535498459982 men:0.1853523184646584 School:0.18251032294064548 :0.17300132786426653 +way:0.24623005583943056 work:0.20939280248618194 homes:0.20876620157447878 candidate:0.19309542393557433 :0.14251551616433447 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.2953436452185395 found:0.20477720760346002 but:0.19752370900401406 seen:0.1694502632380247 :0.13290517493596166 +the:0.7705951604639478 on:0.13322645438450975 to:0.03711130024918346 tho:0.03387093973878415 :0.025196145163574806 +one:0.34909311073949156 all:0.18004324113867423 sale:0.17415866967489554 those:0.15068587496883507 :0.14601910347810348 +to:0.849688058105153 a:0.04700189581002394 of:0.04370198437730953 for:0.03481885006300497 :0.024789211644508657 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4804537405194439 for:0.15498031876015395 made:0.13501508914336718 on:0.12635785516331022 :0.10319299641372491 +the:0.5728460994558352 a:0.19606858950333117 said:0.13922536346895095 such:0.05198658125823012 :0.03987336631365256 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.37963752471083995 which:0.277996593669485 that:0.19837650456215203 said:0.07692210289720748 :0.06706727416031558 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +took:0.2210456221438448 went:0.2081449297865593 came:0.20091876231190575 got:0.1884651025400452 :0.181425583217645 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.45403032740345467 if:0.18953733533818778 when:0.16657015543950082 as:0.11176096867417942 :0.07810121314467741 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +mortgage:0.6159643249070914 premises,:0.14229294087880345 county,:0.10855639657237956 Court,:0.06897493758278189 :0.06421140005894346 +that:0.30037228650391934 he:0.19479174005331729 who:0.18388758113577897 which:0.17583669858123008 :0.14511169372575428 +is:0.41681833527344425 so:0.1746319068528589 being:0.15738077023975916 as:0.1424776247917785 :0.10869136284215923 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +true:0.2585514489557934 effect:0.2274301997039515 way:0.22336773443748267 probable:0.17400603216328078 :0.1166445847394917 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.582529317119792 The:0.31425910067928964 he:0.03803606684324583 (the:0.033706505599697484 :0.03146900975797506 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.25372136017712854 for:0.19914088124056376 into:0.19727717888063995 from:0.17845097800696436 :0.1714096016947034 +above:0.2753984828752391 time:0.25208737667378567 of:0.200334354233471 following:0.1645277099062733 :0.1076520763112309 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.46534239078696227 the:0.4520878434778255 this:0.045012682842082145 tho:0.020579632278809757 :0.016977450614320322 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +British:0.4190427337783083 other:0.2722914035136622 various:0.17416866227526465 proper:0.07644210018269935 :0.0580551002500656 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.698180960510985 escape:0.10843975193248298 a:0.08739446213410183 avoid:0.05754015968015891 :0.048444665742271326 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.34495488144820075 pay:0.1722806064713843 take:0.16834105627599397 get:0.1575504848418362 :0.15687297096258482 +city:0.2887327338588287 time:0.21165156274539584 country,:0.17704750610965228 country:0.1627709249012841 :0.15979727238483898 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6876827369456627 a:0.17021141293155073 his:0.055872770085234835 their:0.048947831451836274 :0.037285248585715525 +the:0.8832078619531076 tho:0.03683051034291664 its:0.03501651194554273 best:0.027104570115817028 :0.017840545642616053 +a:0.6365701739088004 in:0.2153981723731276 the:0.05643747074408121 plain:0.04620845119866286 :0.04538573177532787 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6274299529594047 his:0.22453983277796272 a:0.0801254618995374 my:0.03429295208513243 :0.03361180027796255 +and:0.4053054840900167 however,:0.2660642323464136 but:0.18464713985922127 says:0.0934640395649372 :0.05051910413941115 +more:0.33080082024792656 two:0.2938346577774707 one:0.17735154636294403 three:0.12303141353752144 :0.07498156207413739 +shall:0.4592169022781242 may:0.18545150703573482 will:0.16484720286100701 to:0.13955804111668496 :0.05092634670844904 +persons:0.3331533880133629 were:0.20469077909840377 others:0.18110453457748704 members:0.1574866126916028 :0.1235646856191435 +know:0.30777271439161624 believe:0.2950578506344941 so:0.14959199005035662 think:0.12619838322756602 :0.12137906169596699 +and:0.2985744295776701 on:0.2773886707278918 in:0.144496990158846 to:0.14104541211711308 :0.13849449741847913 +mar-:0.5382769178228081 fee:0.24713792944161456 great:0.09189601235394917 j:0.06705889737664625 :0.05563024300498183 +one:0.5510126234787974 I:0.12098193017777129 all:0.11311963992143971 some:0.10826191326037578 :0.10662389316161569 +the:0.3164415744243237 any:0.30644167918144566 to:0.18512439954463403 a:0.1429518659034826 :0.04904048094611396 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +and:0.41271279202567446 man:0.300194341691748 men:0.22310211958599893 or:0.033137475588042115 :0.03085327110853647 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +do:0.2729916684675656 make:0.21512045825787968 pay:0.21098326230020453 be:0.1560823147028857 :0.1448222962714646 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +has:0.8679548881087062 had:0.06348348519632249 ever:0.026433005598466605 having:0.021441532516166574 :0.02068708858033805 +well:0.507440036807576 soon:0.22371580522050646 far:0.1680701560236044 much:0.06808586124717403 :0.03268814070113902 +interest:0.2722112469164827 that:0.228145945733768 those:0.19336680130206416 going:0.1712479906174482 :0.13502801543023704 +same:0.27905913715653313 present:0.2491606791809853 State:0.1605905937171786 beginning:0.15878575393041286 :0.15240383601488994 +.:0.30871969956385636 -:0.27519293242506393 i:0.20723921707423065 t:0.11324538894005644 :0.09560276199679249 +And:0.5472464194634173 and:0.25520425365834043 was:0.08128946059897939 is:0.07612416608861368 :0.04013570019064922 +the:0.640372682695965 one:0.15401294307552577 a:0.08281449756274657 at:0.08161373017023192 :0.041186146495530755 +around:0.4287886701986555 over:0.2556299322299888 of:0.1951964339524927 to:0.061703118075982166 :0.05868184554288087 +and:0.4272565843409294 with:0.2131636541583469 in:0.14294574636527424 for:0.11319158832459399 :0.10344242681085541 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.39476326964958663 been:0.35664755091737677 in:0.12167785459164707 all:0.06899769485434601 :0.057913629987043344 +excitement:0.38534137794928847 as:0.2272023289301677 divided:0.14689947521486058 talk:0.12282703658893838 :0.11772978131674487 +whole:0.36461012578389235 city:0.19246571656875172 other:0.18231696661891486 said:0.13551726883387874 :0.12508992219456236 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.4203348917929265 been:0.3371599399720088 in:0.10272864670502378 all:0.08265988272952915 :0.05711663880051194 +chairman:0.4634521920427476 relief:0.18060087581916784 absence:0.1804383856601417 organization:0.09657870044712595 :0.07892984603081711 +people:0.478692893574672 White:0.20667808541662977 I:0.13460782513151223 men:0.0967437476740218 :0.08327744820316431 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +do:0.32523199339545844 attended:0.1748722772238226 lived:0.17078201720792208 was:0.16866153696300265 :0.16045217520979432 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.40929901117562295 any:0.33094055566447284 many:0.17690789205337493 to:0.04341540328478165 :0.03943713782174769 +is:0.6014336665530096 was:0.2379605996701129 the:0.06289448669280333 Is:0.06192749097003924 :0.035783756114035066 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5364551962818305 this:0.2219260219752172 some:0.1021431656932798 any:0.07328125221886454 :0.0661943638308079 +of:0.5319822769097352 to:0.199276204450517 in:0.10769765358841075 time:0.08718533936491585 :0.07385852568642126 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.726150217432562 that:0.14486080994107253 whom:0.06405321007066778 what:0.035326945739483286 :0.029608816816214464 +which:0.420592995689699 said:0.20209082065553577 whom:0.13078224777454728 that:0.1259679340949773 :0.12056600178524056 +first:0.5937984811648837 same:0.20609513822006736 second:0.11900692247919324 latter:0.04810032724339446 :0.03299913089246122 +is:0.6527676449728447 was:0.20038670318488697 Is:0.07725397569669117 makes:0.03656003638833396 :0.0330316397572432 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +science:0.3681747853274246 advice:0.20571392725861842 and:0.16391248593910865 men:0.15670956340012995 :0.1054892380747183 +time:0.33737323863282304 use:0.2109083100396215 said:0.17561093752822596 fact:0.14936583813304144 :0.1267416756662879 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +own:0.3582065674983641 arrival:0.19222051757113942 property:0.18733784873330978 home:0.13883659598674333 :0.12339847021044358 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +.:0.6558118795683732 and:0.13535711382801774 o'clock:0.11368611068338254 that:0.04944222288445351 :0.045702673035772995 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +so:0.4200630589769105 too:0.23867259510030076 very:0.16767772786548646 done:0.1053677174900118 :0.06821890056729056 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +the:0.7181097414752903 a:0.21147969348870183 his:0.03069516512902305 tho:0.02847741935622037 :0.011237980550764567 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +of:0.7574115734200646 with:0.06781454392819057 in:0.06428789744712936 to:0.055565462077193484 :0.05492052312742196 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +excitement:0.30028727936865657 cause:0.19711225205445437 neglect:0.17922735777932042 use:0.16303997171561513 :0.16033313908195337 +not:0.6825565542347837 never:0.1899766499604643 ever:0.07164862640186741 been:0.034653666178344235 :0.02116450322454051 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +two:0.33823553739657225 three:0.2611567831056587 one:0.14324777041013148 five:0.13494353775867274 :0.12241637132896478 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +other:0.6736736111582763 of:0.12876999156972052 prominent:0.09179665880446437 new:0.06287889125132357 :0.04288084721621528 +he:0.3152231959740441 they:0.271601654339084 it:0.23659462435236883 you:0.10422300416785436 :0.07235752116664872 +work:0.28080346390357824 property:0.1992730759274149 former:0.1763020820745387 efforts:0.17304491830509328 :0.17057645978937494 +make:0.4485896440527666 it.:0.15085660468535972 him.:0.13913901180138927 give:0.13075284728999134 :0.130661892170493 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +of:0.6195970809526706 for:0.16588487315315256 at:0.08821927421047941 to:0.06447263134580236 :0.06182614033789492 +he:0.26979864822783145 they:0.26656798101970075 I:0.197207496893932 not:0.14813131270059293 :0.11829456115794294 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.8957525249534664 never:0.051533176893761176 ever:0.030855492372781238 always:0.012657097117374533 :0.009201708662616678 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +months.:0.4474615843962676 time.:0.19768254520429265 season.:0.145576149933446 day.:0.11476453146965288 :0.09451518899634086 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.2889273550528222 have:0.21661436896613256 ought:0.1956993604835726 were:0.15191221466628485 :0.14684670083118778 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4820261648190241 but:0.22794239338792233 when:0.12204081590014022 which:0.09766402611781913 :0.07032659977509412 +that:0.3761259173669832 what:0.3392756804917292 how:0.11849018471613487 whether:0.08526748023192646 :0.08084073719322622 +all:0.6596964158447367 two:0.2009064303114228 three:0.05383295294773474 many:0.0441659380366161 :0.0413982628594896 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +character.:0.24689800240259702 one.:0.24115833553465257 years.:0.1963645095443286 year.:0.1633849465062482 :0.15219420601217357 +of:0.45087843934297167 in:0.271193307572742 to:0.14687144864776755 for:0.0671550984398183 :0.06390170599670043 +effort:0.24516173296621102 examination:0.22103628496265174 attempt:0.21250828010047088 amendment:0.17619843483388237 :0.145095267136784 +of:0.42238277220379294 a:0.21481397833956195 upon:0.16091088334539436 the:0.12309449463563538 :0.07879787147561527 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.45403032740345467 if:0.18953733533818778 when:0.16657015543950082 as:0.11176096867417942 :0.07810121314467741 +filled:0.31234564386159724 covered:0.2516743708745592 charged:0.18594556894628492 connected:0.14289598474020648 :0.1071384315773521 +Y.:0.5337526619835266 said:0.13368833676651293 E.:0.11986110792529234 First:0.10865320343311465 :0.10404468989155338 +set:0.34856062803735105 broke:0.1959831411238083 run:0.16306944045442934 and:0.1501315036614988 :0.14225528672291254 +he:0.4553489205014141 It:0.20448699736583664 it:0.1555928527068844 and:0.09845784391404579 :0.08611338551181894 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.485418932398291 that:0.3035216138381866 which:0.1871595208536497 and:0.018488194069703836 :0.005411738840168779 +the:0.6924222056315575 a:0.14679915276267852 their:0.07251004085953819 all:0.04542847427499098 :0.04284012647123489 +the:0.8750275921658747 a:0.04856232232326105 tho:0.04381440004739287 tbe:0.018244450353194122 :0.01435123511027719 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.5112468399103794 have:0.16405778510810684 do:0.14325024057336155 be:0.10433474141958704 :0.07711039298856506 +the:0.9152473167056397 tho:0.03529795730549005 a:0.024008160623718137 tbe:0.015141666405817742 :0.010304898959334488 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.27010961747762513 order:0.2475910027909597 way:0.17153883778797893 subject:0.16907755390451737 :0.14168298803891902 +Minnesota,:0.4070410403448205 North:0.21253836255081202 State:0.14603069048884032 Missouri,:0.12588572825627617 :0.10850417835925102 +for:0.32351925575444085 in:0.21605874712940126 and:0.19587107567619835 on:0.14559479005098597 :0.11895613138897351 +all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.39482085444793247 has:0.2502066186107409 had:0.1652220169287892 then:0.14894722864687557 :0.04080328136566187 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +wife:0.3031415644002731 father:0.22531236176981714 name:0.17152506210591198 experience:0.16659565678838456 :0.1334253549356132 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.35803860782327174 that:0.26568052367424283 which:0.17046408827187517 fact,:0.13473415691354593 :0.07108262331706426 +was:0.3958206527531288 had:0.26334974031985836 is:0.16893307568309351 has:0.10415351622148272 :0.06774301502243672 +to:0.9520277795978354 that:0.020476873043408464 you:0.013026496127030766 may:0.007341894027910709 :0.007126957203814599 +the:0.8587425864197599 said:0.05695396206440162 tho:0.034274905532037284 Lord:0.025345871142768685 :0.024682674841032558 +who:0.4520358377751746 he:0.24240486397381483 she:0.13487669645692138 and:0.09223144143428526 :0.07845116035980396 +being:0.3470406715993403 in:0.24180202205647827 is:0.14566603994546679 occupied:0.13620701243762856 :0.129284253961086 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +r:0.2806832369696056 of:0.24263059993694505 in:0.16910911342488166 ,:0.15514484999427725 :0.1524321996742905 +the:0.3981810630717827 Co.,:0.2889552528276801 Co.:0.1792625547722586 The:0.07116993204300613 :0.062431197285272425 +Smith:0.33256996662480576 I:0.246803586730529 Jones:0.1462546004907416 Williams:0.13770036883220788 :0.13667147732171583 +been:0.7518330145800359 not:0.09466841887778182 become:0.080564791648018 done:0.04861707002168988 :0.02431670487247427 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.35564524369449324 too.:0.23230882225999303 it.:0.15977972282636532 well.:0.153238225016243 :0.09902798620290529 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.37222819900174764 in:0.27421066801457084 all:0.13434439594704725 on:0.11729145192866643 :0.10192528510796796 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +the:0.7455656637460639 a:0.08569104488130708 their:0.06242947277352743 his:0.05333195742429073 :0.0529818611748108 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.5617042972164987 he:0.1987692748279706 It:0.13978735360761269 there:0.05409749230640192 :0.04564158204151589 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.3664730790844177 and:0.3592765801349904 bands:0.14467001141396033 a:0.0818894141295858 :0.04769091523704574 +is:0.27644815737622425 of:0.24318934774265755 ;:0.20221621192568123 of,:0.1663414190858445 :0.11180486386959235 +sell:0.2789031811854642 one:0.21012209263887743 whether:0.17818014786755743 make:0.17529727722933416 :0.15749730107876678 +It.:0.3428171101974916 and:0.2169564720221012 J:0.16459251331678146 .:0.16180015466102315 :0.11383374980260265 +sary:0.955212320522624 series:0.024164239514811527 ity:0.00871100696218486 tary:0.008093375378766225 :0.0038190576216132186 +seem:0.24502219568648895 only:0.23220317799461734 likely:0.183776612839227 want:0.17868271241138023 :0.16031530106828637 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +no:0.36824246126878407 the:0.29050166028340185 competent:0.21292233915186526 exclusive:0.06463146331604082 :0.06370207597990804 +work,:0.23943472777838432 plate:0.2305138628862289 market,:0.18750782776034017 mines:0.18162816882973198 :0.1609154127453146 +had:0.5347927269364089 was:0.24916289891870216 has:0.17446314706115848 who:0.024281597086767828 :0.017299629996962662 +cent:0.5989856541839266 cent,:0.37090543311992163 cent.:0.020443130644733607 100:0.005849906130980401 :0.003815875920437906 +be:0.556461864467801 see:0.1518457902200171 get:0.10162802793511076 but:0.10119446240390602 :0.08886985497316521 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +country:0.2952774716483753 city:0.18507409930672825 he:0.18322361390234393 time:0.17717792119065728 :0.15924689395189526 +thrown:0.33157970498870765 sent:0.1964805262081572 built:0.169822091606465 just:0.1689228633551453 :0.13319481384152482 +me:0.36680272192266494 him:0.3559796763880143 them:0.16509322016297195 us:0.05635123835906617 :0.05577314316728255 +city:0.2981920396520641 country:0.20186257968601773 country,:0.18879666668555872 time:0.15604954213173194 :0.15509917184462757 +the:0.5472321751433417 last:0.22531238930363118 Saturday:0.10392226576978614 Tuesday:0.06347666792661226 :0.06005650185662866 +is:0.6527676449728447 was:0.20038670318488697 Is:0.07725397569669117 makes:0.03656003638833396 :0.0330316397572432 +and:0.2676161002052963 Beginning:0.24856295021041783 was:0.22062037757594777 sell:0.14495428933645166 :0.11824628267188642 +ever:0.5726808587851404 been:0.25674100535048294 long:0.10677906403858807 passed:0.038534508719672365 :0.025264563106116283 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.3666177582506453 there:0.31824133554309497 It:0.15312557390228565 that:0.08244539591218324 :0.0795699363917908 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.6093014581039848 as:0.1494121802645019 to:0.09477254613442891 far:0.07643464838144164 :0.07007916711564267 +chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 +the:0.44543390420564016 least:0.4040017133265802 any:0.09554811841888138 this:0.03190303634994992 :0.023113227698948455 +the:0.8637736673847938 a:0.055313148297630545 tho:0.05149841763954232 white:0.015105264652936152 :0.014309502025097166 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +who:0.7578537310856885 of:0.08498226451496835 not:0.05616984034894959 which:0.05270253053490299 :0.048291633515490415 +is:0.49685254284567976 are:0.17947282940752868 he:0.16317616492969098 was:0.10392047370543757 :0.056577989111662993 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 +the:0.5545219563510383 a:0.2608085663955532 point:0.08474025760717098 some:0.06466292125496267 :0.03526629839127479 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7018701109378969 with:0.0915064043186707 and:0.08784721317708007 in:0.06764214207431177 :0.051134129492040624 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.30308917581985007 to:0.18967251318853043 on:0.18303566026707388 for:0.1764512581833676 :0.14775139254117803 +the:0.22898052034003183 be-:0.2132340317128491 even:0.19993895007817186 cloth:0.19155907549046514 :0.16628742237848199 +delivered:0.3354406898567947 made:0.2189246692825608 secured:0.19193839780144198 conveyed:0.1355126490058617 :0.11818359405334086 +be:0.4648992926917519 put:0.18622300172743123 assist:0.1250201765404788 him:0.11290369569300782 :0.11095383334733018 +and:0.5191180823994119 who:0.1812418227159084 he:0.1470077661023793 was:0.08477768138449718 :0.06785464739780318 +wild:0.2836638078123165 other:0.271934942666732 whole:0.1908575661658511 poor:0.1395076357813436 :0.11403604757375696 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +growth:0.5826127024591821 progress:0.2270216318095637 development:0.0859030122690821 fire:0.05738675727286127 :0.04707589618931088 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.27437981739702966 is:0.24718521244142466 was:0.21157636111861267 are:0.15060916692978432 :0.11624944211314868 +in:0.3843213381139295 to:0.2011269743824673 if:0.19695707243608726 at:0.10977103752789007 :0.1078235775396258 +paid:0.2845950720510196 used:0.24753554475812814 made:0.19883568547282593 sold:0.13668151753311966 :0.13235218018490666 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.6294277383749111 had:0.17434043309963088 are:0.10707459023521004 were:0.07135375361832086 :0.017803484671927057 +in:0.4102798522084247 when:0.18754123242985876 with:0.14409479444791878 for:0.1337311216464804 :0.12435299926731726 +country:0.29869958899131366 own,:0.26739829050880415 country,:0.174173592897621 rights:0.1333910605242126 :0.12633746707804847 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.270026349919342 moment:0.22537094541027097 year:0.18242445341464647 man:0.1644813169747249 :0.15769693428101555 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +above:0.4545900780510038 most:0.1453840086883466 fact:0.13867015487205667 use:0.13597438807656143 :0.12538137031203148 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.4054066523853203 make:0.21149607211975627 have:0.14537474488647037 think:0.12483542648094598 :0.1128871041275072 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +very:0.4375809877669585 as:0.17553449370447172 be:0.1729418015578287 doing:0.1317398177856737 :0.08220289918506718 +it:0.3140669146222644 they:0.24102134242915607 there:0.16187409967810254 he:0.15288449132689638 :0.1301531519435807 +in:0.37477340032946577 of:0.2155194418599649 at:0.1426859344793809 made:0.13527271366039648 :0.13174850967079207 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +others.:0.4021272406355896 children.:0.17700551140968465 wife.:0.16179531225908292 night.:0.13250235032308277 :0.12656958537256005 +in:0.42795664280201123 and:0.23600328014294503 to:0.15596374002508107 Dr.:0.1087248138328694 :0.07135152319709326 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.3057180835547831 had:0.22579291778241817 has:0.1881738275394963 is:0.16499856242387143 :0.11531660869943099 +to:0.2621218234660518 by:0.2578751540963282 at:0.2431768911377731 as:0.1276864326924444 :0.10913969860740248 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.7748166515090325 quietly:0.05908885887944141 there:0.058702448341955635 and:0.05645830023313672 :0.0509337410364339 +which:0.35667337150541994 and:0.34667558976156027 it:0.13676633469808624 they:0.08157589203192549 :0.0783088120030081 +the:0.8400266993969697 a:0.08048189261002 tho:0.03555461489348161 tbe:0.026521050944004476 :0.0174157421555242 +have:0.5819000664942725 had:0.18148977463174465 are:0.1339998132961211 were:0.05581685673175308 :0.04679348884610855 +the:0.9153107354662962 tho:0.05416576106607201 tbe:0.01412943681629669 these:0.008807903450212373 :0.007586163201122642 +the:0.4575722357252958 any:0.26913327289819683 each:0.107098952684728 some:0.09918151716919647 :0.06701402152258291 +to:0.4416829750228396 is:0.15720220657240058 in:0.15670480212611881 such:0.13894831067883417 :0.10546170559980682 +much:0.48299941763352844 as:0.29222338377173934 far:0.08772676274403203 anxious:0.0752430284646978 :0.061807407386002294 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +per:0.9996063781255526 ner:0.00017907249210309177 par:0.00015503361816318078 r:4.368729214509646e-05 :1.5828472036020296e-05 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.559677682823192 a:0.31184132007749804 this:0.05345695838945176 his:0.049472580969393595 :0.025551457740464703 +failed:0.23285022364306351 come:0.22033299427397599 been:0.19791801323131356 gone:0.1950553578571899 :0.15384341099445706 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8935866514513673 tho:0.037101999248957636 a:0.03261111666109756 our:0.01910224554151987 :0.017597987097057767 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.8661815098293344 In:0.10095615189182089 iu:0.014375168080787983 the:0.009502561914294362 :0.008984608283762487 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +off:0.3790738558587232 down:0.2652563548267291 out:0.15076152874166415 up:0.14224961733013938 :0.06265864324274413 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.4686450076788888 any:0.20301401793078483 the:0.1383093448866322 this:0.10125017813505399 :0.0887814513686403 +The:0.44484383933691407 A:0.37587902512025584 This:0.0736457859690969 and:0.053325157326987095 :0.052306192246746076 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +last:0.2763691542281986 next:0.2630495968597209 past:0.1618877246196155 present:0.1549060127834819 :0.14378751150898317 +to:0.7639470751686241 they:0.08068047814804465 we:0.05647562477461819 will:0.055402535194323664 :0.043494286714389395 +Grant:0.30507602432257375 Assembly:0.26346570695682364 Government,:0.1517723812003048 and:0.14539703282671837 :0.13428885469357937 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.36094908996155206 as:0.18885261402671524 in:0.17379791303925146 that:0.14635991918605196 :0.13004046378642928 +held:0.32140227588307535 due:0.220234141710712 living:0.16102259477154385 valued:0.15148220517766214 :0.14585878245700673 +the:0.5405981005817545 a:0.3079302953899575 that:0.058919979769809436 some:0.0510839304178359 :0.0414676938406427 +and:0.6374231697108375 which:0.18578755762543658 that:0.06374715770315482 it,:0.056611725999805226 :0.05643038896076588 +going:0.25764174126496203 unable:0.2096599122249072 not:0.20500623635875526 able:0.1814447163183151 :0.14624739383306046 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.2559473403509949 of:0.2512702893412836 on:0.2120894905224498 and:0.14579664634834477 :0.13489623343692694 +the:0.889405212679876 tho:0.052899907805418304 no:0.021709091557138845 of:0.01881908934628897 :0.017166698611277623 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4672007927200996 in:0.2298629600266384 on:0.19469611005351287 from:0.05837074041324298 :0.04986939678650605 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +at:0.5821371269992518 after:0.12506547305238674 and:0.1250457104266441 of:0.08585774644347013 :0.08189394307824711 +which:0.41265982653079725 that:0.3486942025106557 fact,:0.09400299749629465 regard:0.07346649985519113 :0.07117647360706121 +was:0.4723005537965713 had:0.2551283613799193 has:0.18465234598717833 is:0.05465449280231851 :0.03326424603401252 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5247196609249463 some:0.19928290191615905 a:0.09926852859661496 this:0.09783567712872245 :0.07889323143355711 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +No:0.4131066368742214 Every:0.1667686361399911 In:0.15850894242732325 The:0.13999122079665638 :0.12162456376180777 +result:0.24281601955784213 number:0.22925850381580123 people:0.1822410601220826 amount:0.1818487372336084 :0.16383567927066556 +the:0.29517218801899087 clean:0.2896699283458971 to:0.20151722235180902 a:0.13803355880356474 :0.07560710247973831 +ent:0.5060168320631468 ence:0.40625642875733753 sure:0.08411626819215295 dent:0.0021833572984720786 :0.0014271136888904098 +that:0.31217221812033263 in:0.2674446517771789 with:0.14761935616281102 at:0.14393860209577636 :0.12882517184390124 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.3820577129723396 all:0.22823953119089305 keep:0.15232274081674965 do:0.1304749015850331 :0.1069051134349847 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +wife,:0.3071743010797933 wife:0.21948525155680979 eyes:0.21592388581566455 w:0.12986360352855086 :0.12755295801918157 +petition:0.3083715339522237 Court:0.1940690656306238 mortgage:0.1766845818736309 bonds:0.16503887811988047 :0.1558359404236411 +people.:0.40639538588785507 government.:0.1988310361558101 nation.:0.16183627367384126 court.:0.15715106609615492 :0.0757862381863385 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.7580340816374657 no:0.1212323328175603 I:0.05157468760018024 a:0.04472755780836709 :0.024431340136426692 +and:0.38292488232386807 progress:0.24035104776681274 growth:0.13713932658129144 ad-:0.12989988320699603 :0.1096848601210318 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.364502908913083 in:0.3142753115516344 of:0.17656030024010128 were:0.095388374310979 :0.04927310498420217 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +article:0.3046446982133015 of:0.21104538476644683 person:0.18463095949815742 individual:0.15742218651948156 :0.14225677100261291 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.6480489921182242 were:0.28427420920692203 have:0.028576700751564897 aro:0.021216502168686355 :0.01788359575460243 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +whose:0.42564837274495976 of:0.1874673956641087 or:0.16258670993582577 born:0.13595361529290811 :0.08834390636219767 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +found:0.35395029415339313 held:0.2108404604010562 done:0.161982169258132 made:0.14253129023372504 :0.13069578595369366 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.4836685624837115 we:0.1756800865932494 would:0.11437084968245158 a:0.11326982641667611 :0.11301067482391144 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2990546537656396 took:0.2590012364917981 this:0.18003967898619636 that:0.1585784233028256 :0.10332600745354015 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.2562881792351598 was:0.2010100159432778 has:0.20029776785050535 had:0.19640803514693803 :0.14599600182411904 +them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city,:0.2956365855045642 country:0.2521112723997798 act,:0.1603579638384442 country,:0.1573023981720645 :0.1345917800851474 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.5917155483501341 very:0.13421973934009188 so:0.12408965069566584 up:0.0765273921585024 :0.07344766945560587 +a:0.3833963522849818 very:0.25263139297704035 in:0.17385934781033627 made:0.1084902697849597 :0.08162263714268189 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4117133052213363 account:0.36966734816878066 a:0.1190172704538574 receipt:0.05702836482832566 :0.042573711327699895 +him:0.34754719465016237 us:0.22535289780377823 in:0.1788711470294533 out:0.1308926443949285 :0.1173361161216776 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +same:0.6127182710121508 long:0.10376742499231306 well:0.09710558662472232 manner:0.09324468605195613 :0.09316403131885768 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.4019535179335506 being:0.2571079094130324 now:0.15836180906159614 fully:0.09291624790992073 :0.08966051568190021 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +cost:0.2538877326557141 price:0.23732863644593677 rate:0.21601066282914905 grade:0.15728864770482978 :0.1354843203643702 +in:0.2983973386458897 by:0.26864093189140664 to:0.1631426646118998 for:0.15251281459507246 :0.11730625025573134 +it:0.5695355169337397 there:0.24110556637791752 It:0.12975586361515462 he:0.04578797872512379 :0.013815074348064223 +be:0.9795770934157867 bo:0.01299878846252576 lie:0.004591558943821288 he:0.0015624863627593918 :0.0012700728151067637 +by:0.6398764016050127 in:0.2327502776540724 at:0.05040977336611499 and:0.04420869798981539 :0.032754849384984554 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +act.:0.4459901972037903 city.:0.17790336238180376 county.:0.17036745762839828 year.:0.10944870862402464 :0.09629027416198302 +of:0.5341835956718277 in:0.2064619848859992 from:0.12018633857533807 that:0.08780888325727418 :0.051359197609560786 +been:0.3963970690409361 found:0.20597352244335948 be:0.14473129955993355 lived:0.13487266736354425 :0.11802544159222667 +and:0.37747180769999383 but:0.3681995742492192 because:0.08659500329353524 if:0.08419797000498436 :0.08353564475226752 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.5137610804078688 if:0.12815295905531096 in:0.12404466203277162 for:0.11809378012585002 :0.11594751837819853 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.3662815694491016 them.:0.2702678572677226 life.:0.1327456732258152 all.:0.12171464033652588 :0.10899025972083479 +of:0.6097511720093173 in:0.12023925624686699 with:0.09726242563564554 for:0.0918264736503429 :0.08092067245782734 +way:0.38816385572712114 country:0.3041903073486512 fall:0.19177477182728178 city:0.06732779416632187 :0.04854327093062403 +In:0.4303693786518941 If:0.15225187983169977 But:0.14848399765927756 At:0.14255522138907192 :0.12633952246805658 +gone:0.3049459909206788 come:0.20706971809486294 fallen:0.19768212319634948 taken:0.16869163299817727 :0.1216105347899316 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +mo-:0.8350679339388927 j:0.047586038034529037 improve:0.04425239453232089 com-:0.04323501233087517 :0.02985862116338238 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.4175687175558853 prevent:0.15787909232385175 take:0.15668073676823627 be:0.15354672528599272 :0.11432472806603393 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.40365092413352616 in:0.23014924725642724 as:0.1432942918286305 that:0.12466635325470933 :0.0982391835267067 +to:0.41754511693643404 in:0.24321046927799947 be:0.12056149707499503 for:0.11139392675218653 :0.10728898995838493 +that:0.42025924594095915 house:0.19758066012063144 and:0.14289931164943315 shall:0.1427854095756069 :0.09647537271336934 +of:0.6686301770510173 for:0.18062994121966525 in:0.06173604588779674 to:0.052820213830502026 :0.03618362201101866 +made:0.3962248791403346 given:0.16330583264340004 followed:0.15945010195568401 taken:0.1560638116651507 :0.1249553745954307 +not:0.6825565542347837 never:0.1899766499604643 ever:0.07164862640186741 been:0.034653666178344235 :0.02116450322454051 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9113340224741332 tho:0.039810375678301216 South:0.019835198955242512 tbe:0.015914673584769844 :0.013105729307553344 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.311325764910945 a:0.2637816433976308 no:0.22167974007557165 that:0.1097660246369965 :0.09344682697885603 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +if:0.26111588288465004 but:0.22647851828600152 and:0.20107525959802247 that:0.16847542058749843 :0.14285491864382754 +amount:0.299864503817939 country:0.18732705574621494 person:0.18392956246067046 people:0.17840187147175235 :0.15047700650342322 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +why:0.3842793978887719 if:0.20093184093617383 which:0.16227996324442293 that:0.13644530122980408 :0.1160634967008274 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4584622522750161 where:0.16925261172910488 that:0.14754560579270173 as:0.12045005223009458 :0.10428947797308258 +went:0.3065721060342992 laid:0.23572720788294335 sat:0.19143525642054127 put:0.16138550541793037 :0.10487992424428601 +past:0.4093537187164796 last:0.21871982152378075 least:0.14710556148315726 next:0.12140270603841553 :0.10341819223816691 +it:0.4923748209656926 I:0.1892132657855973 as:0.13422529651117512 what:0.11079986336745802 :0.07338675337007708 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.25372136017712854 for:0.19914088124056376 into:0.19727717888063995 from:0.17845097800696436 :0.1714096016947034 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.5398811844309893 a:0.25597211999057 the:0.09383696643625064 available:0.07401439076985117 :0.036295338372338816 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6664554001502005 a:0.12161244243939501 be:0.10088787301079509 provide:0.0695060599583485 :0.04153822444126089 +own:0.44727030504977194 way:0.17170948815929934 children:0.13839426565802185 feet:0.12455340065024584 :0.11807254048266112 +was:0.33375375299054943 at:0.3245090409789233 had:0.14085690297086628 is:0.13894295002411122 :0.06193735303554977 +find:0.24052805749408546 be:0.212947685883528 show:0.20525460156250697 say:0.1968911662329019 :0.14437848882697768 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.441799696210131 be:0.26799983253948023 is:0.12308401076591433 they:0.0987325364607103 :0.06838392402376416 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.582754367410261 came:0.11529069132759409 with-:0.10970205723729387 point:0.10486470607122945 :0.08738817795362161 +healthy:0.37180669108203845 clean:0.23901921894702544 distinguished:0.13979741887393277 hurt:0.1269035719829534 :0.12247309911404995 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.4606436235012088 and:0.2524501394814909 I:0.11615640852660426 he:0.0896765705172927 :0.08107325797340331 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +covered:0.2822824150647194 parallel:0.2498464022803805 it:0.20703737238311423 filled:0.15737732285658504 :0.10345648741520089 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7478073098895953 a:0.0938886496491294 his:0.05731917579095034 their:0.05264004256955105 :0.04834482210077372 +of:0.6911680682605003 in:0.13426167098956873 with:0.07606011523128936 upon:0.051718539646080336 :0.04679160587256132 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8770149159524813 be:0.04485781646701 rise:0.03727010295126631 tho:0.021827141769846035 :0.019030022859396197 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +mortgage:0.33046250081340933 order:0.19487989751732326 bonds:0.18898740444644924 proposed:0.1530131467973063 :0.13265705042551187 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.37125176835157575 in:0.363133141896616 to:0.09767439406048414 In:0.08817917590511037 :0.07976151978621378 +and:0.7649653633982524 person:0.1679832841521321 one:0.0274641586079492 man:0.022557107933303688 :0.017030085908362552 +I:0.2868471167738556 others.:0.24165920376429467 children.:0.20116071568634283 friends.:0.13995359294725532 :0.13037937082825138 +not:0.7426981751192305 you:0.1310502895666498 to:0.057189635946459934 we:0.0439548430094555 :0.025107056358204233 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.2759084092531791 in:0.21742147763871728 to:0.18070988329961274 with:0.17728879052660634 :0.14867143928188456 +in:0.4027082226637818 for:0.29754812999167113 the:0.1230095769789454 a:0.10361404695727969 :0.073120023408322 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.5996135731574738 but:0.19403904801232713 put:0.10175838234500968 and,:0.06371124391802817 :0.04087775256716124 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.46585168067352223 there:0.2755428430070541 It:0.10304821354962643 he:0.08568412880616033 :0.06987313396363697 +men:0.5426991090383475 years,:0.1494561738731485 persons:0.14248862556204672 or:0.08664998420157898 :0.07870610732487833 +they:0.2623066152966255 companies:0.22549813385667655 you:0.1967307774290484 that:0.16956641607968612 :0.1458980573379634 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.44466806999953157 as:0.2257306537905554 but:0.12359532416527079 for:0.10659175875700201 :0.09941419328764035 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +life,:0.2578638297531708 friends,:0.2544890995457904 opinion,:0.19192355180163492 case,:0.16418542600543362 :0.13153809289397028 +same:0.27905913715653313 present:0.2491606791809853 State:0.1605905937171786 beginning:0.15878575393041286 :0.15240383601488994 +the:0.8241451600584617 certain:0.07327205291799727 this:0.03689455410573774 an:0.03390185920017166 :0.03178637371763157 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.36084316224467267 from:0.23966416347302416 by:0.16343487398905543 to:0.15913572712349763 :0.07692207316975004 +of:0.7417009233208781 and:0.11509541582936528 to:0.09719870937668129 in:0.02409367313467102 :0.021911278338404356 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +an:0.8303089410887526 the:0.07529474573320417 such:0.03719256325552288 our:0.03421247832695044 :0.022991271595569837 +case:0.4220707096813521 sale:0.19258566465695956 cases:0.16839151120832888 action:0.11237222732383535 :0.10457988712952412 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8454549600003647 which:0.0623263484561519 tho:0.05390001780218097 that:0.019340868095394724 :0.018977805645907814 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +favor:0.3253050873055507 men:0.24932360443685134 character:0.16402062116290522 services:0.13510512225979382 :0.12624556483489885 +the:0.6534919704353981 our:0.19278455951326154 his:0.07577312413111183 American:0.04337971552319509 :0.03457063039703348 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.2947508101893897 one:0.28313296229066803 subject:0.14252364300345918 heard:0.14094739924213878 :0.13864518527434438 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.26932165004678615 the:0.2627018414169592 re-:0.1730366747693907 paid:0.15631777335574523 :0.13862206041111877 +the:0.7905727881616114 this:0.10514375611344694 a:0.05858206029348952 our:0.02680117361183817 :0.018900221819614118 +and:0.2723038813743809 talking:0.2440745917680026 to:0.16501709589118618 were:0.16109062456525536 :0.15751380640117485 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.30553218038997 is:0.30034868306067586 was:0.2523396722211764 can:0.0768292818397896 :0.06495018248838813 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.3183585521632746 placed:0.2684785282416849 was:0.1387175799299411 put:0.13766564927366015 :0.13677969039143925 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +old:0.24620248913041173 entire:0.24353998592124154 excellent:0.23278164686375302 inter-:0.15100897067288352 :0.12646690741171018 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man,:0.40225705307076687 life,:0.3341379717945532 year,:0.09571778356878162 day,:0.09360980145462772 :0.07427739011127057 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.3090377273036534 as:0.2616278366556328 and:0.1747638776665638 to:0.1553832749353319 :0.09918728343881818 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.33756598077496197 had:0.2755427316393991 be-:0.13832256909667537 never:0.13231114829476395 :0.11625757019419969 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +believed:0.2640500489021859 so:0.20969041137632236 probable:0.1908103524339782 stated:0.17261078774836847 :0.16283839953914506 +pine:0.893418176060683 tree:0.04093774704432757 a:0.028394543900099913 per:0.02203006514575787 :0.015219467849131627 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one.:0.3256233295493647 success.:0.2760057220271746 and:0.1486897798489755 future.:0.1456007669382505 :0.10408040163623476 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +members:0.28697623092247804 line:0.22049608048208588 system:0.19626309695502045 method:0.16433291694990163 :0.13193167469051406 +far:0.7917059143775466 long:0.08328510032727152 much:0.051923120032108666 soon:0.047069508313199435 :0.026016356949873858 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made.:0.3016564439854199 done.:0.23123351476058807 filled:0.19026229744243905 over.:0.1480116574835861 :0.12883608632796684 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +stead:0.3499558843141415 crease:0.2109536211787879 formation:0.1840103142695977 terest:0.17410044798015223 :0.08097973225732076 +an:0.21842422579013188 .:0.21243994904446012 of:0.20302357228729295 The:0.19576680851832584 :0.170345444359789 +had:0.4246431223576737 was:0.2478388483261943 is:0.1525678574686957 has:0.1397887772371078 :0.035161394610328564 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ones:0.2684163007807452 girl:0.21865213937344605 children:0.19857581347325406 boy:0.1580840882111871 :0.1562716581613676 +be:0.5993906699318816 have:0.15627836010031787 at:0.08552512261516615 not:0.08085891243126725 :0.07794693492136717 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +seem:0.24502219568648895 only:0.23220317799461734 likely:0.183776612839227 want:0.17868271241138023 :0.16031530106828637 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.46573734113353904 when:0.2274618337310425 if:0.15408611048499765 which:0.07707919313603727 :0.07563552151438345 +the:0.8281641902200751 a:0.0706146392099596 his:0.03955410749175013 tho:0.03192448780316365 :0.02974257527505159 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6920133790157615 this:0.25240447787638437 tho:0.024536527351351586 its:0.017971474621709355 :0.013074141134793124 +in:0.30067004547707854 of:0.2797229939089808 and:0.14283849302853546 with:0.1396320123990093 :0.13713645518639564 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.3239336768907986 in:0.271632505905327 on:0.17522683402678918 at:0.14237103535583764 :0.08683594782124772 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.5472762191229471 as:0.15549093560523922 before:0.11486190621780583 and:0.10528725511853931 :0.07708368393546859 +the:0.3618681750268487 a:0.3191042905602629 th.:0.12591868751521262 in-:0.10442365937155872 :0.08868518752611715 +the:0.272542629233529 which:0.2426317292726945 that:0.22568101955903805 whom:0.14193277316888264 :0.11721184876585579 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 +goes:0.2878861792402771 came:0.28125149711342734 went:0.17373056851461818 fell:0.13494745600409563 :0.12218429912758172 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.32944557278696424 be:0.305858593374014 takes:0.17212855006544195 see:0.0989182811545285 :0.09364900261905117 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him.:0.22896263651999407 it.:0.2098642470797942 wit::0.1978160427803805 them.:0.18796448457355 :0.17539258904628127 +in:0.5660213721072663 of:0.14323756219908554 with:0.14216051882145248 In:0.11808980351799375 :0.030490743354201877 +was:0.24783815348699978 and:0.24348987197631253 of:0.2358870220041499 to:0.14679712473476858 :0.12598782779776924 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.7581955933131262 not:0.09015052936049696 the:0.06868944300207411 at:0.04207770696762723 :0.04088672735667554 +very:0.4062911489285835 way:0.2533056305391094 more:0.13096030035912304 head:0.11264711636945819 :0.09679580380372588 +not:0.9904999206070412 uot:0.006199332237626187 not,:0.0014511860682949991 net:0.0012924914795342391 :0.0005570696075032222 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.819994949951605 be:0.13066155997043843 have:0.032195806565155596 probably:0.008603126804018292 :0.008544556708782753 +in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +well:0.35208966528424074 known:0.25061997726232177 just:0.13655261849561445 regarded:0.13191230777931956 :0.1288254311785033 +three:0.24815570671529277 my:0.2090222022835172 four:0.18606214446055738 ten:0.18012507058756597 :0.17663487595306665 +only:0.4802428778748002 first:0.19849115841299067 least:0.18205053178956698 last:0.07596790646082333 :0.06324752546181889 +they:0.39884548158078126 you:0.23693267443365532 we:0.22205682986947053 I:0.10625063317073985 :0.03591438094535301 +tered:0.49798681608577944 acted:0.18458786906374777 tire:0.16281576486910437 closed:0.09495699492168987 :0.05965255505967867 +only:0.2582293950335973 present:0.22149595059388608 form:0.18359774550888694 great:0.17016430076227299 :0.1665126081013567 +to:0.6068694779162276 will:0.24214939591742698 should:0.09744238167504321 may:0.030470859834863587 :0.023067884656438577 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.47772615074717595 to:0.21830834934225735 was:0.17680652032728203 of:0.07079057988707993 :0.056368399696204545 +county.:0.36532651146077916 says::0.20638325585961947 river.:0.16722805386309889 ::0.14379816169825202 :0.11726401711825053 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +mortgage:0.520620941807409 land:0.13304531605593475 premises:0.12853812199115341 property:0.12423255846919874 :0.09356306167630404 +by:0.4221510240186959 in:0.18474541430149236 on:0.16670087024151567 that:0.13380139016336906 :0.09260130127492687 +the:0.6934582794881142 this:0.12643112695564446 last:0.07568123503029364 a:0.07223691226845877 :0.03219244625748902 +way:0.2912281259206911 right:0.22110020146674944 wife:0.1854758735001724 return:0.15819311668545358 :0.1440026824269334 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city.:0.2985122023262604 success.:0.23574705841062918 work.:0.19379511684330353 power.:0.14239578109646348 :0.12954984132334335 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.7201130250293295 Bryan:0.0952034538654455 Cleveland:0.06798732998641138 Smith:0.06241960227289813 :0.054276588845915644 +we:0.30404969092966094 they:0.2618572844154868 it:0.16493496410702396 I:0.13517023700889083 :0.13398782353893754 +which:0.49048924918697956 this:0.2050933689040185 it:0.1260203279811977 order:0.0894676930985123 :0.08892936082929193 +the:0.7647813726963952 said:0.08307792456590302 an:0.059507300094091206 his:0.05721049421105243 :0.03542290843255811 +right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 +the:0.45087123309828075 this:0.31960039860491635 his:0.1048451717319772 its:0.07918676623976023 :0.04549643032506559 +other:0.4169636477293577 special:0.20980349252109862 one:0.12540536548196196 such:0.12466866218090836 :0.1231588320866735 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8612956992537737 in:0.06906619689220249 to:0.02950126969306074 ot:0.020203750935028936 :0.01993308322593417 +him:0.4095961870474925 up:0.29485069869979835 them:0.1731910193575921 and:0.06465287862554284 :0.057709216269574294 +in:0.2968607504626671 by:0.20230993539351416 to:0.20048897038510352 of:0.1740776630572085 :0.12626268070150673 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +view:0.29456648037171346 condition:0.22462149342853868 piece:0.1621987477030642 day:0.16199595142928824 :0.15661732706739537 +the:0.7344882988296282 said:0.1092499316721914 this:0.09825011250589744 tho:0.03031372327540726 :0.027697933716875373 +of:0.293523038787294 in:0.20024125253836342 In:0.1736558860384149 on:0.17336408354056174 :0.1592157390953658 +to:0.28517113423752 will:0.23036604628549337 not:0.21216520349172616 that:0.19780753634498757 :0.07449007964027306 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.3960088614603387 upon:0.37379814861360644 on:0.0891103734515252 the:0.07733079132519671 :0.06375182514933293 +to:0.418217519595689 for:0.24153439669442997 gave:0.15064046673618248 on:0.10120247507298431 :0.08840514190071419 +and:0.29311376746259304 up:0.23658278098968535 now:0.1741568981625535 them:0.16202885763310498 :0.1341176957520633 +road:0.25059187883239487 line:0.24865904201957856 track:0.18158243682530378 and:0.1770158652600781 :0.1421507770626447 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +own:0.24600201352236187 use,:0.215455332045114 way:0.19346508712731056 head:0.17254055947027774 :0.1725370078349358 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.6991479585033096 very:0.1762939818186409 the:0.05722132191729042 no:0.04117228874114748 :0.026164449019611576 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4520297413211172 and:0.2986686877800756 or:0.09899178114712882 in:0.09416526501427706 :0.05614452473740127 +be:0.5159218371281022 elect:0.18753264663728425 the:0.1335294916465012 send:0.09090539490905385 :0.07211062967905851 +they:0.3272847239949864 it:0.2662606960821848 he:0.17014418644814472 you:0.14079497404777655 :0.09551541942690757 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +first:0.34532701031884644 said:0.267032852751123 same:0.14000919411367369 best:0.12911946539305072 :0.11851147742330631 +hour:0.28790869813115627 act:0.212748389574435 account:0.19028024213079217 amount:0.16334313226288413 :0.14571953790073258 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +based:0.35116904682685496 was:0.19796074032327582 is:0.16519202425109047 and:0.14725106774261476 :0.13842712085616388 +the:0.29802063017135816 about:0.22709890902391328 lots:0.21002628562417297 Section:0.1374442691377122 :0.12740990604284322 +of:0.8850001223672859 business:0.05139775272021401 are:0.027023288634082997 and:0.018873649729535726 :0.017705186548881334 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +far:0.5881495083588533 much:0.16943929992548518 well:0.10596868716913298 long:0.10265131826634176 :0.03379118628018675 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7344882988296282 said:0.1092499316721914 this:0.09825011250589744 tho:0.03031372327540726 :0.027697933716875373 +interested:0.5208877375874227 those:0.21106894681363328 when:0.10632821430812206 as:0.09841280788557753 :0.06330229340524451 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.569364483877002 was:0.17874646007525502 are:0.13127685720556198 Is:0.06821883032997914 :0.05239336851220174 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8278799835932141 doubt:0.05246288830796524 their:0.04229482114354265 our:0.039421791290691115 :0.03794051566458683 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +formerly:0.42507819080526027 are:0.21745395479836116 is:0.1341894510119791 now:0.1167988455563826 :0.10647955782801698 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.299297881007759 them.:0.2683812736918355 him.:0.21271911512701253 years.:0.11435755894151686 :0.10524417123187593 +about:0.2560466222843642 for:0.2530090821564583 the:0.2427996274351532 at:0.12806535609043576 :0.12007931203358861 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.6335432486675228 city:0.10627257168709353 City:0.09038786812352409 city,:0.08946363996297356 :0.08033267155888611 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6886604575504797 that:0.16858566725943572 a:0.059260695991518224 further:0.04780866453930718 :0.03568451465925908 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sup-:0.5801501859467315 ap-:0.20187471913319519 re-:0.12571282828353894 re¬:0.0490433891918953 :0.043218877444639 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.28880101519177526 in:0.28513806659093727 to:0.15997300460571334 for:0.14255151721754103 :0.12353639639403304 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +best:0.44063839635614255 greatest:0.20783825123346517 lowest:0.14832925650749249 highest:0.12222104537534946 :0.08097305052755038 +feet:0.2685932782017531 days:0.26783015163043544 years:0.22090239302735817 minutes:0.12952691062074725 :0.11314726651970596 +ranks:0.4428872937919288 as:0.210498981409816 and:0.17008736244685987 in:0.0984961454320988 :0.07803021691929647 +it:0.26399453284816915 him:0.2590697036979949 that:0.22228382890245563 when:0.15297698678473412 :0.10167494776664615 +they:0.3028704637714659 he:0.24085883565663685 we:0.2261714414596094 it:0.13426798727512723 :0.09583127183716063 +all.:0.37636055487532627 out.:0.1917278446564835 up.:0.17769866511058896 off.:0.16091759016414778 :0.09329534519345363 +are:0.2640904091294035 were:0.2501795866742653 gentlemen:0.22074092904526368 very:0.14239579600063257 :0.12259327915043501 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8836238159026605 N.:0.06227315714115383 tho:0.023604358670177232 a:0.017726931009414228 :0.012771737276594248 +he:0.23906339788120756 it:0.23016357009713445 is:0.21771558889552345 they:0.17314196876747914 :0.13991547435865542 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.28239149706497607 placed:0.2737099410813851 carried:0.17029127090658125 put:0.16493740024948628 :0.10866989069757123 +a:0.5402902834506215 the:0.18453398527328202 w:0.17696830597327984 been:0.0682877055845124 :0.029919719718304396 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7393684661283849 his:0.10473275611647506 a:0.06704385952106735 this:0.04589678295613472 :0.04295813527793794 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +if:0.34493133071143595 If:0.2436060770760108 that:0.19250972834511013 though:0.1430231660595764 :0.07592969780786664 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +follows,:0.3139439103282803 well:0.22106136706173157 it:0.16672491199188066 much:0.1559682933135404 :0.14230151730456717 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +men:0.2511105579263658 will:0.2470700021944791 figures:0.22438474553292503 people:0.147913637310378 :0.12952105703585215 +purpose:0.20719197122450905 State:0.20592744932833862 day:0.19613414923494918 people:0.19556251276437905 :0.19518391744782418 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8131648040490205 a:0.07056015296504316 tho:0.05408466379922716 time:0.0372084590327077 :0.024981920154001417 +was:0.42964260780644115 were:0.31240456488953733 are:0.12856476708199907 is:0.09946527954026067 :0.029922780681761758 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.33489113616423966 them.:0.2761448758626678 him.:0.24379148746471532 home.:0.07377527018951713 :0.0713972303188601 +to:0.3502416787094014 of:0.19581684596027343 and:0.17372992793807693 ar-:0.14079229262145443 :0.1394192547707937 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5762977183559291 these:0.20220528834524354 those:0.11728531743374151 two:0.06160286009447152 :0.04260881577061438 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +shall:0.6024370592522315 would:0.13351352455222978 will:0.11600942493419007 to:0.08263161379885409 :0.06540837746249457 +as:0.8197916561776349 too:0.0639277517758595 a:0.05088784207344365 be:0.04198641341111181 :0.02340633656195022 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.889227793623049 this:0.030189852571776865 tho:0.03010632637991652 White:0.02980231512683501 :0.02067371229842247 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +days.:0.5799403440114981 hours.:0.1561308640273268 years.:0.11859400596575054 days:0.07834116266427446 :0.06699362333115005 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4735783450489836 where:0.2910713905747509 that:0.18066887003184703 which:0.029979651419577116 :0.024701742924841463 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.4088813728266846 had:0.27244597470301196 has:0.2090645511479232 is:0.0890955181100513 :0.02051258321232899 +of:0.857759949186879 to:0.0574521336428488 in:0.04285305045913058 that:0.02624472706622813 :0.015690139644913483 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.2788042534688078 country:0.19545941946755727 world:0.1930913123452917 city:0.1704606403572238 :0.1621843743611195 +hundred:0.2502767045823328 large:0.21688536435617353 man:0.20733062651268858 good:0.18723035529853752 :0.13827694925026754 +that:0.24939506685925134 with:0.21990842490627233 in:0.20272351550980874 of:0.19455381754972248 :0.1334191751749451 +action:0.23009325040710257 it:0.21482062617718406 he:0.2098799392752144 plan:0.17267674666166605 :0.172529437478833 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +and:0.37909388157188434 that:0.22791557724006872 go:0.15577735939377896 not:0.13240182866495656 :0.10481135312931147 +did:0.354796743149662 could:0.2218289274794014 was:0.15394835531848963 does:0.13863198479968464 :0.13079398925276234 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6324650472790379 the:0.2509377074009092 hot:0.04819175603449293 fresh:0.0388815141145881 :0.02952397517097177 +up:0.3474076556958875 back:0.28618079849784783 them:0.15270302495162938 him:0.12265289343469792 :0.0910556274199376 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +annual:0.23624957466986315 first:0.22734532630283788 next:0.2171351175192688 regular:0.2066273144099544 :0.11264266709807581 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.6029711877046687 with:0.1566675756949919 in:0.10373404514571664 but:0.08139929561780751 :0.05522789583681522 +ordered:0.4080823336457079 notified:0.19945643418759423 relief:0.15034823392607297 states:0.1443955744970047 :0.09771742374362014 +time:0.4827282498215172 time,:0.29196400374922415 one:0.0882865248328127 years:0.0813860115574876 :0.05563521003895835 +is:0.4267387874693918 in:0.17654803066596406 was:0.1682819797356149 to:0.15877959804404332 :0.06965160408498602 +with-:0.3125223601857507 up:0.26534681188514836 back:0.18735131617952563 from:0.1417124640418233 :0.09306704770775197 +and:0.32466259634338157 but:0.2938119731301661 that:0.1381532180583145 when:0.12392355193179433 :0.11944866053634354 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8087017928079864 our:0.07216678228483403 this:0.04910980830635399 tho:0.035528452004818474 :0.03449316459600721 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3615513013216157 into:0.3309981159894522 on:0.13344917493175848 up:0.08917871612026607 :0.08482269163690756 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +first:0.3562839865075 next:0.19504402169703797 1st:0.1798787431117431 same:0.14931347639769574 :0.11947977228602319 +turned:0.2740921562696725 port:0.267879263024589 ceived:0.15373441795153514 cent:0.15366272657983762 :0.1506314361743657 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.5492233538005616 do:0.16682445559166587 not:0.11728117307537045 bo:0.08401267582753234 :0.08265834170486962 +suppose:0.433923041653141 it:0.15888670565957663 so:0.14690107634592922 in:0.14374058108918186 :0.11654859525217137 +it,:0.2608878255975971 him,:0.23256579367540162 them,:0.1844105083508123 him:0.1772569189593748 :0.14487895341681417 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.5129498170849175 to:0.3783552485302477 now:0.04116063196982422 also:0.04053618180577985 :0.026998120609230715 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +It:0.4202896153353412 "It:0.18892213981956474 it:0.16604913311827887 There:0.12475135556483898 :0.09998775616197621 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +or:0.7225831969000196 thousand:0.11051703555259099 and:0.0596779156079746 of:0.056580783488496364 :0.05064106845091858 +which:0.2961172161873645 but:0.2876652126587946 and:0.20846308853172096 as:0.12591225601915412 :0.08184222660296582 +number:0.5449764284454687 deposit:0.15873389408445096 portion:0.10612844605841987 few:0.10006972350623797 :0.09009150790542242 +distance:0.47711289465058293 importance:0.2360320580798886 money:0.11228962643709169 loss:0.09485765105169049 :0.07970776978074626 +of:0.6591267671176425 for:0.12406614078355532 in:0.10345536315781426 on:0.07860029639845703 :0.034751432542530845 +most:0.31580762874767554 same:0.2361567099146447 general:0.18314870891956436 law:0.1352936434087749 :0.12959330900934055 +of:0.907268334591354 years:0.025737241027863237 in:0.024565968461624694 as:0.022342452596263114 :0.020086003322895004 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8620614363408406 its:0.0623544882723237 tho:0.03555559100255277 all:0.02087860291603573 :0.019149881468247237 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.33754344508522033 years:0.30475698594098527 years,:0.14719203607832923 minutes:0.1147584084413511 :0.0957491244541139 +points:0.31761402039035846 children:0.2757742272727049 child:0.2439005496231806 positions:0.09249014024059854 :0.07022106247315757 +the:0.42559119259292916 a:0.3752649733063677 this:0.12337672366763466 his:0.04161223992619893 :0.03415487050686948 +All:0.2835650034706165 One:0.22974012641879957 Smith,:0.1932891080877386 V:0.15435422453701128 :0.13905153748583404 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +hundred:0.8577904117820284 year,:0.04048115438049983 year:0.03727109210214192 side,:0.03399877949254926 :0.030458562242780485 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.2768319978496814 in:0.21858269016823292 In:0.20920021328586152 but:0.15913982366604834 :0.13624527503017583 +to:0.34027519543644114 in:0.19818040735973394 that:0.1675115356480368 of:0.1487881935270823 :0.1452446680287057 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.382822512214865 that:0.3189651646776821 fact,:0.13227465521724788 said:0.1132625584891586 :0.0526751094010465 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +so:0.3010865794669811 found:0.26710495047956123 given:0.16841271551974873 stated:0.1380450587970695 :0.12535069573663937 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +Monday:0.2997385625419117 m.,:0.20724294671221588 yesterday:0.17209508172475718 p.:0.16620183845768755 :0.15472157056342747 +Virginia,:0.7540602909721222 of:0.13091842015180563 and:0.059172947360195904 &:0.02963447101645366 :0.02621387049942269 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +came:0.3078911000110205 come:0.20454167040124577 are:0.20193654768573135 were:0.16313089969071307 :0.12249978221128925 +not:0.6693654926427389 probably:0.11618927754721017 hereafter:0.09131962038954101 soon:0.07042748956657341 :0.05269811985393656 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +stead:0.3499558843141415 crease:0.2109536211787879 formation:0.1840103142695977 terest:0.17410044798015223 :0.08097973225732076 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +asked:0.26591505148064126 it:0.22112657683537867 ready:0.18104298309594663 made:0.17565638973160602 :0.1562589988564276 +a:0.562049377717793 the:0.22794754859436522 each:0.11426798962184681 in:0.05142230109234864 :0.04431278297364634 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.4145008079280911 best:0.19798954946949465 course:0.13713074618198534 way:0.12932002068107526 :0.12105887573935357 +and:0.2983925921655949 being:0.2215175810869689 law,:0.19996602312927922 which:0.15262867779573305 :0.12749512582242403 +water:0.3031107095330785 horse:0.2407740528959703 whole:0.17094752759029452 great:0.15034701450852359 :0.13482069547213296 +the:0.7299262090173405 a:0.15216393043877982 said:0.05267344190149094 his:0.03679500296642862 :0.02844141567596005 +the:0.8208028459464394 a:0.09466214820441857 tho:0.04019266946524272 tbe:0.03133437284766121 :0.013007963536237994 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7438275366335481 tho:0.19391872246358846 a:0.027855235846935226 tbe:0.019356526559251266 :0.015041978496676907 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +look:0.28053503531404356 sought:0.2142979525147772 immediately:0.18971558589109694 was:0.17436487089871297 :0.14108655538136933 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6271532326261835 by:0.1378025507469002 along:0.1052644706583674 on:0.07129890290143791 :0.05848084306711083 +a:0.7136768742042643 the:0.16283619359671364 his:0.04804906264667283 in:0.03963958000565312 :0.03579828954669604 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +mortgage:0.42154500890121777 mortgage,:0.313259003046185 county,:0.09836771966833602 county:0.08643033245472659 :0.08039793592953473 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +on:0.2929392254220789 in:0.2682893847905068 by:0.18328426775509243 at:0.14174504439255195 :0.11374207763977011 +him:0.3144638346602169 himself:0.19314406796488842 them:0.1905092041989874 me:0.17361014665419128 :0.12827274652171602 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +in:0.36623116848568954 of:0.27698378994299805 is:0.18496637838271718 to:0.09376285202532865 :0.07805581116326664 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.39405515272276553 was:0.17425963025717683 is:0.171497883910032 Assembly:0.1303122494248118 :0.1298750836852139 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 +out:0.38887268058805513 up:0.17179064512173223 was:0.16793823827210547 and:0.15283262124679423 :0.11856581477131282 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6926157789530475 an:0.14697722068419414 some:0.08971654213252483 what:0.039049488452044395 :0.031640969778189164 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +formed:0.5904862087719301 former:0.3491264677203571 chance:0.027062146086158978 tain:0.021434638303541517 :0.011890539118012161 +of:0.9469863022823536 a:0.016257166588294403 No.:0.014100964181712151 ot:0.01387603222162661 :0.00877953472601312 +let:0.6895884126411421 to:0.12170149553376594 for:0.07159678069723628 with:0.06010850630107951 :0.05700480482677624 +and:0.34336866606526 at:0.22278681240142195 with:0.1730492614845373 as:0.13600047099512105 :0.12479478905365962 +have:0.3068407897604979 was:0.26446371473580094 saw:0.1999439853594232 had:0.12822860893463942 :0.1005229012096385 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3442897275613856 May:0.21280178472711278 October:0.20776877755129708 April:0.12168167392456168 :0.1134580362356428 +be:0.939614304062127 bo:0.04105179265459046 contract:0.007802336684445729 have:0.00686730821943108 :0.004664258379405701 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.5067115140377507 and:0.20241039285700532 against:0.13006977559125638 the:0.10389327749839351 :0.056915040015594005 +all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +That:0.5186695739784515 It:0.21257891243451021 There:0.15154368745092917 This:0.06837722960524746 :0.04883059653086168 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +thorough:0.2252155960347672 I:0.21938088852485296 frequent:0.20472341533560812 prompt:0.17652170347250706 :0.1741583966322646 +you:0.3003298737907555 them:0.2567592375270112 which:0.17818694988968814 I:0.15145115310336696 :0.11327278568917824 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.4150829771551462 he:0.22943867144838842 there:0.13134104065440688 It:0.12053334500510204 :0.10360396573695643 +United:0.9823903122384878 Southern:0.008335323756619861 Confederate:0.003652086607621244 other:0.0034789154161813493 :0.002143361981089876 +South:0.3475441941157938 North:0.23508812691324774 great:0.17369649663009 Central:0.12431827684780891 :0.11935290549305946 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +national:0.35000795232135695 mo-:0.33866381371359755 j:0.11230751427942949 |:0.11218262486900515 :0.08683809481661083 +and:0.7248568043931264 was:0.10799539631767498 up,:0.0658244984973884 for:0.05148348572733005 :0.04983981506448006 +them,:0.4461209595799576 them:0.170804005826803 France:0.14732742489457237 him:0.12150097706355635 :0.11424663263511083 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.2525905536602418 that:0.24086953704306668 however,:0.203603379813847 it:0.17114983588842128 :0.1317866935944233 +the:0.5652139135812851 running:0.13322999799590746 then:0.12332110903807351 John:0.09511443646837986 :0.08312054291635403 +dry:0.8111221436295679 the:0.0761252038500178 and:0.05715701723871805 white:0.04620217853437007 :0.009393456747326145 +reasonable:0.5259022480217863 fair:0.20041778144371605 liberal:0.10984856909609032 small:0.09511842489715906 :0.06871297654124811 +by:0.43281976912227016 in:0.20917426630435124 for:0.1461026259979018 to:0.12495414146896457 :0.0869491971065122 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 +the:0.8888578691300698 a:0.035400032598741776 tho:0.03479210055887068 his:0.0238736633643683 :0.017076334347949387 +of:0.4399266654282679 that:0.361729932729972 in:0.07428889805793981 before:0.06890008741816495 :0.0551544163656554 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.5537061759062347 distance:0.21462308609037387 time,:0.117953069544228 address:0.06155213859831928 :0.05216552986084413 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.6249957572689656 we:0.1756008055088701 there:0.08287728976683932 you:0.06761470567423801 :0.04891144178108691 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +right:0.25713588352461564 reason:0.19943811793838703 attempt:0.19294083764245654 desire:0.18478369497441377 :0.16570146592012697 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.36924946682823834 man:0.28425813578154185 gentleman:0.14893686693143457 lady:0.09952691470956117 :0.09802861574922393 +people:0.43671396033738324 men:0.22586492652706128 following:0.13303621497199694 latter:0.10411557441943095 :0.1002693237441277 +mand:0.412208234601425 pany:0.27339234184612415 mittee:0.14461002967250372 petition:0.0886370938828831 :0.08115229999706394 +he:0.2652832461322699 and:0.22940868833374342 there:0.18084763020565298 house:0.17028736738703096 :0.15417306794130278 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.2461519714710672 free:0.20865856602899532 running:0.19555178959877592 returned:0.18403538943977474 :0.16560228346138686 +the:0.41786629396843455 his:0.27587247009166366 a:0.15728243887280624 their:0.09231461783142811 :0.056664179235667494 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.5566592055992242 of:0.21166534168588744 with:0.10381567356857054 In:0.0753340450631087 :0.05252573408320924 +that:0.3204309369075381 and:0.30972240187911115 of:0.18976447807444 to:0.1081484668592826 :0.07193371627962823 +same:0.40405122532863663 case:0.22671995542506188 people:0.1703355042117408 court:0.10099974593101893 :0.09789356910354191 +as:0.36175077473798395 up:0.18650205442024198 back:0.18245073043930246 and:0.14291922597656312 :0.12637721442590846 +Mr.:0.7142681190224774 Senator:0.10367188877666014 Mrs.:0.06561630262430858 Then:0.06279163321833628 :0.05365205635821746 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.2804749923771562 of:0.2684180883683288 with:0.15526254148712343 In:0.14961278896467722 :0.1462315888027144 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +will:0.4780622777551612 shall:0.20166644443457826 would:0.15586018312094327 should:0.08270562781551037 :0.08170546687380678 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7901173920562711 in:0.06976606995026112 to:0.058856987513840345 for:0.04436855137611206 :0.03689099910351538 +be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.6569228932506791 have:0.22579994084262608 not:0.04947780045580511 bo:0.0341371430729783 :0.03366222237791127 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.43739148808768286 around:0.19670059943358625 and:0.15588155572212808 in:0.11201890167053423 :0.09800745508606855 +of:0.4979979896032077 in:0.2359547191641254 and:0.12721155108073004 to:0.08119213885155892 :0.057643601300378065 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8529318263784151 in:0.04698205474553998 and:0.041033579723453166 with:0.03494386655889877 :0.024108672593693047 +General:0.2645038654134091 general:0.2588056212590209 most:0.2510760204256185 court,:0.12095389984641071 :0.10466059305554067 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.2512345743258341 after:0.2326885468256897 by:0.20720328912237498 as:0.16578614154785767 :0.1430874481782436 +the:0.2926151981994734 be:0.2851215679073473 any:0.2098368720031492 make:0.1215128445024753 :0.09091351738755477 +not:0.22800988639949962 go:0.21948833637571055 continue:0.20887578828962483 be:0.17519518221252411 :0.168430806722641 +the:0.36526872727748905 in:0.25370538188626324 at:0.1593464811271513 to:0.14343330756601763 :0.0782461021430788 +law:0.28801542435750244 the:0.22152099290333302 them:0.17446325908396731 him:0.16943931403181717 :0.1465610096233801 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.3607600365235615 would:0.2397506929100848 may:0.1954534490063931 should:0.10820782251068554 :0.09582799904927516 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8415253223268931 tho:0.05854271099876476 his:0.042652181798146 human:0.028675737981144565 :0.02860404689505161 +told:0.391988159040023 saw:0.2931437697536312 asked:0.11644504489332635 gave:0.10233712337234266 :0.09608590294067672 +know:0.7021382124518015 see:0.12583295305965742 exactly:0.06983647715227534 only:0.0525665718709338 :0.04962578546533206 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.5384396589243462 one:0.1272126237394188 years:0.11499838629604237 places:0.11107074516029596 :0.10827858587989676 +most:0.47999715204941523 very:0.2884977900722418 more:0.17533959208327327 highly:0.036754870030232596 :0.019410595764837026 +have:0.5339718739384498 not:0.24068694438412142 be:0.15276865856513355 be-:0.04249848850797723 :0.030074034604317935 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.36884440162481796 was:0.19968892551621217 necessary:0.18589932349131308 impossible:0.15154418773140443 :0.09402316163625231 +and:0.33528403765115494 was:0.2787576090603626 is:0.25650423683778345 are:0.07673236430247543 :0.05272175214822354 +have:0.5481249946711444 had:0.17050391941828666 are:0.11838245757481843 find:0.11171278053034484 :0.051275847805405644 +be:0.8885443797679154 bo:0.06317716835812354 easily:0.016954553267224812 well:0.016437834418833733 :0.014886064187902587 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +carried:0.6064556112163244 taken:0.1281335148768434 worked:0.10103412433667781 thrown:0.10090952153235402 :0.0634672280378003 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8531874081190264 tho:0.03843729082929482 a:0.0368200733694699 its:0.03668269909999974 :0.034872528582209024 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +me:0.5044841556846251 him:0.33370970831990443 us:0.07303065327333576 them:0.058257963270454925 :0.03051751945167962 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.391011888807529 a:0.2494345750180191 common:0.1952709875107576 every:0.08629646571327905 :0.07798608295041523 +be:0.5415905184764669 of:0.1257371680314652 take:0.12232832826596939 make:0.11590789982152223 :0.09443608540457618 +obliged:0.2598792479716274 going:0.22899817590925256 referred:0.19953394791594806 not:0.16767475984820673 :0.14391386835496536 +to:0.6588328116862617 not:0.25992658909896726 over-:0.03691275906169046 a:0.023883788451379732 :0.020444051701700786 +the:0.6378020771841322 make:0.14482213055845025 our:0.11910378715751634 its:0.05758893904546924 :0.040683066054431984 +to:0.538618895188208 and:0.19254197691089536 in:0.11473429552786682 on:0.08481145699296566 :0.06929337538006423 +of:0.7290767705263522 to:0.12905032074113804 for:0.056468890034698384 that:0.050571946535682456 :0.034832072162128885 +by:0.5714133565823319 to:0.3360223681291732 in:0.05520492125516661 at:0.021593407539121503 :0.015765946494206866 +interest,:0.30037424791880124 character:0.20994401154044723 circumstances:0.169956366283766 character,:0.16470785845586022 :0.1550175158011254 +no:0.6524007431404812 a:0.13645725888722351 the:0.11290259855924359 much:0.058367446255864354 :0.03987195315718727 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8620673102080396 tho:0.04957319687742728 its:0.03462960605436709 a:0.03064745405662565 :0.023082432803540387 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +lie:0.38237262190394294 be-:0.2560444550110732 be:0.1893326088989062 >:0.09969699475174 :0.07255331943433774 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.35591390801031375 Deeds:0.23898128743073002 land:0.16427108330298018 interest:0.12632544005277482 :0.11450828120320115 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.32595577453777846 or:0.18907801354627432 over:0.1883878777278667 within:0.1626110307298694 :0.13396730345821106 +for:0.3541612076749834 or:0.3246071248814775 and:0.1904625184518842 in:0.06571191910718259 :0.06505722988447242 +it,:0.2608878255975971 him,:0.23256579367540162 them,:0.1844105083508123 him:0.1772569189593748 :0.14487895341681417 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.30060818705297876 an:0.2327577149695929 the:0.21103092636423715 per:0.15155957289664643 :0.10404359871654474 +old:0.5388944090188911 whole:0.1340059607643885 United:0.12537864326280984 best:0.1022892639992431 :0.09943172295466739 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +large:0.7600326768573179 great:0.08026692866414625 total:0.06616354053901397 largo:0.04937565139963632 :0.04416120253988556 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +South.:0.43003734102254915 side.:0.230181418204941 street.:0.17274518372998748 Union.:0.08814133227653859 :0.07889472476598365 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.27641190207101207 who:0.2620479468459058 has:0.21094015565044238 is:0.15196839819469854 :0.09863159723794113 +be:0.9299355648544987 bo:0.039482578264576774 have:0.01912105221075998 he:0.0068129068158757486 :0.00464789785428889 +found:0.3234076684373223 remembered:0.2202773322437868 given:0.18162208867405258 so:0.14885244180138496 :0.1258404688434532 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.5670267692372785 was:0.26529127789549156 Is:0.1179355383667739 has:0.037622996326004125 :0.012123418174451749 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.29291110172006124 more:0.23928040205800719 very:0.209584899441618 entirely:0.14541386513848562 :0.11280973164182799 +go:0.409634576180319 come:0.1820413690832247 him:0.15491679222342905 try:0.12769469573402084 :0.12571256677900647 +of:0.3465061824760367 in:0.31836742522400185 all:0.14897223542193394 on:0.11139305853644446 :0.07476109834158295 +when:0.33645036779607057 and:0.269633930079677 to:0.14360250009895376 that:0.13209571872983536 :0.1182174832954632 +tell:0.3508177250467423 give:0.2530171921237043 do:0.2207731296506232 make:0.10631782769977638 :0.06907412547915392 +tween:0.7698102219216426 fore:0.09063312715324641 ing:0.07845567095177827 cause:0.051735800101568495 :0.009365179871764166 +ner:0.9060110752863424 age:0.03172659250908625 kind,:0.02327915029246376 kind:0.020680330018100292 :0.018302851894007356 +200:0.25204257966664767 fifty:0.2156793665029295 100:0.21186078368544828 300:0.18188761080795152 :0.13852965933702313 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +country.:0.26803284903240115 world.:0.2291145910069688 city.:0.21879424978954234 people.:0.15398937800370113 :0.13006893216738652 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +early:0.3144462696422131 city:0.19044727867238798 time:0.18043012505682438 election:0.17516969128491353 :0.1395066353436611 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +world.:0.2640367111746353 country.:0.23178389373806066 people.:0.19682201850485836 other.:0.1579133213924044 :0.14944405519004136 +an:0.23044249932233965 a:0.2165547489097687 i:0.202075692439855 known:0.19001816988883316 :0.16090888943920353 +apart:0.3181646724993098 aside:0.3063394422272346 up:0.15498067251821634 out:0.12667565633910374 :0.09383955641613549 +sum:0.34120176925562506 need:0.2238187111029073 will:0.19702529094325436 can-:0.13357711711632436 :0.10437711158188906 +that:0.3578326482784027 when:0.18477440723419292 at:0.17186614672041234 lots:0.159461606626881 :0.12606519114011094 +he:0.4845088074286456 prosperity:0.1981489077870373 and:0.14517245632593886 He:0.09146017005759016 :0.08070965840078823 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.35794955937767414 equally:0.28486198095392096 the:0.20560981596324243 its:0.07998736794962553 :0.0715912757555369 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.3838706733250693 shows:0.253731473791642 showed:0.21098928425596863 and:0.08132476648484223 :0.07008380214247786 +the:0.8375389017108192 a:0.049805444122886025 tho:0.048562620947538375 this:0.03642466672666258 :0.027668366492093973 +e:0.263190996746864 h:0.22189429794670684 r:0.19407238170638225 s:0.17447976067513846 :0.1463625629249085 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +M.,:0.403502954810456 D.:0.20310063575809184 D:0.19664344550382418 M.:0.12177618584629712 :0.07497677808133081 +Mr.:0.5629855952720745 the:0.1730657122254535 to:0.10244347828806542 for:0.09209973992521236 :0.06940547428919412 +fact:0.6811856975996785 said:0.129424747603616 ground:0.0668337494128204 belief:0.06258864438599437 :0.05996716099789066 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3651209294993735 before:0.2330889972801379 that:0.2040892957627261 it,:0.1044951426145301 :0.09320563484323252 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.9417349911991307 and:0.04026860297672243 will:0.006247232425085555 by:0.005930977504468328 :0.005818195894592968 +of:0.764733047635831 for:0.126845284691428 which:0.04520813215821139 and:0.03375666670390989 :0.029456868810619773 +Rock:0.4755422475773618 the:0.36606066437465534 Long:0.08089811156533754 this:0.04698494191902823 :0.03051403456361709 +New:0.9470844518395996 the:0.042583409846404206 Now:0.005094325969812999 do:0.0035611951249552016 :0.0016766172192280476 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +such:0.5740749831335982 them:0.20970275973165212 sale,:0.09053563105645503 this:0.06994284362101369 :0.055743782457281045 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.37394842971161313 people:0.23918631687117262 committee:0.1491929864829881 I:0.13182864102164485 :0.1058436259125812 +of:0.33985407656046823 again.:0.3232439685188672 of.:0.12861735809001085 there.:0.10863296790621194 :0.09965162892444178 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.3696343447627655 they:0.3630283969817678 it:0.10403110121569498 we:0.08574317121599655 :0.07756298582377523 +use:0.29946109638533225 following:0.18761451626536538 above:0.18542908906739186 of:0.17480954551286204 :0.15268575276904853 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.4522910794330044 tract:0.24945681391688174 woman:0.10967808118409718 portion:0.10602113360994084 :0.08255289185607609 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.4391082704231684 America.:0.20129544424169593 them.:0.15234004682430316 Washington.:0.10411330505913395 :0.10314293345169843 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +yard:0.36537538360325106 business,:0.23628135499936148 trade,:0.14474838190404662 business:0.129033369011562 :0.12456151048177885 +time:0.25277025583393287 period:0.21098599328048945 line:0.18792411766422568 list:0.1814930331873122 :0.16682660003403987 +the:0.6803195016857765 their:0.10945068407580147 two:0.09541648812136776 small:0.07053974135364845 :0.044273584763405954 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.8198779672226643 its:0.09843465083092341 a:0.03992857475641458 tho:0.021163062259240285 :0.020595744930757495 +people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 +off:0.294615694865224 of:0.2333494662159845 up:0.18090871546370754 in:0.14870187258530712 :0.1424242508697768 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +based:0.3033479842382343 called:0.28354776194806575 dependent:0.17873473327865674 placed:0.15005630211608229 :0.08431321841896101 +young:0.6432864976979662 two:0.136525749097059 business:0.11827761957366233 old:0.051420853472603896 :0.05048928015870853 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.47556071598154115 all:0.28890335730656835 control:0.10125494012360262 for:0.07800918267914311 :0.056271803909144685 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +held:0.2413972363206686 placed:0.24053160270689386 made:0.18780208327570927 due:0.1713522810500942 :0.158916796646634 +time:0.2662007269602721 demand:0.20374566206278708 necessity:0.19227363546651788 work:0.17423850470127075 :0.16354147080915216 +so:0.2682109077520346 a:0.2627620856381285 and:0.20716105086480477 too:0.1469667689837591 :0.11489918676127309 +act:0.30549977475887047 which:0.29785807718506635 whom:0.1395209971161789 be:0.1291322532663142 :0.12798889767357 +he:0.4096586368503164 they:0.18229661433266545 I:0.18201454502947453 we:0.1294544910131726 :0.09657571277437108 +the:0.3522217156349553 t:0.3274675531676785 -:0.12754768638028938 i:0.11191880774936622 :0.08084423706771052 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +same:0.27905913715653313 present:0.2491606791809853 State:0.1605905937171786 beginning:0.15878575393041286 :0.15240383601488994 +a:0.3547818665069313 on:0.26084506134211155 the:0.19299035414450671 left:0.0965992743248372 :0.09478344368161333 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8849057439617202 tho:0.037075737371720034 each:0.03624468332417228 last:0.024335971727651194 :0.01743786361473639 +the:0.6338763324017294 by:0.18991633764622193 a:0.09322378269636532 every:0.04342805875567209 :0.03955548850001124 +how:0.28727377597857373 the:0.20668276608459427 too:0.18920936211015418 very:0.18641006558624304 :0.1304240302404346 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.3184892846720086 the:0.20090286698296123 any:0.16557567064980877 sale:0.1601380808331288 :0.15489409686209246 +District:0.32521996388795515 -:0.20338846908626637 Board:0.17959889351147196 city:0.15306266386176828 :0.1387300096525383 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.9201943748966166 if:0.035545835420554825 ::0.02088950179664535 when:0.013161898318803976 :0.010208389567379307 +be:0.4648992926917519 put:0.18622300172743123 assist:0.1250201765404788 him:0.11290369569300782 :0.11095383334733018 +was:0.5237439617841158 and:0.19646478279249968 is:0.18860578297706468 of:0.045905796112592344 :0.045279676333727294 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.35820430491149097 so:0.24429254584243987 as:0.17526270963504811 very:0.11690774872826208 :0.10533269088275883 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7939503781311158 in:0.08108587220652044 at:0.04842580773137662 and:0.03975703509824893 :0.03678090683273835 +lands:0.24590202586788326 powers:0.21339340835968862 court:0.18472863750632446 privilege:0.17809110455996333 :0.17788482370614025 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.24539809117865566 was:0.2151500266249952 saw:0.20084463185069082 think:0.1836982350983484 :0.15490901524730988 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +going:0.25764174126496203 unable:0.2096599122249072 not:0.20500623635875526 able:0.1814447163183151 :0.14624739383306046 +annum:0.7158433132555214 cent:0.13401980079541168 annum,:0.06650883359121913 cent,:0.047531029474675975 :0.036097022883171605 +of:0.7743693453848391 Executive:0.10669333460261421 was:0.05485102111365549 and:0.03206814678632262 :0.03201815211256863 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +or:0.3343505427569476 minutes:0.3317678534372936 degrees:0.18911279686820479 nine:0.07422894057943562 :0.07053986635811825 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +year:0.28465516211493064 week:0.25329711873435595 night:0.19952503638571392 resort:0.16630641129705145 :0.09621627146794808 +his:0.4176411440013859 their:0.2805702511032155 her:0.11579374791539246 my:0.09628431209707541 :0.0897105448829307 +of:0.8802476363242749 on:0.05094219583137567 and:0.027991632874300034 in:0.021132290221278036 :0.019686244748771307 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8019960735137689 a:0.10977397673716673 any:0.032978245872568715 said:0.031698113964988346 :0.02355358991150723 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.49152843460698525 which:0.19575912103464888 that:0.1725657744863124 in:0.07062219789980687 :0.06952447197224661 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.41411071140093225 without:0.19454260794593808 with:0.16546707447807169 In:0.16090559546934338 :0.06497401070571455 +same:0.47947053664835776 name:0.2800798712505302 first:0.10369624459049237 fact:0.07549296568148962 :0.06126038182913009 +in:0.5697485032641886 separate:0.15675452580640503 at:0.10052847838208859 and:0.09564633905223766 :0.0773221534950802 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +own:0.9416703704140091 various:0.023236699274713616 many:0.012994807837560228 a:0.011364422584320827 :0.01073369988939609 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.47517884095236823 I:0.1744341654134558 think:0.14020571147715452 lie:0.11244089814883575 :0.09774038400818569 +be:0.36095377835824216 have:0.18524878544556667 do:0.18124230136938715 say:0.17446664629142375 :0.09808848853538049 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +addition:0.2602468090663326 and:0.2285528668645031 right:0.18407887793608924 as:0.16952167711578534 :0.15759976901728986 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5679598260651182 to:0.16994512987487823 in:0.13852567384985523 for:0.07252968463249508 :0.05103968557765316 +year:0.22236284663100492 man:0.2216963917815124 certified:0.20105767903898927 fixed:0.18762249760489025 :0.1672605849436031 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.34761994195539425 get:0.21398372546405375 came:0.20954298372314678 all:0.13822421205494434 :0.09062913680246087 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +cured:0.3277916924188085 done.:0.26615364197896857 familiar:0.2007229273389916 well.:0.1309402340708865 :0.07439150419234473 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.6361144407610316 was:0.2374669991526607 Is:0.05712859408488569 would:0.04015006508286588 :0.029139900918556148 +The:0.5865503592479635 the:0.1965665649336647 Smith,:0.08332092903986833 and:0.07493983478674289 :0.058622311991760497 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.5999309956571209 day:0.1481409514543817 only:0.08838961519033192 morning:0.08310273430412177 :0.08043570339404364 +of:0.36430296933007866 in:0.32819545233856295 the:0.26019442482765054 and:0.02390407976040008 :0.023403073743307877 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3693162434875774 into:0.18893086540077844 up:0.18498036898491604 in:0.15669464395541785 :0.1000778781713102 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.5617042972164987 he:0.1987692748279706 It:0.13978735360761269 there:0.05409749230640192 :0.04564158204151589 +side:0.32056071538876246 parts:0.24410934586853963 day:0.18353269187517868 members:0.14703349966100004 :0.10476374720651908 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4587283731314373 the:0.17094274049688707 to:0.14610371623520435 in:0.13012055993879013 :0.09410461019768114 +have:0.37941790458533037 had:0.282027967829014 would:0.11767323844622991 could:0.11455066112694358 :0.10633022801248206 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.7028734518464442 the:0.21655547631411992 one:0.03964942039166838 this:0.023399710886610463 :0.017521940561156853 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.662663278745635 I:0.09419563156553354 have:0.09061013756384399 he:0.0772627021712782 :0.07526824995370913 +the:0.7094065729308406 was:0.09261937014860443 are:0.08646077698707268 is:0.06577204619354785 :0.04574123373993419 +and:0.5473021961756446 Smith:0.12842465166237477 Smith,:0.11769490144988407 L:0.11229847437119513 :0.09427977634090133 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +trade.:0.46026420368584303 them.:0.22528973886664336 party.:0.1314301379833661 each.:0.0928187783728755 :0.0901971410912721 +they:0.5148898128280488 there:0.2483628990712214 we:0.16275211061956227 you:0.06003634860230726 :0.01395882887886023 +so:0.8838124286701197 as:0.03668534259449245 very:0.03290232759073164 gone:0.025656462014929046 :0.020943439129727338 +D:0.6145509470645836 M:0.18371345212042448 C:0.06992382493431662 J:0.06885938328699737 :0.06295239259367796 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +there:0.24260303622326032 is:0.19749698151941336 now:0.1914729867424438 are:0.1883311010897014 :0.18009589442518106 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +an:0.3801489907562184 the:0.2726405486360934 most:0.1994301213651299 this:0.07499005403773479 :0.07279028520482357 +country.:0.26003973935479047 world.:0.25537658717033485 city.:0.18932180786528852 people.:0.1538644508481336 :0.14139741476145265 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.862065642370777 cold:0.05303739831515047 tho:0.04080678249260602 bad:0.023804669388858873 :0.020285507432607656 +of:0.7257746928194893 for:0.08495599538779568 to:0.06657737581924754 in:0.0629579349975379 :0.0597340009759297 +have:0.32193236968775296 do:0.21764487462061655 had:0.1714744741319788 all:0.1524596416704333 :0.13648863988921836 +in:0.26637273380932064 by:0.20051727514903264 if:0.17963416269367316 at:0.17731810622096542 :0.1761577221270082 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +could:0.4498219036320944 can:0.2040901251632009 would:0.19709156903673927 will:0.10214178351764118 :0.0468546186503244 +to:0.6486814839161572 is:0.10448027595054572 and:0.09299919078863786 as:0.07876609287559776 :0.0750729564690616 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +such:0.6566254396566344 regard:0.11357777438254728 this:0.09639258586169677 good:0.07572880491192009 :0.05767539518720141 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5443694439971554 be:0.17130976042688062 satisfy:0.1463313011747931 pay:0.09513711399201712 :0.04285238040915378 +make:0.2910412635092548 be:0.24768058752629352 find:0.1656315370149174 do:0.15766531253224766 :0.13798129941728654 +people:0.4033682026200842 men:0.27777211748644065 present:0.11619392827570985 children:0.10365867661698541 :0.09900707500077982 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them,:0.32238342406724335 those:0.3111756891518597 sections:0.15842661716862833 them:0.10708028334902644 :0.10093398626324208 +the:0.8251826767679633 North:0.08742039052045479 South:0.045953630115944756 tho:0.026854820311203037 :0.01458848228443415 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ease:0.22618989133145084 position:0.20484966114038894 played:0.19911647451316752 trict:0.19497174110627488 :0.1748722319087178 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +does:0.24192458152261304 did:0.214826494181494 is:0.20863216137856302 has:0.18335845237513487 :0.15125831054219527 +are:0.7046221394926144 ever:0.11799618078685975 in:0.0779277593692258 were:0.07427310729524789 :0.0251808130560522 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4438720798119591 but:0.26071353621547183 that:0.1528702970621189 which:0.10766387830532728 :0.03488020860512302 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +said:0.32466400547723895 School:0.238666145729258 Judicial:0.16595800028045568 Southern:0.15385664615022707 :0.11685520236282022 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.3906025679471786 is:0.2520833798439566 were:0.136133620903313 by:0.13124724693114498 :0.08993318437440677 +and:0.425480603218735 which:0.2680070388849837 that:0.12854019053303337 it:0.09576785351629799 :0.08220431384695007 +time:0.2751757718956172 attempt:0.2287522786671317 way:0.22434242918915487 person:0.15109550241479633 :0.1206340178332999 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.28505727097657263 has:0.26514627279388703 the:0.18782105215786493 an:0.14578757464448983 :0.11618782942718568 +law:0.2415154069083313 bill:0.19478009397581153 amount:0.1929926626018558 country:0.19043831197547426 :0.18027352453852716 +make:0.25893617488399556 give:0.20291323854444404 see:0.20031327429918658 take:0.18289739772996536 :0.1549399145424084 +heard:0.43689782477812134 cured:0.15496998868458634 guilty:0.14834563107590415 seen:0.1443006251060057 :0.11548593035538252 +years,:0.34633155545320465 years:0.2645400069531216 friends:0.1833239311499035 men:0.1093200602446743 :0.09648444619909587 +is:0.5940501835575268 was:0.29143633222507964 has:0.04358606755343859 in:0.035791668430804405 :0.03513574823315065 +In:0.46792782859067555 When:0.15881174131006862 If:0.14575803770431875 On:0.11699217708387398 :0.1105102153110631 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +lot:0.377256448142661 post:0.17541975295538623 corner:0.17334761969424864 year.:0.15643706163896537 :0.11753911756873865 +the:0.588645170173213 a:0.2363165892088863 much:0.09092746511952159 to:0.046824647108749756 :0.03728612838962927 +one:0.31999157117598714 some:0.1962370487763305 all:0.19205423789939108 interest:0.17684663520784297 :0.1148705069404483 +that:0.5225376754783512 of:0.23245611174754657 what:0.10362886202148174 how:0.07529453231686317 :0.06608281843575725 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +portion:0.4045729479864679 posed:0.2297825063096416 pose:0.15656781294769995 vision:0.13845974368918892 :0.07061698906700167 +far:0.5881495083588533 much:0.16943929992548518 well:0.10596868716913298 long:0.10265131826634176 :0.03379118628018675 +not:0.5742823680242956 just:0.13333332965392658 glad:0.11395286175755612 sure:0.11309302387525062 :0.06533841668897108 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9219078652668475 that:0.029325983976091628 in:0.02243488249655384 to:0.015054893157293293 :0.011276375103213825 +same:0.40405122532863663 case:0.22671995542506188 people:0.1703355042117408 court:0.10099974593101893 :0.09789356910354191 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.36007751067740873 with:0.34041508130556447 if:0.13875418103193857 to:0.0932435453254705 :0.06750968165961778 +to:0.5739915062921989 and:0.18505729063818918 in:0.10002042644065791 at:0.07534224967469524 :0.06558852695425868 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +soon:0.3451875336216873 he:0.2588448226770858 it:0.17268509012152744 and:0.1201568950530787 :0.1031256585266207 +average:0.505980655062121 largest:0.1512938475259066 two:0.12450497502424722 total:0.10927794137589639 :0.10894258101182865 +in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.834636736179689 a:0.07184816389348919 tho:0.037892228109769194 this:0.031551375383438954 :0.02407149643361366 +was:0.27447364188180523 and:0.2581361521154093 of:0.21942267147700048 died:0.1279973191631224 :0.11997021536266263 +mortgage,:0.4217088838165308 mortgage:0.34868561643731283 them,:0.1254090162628563 lot,:0.05435343493582621 :0.04984304854747374 +not:0.7388698059410694 you:0.18320329062590562 we:0.03424808907680696 I:0.02706800178777056 :0.016610812568447524 +acres:0.3776788559126032 dollars:0.31036698695468823 acres,:0.15160158964828102 feet,:0.08872292165222231 :0.0716296458322053 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +under:0.23963754051635286 his:0.2337775594294363 by:0.21345717104539044 in:0.20930125302491454 :0.10382647598390587 +tract:0.3025989834532601 tent:0.22154176311630022 tained:0.1894665584533335 dition:0.14406826415077237 :0.14232443082633395 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +first:0.5937984811648837 same:0.20609513822006736 second:0.11900692247919324 latter:0.04810032724339446 :0.03299913089246122 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.49717548880460793 however,:0.20598108339789245 there:0.1537678045055392 he:0.0842516970588267 :0.05882392623313371 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.415183480718313 an:0.24021265482722665 equal:0.17912487363848117 his:0.08428420548835687 :0.08119478532762223 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5684035380136069 said:0.24506395779315107 these:0.07604819491154449 public:0.0677411406995507 :0.042743168582146905 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.485157432309254 the:0.38081604450782025 to:0.05598177261896471 a:0.045585460659216794 :0.03245928990474414 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.3842634867519996 in:0.2609577920538338 the:0.17053406871250198 insurance:0.1057819305955072 :0.07846272188615738 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.4787372426341979 no:0.208803912602808 even:0.13266591251904303 any:0.09144824806956788 :0.08834468417438317 +tended:0.3440700901543805 tend:0.3172679593570058 posed:0.14090397555485654 tent:0.11158563539277287 :0.0861723395409843 +that:0.39397906389524995 to:0.29780868051119835 in:0.17968556881123873 from:0.07404326486263746 :0.05448342191967546 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +see:0.3630267179337288 know:0.31672443555825147 do:0.16375532428382614 say:0.08300529544119116 :0.07348822678300254 +lot:0.24051561911805175 few:0.23471335159884793 -:0.22493582494624273 great:0.17945296754364587 :0.12038223679321174 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 +and:0.28965924508128427 or:0.20996121608299675 is:0.17239521259745005 as:0.17144626408288333 :0.15653806215538552 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +unable:0.273177137729641 compelled:0.21489434095224683 going:0.1778442415117511 able:0.17407986983570004 :0.16000440997066107 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.36459278766750364 up:0.18836030450037858 together:0.17202846034495803 down:0.1650167929781303 :0.1100016545090295 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8314141268564205 blue:0.053807692945600324 this:0.050304974329142715 tho:0.033264552971125905 :0.03120865289771065 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5864220404194133 by:0.13273794881822054 of:0.10615880060222163 before:0.10224585977024923 :0.07243535038989539 +been:0.9410836241359571 the:0.020302899461382643 a:0.017685855634491196 finished:0.01342504234773003 :0.007502578420439 +New:0.9915396891702188 Now:0.006765761752981317 w:0.0006826864684850944 the:0.0006296600579121326 :0.0003822025504025266 +not:0.25331455034739625 be:0.25233018435093574 not,:0.20645302608741595 do:0.15133753431108093 :0.1365647049031711 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him:0.3963698545201042 them:0.2979707187966795 us:0.12469166971447947 me:0.1002382563002273 :0.08072950066850951 +can,:0.32026361330577174 be:0.2636561190498514 made:0.15619214131578915 assisted:0.13125205389895303 :0.12863607242963473 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 +the:0.8699754714715136 his:0.0394145601092854 tho:0.03906066451440094 their:0.026550358745929384 :0.024998945158870776 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.24915589253745718 city:0.22854406432363528 payment:0.20642614765754363 day:0.1602732853515545 :0.15560061012980947 +property,:0.5444101192783195 property:0.16502386892908524 friends,:0.12993136243465703 service:0.09528114394493722 :0.06535350541300095 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.26340779833067623 for:0.23122478130356935 of:0.18165547747208322 that:0.17011729322915814 :0.15359464966451308 +for:0.2685869307648912 which:0.2623674900062109 and:0.22123597333781328 the:0.1800707681599846 :0.06773883773110001 +of:0.6402426551554862 and:0.10846763079093874 is:0.08593053361974606 looking:0.08522481642522997 :0.08013436400859897 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.4856647918543364 of:0.446103777679911 and:0.0320209970987765 in:0.020032403244274345 :0.016178030122701834 +not:0.6405918911962818 done:0.12485412998521711 quite:0.0834278744385071 doing:0.07697912443953071 :0.07414697994046313 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4966245946054493 an:0.36614821912552503 born:0.04958020970064993 in:0.04863262381534472 :0.039014352753031105 +to:0.39579965073960593 to.:0.31066790488081 the:0.21566407249747663 Senate:0.05779867240816484 :0.02006969947394268 +well.:0.2679896036952556 much:0.24964481864180166 good.:0.19366839615612738 best:0.14903431446028056 :0.1396628670465349 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.344590370213163 man:0.28270613457884597 men:0.24749205800916033 person:0.07206840613674627 :0.05314303106208454 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.2780130342970241 quite:0.2510902396558717 of:0.2460284815987901 such:0.15284684392472522 :0.0720214005235889 +a:0.7510858143558545 the:0.08948128472122985 made:0.0706777438876616 was:0.05000572979543563 :0.03874942723981846 +of:0.602173500010865 in:0.1918295092353601 and:0.07336838406252658 on:0.069851650816414 :0.06277695587483442 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +had:0.3915611312983361 not:0.17204564578038756 already:0.16947183855088177 never:0.15832306530011775 :0.10859831907027682 +land:0.21784620728898546 people:0.20885432064856427 question:0.20276551420210553 bill:0.1969136679406479 :0.17362028991969686 +all:0.3416119316805803 that:0.2770965023025837 which:0.24114041110127982 and:0.09790441813596261 :0.042246736779593744 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.2507041416681069 it:0.22583424596027493 time:0.20887970652465848 day,:0.16934891304830973 :0.14523299279864987 +it:0.4321518987509686 there:0.1907398618689629 and:0.1721832845498651 which:0.10960794690618544 :0.09531700792401804 +and:0.3913401699801207 that:0.19643805658835015 as:0.16239175248396695 or:0.15594091275599492 :0.09388910819156726 +of:0.611664818752449 and:0.12456815902243881 in:0.1183241901853823 to:0.08241909092433293 :0.06302374111539695 +make:0.25600663872024754 prevent:0.2472314873832693 find:0.17700700168424946 all:0.16097136309974694 :0.15878350911248662 +hope:0.24066296894230582 demand:0.23444518847361703 do:0.19191245033964233 ask:0.1768027426427255 :0.15617664960170932 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +had:0.33614994346363763 has:0.2529531614713876 was:0.2517455752333256 is:0.13442323775137135 :0.024728082080277845 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.7853622579446436 been:0.11986404398617533 bo:0.04389693820733387 always:0.026714340156755563 :0.02416241970509166 +of:0.9183906696882692 time:0.0474840975542576 in:0.012771813746916725 ot:0.012376003569924477 :0.008977415440631948 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5918056665454785 an:0.28501938311698166 this:0.05965225473632093 their:0.036276479526536856 :0.027246216074682042 +mortgage:0.5475778648905462 mortgage,:0.18570637357679606 county,:0.1087889722512933 that:0.08465750384760473 :0.07326928543375975 +do:0.35452521991188235 be:0.22373193490484683 pay:0.17249511178074836 say:0.1283150911095611 :0.12093264229296136 +the:0.4930843515785253 one-half:0.16583991496752723 cotton:0.1253072624699616 steel:0.11528893918332692 :0.10047953180065905 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.33649601782069855 engaged:0.27741125290338137 placed:0.15496249722535935 found:0.127012770473925 :0.1041174615766357 +the:0.7239180537985582 this:0.16106304917560513 said:0.05301315460459084 tho:0.03335983822644552 :0.028645904194800155 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.3178759751755856 them.:0.2392308177037045 sale.:0.21537010795225692 life.:0.12698993345535597 :0.10053316571309702 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +The:0.6661643623332206 His:0.12423843627673989 Their:0.08697848016366565 Her:0.06262432642445588 :0.05999439480191806 +being:0.34834040451050013 making:0.1912818115905985 giving:0.16115992081345737 leaving:0.1522595256496396 :0.14695833743580436 +be:0.843542604862741 have:0.07174854293460285 bo:0.056837316780794477 he:0.0199075787948599 :0.007963956627001554 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +To:0.32829245168031984 Let:0.2495939566815875 to:0.24831859943266874 believe:0.09804840871866619 :0.07574658348675786 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.3910381809528965 as:0.26753658839015304 is:0.12011998725296681 very:0.11394375489361012 :0.10736148851037362 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4048344210131725 an:0.30768076244647263 no:0.1896592731031509 any:0.05183822345570643 :0.04598731998149759 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +following:0.44726189511222314 special:0.20360904813578445 same:0.14749161387516682 Washington:0.11066797832725267 :0.0909694645495728 +two:0.305951767932132 four:0.24485845305180592 three:0.16684470749219013 six:0.16037570922995556 :0.12196936229391635 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +party:0.3606875491921684 party,:0.223123883577145 and:0.20081374380918052 in:0.1423009684897074 :0.07307385493179856 +well:0.507440036807576 soon:0.22371580522050646 far:0.1680701560236044 much:0.06808586124717403 :0.03268814070113902 +of:0.5587509883996411 in:0.14876992350406235 to:0.14065470800544005 on:0.08547446713903872 :0.06634991295181779 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.29533775683921404 which:0.2791571123581783 sale:0.14874679002468497 they:0.1440178519329183 :0.1327404888450044 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +tained:0.38618193836663844 gress:0.22130661049055794 dition:0.16907032057885898 firm:0.11857183576382774 :0.10486929480011704 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Smith,:0.31497975208292434 Williams,:0.19878929329529652 Brown,:0.16758992278664855 D:0.15955195533546215 :0.15908907649966855 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ing:0.29941889432346286 cause:0.24484212167157465 fore:0.21116227335011276 tween:0.17188061151934406 :0.07269609913550566 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4228515188471714 on:0.19984069784670327 after:0.1440590160119692 at:0.11767169920807598 :0.11557706808608018 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6842651836929006 in:0.1447453401510731 to:0.08581225040799449 on:0.044168036785747385 :0.0410091889622845 +Smith,:0.33288533919470625 Jones,:0.19790489632815217 Davis,:0.19158043074507491 Wilson,:0.14577330886534834 :0.13185602486671832 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +up:0.3612912388217405 out:0.20616206982214433 down:0.18917344064409053 here:0.12222420932822486 :0.12114904138379975 +made:0.3962248791403346 given:0.16330583264340004 followed:0.15945010195568401 taken:0.1560638116651507 :0.1249553745954307 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +piece:0.2886838718812382 little:0.1935834481521195 man:0.1837121383300525 person:0.16826751622582306 :0.16575302541076672 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5076365195972571 al-:0.2624050820857471 provide:0.10658026916595935 many:0.07913479546494405 :0.04424333368609235 +thence:0.3291758352427312 the:0.2280414619661992 The:0.17161570658553268 W:0.1497768708784133 :0.12139012532712369 +was:0.253088465051469 will:0.2508208929932614 would:0.17836175045157793 is:0.16537453098353974 :0.15235436052015208 +up:0.6665764928838865 up,:0.20503152585545137 in:0.06252793387796196 around:0.033902642628265756 :0.0319614047544343 +a:0.6420356354585308 the:0.1731036816404522 that:0.09198960848916593 too:0.046967817708985574 :0.04590325670286551 +of:0.9025707260342506 for:0.03508105920982961 ot:0.024436610716614016 to:0.019777745723577315 :0.01813385831572842 +a:0.5617838131164321 that:0.28804778402512593 to:0.06630815832987927 in:0.0572865914889463 :0.026573653039616556 +to:0.36148015762459285 could:0.26701627382251064 can:0.23251344171733307 will:0.0701801050899336 :0.06881002174562977 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.4518163445338062 to:0.25616574673341835 by:0.15106009006723026 and:0.1027137977046983 :0.03824402096084689 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2981920396520641 country:0.20186257968601773 country,:0.18879666668555872 time:0.15604954213173194 :0.15509917184462757 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +those:0.7211154233551041 men:0.12412846917238905 all:0.06904661178572712 one:0.0478192844083785 :0.0378902112784012 +which:0.5571726095763538 that:0.2997964939352325 what:0.06272484741378502 this:0.041554531588834195 :0.038751517485794286 +want:0.30073435248161473 have:0.2256043376331714 to:0.18398260835107166 get:0.1451330325665908 :0.14454566896755125 +now:0.3397150866326594 not:0.23384014546633738 situated:0.16031857120743634 made:0.13936289499483412 :0.12676330169873284 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +whom:0.45813977535275957 that:0.21336563778529824 and:0.1361164446841446 w:0.133258722121291 :0.05911942005650655 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.3440988276222857 in:0.22244101470954972 of:0.20733249815327445 on:0.11523265720042361 :0.11089500231446642 +the:0.42348356942502313 a:0.3291769898823401 this:0.11739283524754364 each:0.0659429395503285 :0.06400366589476464 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ways:0.25958390969750805 forms:0.21287524504243222 cities:0.19931797563642215 departments:0.17412618320254883 :0.15409668642108862 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.29098905237092504 in:0.23198459047946562 lost:0.19723684268796257 to:0.14061550640722797 :0.13917400805441893 +o'clock,:0.4651569558128597 years,:0.24294993297478293 ;:0.10108137444295107 ,:0.09842035515061916 :0.09239138161878718 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +other.:0.26144050055322554 city.:0.23575390227070694 ground.:0.18042702883063289 same.:0.16831212655180225 :0.15406644179363244 +law.:0.8283613468554734 said:0.1117626167383526 the:0.031284383252872375 him.:0.016880529312846143 :0.011711123840455619 +the:0.6606027681588788 of:0.22253534228787492 a:0.04633407225754257 such:0.035671370129261214 :0.03485644716644251 +and:0.5421248090824101 of:0.13573774234810967 at:0.1345089736938498 in:0.11862596527557219 :0.06900250960005797 +were:0.3099215339052128 are:0.3087832741303899 had:0.1485820139733317 have:0.1434309609971237 :0.08928221699394194 +that:0.31619213289598325 him:0.28748056175521497 law,:0.16649578589514677 said:0.13086047085858432 :0.09897104859507055 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +this:0.3357756382973017 any:0.2992625169864728 the:0.2630181515377343 its:0.053456950403670093 :0.04848674277482098 +pay:0.35470195733247695 provide:0.3132795704599423 vote:0.1460095227201354 call:0.09682153722008563 :0.08918741226735961 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.29634185477412617 they:0.2490503919967582 you:0.1630227318468907 we:0.15750266874363397 :0.13408235263859086 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.31083776908823757 and:0.2760343158030859 at:0.14541595897030796 of:0.1356327566019057 :0.13207919953646283 +posed:0.4206263778563124 claimed:0.22543131722818463 found:0.15340564088463565 pose:0.10079130775044953 :0.09974535628041782 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.28239149706497607 placed:0.2737099410813851 carried:0.17029127090658125 put:0.16493740024948628 :0.10866989069757123 +he:0.3733361926969531 and:0.22098750503700082 she:0.14464868200179973 I:0.13607086576791666 :0.12495675449632965 +an:0.2830379582893963 the:0.26096650190874116 any:0.1924177673422471 more:0.15014677332104925 :0.1134309991385662 +about:0.7620672166412402 to:0.1513720012263283 into:0.03486678538239931 from:0.03374543571387943 :0.017948561036152867 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.37222819900174764 in:0.27421066801457084 all:0.13434439594704725 on:0.11729145192866643 :0.10192528510796796 +the:0.603631886686478 our:0.27522061198275133 American:0.04715345335614919 its:0.04196073654742467 :0.03203331142719662 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3147900696082553 subject:0.313520921092182 as:0.14859115322787303 according:0.13902450693939972 :0.08407334913228989 +first:0.3562839865075 next:0.19504402169703797 1st:0.1798787431117431 same:0.14931347639769574 :0.11947977228602319 +did:0.354796743149662 could:0.2218289274794014 was:0.15394835531848963 does:0.13863198479968464 :0.13079398925276234 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.2518794510743946 institutions:0.2121153443062262 charges:0.1879164437647681 bills:0.1784292677234208 :0.1696594931311904 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.3688422722993829 matter:0.2107952241818109 means:0.18592441083285283 part:0.14920929055869567 :0.08522880212725777 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +going:0.25764174126496203 unable:0.2096599122249072 not:0.20500623635875526 able:0.1814447163183151 :0.14624739383306046 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ward:0.2530355195067543 reform:0.23858352210200448 crop:0.19546386879407301 the:0.17697025445872028 :0.13594683513844794 +will:0.4311874681553715 may:0.20171570997978597 would:0.15599469524284743 shall:0.12314748397336106 :0.0879546426486341 +people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 +value:0.3004599122502041 copy:0.2515756725909142 interests:0.1542153920796624 spirit:0.14893062717350533 :0.14481839590571405 +with:0.22707867271815207 was:0.21794382822725406 and:0.19581493282221965 is:0.19292729260924393 :0.1662352736231302 +them,:0.4461209595799576 them:0.170804005826803 France:0.14732742489457237 him:0.12150097706355635 :0.11424663263511083 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.4744046701425123 all:0.22338812567519192 to:0.1274395962970766 and:0.0904319057023041 :0.08433570218291515 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +country:0.4122695910822943 people:0.18420310486391256 population:0.14570648529756158 community:0.1412079862641724 :0.11661283249205917 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.39524484607970733 10:0.18580764486445345 11:0.17886712657156692 ten:0.12146216397010853 :0.11861821851416385 +was:0.38585504823335554 is:0.249097393593802 had:0.2010704649081898 saw:0.08702013394434917 :0.0769569593203034 +and:0.32664049317159066 it:0.26742749324650283 he:0.20021005020441254 there:0.11212973271154034 :0.09359223066595353 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +low:0.2839502623836897 reasonable:0.27598744118401713 moderate:0.18978830784908882 high:0.14458466798607345 :0.10568932059713067 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.31285300507947983 which:0.2399616372297918 who:0.22151708759114566 it:0.129562627935367 :0.0961056421642159 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.23642286520489467 to:0.2256338845931212 before:0.19327139265563933 by:0.18114569130053304 :0.1635261662458117 +time:0.39807397614510825 said:0.29500832188800014 day:0.10948629039075249 last:0.10440159557224948 :0.09302981600388958 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +went:0.4012347130635659 got:0.2180268884701884 ran:0.14536541440899525 carried:0.11775924278236101 :0.11761374127488941 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +enabled:0.2602111500509902 made:0.2012325704532875 compelled:0.18264231241504464 brought:0.1810601388582118 :0.1748538282224659 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.7441763700165185 time:0.08474219298994062 person:0.06653520851807858 order:0.05264784115833869 :0.051898387317123484 +be:0.5697722619497669 remain:0.12672583015231645 so:0.1104513196524496 bo:0.09977678066384192 :0.09327380758162508 +according:0.3473322961338355 and:0.3108405300189832 as:0.15346252500914567 owing:0.1029805409828157 :0.08538410785521984 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +state:0.36581514369675394 latter:0.18939875075789184 time:0.16309327563306716 people:0.14116391662097152 :0.14052891329131556 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.33649601782069855 engaged:0.27741125290338137 placed:0.15496249722535935 found:0.127012770473925 :0.1041174615766357 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.3130296474336706 he:0.31120539277711146 I:0.17531792303371438 we:0.1269073066279321 :0.0735397301275714 +a:0.4663620325654505 the:0.4066294873557004 much:0.06019137199606787 inch:0.037966269743728 :0.02885083833905329 +the:0.877330971009717 its:0.03422755534897268 our:0.0329580349030115 tho:0.03285931238129667 :0.02262412635700213 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +.:0.46055210985241657 I:0.22608833202461615 would:0.12971670448774708 to:0.09219169051372791 :0.09145116312149215 +engaged:0.25702586496894847 made:0.21896952176304826 placed:0.2091973485765652 found:0.18092104883677196 :0.13388621585466606 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.4211079911049784 are:0.27146955779654647 was:0.1678552800306333 were:0.08134817747536692 :0.058218993592475045 +goods:0.27677687202109225 mills:0.20745582832803738 market:0.18206874832730824 and:0.16909326936049032 :0.16460528196307192 +not:0.5544033408208954 hereafter:0.17970441489967423 be:0.11991513466274217 safely:0.07458445758940188 :0.0713926520272864 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2253799920660815 payment:0.21064083453797872 day:0.20720044038896096 amount:0.17842669431229974 :0.1783520386946791 +and:0.40365409724198276 E:0.2935739324419342 ,:0.13500139217639595 Smith,:0.08578349222013355 :0.0819870859195536 +of:0.8496671288425459 in:0.07380209049070666 and:0.02988273091315026 to:0.024720160981906842 :0.021927888771690284 +hundred:0.2502767045823328 large:0.21688536435617353 man:0.20733062651268858 good:0.18723035529853752 :0.13827694925026754 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +shall:0.6190865370211224 to:0.21917196838858471 would:0.055724233592145435 may:0.05353260088978401 :0.05248466010836357 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +tween:0.3969698793858161 ing:0.33979301986362337 fore:0.11061090372744053 cause:0.09776461384410383 :0.054861583179016155 +now:0.3397150866326594 not:0.23384014546633738 situated:0.16031857120743634 made:0.13936289499483412 :0.12676330169873284 +part:0.5266344645094371 portion:0.16258591959127416 line:0.13379389712828924 boundary:0.12550457237127782 :0.05148114639972186 +War:0.25481078114391087 State:0.24757734174306176 Treasury:0.24448930250672374 Navy:0.22234485719655678 :0.0307777174097469 +who:0.5463644903915985 she:0.2076841584260448 and:0.12436280164255625 he:0.061373653528972005 :0.06021489601082839 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.3416119316805803 that:0.2770965023025837 which:0.24114041110127982 and:0.09790441813596261 :0.042246736779593744 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.3847203537933439 day:0.2722940194206343 date:0.1514943363126427 all:0.09631390718136446 :0.09517738329201458 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +knew:0.3295407842201399 did:0.2208065674854482 knows:0.1653746177950786 saw:0.14876029275898547 :0.13551773774034795 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.7563236007118754 through:0.1003629116773746 away.:0.06811204421844091 and:0.03970704011394332 :0.035494403278365734 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +night:0.3763552962327039 week:0.22388003274356325 year:0.2085918607763453 year,:0.09973245110561972 :0.09144035914176797 +way.:0.3812933062119401 time.:0.23498857217731162 condition.:0.15931915921123666 manner.:0.14414246620270627 :0.08025649619680535 +total:0.3896207105883503 market:0.22961634976203088 average:0.18753524675207606 great:0.12472765748256355 :0.06850003541497923 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4527615237638839 a:0.15143733161333897 to:0.1500867513936728 the:0.12707971139141302 :0.11863468183769123 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +pres-:0.816293490490059 the:0.09457812313524286 a:0.04278215884682361 n:0.02503846174391114 :0.02130776578396359 +him:0.35143466105732724 them:0.22581453705143678 me:0.1641981392530122 want:0.1559293680867314 :0.10262329455149242 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +bill:0.2710904364157006 and:0.25163171812254265 I:0.2251464386676668 he:0.1548066544220608 :0.09732475237202926 +one.:0.4043096346896307 end.:0.16852740629686758 place.:0.16740606779190229 price.:0.15192693674414293 :0.10782995447745648 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6274299529594047 his:0.22453983277796272 a:0.0801254618995374 my:0.03429295208513243 :0.03361180027796255 +side.:0.509813062811402 sented:0.27155592392416744 sent:0.11538890497004468 served:0.07950940660061254 :0.023732701693773322 +terest:0.4998522339737485 crease:0.4075587059765514 formed:0.04951394798629473 duced:0.024230660236565713 :0.018844451826839827 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.29491114552748077 any:0.26047117910329526 this:0.23325374608015842 a:0.1550841730495056 :0.05627975623955986 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.40248208576746 secured:0.20845392427631085 and:0.1877702768549041 followed:0.12449427255911735 :0.07679944054220769 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.32040168297440197 government:0.2076175258439789 same:0.16874312876381944 city:0.15630119621138694 :0.14693646620641276 +hand,:0.5085564935083491 hand:0.129676656077052 things,:0.128588798227652 words,:0.12393774963221127 :0.10924030255473563 +public:0.36882271265569316 war:0.2196960704835032 first:0.18036959226451085 big:0.11688385547024378 :0.11422776912604896 +of:0.3993631679675232 in:0.29024944258219104 to:0.13486719212612644 with:0.08817575205921989 :0.08734444526493938 +son:0.6124616001240512 and:0.13457129599945963 Johnson:0.08801789190063414 center:0.08521097194631902 :0.0797382400295361 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.21573405114304003 time:0.21391617338348348 any:0.212209627528977 him,:0.20579815727544012 :0.15234199066905946 +be:0.7801464997290475 been:0.10646453275741591 bo:0.052373313440586336 only:0.040046926208663965 :0.020968727864286475 +to:0.6915670004658772 not:0.17761782214879324 now:0.055446049461517925 only:0.0419682264561951 :0.03340090146761654 +had:0.6667630400855167 been:0.18312299511373667 certainly:0.051681666712298 decided:0.05144866157585926 :0.046983636512589515 +have:0.5468681169013314 had:0.18197710621940122 be:0.10254963114940466 has:0.1006663538541864 :0.06793879187567639 +other:0.6744982709836806 of:0.20055707133129133 serious:0.046517970468532205 such:0.042304799820920856 :0.03612188739557507 +taken:0.36109347040665185 come:0.19660939518540227 made:0.17639900343595585 picked:0.1437022773329085 :0.12219585363908152 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.831557927577061 this:0.06822045910245446 tho:0.06477597556265464 tbe:0.021331738203123896 :0.014113899554706036 +on:0.5473839490499937 by:0.22996402975540126 and:0.10806035542190469 as:0.10229433612939808 :0.012297329643302232 +disease:0.24475887686825445 market:0.22055183293092415 storm:0.18915032887327163 weather:0.179663525534165 :0.16587543579338476 +order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +days:0.43768401854905453 years:0.22243455859144015 remarks:0.1254215848023768 weeks:0.1097030387272988 :0.10475679932982992 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +I:0.45437123876103874 you:0.26125493758761237 we:0.13223510108409078 they:0.08575952730053915 :0.06637919526671884 +the:0.738538644729191 his:0.14445328942664346 my:0.0485431269818128 their:0.03757030969986551 :0.03089462916248727 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +on:0.3579199041607406 in:0.325445134101138 of:0.11845318625949824 at:0.1152291421435303 :0.08295263333509285 +side.:0.28876604409095 way.:0.2762164626943271 day.:0.1529968612955494 hand.:0.14201604538944657 :0.1400045865297269 +right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 +able:0.40678286427927557 allowed:0.16837189371372713 made:0.16004441386181978 used:0.13387521084376586 :0.13092561730141164 +and:0.4637715680764153 for:0.22750371340903827 keeps:0.11817057890392221 in:0.1052653500871159 :0.08528878952350838 +we:0.3300170198537396 would:0.2709819237106662 will:0.19882885776241474 to:0.11088577969919505 :0.08928641897398423 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +he:0.528762927716568 they:0.19171831984925033 she:0.13356016969197412 I:0.09053910399403461 :0.055419478748173025 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4447042470000353 with:0.16998446338896783 but:0.1538379270696456 which:0.12260939627545689 :0.10886396626589452 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +an:0.5112705295417375 the:0.20736744136707952 too:0.13068344123375303 very:0.1200867390595078 :0.03059184879792212 +to:0.3954195669589446 for:0.2908070669836381 that:0.17119591749462976 when:0.0790664310619522 :0.06351101750083549 +time:0.3119106609737767 moment:0.2675292502635207 day:0.14897294722368723 period:0.13806279021329423 :0.1335243513257213 +the:0.3708381250694438 in:0.2274891172298111 a:0.1717638120132631 next:0.12413255232636282 :0.10577639336111927 +the:0.729467019990142 all:0.07049956702655323 and:0.07038330608205462 its:0.0667567272622825 :0.06289337963896774 +and:0.3947026840567419 are:0.2180509092230679 planted:0.17043825252885875 were:0.11654376819971606 :0.10026438599161527 +war.:0.6368758368566486 people.:0.12505336855741195 government.:0.12382058739054702 money.:0.0596789018456925 :0.0545713053497 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +subject:0.333280974567875 amount:0.22420568056868115 thing:0.20154424178055777 country:0.13191390941471148 :0.10905519366817462 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.34071185907621837 know:0.2319694253721847 see:0.20275886387474815 marry:0.11253834076617128 :0.11202151091067755 +and:0.3650774577391216 in:0.21409156352703873 for:0.1801654829035395 to:0.13129792602332943 :0.1093675698069708 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8020800310339099 for:0.06355357686630023 or:0.05704810018309047 with:0.041200325804789946 :0.03611796611190931 +people:0.2898840640509074 I:0.2844648013204839 only:0.2290818458142747 earnest:0.099375138071393 :0.09719415074294091 +result:0.24281601955784213 number:0.22925850381580123 people:0.1822410601220826 amount:0.1818487372336084 :0.16383567927066556 +amount:0.21089536885370955 purpose:0.20672887924322614 sum:0.200756999517708 day:0.19387534665233802 :0.18774340573301843 +I:0.3712171594413836 it:0.3479841350844726 it.:0.10768002429647493 exists:0.09489279932957387 :0.07822588184809501 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +than:0.27445805819303637 be-:0.25923873529640945 money:0.19323283347793366 time:0.1682203245489624 :0.104850048483658 +which:0.3304759042270243 men:0.19938921258336556 these:0.18551470984389812 them:0.18129380047004448 :0.10332637287566761 +the:0.9080924236529058 his:0.03408608655355794 tho:0.02599912039295981 tbe:0.016149104106423177 :0.01567326529415326 +there:0.45212288526297484 it:0.23980448778385546 he:0.18130303265465475 It:0.06908822592004339 :0.05768136837847147 +the:0.5042001276063923 his:0.30763676556703506 human:0.09516704365976413 a:0.04750976725864495 :0.045486295908163596 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +things:0.3710676464608388 men:0.2189554565173599 people:0.15795916805917548 facts:0.1343550377680285 :0.11766269119459732 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7306343315920144 par-:0.1897039196255916 coun-:0.02897948375089242 par:0.028259145978654948 :0.022423119052846493 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.24420108111665453 found:0.22632870365778782 be:0.20859886094655714 been:0.16421563847124196 :0.15665571580775856 +office:0.30415755602034067 time:0.26768201526389296 date:0.17005313916874165 same:0.1320309962537506 :0.1260762932932741 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.5415905184764669 of:0.1257371680314652 take:0.12232832826596939 make:0.11590789982152223 :0.09443608540457618 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 +that:0.36095179965867075 until:0.21747119696907885 at:0.1727448531832732 in:0.13092695628948295 :0.11790519389949417 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Liber:0.3432798448866101 Charles:0.21972000335993536 the:0.19061365657071705 said:0.15313898892908376 :0.09324750625365381 +C,:0.3509404365916144 Smith:0.1811873184467022 C:0.17762138821357967 ,:0.1588285953605596 :0.1314222613875442 +went:0.40273072060838533 proceeded:0.24152558091377294 began:0.12616285111338477 came:0.12597834904268773 :0.10360249832176938 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.2779901826267672 arrested:0.19980263295671252 born:0.1868817776721978 made,:0.17161346003385894 :0.16371194671046363 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.279639721002356 then:0.23171802833499192 wife:0.16656440492018137 it:0.16412755858855746 :0.15795028715391318 +the:0.5910598325303059 a:0.16082463567877722 any:0.11918527492521308 our:0.10264577323758578 :0.026284483628118187 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +the:0.600700815110722 his:0.16547529602508632 my:0.09102737182321394 in:0.0731845761303367 :0.06961194091064107 +the:0.8197551773551011 a:0.09386226529516685 tho:0.03381272205894105 at:0.030874438731730618 :0.021695396559060453 +to:0.4460233350703535 shall:0.16690341670909187 will:0.1567224457837305 who:0.1304931460528854 :0.09985765638393872 +been:0.2617572464191035 made:0.22823278566478852 come:0.20429536100632267 gone:0.17922235903234837 :0.1264922478774368 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.5420496646648469 be:0.194483009025997 was:0.10485859752103482 do:0.08710704408573164 :0.07150168470238939 +United:0.9823903122384878 Southern:0.008335323756619861 Confederate:0.003652086607621244 other:0.0034789154161813493 :0.002143361981089876 +at:0.6201310292583146 to:0.15024522854619043 and:0.09720373654036026 from:0.08619767820624336 :0.04622232744889155 +that:0.46952312267874013 it:0.16299867797071896 impossible:0.13077432195316221 himself:0.12558134238220267 :0.11112253501517597 +made:0.35521071629696976 foreclosed:0.24398410990080924 done:0.14244664034900092 paid:0.14139776831955897 :0.11696076513366108 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.47539359292707445 this:0.20320848966553226 order:0.12962220410386613 it:0.10504068029259625 :0.08673503301093101 +people:0.478692893574672 White:0.20667808541662977 I:0.13460782513151223 men:0.0967437476740218 :0.08327744820316431 +in:0.6470996517506538 to:0.1429446570947429 the:0.13160027822315074 In:0.044439845262763185 :0.03391556766868931 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +goods:0.39327219622186504 weather:0.2293475877984874 and:0.14520995856401284 it:0.13060697835696014 :0.10156327905867456 +of:0.4978704778281814 an-:0.2613006741342724 for:0.10029482554214635 and:0.07106425701316045 :0.06946976548223953 +political:0.36370336754223537 general:0.2332857444423064 similar:0.15054983862599397 peculiar:0.12927135450091756 :0.1231896948885467 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.41662388110466797 point:0.16807091662258078 change:0.16004910728055066 part:0.13649054296501914 :0.11876555202718136 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.9878101268694622 lo:0.0066837699614721744 and:0.0034650647407052215 te:0.001398814593009414 :0.0006422238353511106 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.8152491814163119 President,:0.06197743017920103 Bryan:0.06196123910436753 Cleveland:0.0309003526973878 :0.029911796602731775 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +plate:0.45063909166248073 y:0.1833612968992641 box:0.1622869745781075 roof:0.10712014994778699 :0.09659248691236066 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.9260421002911544 that:0.031465228129624 when:0.017437609506639307 aa:0.012644403826187449 :0.012410658246394798 +had:0.3931431523728429 has:0.29463356361784293 was:0.24465406139509038 never:0.040157021820858216 :0.027412200793365586 +a:0.34472486278752507 sufficient:0.19493311131522728 the:0.16083906426247543 in:0.15502026849835332 :0.144482693136419 +to:0.38190023975302784 will:0.3501969097798573 would:0.12681420361617723 may:0.07768653020490279 :0.0634021166460348 +up:0.2888798783339719 up,:0.21896849310947852 was,:0.18311077844821969 ;:0.15755012301283172 :0.15149072709549827 +hundred:0.8577904117820284 year,:0.04048115438049983 year:0.03727109210214192 side,:0.03399877949254926 :0.030458562242780485 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.8274272198040612 in:0.08847807726783381 with:0.045200946223822834 for:0.02316411543539289 :0.015729641268889146 +be-:0.4831676233669561 be¬:0.17768451026428225 be­:0.17116635033400607 the:0.09261393255676 :0.07536758347799542 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.9862235438622813 longer:0.004332841303405687 shall:0.003998680330502351 until:0.002733223985511589 :0.0027117105182989467 +shall:0.36060070522705717 will:0.23454270953859246 to:0.2154289186870771 may:0.10698706371758906 :0.08244060282968424 +A:0.5125002850207185 Davis:0.37173196838064343 and:0.05184374717715285 W.:0.03310213645805985 :0.03082186296342537 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +street:0.2568439582687722 street;:0.2517196982134714 street,:0.2279144420216144 and:0.14582138225398047 :0.1177005192421614 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4351665714814142 any:0.1775339623778506 of:0.16523259714024646 where:0.12672878059268153 :0.09533808840780728 +up:0.32855145100776517 down:0.25956268797640375 them:0.16438588608557175 out:0.1586999464159495 :0.08880002851430976 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +the:0.45209821607351336 a:0.31510013257747577 this:0.09046527707371801 his:0.08073255470353005 :0.0616038195717628 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.3962248791403346 given:0.16330583264340004 followed:0.15945010195568401 taken:0.1560638116651507 :0.1249553745954307 +think:0.2643269991964159 when:0.23508549459081157 as:0.23058949449011942 make:0.14214214695928198 :0.12785586476337113 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9102619901911598 tho:0.02879259351445675 a:0.028591218079342492 in:0.021588462160111708 :0.010765736054929028 +was:0.30874433287249375 is:0.2152237838646708 soon:0.19299759692203558 regarded:0.18514840603024896 :0.09788588031055079 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +than:0.7082365650632553 world.:0.08258215164451164 that:0.07176126856933929 one.:0.0708892696074975 :0.06653074511539646 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.913653848852944 in:0.03337139138723004 ot:0.021590428457488816 ol:0.01691555229744121 :0.01446877900489597 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.6381077436551393 woman:0.11910080998509599 party:0.0877489647680512 boy:0.07890275948302311 :0.07613972210869027 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.30969218787573355 went:0.2060561589075979 bids:0.1901281353637579 taxes:0.16872718305536724 :0.1253963347975434 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +go:0.409634576180319 come:0.1820413690832247 him:0.15491679222342905 try:0.12769469573402084 :0.12571256677900647 +active:0.3006540449709395 money:0.2889034479139488 fully:0.1508212127064252 men:0.14274427653911315 :0.11687701786957343 +made:0.5724820533685476 done:0.13493670522284365 given:0.11859696023873191 taken:0.08936843723916216 :0.08461584393071463 +he:0.39270491224520016 they:0.27842083345873386 I:0.13157390953732842 we:0.11388492524294111 :0.08341541951579637 +where:0.30389978996537786 which:0.22457249101665383 and:0.222719081101463 but:0.16975314486019052 :0.07905549305631487 +of:0.5299022309362571 in:0.2860190855114179 on:0.09998536208647303 at:0.049720000583045085 :0.034373320882807014 +up:0.2810069007013484 him:0.27823459234476927 them:0.15145490399494135 us:0.1464823653905562 :0.1428212375683847 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Court:0.9314405831351488 Attorney:0.02239731680752151 Commissioners:0.020050173470491615 court:0.013230401636661396 :0.012881524950176575 +he:0.3717480207066242 mortgage:0.3571410194296957 it:0.10908461709351759 that:0.08587344715093662 :0.07615289561922568 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7886879872837411 no:0.068177423578992 pleasure:0.06586682514757038 a:0.03947862826750582 :0.03778913572219066 +military:0.29184478421472376 moral:0.28738694754188293 naval:0.2821686578569677 physical:0.06966581603368938 :0.06893379435273632 +give:0.43322207004404584 afford:0.2760757100263372 need:0.10625661554656578 find:0.0963694634169576 :0.08807614096609373 +to:0.4073880943697012 on:0.21857146110445475 into:0.2184289204417434 through:0.09383024953492747 :0.06178127454917329 +it:0.2590025935474426 we:0.25847396466714606 and:0.20073788747024582 which:0.172967322083878 :0.10881823223128749 +the:0.8531179519172708 tbe:0.08085193905719322 tho:0.032022481583711335 ihe:0.018631347116934927 :0.015376280324889779 +the:0.9048324236612565 tho:0.038812944704227616 them.:0.025736237877592084 General:0.017167787925990555 :0.013450605830933252 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +striking:0.3291884306821683 man:0.27190350241857636 cry:0.14942351225126718 strike:0.13582626258331673 :0.11365829206467144 +and:0.37840011369317195 but:0.31332204999728824 and,:0.15179478079361738 that:0.08873390119830557 :0.0677491543176168 +of:0.6023518366926425 to:0.14314629692377298 and:0.10919545880815705 for:0.07629181203374963 :0.06901459554167781 +up:0.2888798783339719 up,:0.21896849310947852 was,:0.18311077844821969 ;:0.15755012301283172 :0.15149072709549827 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +the:0.6072909312629697 a:0.26053191877148896 his:0.048445007525773916 is:0.04575082749676811 :0.037981314942999334 +wife,:0.5732828145618288 friends,:0.13750986678990737 friends:0.10382662772954125 wife:0.0955798120996124 :0.08980087881911016 +a:0.6935112887237946 the:0.10454695615628647 no:0.09082027195602434 been:0.07393556146231639 :0.03718592170157805 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.8449603279207167 was:0.05456661936654427 Is:0.045503581615769145 has:0.033464457059401195 :0.021505014037568874 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.23392129222355124 is:0.21241137730145046 as:0.20899150579383707 that:0.173181238442042 :0.17149458623911915 +it:0.3252567962673893 he:0.22167879426213422 I:0.19280478321170005 and:0.1360263960292949 :0.12423323022948159 +wish:0.2139351032775634 went:0.21068230681553277 have:0.20700734941190393 want:0.20401605424950528 :0.16435918624549464 +not:0.33160912508025064 be:0.2518516720742311 see:0.19014098400555335 have:0.11470504346045704 :0.11169317537950782 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +half:0.38609907028655294 as:0.2569453499811118 to:0.20137892049949827 by:0.07934042508265436 :0.07623623415018276 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8522490215303375 a:0.0740867962227813 tho:0.039386660553390795 this:0.017794227840841774 :0.016483293852648562 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time.:0.24956044477216166 place.:0.22153782821349471 day.:0.19288474070503564 body.:0.1716279490252663 :0.16438903728404178 +well:0.507440036807576 soon:0.22371580522050646 far:0.1680701560236044 much:0.06808586124717403 :0.03268814070113902 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.3172132515378427 due:0.24133849395393464 made,:0.1740560679210998 done,:0.1432970708610888 :0.124095115726034 +days:0.5612268732092776 miles:0.2820725273210341 feet:0.10274339079407879 years:0.04447991071453224 :0.00947729796107719 +of:0.8962189477868692 in:0.043535560388970204 over:0.037301145278190576 In:0.011873688613576454 :0.011070657932393467 +the:0.7757849781232456 any:0.07874948285246225 a:0.060700661830589274 tho:0.04571494827435892 :0.03904992891934378 +go:0.29827220790924364 be:0.29073438400608764 not:0.1532582368992466 come:0.15201890421369413 :0.10571626697172794 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +for:0.2591383955516667 was:0.22376889496482827 that:0.2112797729054364 is:0.1583834385448868 :0.14742949803318195 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +see:0.6959571250744978 be:0.12929739890760827 a:0.11281259988075304 the:0.04351485564728464 :0.018418020489856232 +the:0.4157070387028795 at:0.20122535003025688 in:0.17911313846984542 of:0.10770515330398975 :0.09624931949302837 +the:0.8630893465377998 said:0.03777226212782514 Missouri:0.03601518429520228 tho:0.03346409915095873 :0.029659107888214124 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +tended:0.4077920769239289 tract:0.17303744168722365 tained:0.16161804298791774 tired:0.13037372894089697 :0.12717870946003285 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.2478390582279805 r:0.21339602028184623 go:0.19478620086737167 her:0.17877398965938687 :0.16520473096341465 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +go:0.409634576180319 come:0.1820413690832247 him:0.15491679222342905 try:0.12769469573402084 :0.12571256677900647 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +prior:0.6903215185866691 ago:0.16429295161845814 previous:0.08902052183186751 ago,:0.03445642246341674 :0.021908585499588528 +go:0.37296565361585515 enter:0.23364910752029164 get:0.19689958686849707 put:0.13563592133593708 :0.060849730659418996 +the:0.8771382426507347 his:0.03896238685097286 tho:0.036488057694484724 an:0.02453207010201619 :0.022879242701791463 +people:0.344590370213163 man:0.28270613457884597 men:0.24749205800916033 person:0.07206840613674627 :0.05314303106208454 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +duty:0.2972736413349692 way:0.1915189908786245 work:0.18759579518604552 home:0.16477513170539318 :0.15883644089496765 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4348905287360003 holding:0.1933507201784512 by:0.1543942942133486 as:0.15325445599035756 :0.06411000088184246 +from:0.5422553531904459 with:0.2566835480210408 in:0.07355705835022162 to:0.06521247152240169 :0.06229156891588991 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7338567320107491 an:0.14483796914781244 in:0.046898984455206134 little:0.03801106295293134 :0.036395251433300996 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3069627526434421 in:0.22770839013495386 know:0.17154957325221548 at:0.14909574183327737 :0.14468354213611126 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.40656285477936704 to:0.2738439903921423 for:0.1778113206466376 in:0.07756427243117477 :0.06421756175067825 +league:0.5128423269920159 Red:0.17161390671388027 college:0.13535118673747695 home:0.11301209759772063 :0.06718048195890619 +gone:0.3091318839128925 been:0.23491721662672746 passed:0.17927759365482993 turned:0.14862782161152763 :0.12804548419402254 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +cars:0.5473557372064667 machinery:0.23660213091460516 with:0.07437282222863417 owing:0.07285106832338353 :0.06881824132691051 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.29155171046212 would:0.2847451715457281 to:0.20709088455785488 can:0.13935422040877876 :0.07725801302551827 +per:0.7231127582651145 fifty:0.12342278211295676 and:0.08513042379958129 worth:0.03913931013326208 :0.02919472568908535 +A:0.672181121887171 T:0.11185934473803308 W:0.10056267952964726 I:0.06245530124127338 :0.05294155260387523 +of:0.7901173920562711 in:0.06976606995026112 to:0.058856987513840345 for:0.04436855137611206 :0.03689099910351538 +many:0.2757713243682383 now:0.20047412094043904 thousands:0.19206333264644018 some:0.18325451092066597 :0.14843671112421641 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +going:0.25764174126496203 unable:0.2096599122249072 not:0.20500623635875526 able:0.1814447163183151 :0.14624739383306046 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +the:0.3976273235445376 a:0.323450881841282 his:0.1798393146088407 their:0.06465632156715742 :0.03442615843818236 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +own.:0.26859300902371813 work.:0.262391264531062 hands.:0.17683003345165318 country.:0.1585148512514293 :0.13367084174213742 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3453241715000359 in:0.29078010471106375 that:0.14516943181503786 of:0.13060794956887573 :0.08811834240498681 +of:0.6112188405049543 on:0.1392895779863088 in:0.10304938927070384 and:0.09798748197522907 :0.0484547102628039 +he:0.30085160961698687 it:0.21740601102461524 I:0.18604889899239035 and:0.1609348997782252 :0.13475858058778245 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +The:0.8703419650303273 In:0.08141214996247315 Tho:0.02872810810245847 Its:0.01202790599176592 :0.007489870912975256 +favor:0.4286606174776465 front:0.16663700046522184 spite:0.14436924942848997 one:0.14085741126542772 :0.11947572136321394 +of:0.508344954001931 is:0.272822567922457 in:0.08096443471838943 was:0.06980616863527317 :0.06806187472194936 +our:0.35262679453154616 free:0.33041329887243115 the:0.1695805644733674 and:0.07744367919746424 :0.0699356629251911 +of:0.8305111462290449 and:0.06052213196732132 to:0.046920063057965436 with:0.031465188034092435 :0.030581470711575853 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.34300829041780967 believe:0.17977557755370724 and:0.17268407780347222 know:0.15416020256953747 :0.15037185165547354 +be:0.8438132152831794 have:0.08428999787146912 bo:0.03866766202425344 not:0.019438518969248336 :0.013790605851849566 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4652609774130261 an:0.21839376172444427 the:0.120908422479931 to:0.11685168693532114 :0.07858515144727753 +went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 +not.:0.35665269018220225 not:0.22695608921243454 now.:0.16077456740605564 done.:0.14213930546186562 :0.11347734773744189 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +even:0.2540628439574588 either:0.20944225621158338 made:0.19985912497512084 destroyed:0.1911585323888773 :0.14547724246695967 +the:0.8908107603177087 its:0.03132890883553376 their:0.031209755067029672 tho:0.03063125193760187 :0.016019323842125885 +them.:0.8960957881442803 us.:0.05979234271212008 themselves.:0.01948689774358516 them:0.014755523328455552 :0.00986944807155883 +to:0.43256334414307346 should:0.20234222149678388 will:0.14197801125076748 I:0.1277129856791099 :0.09540343743026536 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +free:0.24859791767391443 people:0.22214004514879504 road:0.19640848324651725 water:0.1670105641827968 :0.16584298974797645 +as:0.32430358654933394 very:0.24340064740852613 pretty:0.17206088774888442 so:0.16706640121328906 :0.09316847707996657 +people:0.26817505621003856 man:0.22010859150067927 bill:0.19086816596948514 farmer:0.16085203719390448 :0.15999614912589266 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +date:0.6356125004319874 one:0.12991370957532497 more:0.10932331837531582 those:0.0780145561197848 :0.04713591549758696 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8961994168133844 tho:0.05284387980440516 tbe:0.021075667626220946 a:0.01582555864790026 :0.01405547710808914 +bound:0.46071550169446435 -:0.2039304032610729 ¬:0.12412395912236558 I:0.11030898306284109 :0.10092115285925608 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +so:0.6070929904872829 not:0.16301915068834755 thus:0.08316873239763119 too:0.07779806267724187 :0.06892106374949634 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +children:0.31651071168652706 rights:0.2552385312289744 work:0.18017670141219716 way:0.13776287015920022 :0.11031118551310126 +looked:0.35937940400097623 something:0.24163180848961344 a:0.1426422215313839 would:0.13377519279440456 :0.12257137318362185 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.5324037446632263 made:0.1638393939369306 taken:0.114876507011248 done:0.09709786375684054 :0.09178249063175473 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +-:0.415696595032512 la:0.32439555276603316 f:0.11705139811047992 e:0.07560058883496862 :0.06725586525600634 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.3526329584135661 from:0.24414224891934408 in:0.22212856257808344 and:0.09168005517221256 :0.08941617491679368 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6464232533523863 and:0.1442289325649793 the:0.08242246985454903 for:0.08094517796307192 :0.045980166265013535 +which:0.27373181542128633 that:0.20864543739718006 say:0.1920316293263952 whom:0.18661564805931516 :0.13897546979582326 +law.:0.4171617750176224 him:0.18034172229511267 law:0.1361747966588504 them.:0.13467562727756233 :0.131646078750852 +make:0.4796443371060402 any:0.16304897252611703 take:0.14700062233364122 be:0.11976105109642601 :0.09054501693777561 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.41238398847822993 in:0.24866855373879057 for:0.1601497761090428 on:0.09116661222337703 :0.08763106945055957 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.6596607693794239 you:0.10503069537376464 away:0.08542666049120252 so:0.07772114718918521 :0.0721607275664238 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.3967791274922993 probably:0.3730426961669821 always:0.1029376047962713 still:0.07681173546259627 :0.050428836081850954 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.6733560530296041 on:0.14542256979333917 In:0.13835081230850285 at:0.021833733904878094 :0.021036830963675795 +open:0.25297199108862 the:0.23323862843707957 not:0.21893961340912507 a:0.14815044364852129 :0.14669932341665398 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8348408308543473 his:0.07587357810575268 tho:0.04116988517626417 a:0.024075078928622883 :0.02404062693501281 +they:0.5148898128280488 there:0.2483628990712214 we:0.16275211061956227 you:0.06003634860230726 :0.01395882887886023 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +much:0.4747377817002089 day:0.15884568732714907 best:0.14455649174629648 few:0.11286922476895608 :0.10899081445738946 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.5705524400528108 always:0.17849052750676295 as:0.1113482501959561 so:0.07016331862410335 :0.06944546362036678 +first:0.3562839865075 next:0.19504402169703797 1st:0.1798787431117431 same:0.14931347639769574 :0.11947977228602319 +of:0.576094291338531 in:0.21144426567410377 for:0.08254254096410044 and:0.06508153500804677 :0.06483736701521804 +the:0.6971723210652698 a:0.18074422482487504 his:0.058221701912546324 our:0.03686793885570171 :0.026993813341607026 +the:0.7095262666729701 a:0.10067932567498529 his:0.09693987104601656 her:0.04923992776227631 :0.04361460884375168 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.5702905698146158 as:0.1599372664871153 to:0.10727281404362382 in:0.08422994864545358 :0.0782694010091916 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +good:0.33579637277336133 this:0.2654875119153272 their:0.1607692018380063 my:0.14122995114130424 :0.09671696233200094 +through:0.30880003580305904 and:0.21290687088880617 fired:0.21087792281770873 in:0.13545777600837133 :0.1319573944820547 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +beginning,:0.3583712457083486 am:0.20635135082699924 west,:0.17215891523248011 can:0.14310321873956683 :0.12001526949260521 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.802413486822937 as:0.0683143890678942 is:0.06367216737407956 has:0.044347397494953145 :0.021252559240136172 +chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +England,:0.2965423541507361 leave:0.23126874000114517 make:0.20191863806388413 that:0.15609920411934447 :0.11417106366489 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7291927254479973 to:0.07946626752414114 for:0.07688322660136918 and:0.060800556832691574 :0.053657223593800846 +of:0.9225860023524053 two:0.020568227969138805 former:0.01998127047258565 for:0.01937244057283732 :0.017492058633032815 +going:0.25764174126496203 unable:0.2096599122249072 not:0.20500623635875526 able:0.1814447163183151 :0.14624739383306046 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +year:0.4517222831007265 week:0.19614542827693418 all:0.15153339568897825 and:0.1046148355890269 :0.09598405734433417 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +who:0.5981137844166051 and:0.27186871344839414 he:0.04989593641764431 women:0.04135378234651665 :0.03876778337083987 +find:0.2671257428808093 be:0.2509644195696817 take:0.19623697928682296 make:0.14454157953705316 :0.1411312787256328 +for:0.3809662827916847 and:0.35979774145034576 to:0.13345828711973745 speech:0.06648796101891101 :0.05928972761932106 +the:0.40982419011112187 so:0.24578543302406217 their:0.12629591385335473 his:0.12425306913077395 :0.09384139388068732 +he:0.46452695402959804 they:0.2460480493509285 she:0.13177290145671913 I:0.08206163951839913 :0.0755904556443551 +the:0.5491324469684146 a:0.18803546123456188 to:0.09521037394338719 then:0.08986838278403059 :0.07775333506960569 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5668592514324786 or:0.2386025847746832 for:0.07407724959769336 and:0.07089509382984606 :0.04956582036529875 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.31504723471043605 that:0.2514817621526051 as:0.17029801424269364 in:0.1654121065673975 :0.09776088232686747 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.34000821333528863 through:0.3377707254381382 compared:0.12454252748178897 and,:0.09972410088027447 :0.09795443286450985 +and:0.35718700498867345 is:0.2132894206506645 so:0.1670624306786097 well:0.1390090953839058 :0.12345204829814652 +hour:0.27792223753527034 hour,:0.19792389143497674 acre,:0.18544513977624716 old:0.1720240078065667 :0.1666847234469391 +and:0.5347482635240743 for:0.1263736598547076 to:0.12546865763083961 with:0.12030027584541769 :0.09310914314496074 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +United:0.969261228308657 Southern:0.013264520270367659 other:0.007277028585831077 Confederate:0.006119431058271475 :0.004077791776872657 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5099280403274383 any:0.18406771895068075 or:0.14957826565838142 an:0.11790753648452781 :0.03851843857897169 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8652111170475869 the:0.07524090610511444 free:0.02513813014039649 and:0.01965941942813041 :0.014750427278771645 +an:0.9040084256175962 other:0.04023836985336615 banking:0.02335949410534651 that:0.018522154148801026 :0.013871556274890113 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7937556099942062 its:0.07621812294035679 their:0.04608176394528829 a:0.04445690656742005 :0.03948759655272858 +very:0.38827033040456294 greatest:0.248958589966338 other:0.12730729979092575 great:0.11871046199120819 :0.11675331784696513 +is:0.3413887605419314 and:0.19965590104052322 or:0.18655047590209076 was:0.1678774461958748 :0.10452741631957992 +all:0.5264325015654913 that:0.14381741382896052 which:0.1400491162635937 him:0.11050669539653951 :0.07919427294541487 +to:0.4043263780632911 of:0.31540730102300935 and:0.11120281360953246 wide,:0.09660554174389853 :0.07245796556026839 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9665237140033403 by:0.010031870243737476 ot:0.00862377890293793 set:0.007947342027510924 :0.006873294822473452 +York.:0.9438356858879908 York:0.03505108049258921 Orleans:0.010842111168976412 England:0.005243809376348539 :0.005027313074094971 +his:0.4481095466855596 the:0.20046674646343735 a:0.14111835854685795 their:0.10891704474082459 :0.10138830356332051 +described:0.26542229552760266 soon:0.23356576054097475 well:0.22983095917758292 so:0.15198020025961947 :0.11920078449422015 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.6398764016050127 in:0.2327502776540724 at:0.05040977336611499 and:0.04420869798981539 :0.032754849384984554 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.24268545488133128 we:0.24096860158489378 they:0.23539182831654998 he:0.17414340158650968 :0.10681071363071527 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.22369456742961225 amount:0.20773323631999405 day:0.2060255143945402 part:0.18175789781806492 :0.18078878403778864 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +such:0.4800686865686584 effect:0.20330879952828676 that:0.10972017703001899 by:0.10965499670381079 :0.09724734016922489 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +water:0.5462490093264714 water,:0.33976777177646034 air:0.04185179608521613 meat:0.03985162614082052 :0.032279796671031744 +said:0.41742798782678403 a:0.2759307139561991 the:0.2003190979061005 certain:0.05923902512154608 :0.047083175189370344 +an:0.35461834494256966 been:0.29044886515810764 lots:0.14846662624017817 a:0.10885096716520602 :0.09761519649393864 +the:0.7948408630186145 his:0.0784857517622669 these:0.04706337759456268 their:0.045321287639632425 :0.03428871998492342 +was:0.2805118302358149 not:0.2188638238973314 is:0.20255409453466686 are:0.15120269803630731 :0.14686755329587967 +they:0.6382774966838255 we:0.19718405307235704 there:0.08386922131995972 you:0.07320676989162543 :0.0074624590322323 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +we:0.48851636888478406 I:0.4276134740705075 wo:0.035902156819050825 1:0.029013599663879716 :0.018954400561777933 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +of:0.4494041786808493 to:0.4283052173019691 by:0.047098853119464136 that:0.040377499399974176 :0.03481425149774326 +number:0.30398953664951567 part:0.19956296844739052 member:0.1868402923079783 copy:0.17968757827472964 :0.1299196243203859 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3987119044236749 in:0.24947521940430645 on:0.12209109432376605 for:0.12065767267684767 :0.10906410917140505 +chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.841826930084687 Bryan:0.06975374932908067 Roosevelt:0.034969448362432605 Sherman:0.026946795323932352 :0.026503076899867375 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +terms:0.3851799253769217 arrangements:0.2264207219922874 trade:0.14971561409027626 conditions:0.12189906569217497 :0.11678467284833981 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7260191575302699 was:0.15278876342558423 in:0.04554888845275362 and:0.03843390907977129 :0.03720928151162092 +of:0.2840747126245008 or:0.2729446146262182 and:0.1669336740360221 thousand:0.15187949892938082 :0.12416749978387812 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +and:0.31512476260037414 where:0.2412055778820356 that:0.21504932553882564 as:0.12136563621274842 :0.10725469776601632 +which:0.474154212378248 that:0.1564932532334921 they:0.12883581354319215 it:0.12062344040620392 :0.11989328043886377 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +born:0.27909499281399636 found:0.20874192851455553 made:0.19950402527668518 held:0.16262582102093442 :0.15003323237382857 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7074267598055957 a:0.12716292263385093 his:0.06259600046214973 this:0.06025087836832997 :0.04256343873007387 +days:0.6233367108302031 thousand:0.1569557935728644 cents:0.11024178271470819 two:0.06190823879513032 :0.047557474087093925 +of:0.7154907114595026 with:0.08356723283111903 to:0.08070680215306193 and:0.07209438020428942 :0.048140873352026985 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +based:0.48167024761002925 m:0.20651469587478877 and:0.1251029470969192 down:0.10136415750552502 :0.08534795191273786 +the:0.7177793521737214 a:0.1534121795261323 no:0.07317278749827848 great:0.028087285333464596 :0.027548395468403295 +of:0.5973640200173559 in:0.179485079005239 and:0.08726013263103588 that:0.08612228824351431 :0.04976848010285495 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +I:0.45016815143411243 They:0.2112678357094457 We:0.21045459601596148 He:0.0760074463428295 :0.052101970497650765 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.47704903740462057 a:0.4265126161208107 which:0.045134919787998294 one:0.027375517365742917 :0.02392790932082762 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sell:0.30280226671861676 be:0.2451117382724518 look:0.22976687892390676 meet:0.12830192880382135 :0.09401718728120333 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +much:0.5127043211481686 glad:0.19671110647773782 apt:0.14826356188455034 late:0.07611652254783244 :0.06620448794171076 +is:0.3262261543921464 and:0.2476810066704937 was:0.18149253312924885 be:0.12779184322451975 :0.11680846258359132 +subject:0.44850761715266935 important:0.17595989028526335 whole:0.15041721169699052 the:0.13012884349376827 :0.09498643737130842 +body:0.40677291995442283 de-:0.2208057336181198 snow:0.13793460369289018 man:0.11862891965187199 :0.11585782308269542 +which:0.36281545046678915 all:0.1833183118707048 that:0.15462327833388634 cover:0.1520190631087139 :0.14722389621990575 +of:0.8764080707114913 for:0.08285088161860707 in:0.018874484700798416 ot:0.012503836770279197 :0.009362726198824015 +of:0.47834575484138936 is:0.17850582673967857 for:0.17456131254780685 was:0.10069245145217771 :0.06789465441894758 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +to:0.8779898612149084 a:0.05608699680197396 and:0.04604664939253451 from:0.01154840857246523 :0.008328084018118014 +and:0.3540790910093607 to:0.1993914198948272 in:0.19368353542253436 the:0.16659647502877498 :0.08624947864450284 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.6517801698965139 shall:0.12363814946193652 or:0.11210119081948511 can:0.06414491162858332 :0.048335578193481187 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.46612373781288036 this:0.2553665667419666 my:0.14264970197716875 a:0.11521174969516658 :0.02064824377281779 +be:0.6802681086195382 have:0.23397962251753573 bo:0.045218214694424476 make:0.021212196834143892 :0.019321857334357814 +shall:0.5172139245434447 will:0.1968786733932238 to:0.18231157699579104 would:0.053174020185272924 :0.05042180488226774 +it:0.5385096418852592 he:0.24099375754556776 It:0.0785178729995436 which:0.07445815160626261 :0.06752057596336669 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +fact:0.47937756232303064 truth:0.24405748633628765 question:0.1675741304918259 result:0.07457368294067179 :0.034417137908184035 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +would:0.4641836697676292 will:0.27056022691492626 should:0.09484518601806241 could:0.09011624703153871 :0.08029467026784348 +are:0.31463010379207673 arrived:0.2088726911644116 look:0.19246053828151688 were:0.16455046002175652 :0.11948620674023823 +seen:0.2598702726712984 here:0.22235799970639847 made:0.2182207072703338 held:0.20008548829457187 :0.0994655320573974 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.33737323863282304 use:0.2109083100396215 said:0.17561093752822596 fact:0.14936583813304144 :0.1267416756662879 +right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.5019069546488455 was:0.15755395002482875 are:0.12773282482430048 a:0.11474188149569566 :0.09806438900632972 +of:0.4671911970623652 in:0.17770086549377945 and:0.15030550638312898 is:0.11129701099647638 :0.09350542006425008 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +filled:0.33952356035732695 covered:0.2509399637782936 connected:0.14375049291459188 met:0.13453030849834222 :0.13125567445144526 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +just:0.4378823313392636 known:0.21280537070159827 been:0.16526771490790987 taken:0.09723031951503588 :0.08681426353619234 +able:0.40678286427927557 allowed:0.16837189371372713 made:0.16004441386181978 used:0.13387521084376586 :0.13092561730141164 +and:0.43330418980582674 but:0.15313259146810207 as:0.1515451927928433 with:0.13648484439703937 :0.12553318153618848 +the:0.7257559650081732 will:0.09974820095848337 no:0.06343927160477428 would:0.056155464736281226 :0.05490109769228804 +of:0.6751714180434255 and:0.10285996968371476 over:0.07651523136978629 in:0.07317387819085862 :0.07227950271221481 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +other:0.4871980560683371 same:0.25587349552574595 first:0.12287733762265822 proper:0.06932051295890929 :0.06473059782434927 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +six:0.4550166915525807 three:0.2120830022223525 two:0.1378213424491993 twelve:0.1002606763017488 :0.0948182874741186 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6464117745802223 our:0.14764808566266907 a:0.11878209148131204 tho:0.0611040442613114 :0.02605400401448527 +of:0.8294412979207725 to:0.06409867697780347 in:0.05112219346704214 for:0.03465069073775421 :0.02068714089662782 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +in:0.5830169336355644 once:0.2500517822141805 In:0.0751779231507418 here:0.046943697134828925 :0.04480966386468441 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Union:0.25225720557056514 nearest:0.2495709048179786 Atlantic:0.23276728079899106 electric:0.17235080547401255 :0.09305380333845267 +make:0.3034363011558368 take:0.20557727392563568 keep:0.18383693365580323 get:0.16316149256965284 :0.14398799869307138 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.7639470751686241 they:0.08068047814804465 we:0.05647562477461819 will:0.055402535194323664 :0.043494286714389395 +the:0.9236729489691601 tho:0.03490104190150654 tbe:0.01616632722377251 its:0.015020186501234616 :0.010239495404326275 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.3221044081963326 he:0.2510697472185581 we:0.18685177766439232 it:0.12683913572862993 :0.113134931192087 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +set:0.4972858268072881 put:0.17365757655459918 went:0.1514248883865696 go:0.1147272742075036 :0.06290443404403953 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +lot,:0.6309160214422652 certain:0.13380943920148833 small:0.12142886012980965 lot:0.0637525510730899 :0.0500931281533468 +be:0.745077343036549 not:0.11481157822066469 as:0.049741426493991485 very:0.04963395048456333 :0.04073570176423155 +only:0.5105858821254092 bill:0.13826123653792333 people:0.13558306320986205 proposed:0.11060780096333137 :0.10496201716347402 +a:0.5591225466100411 the:0.22953729832775208 out:0.08024947467100776 on:0.07608449866112454 :0.05500618173007459 +order:0.3971025612628747 to:0.2213962652429609 which:0.150060570885664 this:0.13264882220913052 :0.09879178039936985 +that:0.30618612922125604 if:0.26265207929165835 there:0.163542444864124 is:0.1357807656914131 :0.13183858093154854 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.3359729944129841 it:0.30880479848729897 we:0.14280863379233677 he:0.13642546714981485 :0.07598810615756528 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4818383800774588 large:0.2594278370393422 small:0.1254643419740363 vast:0.07856615595275254 :0.05470328495641015 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +began:0.3362864575016465 proceeded:0.21647234861372924 more:0.19056014141142702 went:0.13674581328229737 :0.11993523919089981 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +at:0.25206296598693656 on:0.2501335551146999 in:0.20866625371243816 of:0.17510412125559013 :0.11403310393033504 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +property,:0.3349618721660154 property:0.3299888850816817 liberty:0.12698589873291544 estate:0.12230200847303778 :0.08576133554634958 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8305782448840535 to:0.1094206828442116 that:0.02238257463280761 from:0.019137744910655095 :0.01848075272827231 +whole:0.5973987809421875 entire:0.1841125856047583 surrounding:0.10027257737241846 other:0.06726338194515198 :0.0509526741354838 +out:0.41139775491180486 use:0.18167885505563286 some:0.15283337491952462 one:0.15131067672851697 :0.10277933838452066 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.39337065127017484 when:0.2436577372285483 if:0.1435115544366602 then:0.12776661242254575 :0.09169344464207098 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +quarter:0.5316187223239759 corner:0.4309953198259194 side:0.01926739081945107 part:0.012470722806314876 :0.005647844224338768 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.2519273326972084 not:0.2429270203128028 was:0.19027289489324578 that:0.1743908901176501 :0.14048186197909296 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +other:0.3641149602378628 principal:0.2133843528709556 great:0.17329671330094057 various:0.1254506082537976 :0.12375336533644335 +ready:0.36833748612590445 known:0.23462153777230071 attempted:0.14567592733312082 offered:0.12637454675922538 :0.12499050200944861 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Co.:0.4707606562962404 Co.,:0.24144406318621792 Ohio:0.1130263500029624 Company:0.09426355086710107 :0.08050537964747825 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6745087319061853 into:0.13943614245486013 under:0.07403393175623699 to:0.057215405857125506 :0.05480578802559224 +it:0.3140669146222644 they:0.24102134242915607 there:0.16187409967810254 he:0.15288449132689638 :0.1301531519435807 +o'clock,:0.5318592238887629 o'clock:0.29345480812546226 and:0.08163885675941401 o’clock:0.05144478399236255 :0.04160232723399801 +from:0.5418969797066674 of:0.17198681766613716 to:0.16389345981635442 in:0.09774412727696835 :0.024478615533872646 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4893136016636606 a:0.32918002825042897 this:0.13560946721752584 which:0.024219143443634964 :0.02167775942474962 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.24412672571957442 and:0.22972672443577352 is:0.21548263266958878 a:0.15774752534816772 :0.15291639182689565 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +few:0.9762953520690524 ten:0.00917370587423652 week:0.007420297266025401 dark:0.003855927592337654 :0.0032547171983480527 +the:0.5145271880713146 both:0.26572702212128135 their:0.08544959436007003 these:0.08347204046471267 :0.050824154982621265 +him:0.2763785448259629 them:0.22620151810266378 different:0.19794082888102144 her:0.155994116435636 :0.14348499175471577 +made:0.2865007563898702 given:0.18707095409125066 occupied:0.18029096520486088 taken:0.1750411775258742 :0.17109614678814403 +sure:0.32726318900043605 convinced:0.20045374971142055 confident:0.17966198205123035 satisfied:0.16205820466340556 :0.1305628745735075 +Fifth:0.34466993157470754 the:0.26614520785881357 Pennsylvania:0.13788735545222136 said:0.12622588510417082 :0.12507162001008662 +that:0.35697259855308877 and:0.2988685922191003 which:0.17760892019624805 it:0.1156159636439785 :0.050933925387584254 +Nevada,:0.6281549221446826 which:0.13944707714757248 California,:0.10840224576093067 being:0.0869284220910132 :0.037067332855801105 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +very:0.252309126560985 present:0.22429152655499665 same:0.19678499924727386 new:0.18112637117452027 :0.14548797646222422 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +soon:0.275543793791002 well:0.27387486560827035 known:0.17737110092296213 just:0.14424834119238059 :0.1289618984853851 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.3986980458593127 the:0.3494674527894401 all:0.09447636912787541 most:0.08649498934344982 :0.0708631428799218 +many:0.2611854226816431 some:0.2068042163042336 thousands:0.18044607942171062 capable:0.17975112455100817 :0.17181315704140457 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7309230775163745 that:0.10346016177106404 in:0.06815416166033017 to:0.056978875713877955 :0.04048372333835332 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7001668978104663 in:0.15470430583577802 from:0.06463336445142 for:0.04146024176994317 :0.039035190132392594 +of:0.6544567446762887 was:0.12442807951739702 in:0.09681839886142532 from:0.06257971670554799 :0.06171706023934082 +any:0.6653015811177871 in:0.14955308728093192 of:0.06683177244135236 by:0.059594126617232734 :0.05871943254269582 +virtue:0.5644179908974355 deed:0.15265949352544586 means:0.11526939737991859 one:0.10056603725510939 :0.06708708094209066 +had:0.312604746715835 was:0.2079875958180596 has:0.1853526870687794 having:0.16605565673443243 :0.12799931366289358 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.279639721002356 then:0.23171802833499192 wife:0.16656440492018137 it:0.16412755858855746 :0.15795028715391318 +made:0.4017282138091417 in:0.3535950953128626 for:0.09925339823720347 on:0.07606841843328932 :0.06935487420750304 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.25700009692971343 himself:0.24647576352710082 assigned:0.188934409313107 are:0.15580361035400908 :0.15178611987606966 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sons:0.4968713619823817 son:0.3886963792960968 I:0.0427048805222162 mission:0.040834083093621965 :0.030893295105683373 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.44332543380960043 to:0.1485174353659674 on:0.14667606068412553 with:0.14138252146960317 :0.12009854867070333 +brought:0.459224361280028 is:0.22128434664120872 or:0.12449993778288222 taken:0.10113995936819418 :0.09385139492768685 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.7497931668251158 was:0.09423619784652992 being:0.0578357912906161 be:0.050778668092049464 :0.047356175945688694 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +nothing:0.5605222476927079 anything:0.12595655732303504 enough:0.11138713885373397 that:0.10572245857107236 :0.09641159755945072 +now:0.420162188501115 all:0.23969168321237927 certain:0.1626575867625255 proud:0.0894493521074524 :0.08803918941652801 +Mr.:0.279639721002356 then:0.23171802833499192 wife:0.16656440492018137 it:0.16412755858855746 :0.15795028715391318 +industry:0.2959139913015496 trade:0.22728234165558545 corporation:0.18496135073537975 and:0.16289275563738387 :0.12894956067010135 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.9480095420245807 and:0.0278000402907469 who:0.011895908116260182 not:0.0076003120078633616 :0.004694197560548849 +its:0.4881480696288261 their:0.2730468422956671 the:0.10843319558454366 public:0.06668066677427034 :0.06369122571669272 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +matter:0.7077925945551056 doubt:0.14932576778862622 wonder:0.0701167874036618 telling:0.039828196509863696 :0.03293665374274273 +hour:0.27792223753527034 hour,:0.19792389143497674 acre,:0.18544513977624716 old:0.1720240078065667 :0.1666847234469391 +he:0.35785950933915395 it:0.311293238097769 there:0.1589384072212929 she:0.10396547422958032 :0.06794337111220382 +the:0.8938022200776872 this:0.04797813101384419 tho:0.02482982230244173 tbe:0.018504574579442497 :0.014885252026584462 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7588286168742037 our:0.10978334154477845 be:0.06407034571454746 a:0.03749002813055417 :0.0298276677359163 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5638011043319452 that:0.13022713602305738 a:0.12600334872274233 every:0.10737837955340794 :0.07259003136884723 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +country.:0.24467188556839767 city.:0.22576096868251727 world.:0.2190887536601012 state.:0.16450294626115974 :0.14597544582782424 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.44273425417115375 1:0.1784328231350147 he:0.16493016935800622 I:0.12617347423784472 :0.08772927909798046 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.3343143555883938 have:0.3042059587625749 been:0.2250231658514437 only:0.08322327166481988 :0.05323324813276766 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.43994357419853863 to:0.24690496136752615 should:0.10865133403589174 shall:0.10325237258927622 :0.10124775780876734 +the:0.8371891126991755 seed:0.04230091331139372 tho:0.04200190392082427 a:0.040992267265876424 :0.037515802802730126 +came:0.309925922956656 went:0.29657920616820205 are:0.14125196629599818 was:0.131143154298922 :0.1210997502802217 +are:0.44497998953526585 have:0.2856725621835353 were:0.1591146217147707 and:0.06257552040066042 :0.0476573061657676 +to:0.511724498509057 not:0.3884718695388764 now:0.04985443079697052 only:0.030093767577358065 :0.01985543357773797 +is:0.5460054357958671 in:0.1878863280425286 was:0.09374803123026969 and:0.08686555120445427 :0.08549465372688017 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +general:0.6679224171618748 business:0.10072128963069671 city:0.08542964786541882 stage:0.07744041412070005 :0.06848623122130966 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +single:0.8152462025551263 special:0.1028037360749724 curious:0.03905312079629011 remarkable:0.023312018401251192 :0.019584922172360023 +was:0.2917104823876517 am:0.2576555369413741 found:0.19297910632837453 believe:0.15990483007660258 :0.09775004426599702 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.3005984218262769 known:0.2655373970567997 the:0.24717544958242826 informed:0.1220430792700076 :0.06464565226448767 +that:0.6590038740748176 to:0.12073331160087994 and:0.1030114218697692 of:0.07552440816894054 :0.04172698428559267 +a:0.6036720540161221 one:0.1287270768612395 the:0.12823789420367232 every:0.08922094169683364 :0.05014203322213256 +reason:0.2650651340342022 and:0.21681196582147647 thing:0.20000323630736758 things:0.17781643756729187 :0.14030322626966207 +that:0.5322026599421515 what:0.21699857697669697 how:0.1368449485523328 where:0.05935808448336459 :0.05459573004545413 +people:0.344590370213163 man:0.28270613457884597 men:0.24749205800916033 person:0.07206840613674627 :0.05314303106208454 +was:0.34213187058807853 is:0.21237138281971008 has:0.2004057170251573 were:0.13338728729002455 :0.11170374227702955 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +said:0.3156113442068492 much:0.21375794948271912 will:0.1951939024251364 and:0.14671966182598004 :0.12871714205931528 +according:0.3555824560814179 and:0.25349777949930696 as:0.15486331387205723 himself:0.14046628939083994 :0.09559016115637795 +year,:0.32848371612188276 year:0.26308908292497357 shall:0.13964057884152706 years:0.13758874765761933 :0.1311978744539972 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.24341930994123637 loud:0.22594700756677846 in:0.19143859524312848 still:0.17652167101623703 :0.16267341623261958 +committee:0.5857686258870516 letter:0.1346802582485176 blood:0.10135043626500327 father:0.09616474593927947 :0.08203593366014804 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.6348764062133089 have:0.1722777119572877 had:0.07844761572429704 been:0.07186501001580349 :0.04253325608930309 +time,:0.3902136991835628 time:0.28243918036157223 year,:0.13334671714149182 day,:0.10600795069300126 :0.08799245262037188 +in:0.3352596324935674 and:0.21258273006807626 for:0.16867070586759286 as:0.14456190137071825 :0.13892503020004532 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.44815787220666076 a:0.20089916910624228 won:0.1863765011663116 ai:0.09071049688679418 :0.07385596063399125 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.4124220092634804 of:0.29426503454490116 and:0.21080864716082978 the:0.058470386633171535 :0.02403392239761723 +moment:0.26292630283232415 time:0.23893844843373474 man:0.21373173822132197 year:0.17411586585710045 :0.11028764465551871 +name:0.26718864387260566 word:0.2621444132912944 said:0.17464266934667932 words:0.1697718632070335 :0.12625241028238726 +made:0.35521071629696976 foreclosed:0.24398410990080924 done:0.14244664034900092 paid:0.14139776831955897 :0.11696076513366108 +he:0.3406675391186579 and:0.28011619052895337 which:0.15372359175753803 they:0.12032136503785627 :0.10517131355699443 +eminent:0.651647710174632 prominent:0.2155126248940548 distinguished:0.06445117827791105 celebrated:0.0477043539027362 :0.020684132750666055 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25893617488399556 give:0.20291323854444404 see:0.20031327429918658 take:0.18289739772996536 :0.1549399145424084 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7557919258253728 in:0.09315941393850816 thence:0.07919599270351631 of:0.04041227061691792 :0.03144039691568491 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8365252420458127 a:0.08221454533435171 tho:0.03601209658997877 his:0.02376323319802094 :0.021484882831835965 +He:0.3852792396065479 She:0.20537414599480475 I:0.15505676947960684 They:0.14755753709720776 :0.10673230782183274 +the:0.8789737842073698 tho:0.037529888619360574 a:0.031673395373726286 six:0.026743424586553436 :0.02507950721298991 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4398666598729556 for:0.2073221407016403 to:0.1791160265587611 with:0.10052071829330231 :0.07317445457334065 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8887209903366957 tho:0.048074635854010596 a:0.0472092865561041 tbe:0.010836917826177933 :0.005158169427011555 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.814313075214286 herein:0.11476474708703656 aa:0.031351959641783236 those:0.022384674014302747 :0.017185544042591434 +in:0.3630409628886776 to:0.2624026403739989 on:0.12926626011819484 at:0.12271000817660928 :0.12258012844251934 +world:0.2902661748371584 country:0.2222473979389011 city:0.1773477177489124 government:0.17433420460373003 :0.135804504871298 +failed:0.3726013753089509 and:0.19897570741554613 as:0.1904596745457058 have:0.12676239954704524 :0.11120084318275195 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +thought:0.26954855792152616 had:0.22361357864818188 said.:0.1794193968867037 did.:0.17781213885476302 :0.14960632768882529 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +men:0.2997629071190403 man:0.22582378534204278 as:0.21371538148994895 which:0.13414358828618098 :0.12655433776278688 +gether:0.4322708871317314 day,:0.19615272067317516 ward:0.17356324438044426 day:0.1395569651874887 :0.058456182627160465 +through:0.46294332359828627 over:0.14510133367945285 on:0.1431165548751897 upon:0.13874430792734993 :0.11009447991972122 +see:0.3630267179337288 know:0.31672443555825147 do:0.16375532428382614 say:0.08300529544119116 :0.07348822678300254 +wish:0.2139351032775634 went:0.21068230681553277 have:0.20700734941190393 want:0.20401605424950528 :0.16435918624549464 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.41898458409291456 that:0.24261616192919847 I:0.12025260173539418 and:0.10965895553891443 :0.10848769670357837 +well:0.5522421223523808 far:0.207637425643884 soon:0.15314698604852223 much:0.05231429146523605 :0.0346591744899769 +that:0.43402016799522153 what:0.36856829672286723 of:0.08794780358878336 how:0.060953484265182795 :0.048510247427945144 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +I:0.30628063371456404 we:0.264288573019645 they:0.21801892410324517 would:0.10648509534338894 :0.10492677381915687 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.4826076780454506 and:0.28477439965591533 cause:0.1291794769928569 as:0.05615317385604225 :0.04728527144973485 +me:0.3644328405454947 him:0.3311687267900046 us:0.11974563184708452 notice:0.10479098101451284 :0.07986181980290338 +made:0.3172132515378427 due:0.24133849395393464 made,:0.1740560679210998 done,:0.1432970708610888 :0.124095115726034 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.3720760911837878 is:0.2883364606693182 being:0.156456638870435 that:0.12362489695565732 :0.05950591232080173 +was:0.5112583470092996 is:0.2924815376593282 had:0.1222824531160859 became:0.03817305536289247 :0.03580460685239395 +no:0.5066441430732729 a:0.2284158500525827 the:0.18210883798951172 their:0.04558054400558436 :0.03725062487904819 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.2915953793545578 as:0.25943405556171695 such:0.23531199772538186 or:0.12185439633653826 :0.09180417102180524 +hundred:0.418796876047723 few:0.23941193032816915 thousand:0.17417089460634633 half:0.132041267073761 :0.035579031944000486 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.4221510240186959 in:0.18474541430149236 on:0.16670087024151567 that:0.13380139016336906 :0.09260130127492687 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3239569697508548 by:0.29940648098022077 that:0.15020041729506312 in:0.1498741857175021 :0.07656194625635915 +tended:0.491977446969195 terest:0.19612100844782568 tend:0.11798492895460129 come:0.10624537584885095 :0.08767123977952705 +the:0.34110758052671813 about:0.23155442877878193 some:0.19860529061870505 a:0.15538071813786755 :0.07335198193792736 +writer:0.368190364874526 train:0.2295501523408562 ball:0.16889551177594606 smoke:0.12723338399174697 :0.10613058701692477 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.5869585330649484 if:0.14009335618219526 as:0.12043832507701507 has:0.07672623641473715 :0.07578354926110421 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +best:0.4241172439894904 same:0.1713829782369717 new:0.15955881485767442 present:0.13051807407362886 :0.11442288884223457 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.6629138249138383 hardly:0.22786116864656286 scarcely:0.061261142718823006 never:0.0375609346303939 :0.010402929090381784 +make:0.4796443371060402 any:0.16304897252611703 take:0.14700062233364122 be:0.11976105109642601 :0.09054501693777561 +it:0.24731417708451314 even:0.24229244116713733 this,:0.24063838984187322 all,:0.13766758772284637 :0.13208740418363005 +take:0.6568662990540863 not:0.33119989865208926 be:0.005670415427434305 hardly:0.003349520777906414 :0.0029138660884836507 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9118965401660062 tho:0.03331265920957103 his:0.02673141977393186 tbe:0.015047021889920242 :0.013012358960570729 +All:0.32931157306611936 In:0.2083892732739058 And:0.16549459824095364 Now:0.14842327316152887 :0.14838128225749234 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.45884077215892544 connection:0.17715348597667507 matter:0.1289410401461493 parallel:0.11840508343751481 :0.11665961828073544 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +weeks:0.24831434863347787 years:0.22899601329648137 or:0.21155160349195432 hours:0.15750988161570115 :0.1536281529623851 +will:0.34414844061497196 would:0.19299369643919212 may:0.1831788859063651 can:0.14661730342662094 :0.13306167361284976 +try:0.5885286296441988 ty,:0.1469404419683656 ty:0.1342451202628596 ties:0.12638940809118038 :0.0038964000333956165 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.5170792337978347 and:0.14112771896030293 I:0.13508974708102042 that:0.1338818916563518 :0.07282140850448998 +said::0.6338624697162226 says::0.21496857789802382 on:0.05884321905857571 in:0.04936722444604811 :0.04295850888112975 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.3000617254168005 th:0.26713234492229854 ho:0.22160395451612083 tin:0.13421864560317115 :0.07698332954160912 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.4124799596953061 is:0.31816826479046983 will:0.0975573157175443 to:0.09686156681536984 :0.07493289298130995 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +law:0.2415154069083313 bill:0.19478009397581153 amount:0.1929926626018558 country:0.19043831197547426 :0.18027352453852716 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +back:0.2651858312574032 side,:0.19537499116359444 ordered:0.19428957583824924 on,:0.17814086440493795 :0.16700873733581523 +of:0.6683665772170536 in:0.12895383362837848 to:0.10696328242682433 over:0.07097481703160116 :0.024741489696142482 +which:0.35296312408720415 it:0.2794070160046456 this:0.2246432250704566 what:0.07854804354576883 :0.06443859129192485 +.:0.7607492066676997 V:0.07166591383297544 is:0.06311341618613286 have:0.05705253855673201 :0.04741892475645994 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +The:0.5382027568910309 All:0.3098961965434046 A:0.07098070301023224 That:0.045597150732103346 :0.03532319282322899 +it:0.33735456562258065 which:0.2800283652936288 and:0.262141958114354 there:0.060863803701553136 :0.05961130726788344 +whole:0.4522939498305869 royal:0.1544565790498033 entire:0.13904848627056418 best:0.13266337954135188 :0.12153760530769378 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.36054725543568394 in:0.25104015913284095 that:0.16997219530927762 from:0.11873990492666225 :0.09970048519553527 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.39431265691494394 &:0.1970352191175564 k:0.14894032537080618 ft:0.14686468673282185 :0.11284711186387164 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +attention:0.2746584835525123 father:0.2285408012956728 answer:0.1737101067432454 letter:0.16290476736521317 :0.1601858410433562 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.6041689913634901 had:0.1060409239537605 to:0.10358411056943348 made:0.09881059483505486 :0.08739537927826117 +the:0.6380967912469692 said:0.18165297242127426 our:0.0828461914645248 this:0.06279664798238284 :0.034607396884848915 +the:0.3315112916882049 his:0.2894358334151999 our:0.1825973103092127 many:0.11044237166351019 :0.08601319292387224 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +men:0.40246448507839766 and:0.19712284921797874 party:0.1419114918213138 Pacific:0.13802328799087246 :0.1204778858914374 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 +and:0.3105883909747178 or:0.2947204167009707 the:0.2370653671260343 an-:0.09114957234003171 :0.06647625285824556 +of:0.5880463628251464 the:0.176413929492526 and:0.08924024467596336 to:0.0821226714470688 :0.06417679155929526 +more:0.7074319835373611 less:0.16510403682604466 rather:0.07592032434094827 them:0.026732142590431995 :0.02481151270521386 +the:0.5545356046209312 which:0.17481830010723404 and:0.09941693228409526 that:0.09713278618270697 :0.07409637680503246 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.5227927489893616 but:0.14511776124727907 the:0.14302700151595105 lower:0.1217326205453021 :0.06732986770210614 +of:0.6025537472335281 at:0.13852318943245234 religious:0.09128658970246302 between:0.08921038647854047 :0.07842608715301615 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +an:0.2950355470845622 a:0.29082880120383536 the:0.1624423332776568 not:0.14551465744171005 :0.10617866099223547 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +well:0.3675750893465405 aforesaid,:0.19756651670137643 possible,:0.180439332216918 it:0.13993261169144527 :0.1144864500437199 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +morning:0.3479237911670612 day:0.23796909972169805 day.:0.1823178168123502 year.:0.13083116641347484 :0.10095812588541563 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +out.:0.3589428499197398 it.:0.3355746254879976 himself.:0.15288613551279087 out:0.08016233554318948 :0.07243405353628225 +all:0.33998571620451634 passing:0.2993602735963012 going:0.13674271105617924 him:0.128090459823753 :0.09582083931925013 +the:0.7470103411808625 his:0.15156662942511084 tho:0.040252919722914476 its:0.03222095461423072 :0.028949155056881427 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.8885168506269056 what:0.041956644766018555 whether:0.03582341527416638 when:0.016913413292604377 :0.01678967604030497 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +certain:0.2950176662341537 great:0.2317811422580379 single:0.22406393294587088 strong:0.12967727346693708 :0.11945998509500044 +so:0.44482552799515085 as:0.33805906249974277 how:0.15734555552053178 not:0.034632589952126216 :0.025137264032448328 +chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.42639859723178 was:0.18516331402608513 the:0.17557276202261635 an:0.1229489625025562 :0.08991636421696232 +floor:0.3476855538263723 floor,:0.23521140468790425 ;:0.16672023092047167 lying:0.1518356462903299 :0.09854716427492184 +one:0.3648278020186572 time:0.19637319031665834 person:0.17772273556119397 more:0.13591991814815224 :0.1251563539553383 +in:0.8782151757773767 In:0.07513903084077735 iu:0.02761498337421219 relative:0.009772651942125685 :0.009258158065508084 +that:0.22403825545544673 truth,:0.2124640121680924 duty,:0.20265353236058353 ,:0.18087341449035196 :0.17997078552552548 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +result:0.24281601955784213 number:0.22925850381580123 people:0.1822410601220826 amount:0.1818487372336084 :0.16383567927066556 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.4887393217003701 do:0.18165549787009944 had:0.17736847078165197 are:0.08085728691784402 :0.07137942273003448 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.3268102494903684 men:0.21174508911704912 citizens:0.19001199375327332 citizens,:0.14849573795775456 :0.1229369296815547 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.28908066975305224 would:0.2780916927874321 to:0.1835710212207945 may:0.13814391784624766 :0.11111269839247358 +people:0.344590370213163 man:0.28270613457884597 men:0.24749205800916033 person:0.07206840613674627 :0.05314303106208454 +That:0.3416218739128062 The:0.3391836873134322 He:0.16430540026329707 In:0.11485171869753563 :0.04003731981292893 +is:0.5940501835575268 was:0.29143633222507964 has:0.04358606755343859 in:0.035791668430804405 :0.03513574823315065 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +out:0.26191375786534377 over:0.23610699117155728 back:0.2181889076777121 up:0.1854106630803036 :0.09837968020508327 +Pacific:0.3120299896854518 avenue,:0.30675354678126676 and:0.20987455313157086 about:0.09355335131787405 :0.07778855908383649 +It:0.4072871794478388 You:0.22381855979848364 We:0.15511289231370845 I:0.10724725835318837 :0.10653411008678082 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.537127936573132 between:0.3862947864966203 and:0.02965361871388308 South:0.024575783289255956 :0.02234787492710876 +a:0.908982189368535 last:0.04658029590176496 the:0.025861130975890465 those:0.012303597693683655 :0.006272786060125938 +before,:0.4493420504129089 known:0.17799095011673205 known,:0.1277404088923155 made:0.12258949446416377 :0.12233709611387979 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +give:0.3161995032607451 tell:0.21311292876638901 let:0.17649795059505258 make:0.172591041641658 :0.12159857573615528 +the:0.5630619273892246 this:0.32281089947535346 said:0.056002679458008506 our:0.02951038482722317 :0.028614108850190167 +the:0.9106214968203415 tho:0.04368795335768687 tbe:0.018947093569232215 an:0.015764597542149053 :0.01097885871059025 +the:0.8636108971131127 this:0.043643777489961066 a:0.04215156654947585 tho:0.03116125555041103 :0.019432503297039504 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.3810887439789034 to:0.19255659830133662 would:0.15598500207132873 should:0.14818159286625324 :0.12218806278217802 +less,:0.2916823577692669 not,:0.25773584845958303 more,:0.18689038684292697 anything:0.1600772122716349 :0.10361419465658822 +on:0.6381074000057922 at:0.17139730346418589 and:0.08698216330683879 in:0.05981630797026065 :0.04369682525292229 +that:0.4518163445338062 to:0.25616574673341835 by:0.15106009006723026 and:0.1027137977046983 :0.03824402096084689 +a:0.3895872083317454 the:0.36442569137255854 said:0.09288361320062986 its:0.0854004586081204 :0.06770302848694577 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8655107057716589 in:0.04830835412436777 for:0.034657836318787966 to:0.028284341293330344 :0.023238762491854976 +are:0.44807634355262504 were:0.18258223073176502 will:0.17249091272106162 would:0.09947505754495987 :0.09737545544958853 +would:0.3226760403150322 will:0.2822694430741013 could:0.1425697610405298 may:0.13173375946749338 :0.1207509961028432 +at:0.5601774022088544 about:0.1564027898605496 to:0.1036252651765581 after:0.09551876978151654 :0.08427577297252152 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +many:0.3218515404346324 the:0.24166000522975128 several:0.1855378315797301 four:0.12732982493969894 :0.12362079781618729 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.2507041416681069 it:0.22583424596027493 time:0.20887970652465848 day,:0.16934891304830973 :0.14523299279864987 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +more:0.4107787633214158 one:0.18308034023041894 sooner:0.15157394574049385 person:0.13239481761856162 :0.12217213308910983 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.36750213488382105 I:0.3364674102252771 they:0.11780251317357504 m:0.09757378256939936 :0.08065415914792755 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.3366894007943536 it:0.2863391013280192 this:0.17583641020207327 that:0.1237109484167922 :0.07742413925876171 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6277636382323701 in:0.22537585525931275 a:0.058050777683834556 to:0.045343534886462436 :0.04346619393802013 +by:0.42026236526667404 to:0.31569358338945847 that:0.15016784981869713 himself:0.05703017865779713 :0.05684602286737316 +fact:0.6811856975996785 said:0.129424747603616 ground:0.0668337494128204 belief:0.06258864438599437 :0.05996716099789066 +and:0.2911417590175337 State:0.2400122014506058 farmer:0.1594128705101488 legislature:0.1587817851132899 :0.15065138390842175 +the:0.8577153359484204 tho:0.04756914412375399 January:0.03586759706258654 July:0.035293095697312274 :0.023554827167926843 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.36657951429590396 to:0.1912233898247066 not:0.1887948994458463 then:0.15721046126066168 :0.09619173517288138 +not:0.46652435431537576 be:0.2306617458624069 well:0.1762361775111843 do:0.0670532504402384 :0.05952447187079459 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7528691274905589 a:0.14386031397332255 this:0.04402327276378791 tho:0.0388976497998296 :0.02034963597250121 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 +go:0.409634576180319 come:0.1820413690832247 him:0.15491679222342905 try:0.12769469573402084 :0.12571256677900647 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.49245685267464906 in:0.2308016216404441 but:0.1125151332989595 when:0.08976818842257575 :0.0744582039633717 +to:0.9373411436763323 and:0.05046795374835947 I:0.005862399353893991 can:0.003846305015435318 :0.002482198205978907 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +his:0.4712906391570718 their:0.16502248546874926 the:0.1587387285776933 my:0.10795053739215744 :0.09699760940432829 +o'clock:0.3952308865512929 was:0.21447971444352665 am:0.15518767088187618 found:0.1292939430296092 :0.1058077850936951 +to:0.33833151517338683 for:0.20044777768026045 with:0.192119211998388 in:0.14813328098391268 :0.12096821416405212 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +has:0.3091263640245377 had:0.28817048768696685 was:0.23873435230477882 is:0.14098019073227278 :0.022988605251443923 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.36095064747237443 one:0.17271087224771947 as:0.16930770939854078 a:0.150251700179222 :0.1467790707021433 +that:0.31217221812033263 in:0.2674446517771789 with:0.14761935616281102 at:0.14393860209577636 :0.12882517184390124 +and:0.3825964114686876 were:0.34515099915943265 are:0.10695661980643875 already:0.0892932245388706 :0.07600274502657046 +Co.:0.33318173074392426 .:0.19784047807601093 each.:0.19164690382911861 them.:0.15566790961968976 :0.12166297773125632 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.3655224793259098 which:0.21437497575678058 and:0.20002989134441276 there:0.13817197671849088 :0.08190067685440597 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +The:0.8541870298134394 the:0.06220574301377649 "The:0.032342687945601196 Army:0.02745030473979486 :0.023814234487387752 +of:0.5470460668032644 that:0.17219388970941985 for:0.11504961281099998 the:0.09389093650382617 :0.07181949417248959 +line:0.42473113632772747 side:0.26134168391647156 direction:0.23873898349446163 corner:0.041522464204806396 :0.033665732056532914 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4227864182287676 and:0.15678952731939974 any:0.14755560315236863 as:0.14399024430372948 :0.12887820699573446 +the:0.7413322999168078 a:0.18598354468791423 tho:0.037376018258169864 and:0.018474703021854288 :0.01683343411525381 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.23920488219016744 days:0.23359108683144542 year:0.20726319130525772 day:0.1993704029060444 :0.12057043676708501 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +of:0.7943956412568322 in:0.0837909797718344 and:0.056463442107599036 to:0.0376078717323615 :0.02774206513137297 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +in:0.5447345995321556 at:0.1446128300652364 to:0.10922489936200494 on:0.10185546343059779 :0.09957220761000518 +half:0.24750611822843946 of:0.2134578389978743 time:0.18319074465509116 while:0.17847455948790394 :0.1773707386306912 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +lots:0.5194316639136203 the:0.23116120619572222 an:0.11009077033055394 which:0.07673337773099173 :0.06258298182911182 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +into:0.6020148808076131 upon:0.23754933370775605 Into:0.09274804956245605 on:0.038092556135576085 :0.02959517978659872 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +work:0.30814400580419565 lives:0.21750209535318848 duty:0.18937288845330646 views:0.14514170302417165 :0.1398393073651378 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +fore:0.2767238820467851 cause:0.2675151955900089 ing:0.19937597345665697 I:0.16633150660554766 :0.09005344230100132 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.279639721002356 then:0.23171802833499192 wife:0.16656440492018137 it:0.16412755858855746 :0.15795028715391318 +not,:0.40772887882972914 even:0.4014535924947578 otherwise,:0.06649719962970417 not.:0.062356280547249614 :0.06196404849855912 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.6708922817147481 on:0.1061346062766463 in:0.08283382937547724 at:0.07527849345118814 :0.06486078918194009 +interests:0.3049144603031642 men:0.19442570707560577 known:0.19439096437636844 quality:0.18154241307048638 :0.12472645517437508 +country:0.3883095761560454 city:0.19629707343171213 company:0.165849263138146 opportunity:0.13844252682389127 :0.11110156045020518 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4434269511306302 that:0.24416947950160456 to:0.15990420157835217 for:0.12357485989383742 :0.028924507895575637 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +seem:0.24502219568648895 only:0.23220317799461734 likely:0.183776612839227 want:0.17868271241138023 :0.16031530106828637 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +once:0.33272799926555374 right:0.23623250683678043 least:0.1990716453629417 home:0.12559821484433517 :0.10636963369038907 +present:0.34444093288085403 whole:0.31868172107787246 new:0.12219530952127047 entire:0.12026615763791693 :0.09441587888208598 +order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 +very:0.252309126560985 present:0.22429152655499665 same:0.19678499924727386 new:0.18112637117452027 :0.14548797646222422 +do:0.3184387484427923 hardly:0.2634180246154216 be:0.25829441668791586 obtain:0.09294699723028249 :0.06690181302358775 +the:0.6359597688492045 general:0.12415417950873178 an:0.09825511819617729 his:0.07909914050629235 :0.06253179293959403 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +health.:0.21681998872130823 man.:0.21270539193850901 time.:0.2106985248208908 order.:0.18592603993122395 :0.17385005458806815 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2521721978791727 honor:0.24707095590444791 which:0.2297639920282843 a:0.18050448681333178 :0.09048836737476325 +would:0.3137506371102054 will:0.30229077242690316 must:0.1516223024866113 said:0.11723247872090156 :0.11510380925537866 +he:0.46756674757504246 I:0.2565569149660784 she:0.1456085263877579 they:0.07949014253390946 :0.05077766853721173 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +country.:0.26803284903240115 world.:0.2291145910069688 city.:0.21879424978954234 people.:0.15398937800370113 :0.13006893216738652 +and:0.2980297792764018 is:0.24658687821418193 be:0.1811501830644025 was:0.14420479043977918 :0.13002836900523476 +the:0.689577208937944 these:0.23449497826785454 tho:0.033612564917422504 those:0.025653827042006506 :0.01666142083477232 +mind:0.2584866883743739 head,:0.23338910536278948 face:0.17686227055518816 or:0.16885996655728588 :0.16240196915036262 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +of:0.6390876826406074 for:0.14537310169524328 in:0.09263643763854613 on:0.06690264650218371 :0.056000131523419296 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +week:0.30742217664341426 time:0.19328742991718753 Court:0.1831471400325474 city:0.17422759139085284 :0.1419156620159981 +of:0.43816309711831186 most:0.19425878492999502 and:0.16858051954569342 are:0.10842963052501091 :0.09056796788098867 +number:0.3026426046150244 part:0.19149865887319448 copy:0.18604551240261066 portion:0.16550206060409364 :0.15431116350507695 +depend:0.278189398750476 only:0.20982078040427932 look:0.20632945689014923 based:0.16304367824707353 :0.14261668570802194 +John:0.28185725160268554 county,:0.25541571578561323 Charles:0.15759643806607146 U.:0.1572996320629123 :0.1478309624827175 +to:0.32497190683857685 on:0.23759402191175735 in:0.20260265788018697 by:0.12668609256342558 :0.10814532080605323 +people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 +a:0.4846253430431945 the:0.4047661151287998 this:0.0636921920881886 some:0.03009175276113221 :0.01682459697868485 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +years:0.27181213388231373 weeks:0.22187065708126524 o'clock:0.19337769067871924 men:0.17520030839228298 :0.13773920996541886 +up:0.27706039113085207 out:0.26291826700130005 outside:0.15909766442749604 strength:0.1544433957588861 :0.1464802816814656 +people:0.31554231043708736 same:0.21332547551137776 country:0.16027869436190653 city:0.15585135602884304 :0.15500216366078537 +of:0.5944618356801051 that:0.15733965837775643 in:0.12787444277089688 among:0.06994407446270572 :0.05037998870853601 +be:0.4648992926917519 put:0.18622300172743123 assist:0.1250201765404788 him:0.11290369569300782 :0.11095383334733018 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +war:0.2978885064528891 same:0.24446637794937368 company:0.18423266211273176 country:0.13954157797736816 :0.13387087550763727 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7946871220197886 said:0.10246151117044232 Bay:0.046731240135155235 tho:0.03077155068197765 :0.025348575992636083 +if:0.4450035760702198 though:0.3387685223109366 when:0.1216293408924436 as:0.04986573466736683 :0.044732826059033254 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +involved:0.4791647373677439 contained:0.16310576819262879 that:0.1597001733561548 is:0.10254146570262349 :0.095487855380849 +am:0.23157768800948617 asked:0.2249044078391004 do:0.19460309692635064 hope:0.18234625750415534 :0.16656854972090734 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +I:0.4064070124411826 and:0.2670108143051853 he:0.12147277297684585 never:0.11498731790472536 :0.090122082372061 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +30:0.5337648421442125 45:0.1615670184720643 40:0.10987188269630162 35:0.10487029877030747 :0.08992595791711411 +that:0.3918094606957633 when:0.382099825967578 and:0.10143666232916394 if:0.06613512834087483 :0.05851892266661981 +a:0.7733243215013553 service:0.09813871594703906 tax:0.05815449559319356 highway:0.047245037971914636 :0.02313742898649737 +in:0.7617777342406287 of:0.14330069454652025 In:0.0431916004888139 under:0.02805340895186781 :0.023676561772169435 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.891014588173277 his:0.038587551535390376 tho:0.030282738385897 their:0.020549087743881204 :0.0195660341615545 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.5433329911090748 persons:0.16931446552857582 person:0.11370047188587526 articles:0.10528559243163764 :0.06836647904483646 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.36037369076522274 day:0.21280165666260917 number:0.1503775456261177 amount:0.14515365087909804 :0.13129345606695236 +It:0.3857935233886248 He:0.2431648575062909 There:0.18584572198551902 This:0.09515737423733787 :0.09003852288222726 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4792163814630782 any:0.2686504559369056 every:0.12649354884003022 some:0.06717848059588147 :0.05846113316410454 +first:0.4234354763421296 time:0.17946943983153435 Senate:0.13714433797541686 court:0.1362677168685034 :0.12368302898241573 +brought:0.5136012080159068 made:0.131996529458298 located:0.1222182136853666 situated:0.11739693820097395 :0.11478711063945458 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +nothing:0.40611710812377344 that:0.3783146402139685 all:0.09527475123834409 him:0.062410291821600794 :0.05788320860231313 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8455079451298888 in:0.058021497762959416 to:0.04350099470391134 and:0.028136814854024597 :0.02483274754921572 +down:0.24070513395480206 up:0.23187364848575778 away:0.21024387694995217 out:0.1876543692496133 :0.1295229713598747 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +whole:0.23123379425115395 true:0.23105770510782536 great:0.194239907707475 other:0.19080881549698914 :0.15265977743655645 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.32631557049600485 which:0.21132756531893743 to:0.16983000593901557 with:0.1557440561450864 :0.1367828021009558 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +well.:0.5362359657510158 good.:0.24011040412180792 old.:0.10895984543224801 last.:0.06910609088642647 :0.04558769380850189 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.5287209234938688 it:0.23249066386245054 she:0.10685321342238234 there:0.08365310080307628 :0.04828209841822201 +they:0.4186730825846897 there:0.29061365110468124 we:0.1750876695397314 that:0.0736966396191978 :0.041928957151699746 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +corner:0.39905172439401354 line:0.2459704840766434 bounded:0.1497263240887356 shall,:0.11158946933176095 :0.09366199810884658 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +you:0.4088518001567058 they:0.23277693817301795 we:0.18342015594786945 a:0.09287013028988256 :0.08208097543252446 +made:0.3962248791403346 given:0.16330583264340004 followed:0.15945010195568401 taken:0.1560638116651507 :0.1249553745954307 +sale:0.7919395969029386 provisions:0.07469651304521616 directions:0.056037565684869506 power:0.044022895933385715 :0.03330342843359008 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.2600687300373408 take:0.20913168457478165 be:0.20432458816982405 have:0.1687730942845154 :0.15770190293353825 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +The:0.4760054387317019 A:0.3681205327139372 No:0.07321654187098582 This:0.04640676306221124 :0.03625072362116391 +to:0.9025666068132738 will:0.06738314065899279 should:0.01484768528016347 would:0.008448869628799573 :0.006753697618770224 +the:0.45152142835388565 a:0.4151012691982451 so:0.056223443363718394 with:0.03987777895732396 :0.037276080126826726 +the:0.6160566217469812 in:0.16575919522081223 a:0.10250022191761625 every:0.05934594530010081 :0.056338015814489543 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +only:0.2980560284370497 know:0.274424915377403 be:0.24794688650762453 been:0.09010904014167931 :0.08946312953624344 +the:0.6037851774304345 final:0.22966659860661684 a:0.11631822353110038 tho:0.026207314486986218 :0.024022685944862034 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6411850378077792 his:0.15584237173043997 our:0.0905304718631084 a:0.060208218147604624 :0.05223390045106782 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.26571650983403255 th:0.22136304436461668 ti:0.193696525559978 tl:0.16878492600747344 :0.15043899423389934 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.39807397614510825 said:0.29500832188800014 day:0.10948629039075249 last:0.10440159557224948 :0.09302981600388958 +gress:0.284197813288754 dition:0.2348686607881963 tained:0.2010063506011329 test:0.14688932358647128 :0.13303785173544544 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +come:0.24035420499673232 appear:0.2266872306435259 go:0.21612426349213212 have:0.15959992186142086 :0.15723437900618878 +sented:0.48268384168780376 scribed:0.2701281340096202 served:0.10543760088874264 sent:0.09760480270455077 :0.0441456207092827 +lands:0.349390961041457 auction,:0.2223708797973966 places:0.16776815167742137 auction:0.15088532910709818 :0.10958467837662692 +be:0.9030147121711507 bo:0.04523615584198637 not:0.03035694926867084 he:0.01238267456596333 :0.009009508152228765 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6119426847045852 in:0.18553460593924193 to:0.09523067341495094 have:0.057192280713435406 :0.05009975522778652 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +on:0.28587243222804154 in:0.22433664018221974 by:0.21501836326627194 along:0.1438318112217105 :0.13094075310175618 +own,:0.26703315471989003 work,:0.2596225532415905 country,:0.16894448286611086 hands,:0.15761285782356163 :0.14678695134884706 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +when:0.4094959401519512 because:0.19021050064532172 that:0.18895380560985042 as:0.13454559220494341 :0.07679416138793342 +it:0.4340752629332528 is:0.18237240966646576 time:0.14915784562865575 was:0.12550002808331956 :0.10889445368830607 +dress:0.30862151126458043 mitted:0.2954633395833171 vice:0.14584627638387593 mission:0.1351630446399791 :0.11490582812824754 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +is:0.5421211923968171 was:0.24092767673874635 will:0.11199701256677701 has:0.061013035427011225 :0.04394108287064817 +as:0.3337295334239592 before:0.2633389899178076 since:0.15340886557321612 and:0.15275138344928227 :0.09677122763573487 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.2529871282436301 that:0.21156712587752471 where:0.19348902362895934 which:0.17856621695257952 :0.16339050529730628 +man:0.4977413373040864 matter:0.13678798048397203 point:0.12914945235724917 result:0.11943237639890907 :0.11688885345578343 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +hundred:0.2502767045823328 large:0.21688536435617353 man:0.20733062651268858 good:0.18723035529853752 :0.13827694925026754 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +things:0.5957740162027131 are:0.11586857703149102 things,:0.09812429525369723 days:0.09721086454480796 :0.0930222469672907 +him:0.3223925330631257 as:0.22088905646106596 that:0.16511722026296827 out:0.15040453444056626 :0.1411966557722737 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.5240297429532961 of:0.18162877716679152 were:0.11723341716472906 are:0.10170773351422296 :0.07540032920096029 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +he:0.42021557656775577 they:0.2590670081242196 I:0.12397825148276725 she:0.10344308164095942 :0.09329608218429794 +so:0.6221209166412879 made:0.12074682919136089 in:0.10669239723517018 too:0.08419622106610539 :0.06624363586607562 +to:0.25241339524498807 with:0.22125832349463304 in:0.19509480618091624 as:0.18656632378392524 :0.14466715129553734 +one:0.3688422722993829 matter:0.2107952241818109 means:0.18592441083285283 part:0.14920929055869567 :0.08522880212725777 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4254760163773637 in:0.31189408510478406 to:0.13647961632116876 for:0.0645088520077003 :0.06164143018898304 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +would:0.39043164600772645 will:0.25043656577917517 could:0.18120523254030918 can:0.09125430428938604 :0.0866722513834032 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7119355447169781 said:0.15672089365395414 this:0.07858214613222306 tho:0.02729129195298425 :0.02547012354386044 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +what:0.4473989177718491 it:0.22568091836165294 that:0.1818245804502592 there:0.09551471663787309 :0.04958086677836568 +the:0.5164496305873743 give:0.17703629899421605 his:0.13686148502863402 profitable:0.10801061698963493 :0.06164196840014074 +him:0.4482809956281203 them:0.37243400887329053 me:0.09546820134805989 us:0.047401225610109 :0.03641556854042053 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +this:0.3009765509683675 it:0.27754748271765045 which:0.27122023261121997 what:0.08313647179907756 :0.06711926190368454 +men:0.24066925423380944 cases:0.22765215031150932 who:0.2092994680002208 people:0.16914922066598223 :0.15322990678847834 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +we:0.27817458395988726 it:0.23843135311103214 they:0.17628988662815606 he:0.16843337633776273 :0.13867079996316178 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +accompanied:0.3303164948284305 and:0.30118950466037975 owned:0.16980624427474364 but:0.12194370114807455 :0.07674405508837176 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +than:0.5485026373473462 likely:0.18413511455206064 difficult:0.11720566816743044 or:0.08261002859168438 :0.06754655134147855 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +there:0.34312767244550774 the:0.26841288029752186 it:0.19413184543358064 It:0.09851949614937887 :0.09580810567401084 +to:0.3796244877086039 likely:0.19921798693660084 probably:0.15295934739852207 easily:0.13797100793769765 :0.13022717001857553 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.43077356922959326 to:0.32746398575770636 of,:0.2056990900401697 on:0.02407502826974461 :0.01198832670278619 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8592844988907292 said:0.09807043899427947 any:0.018045507873336385 tbe:0.012840817799046212 :0.011758736442608733 +referred:0.3954508528179929 as:0.17684887779700406 calculated:0.1663892640125837 necessary:0.14004973826315037 :0.12126126710926896 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5754648559016744 of:0.22321440849196084 an:0.14302403214796286 and:0.03509044169906672 :0.02320626175933521 +to:0.36137129212848496 nearly:0.19442530107751385 they:0.16189616712267638 it:0.15012451745768396 :0.1321827222136408 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8608770504475965 in:0.04934868826058313 to:0.04368716485837286 ot:0.02380766385500434 :0.022279432578443135 +country.:0.26803284903240115 world.:0.2291145910069688 city.:0.21879424978954234 people.:0.15398937800370113 :0.13006893216738652 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +served:0.8236590657082627 it:0.08863640568297448 not:0.04766426468533955 you:0.021199104348970224 :0.01884115957445298 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +purpose:0.2612449559977458 line:0.2108198067483472 number:0.17976760714634546 District:0.17454917909784268 :0.17361845100971884 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.3648778284962686 way:0.23137758187227883 bridge:0.17330038216569588 course:0.126036574806351 :0.10440763265940578 +will:0.4575492189132489 only:0.2101766223301091 same:0.14156367638303857 first:0.10090145538857885 :0.08980902698502466 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4770618898383828 a:0.44733323317110474 no:0.03407437799618759 made:0.021998027571851136 :0.0195324714224737 +said:0.7484854902418119 such:0.09284729332961013 the:0.06374861178506562 a:0.05244156147264487 :0.04247704317086757 +of:0.7561153447766719 and:0.1114666910768161 in:0.04899828897054815 to:0.04876460862498709 :0.034655066550976756 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +month,:0.3340375267566223 check:0.22608460529292168 note:0.18774376330000223 balance:0.13071757697819236 :0.12141652767226142 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.2649108325076209 and:0.24727383975519895 is:0.17287782175839034 ed:0.16035862802253928 :0.15457887795625053 +as:0.858362948816005 for:0.04555294862043789 with:0.03332914703179324 to:0.033323998892432 :0.029430956639331863 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +from:0.2233680814175031 for:0.20797748572057806 on:0.20409208845725227 to:0.1862412305017835 :0.17832111390288305 +people:0.5219797613206313 troops:0.18941836115622745 citizens:0.14353396668181828 delegates:0.07436831640398293 :0.07069959443734009 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +talk:0.32601663747008625 remarks:0.20461404288266724 wife:0.16513555527804902 arms:0.1632510841838166 :0.14098268018538088 +of:0.34483185056225407 and:0.2685245567650474 which:0.17458361613633744 that:0.12132742784371141 :0.09073254869264977 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +age.:0.5322637453233636 man.:0.26292216998619033 home.:0.07909264034333509 friends.:0.06338386171188834 :0.06233758263522284 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +political:0.28706733153368463 an:0.26113308153810716 commercial:0.17716503302629644 natural:0.1429883031752347 :0.13164625072667707 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.37058887957721764 are:0.26131768723449583 of:0.13904460636718785 in:0.12971183718398382 :0.09933698963711485 +war:0.2978885064528891 same:0.24446637794937368 company:0.18423266211273176 country:0.13954157797736816 :0.13387087550763727 +is:0.6192185053989371 was:0.12939348708475887 a:0.12438814178439951 the:0.07983815742316344 :0.04716170830874119 +the:0.6709926395255541 a:0.11865409253856939 his:0.09708844174668027 this:0.05927618171199617 :0.05398864447720003 +hundred:0.8577904117820284 year,:0.04048115438049983 year:0.03727109210214192 side,:0.03399877949254926 :0.030458562242780485 +shall:0.3051719949793432 may:0.23879169749402973 to:0.21857008506923853 will:0.17955769119376386 :0.05790853126362467 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +campaign:0.49295881012610454 and:0.26738871101926354 school:0.1159135845169974 exhibition:0.0643987857346112 :0.05934010860302317 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3620904849731762 but:0.3292137098302803 that:0.11450503585032312 as:0.10730934253784784 :0.08688142680837249 +city:0.24490368549558117 year:0.2340892896365114 week:0.20097435895937937 act,:0.16616407652421766 :0.15386858938431036 +the:0.6908928175402342 its:0.10478602573750265 such:0.0898053195888012 a:0.0712350613699186 :0.043280775763543285 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7807540768597027 his:0.0973142343406795 their:0.059944978971151024 whose:0.03322798141443253 :0.028758728414034415 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +into:0.3068272228173874 to:0.28813348154686663 through:0.14560641715780384 in:0.13320800977138642 :0.12622486870655575 +some:0.26932905298089355 all:0.2677429204729519 three:0.16183198498770074 their:0.16057293681761775 :0.1405231047408361 +year:0.28465516211493064 week:0.25329711873435595 night:0.19952503638571392 resort:0.16630641129705145 :0.09621627146794808 +that:0.7416706890752898 for:0.12701471760553154 and:0.05789583326984656 which:0.04216018171060564 :0.0312585783387264 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +com-:0.6535493200110425 com­:0.11207133257831417 com¬:0.10859277532917481 com:0.0776819925432746 :0.048104579538193935 +put:0.2595306196083462 placed:0.19096377299855247 bounded:0.18549797734665052 carried:0.1841342007496199 :0.1798734292968309 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +I:0.361657747439878 we:0.20351586514109096 it:0.15869968502398935 he:0.15116531806676373 :0.1249613843282781 +tained:0.6026810239656281 tain:0.18811076967966303 ceived:0.14310556635945323 sent:0.03478063769509416 :0.0313220023001614 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.31603656037435146 given:0.2459283249739636 among:0.18665118585158066 about:0.13469841083881978 :0.11668551796128447 +of:0.7818844015646705 ot:0.09024305561160594 ol:0.0467480433465979 oi:0.04425712601979723 :0.03686737345732843 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4607941530793505 was:0.2544165740098362 duly:0.10574329566632863 have:0.09486375367427974 :0.08418222357020498 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +line:0.8844842527348548 numbered:0.036496986512560024 of:0.03292308158124256 lino:0.02499555125889225 :0.021100127912450233 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.23532520669498327 is:0.226963362838455 was:0.20057528162963223 are:0.18386514933230236 :0.1532709995046271 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.2554823238686618 to:0.22835281241797692 has:0.22598281172701248 had:0.170888874967264 :0.11929317701908479 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made.:0.573223184664265 killed:0.14283704215083132 used.:0.12024937796265309 made:0.08193033158905877 :0.08176006363319167 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.3343217384958375 men:0.2496833050350655 and:0.1594743943080766 man,:0.12950267501287405 :0.12701788714814646 +one:0.7482421401320875 One:0.12044905881611664 of:0.055772009926640824 two:0.04263815636908381 :0.03289863475607102 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +large:0.7600326768573179 great:0.08026692866414625 total:0.06616354053901397 largo:0.04937565139963632 :0.04416120253988556 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +I:0.38804841734740253 he:0.32065451008485285 she:0.15413013902314485 they:0.07355050311655405 :0.06361643042804568 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5097356386789135 call:0.26902906167634927 his:0.08559256657447473 their:0.07231703604270139 :0.06332569702756106 +is:0.3698278758590536 was:0.3377138974988842 being:0.11595208300527764 had:0.10388196493164331 :0.0726241787051413 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +J:0.3000505371417024 loved:0.26081460145797797 .:0.22180637132730616 J.:0.12402216357526742 :0.09330632649774608 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +amount:0.23951143615697304 city:0.22618009893654653 sum:0.19810441374529592 day:0.168806194936708 :0.16739785622447664 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4133370370830977 by:0.21744534680901537 their:0.15113602662073686 the:0.1396046023017305 :0.07847698718541946 +of:0.5430897055206644 to:0.14480336735695815 that:0.1332026290222778 in:0.08959544651102666 :0.08930885158907305 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.2909244631216241 they:0.1963793415172654 are:0.1907297511483696 it:0.1792047268903612 :0.14276171732237963 +next:0.5254288569270817 present:0.14936502978238667 Republican:0.13405089975743328 Democratic:0.09967377401471542 :0.09148143951838288 +large:0.27535285358426004 well,:0.18945744038425205 quiet:0.1835209349355324 dull:0.17912635432965726 :0.17254241676629833 +chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 +the:0.45171740096739815 an:0.37755229681387 this:0.11945792218523144 every:0.025795475720994762 :0.025476904312505624 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.814550473648136 bands:0.06490907972063087 land:0.048076927662381676 powers:0.043449763794428164 :0.02901375517442324 +wife,:0.3492983166232137 left:0.3128261745136246 own:0.11796355039309071 visit:0.11092049929494875 :0.10899145917512226 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.3506912638818566 in:0.18327297502351883 by:0.16964059864672362 him:0.1642420958412961 :0.13215306660660478 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.7974217629843988 to:0.09605233638264497 at:0.03956696050070711 with:0.03425528686478447 :0.03270365326746474 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +there:0.39157595308326404 it:0.3732539959991392 It:0.11217855404506379 he:0.07976820644150616 :0.04322329043102673 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6165716031648899 to:0.1313037131523663 his:0.10463672003768991 at:0.0784153871763121 :0.06907257646874189 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +day.:0.2760338906060199 year.:0.2704832799398822 time.:0.18688609170929474 man.:0.16504347955502885 :0.10155325818977438 +The:0.7804299000387547 A:0.11938358922880038 Tho:0.04293799514941278 In:0.03843751549473266 :0.018811000088299428 +been:0.7318836871910421 had:0.17023172653566557 not:0.03764747415664175 never:0.03055401193488485 :0.029683100181765742 +to:0.38582437851147466 by:0.31475055377624417 that:0.18523553926632036 of:0.05794776914526358 :0.05624175930069728 +only:0.36388944494205044 be:0.2994803671572123 to:0.11976851349838633 have:0.11006068090284714 :0.10680099349950367 +was:0.3259171060119184 are:0.21082483538057809 is:0.16262870653942704 who:0.15192823745480163 :0.14870111461327482 +lands:0.3278853704479492 debt:0.1977415540237862 and:0.18032072406496208 is:0.16751148604388985 :0.12654086541941265 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.41798464539858493 they:0.20885642910204338 would:0.1488651321703022 we:0.11958476957722908 :0.10470902375184048 +to:0.44245571710466636 life:0.1773004151169898 again,:0.1741561508739631 work:0.10428190827906766 :0.10180580862531294 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +to:0.35884434906640844 as:0.2842267039798616 in:0.15307280466483866 that:0.14003429088057912 :0.06382185140831226 +the:0.9086465101639978 tho:0.04303634989586336 re-:0.019523872841893747 tbe:0.016224864282899893 :0.012568402815345285 +in:0.5210554702584732 by:0.19789651025951532 for:0.1386885836333518 In:0.0734367446229146 :0.06892269122574508 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +contained:0.37197073479464277 w:0.35899975962031566 of:0.1760905094656525 therein:0.05542260908770577 :0.03751638703168341 +for:0.7872978973094087 to:0.12694235119457017 upon:0.041364862449717425 with:0.02996840468163137 :0.014426484364672414 +as:0.3522241098607283 enough:0.2340887282597929 possible:0.165975947048226 possible,:0.15113300907232655 :0.09657820575892628 +the:0.872273471444081 tho:0.04597016984654526 this:0.035059538059531076 tbe:0.025856125721145377 :0.020840694928697463 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +bill:0.25540038874828075 committee:0.23902635444929504 county:0.18491217704462942 will:0.17376199906428152 :0.14689908069351312 +of:0.8507861800466352 to:0.08780539000998083 in:0.026200701805325802 that:0.023041607899303006 :0.012166120238755134 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +character.:0.4842976543673196 law.:0.18954073074207717 life.:0.16190345851099208 man.:0.08254797698026423 :0.08171017939934702 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.41906376441766263 the:0.2776783995439763 is:0.14123613026225368 found:0.08791693150516254 :0.0741047742709451 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 +thought:0.3425889398092274 was:0.20202947952359218 is:0.1612371709224624 heard:0.16075981351947347 :0.13338459622524457 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4370771611055871 In:0.17409187156698502 a:0.16520262323421953 to:0.12053508123787667 :0.1030932628553319 +than:0.4494914950080963 for:0.20218895721451038 to:0.17928061793956357 in:0.09090709709508854 :0.07813183274274124 +it:0.46585168067352223 there:0.2755428430070541 It:0.10304821354962643 he:0.08568412880616033 :0.06987313396363697 +which:0.3618379045804045 it:0.2917132070440524 he:0.19876625757931216 that:0.0884290126610434 :0.05925361813518756 +back:0.3051940759597595 out:0.23292122771422832 up:0.19647076359294027 down:0.17677449938707057 :0.08863943334600126 +them:0.31900210988456856 sale:0.23968257479751517 land:0.20620760882781722 interest:0.13039512917043658 :0.10471257731966242 +called:0.3414414128794704 levied:0.20166127668596015 placed:0.1908415113929987 made:0.15486433114891746 :0.11119146789265323 +and:0.31971834142527733 of:0.22647213527701668 in:0.21043839889200391 at:0.12521790346457756 :0.11815322094112443 +did:0.35977242227819156 could:0.19497428210619228 had:0.18584474656623226 was:0.1328737811341331 :0.12653476791525092 +candidate:0.39789734701993856 good:0.1680462666624389 vote:0.16550426145230196 week:0.16030475784400067 :0.10824736702131987 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.28659584121937326 last:0.2734154106435396 in:0.17659929881733227 and:0.13522515128005919 :0.12816429803969578 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.3874534483747249 to:0.19879621566410682 on:0.17440802911663345 at:0.15220287747568603 :0.08713942936884883 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6949088472564149 in:0.1067816024044339 thence:0.09459256971230294 of:0.07553754080082863 :0.028179439826019836 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.3733985231646176 you:0.2223547555030495 do:0.1825568660728294 them:0.11098804639657894 :0.11070180886292467 +attention:0.36455401735013043 chance:0.19751565249779326 time:0.1803100230727356 over:0.13279484143770384 :0.12482546564163678 +and:0.30863471457544134 were:0.2957548122551564 are:0.15978979176728128 went:0.13821678262632853 :0.09760389877579238 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +came:0.47729551504330153 work:0.14007967658588144 comes:0.138366247256225 stepped:0.12438904759732868 :0.11986951351726344 +not:0.40178782915227823 absolutely:0.33245547110465307 the:0.12634991226488287 deemed:0.07114440776759327 :0.06826237971059256 +it:0.26263058113356036 he:0.24259848942698556 they:0.2182873436471359 I:0.1434371387014605 :0.13304644709085772 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.2860889947377438 died:0.20198732294479005 know:0.19138602831756382 come:0.1821406229964756 :0.1383970310034266 +are:0.5180298895378314 were:0.30777652588860405 have:0.0766895547036073 had:0.06846201169707253 :0.0290420181728847 +him,:0.2880239519030564 them,:0.19793263682460835 interest:0.1766953373878456 him:0.1756541515384352 :0.16169392234605437 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +back:0.43994706214832074 down:0.24078065695668868 out:0.1300877160403912 up:0.12613258742250086 :0.06305197743209852 +people:0.4845051036449967 same:0.19824107039905886 men:0.14022728286294306 country:0.10165410160191408 :0.0753724414910874 +City.:0.362626092679863 State:0.2468981676167094 Central:0.18923321021938946 and:0.10933725183589421 :0.09190527764814395 +not:0.8391929501038213 have:0.08226383723430321 be:0.06797566547019457 uot:0.005764291510730132 :0.004803255680950943 +being:0.27445623098471433 making:0.24285773327482932 having:0.21534753046763525 such:0.157938024465479 :0.10940048080734216 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6993361104774326 these:0.14894630071566364 business:0.05697902997256045 his:0.04845034695459184 :0.04628821187975155 +up:0.321299283873162 in:0.19881974227136087 from:0.16709549095315782 into:0.16091088670449524 :0.15187459619782417 +and:0.3339865559647121 as:0.3044667440143706 him:0.17159399152121513 that:0.12172245086031083 :0.06823025763939129 +you:0.4966215195670267 we:0.17901707000630088 they:0.14989051635149517 I:0.09565549771195007 :0.07881539636322715 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8294412979207725 to:0.06409867697780347 in:0.05112219346704214 for:0.03465069073775421 :0.02068714089662782 +made:0.35521071629696976 foreclosed:0.24398410990080924 done:0.14244664034900092 paid:0.14139776831955897 :0.11696076513366108 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.34441583961242805 any:0.28318538444260766 and:0.18710238183876476 or:0.12222406132330879 :0.06307233278289073 +the:0.8699754714715136 his:0.0394145601092854 tho:0.03906066451440094 their:0.026550358745929384 :0.024998945158870776 +25:0.4086038721042453 11:0.3192828749893848 15:0.12548497799854025 12:0.08807912694766802 :0.05854914796016142 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.3416119316805803 that:0.2770965023025837 which:0.24114041110127982 and:0.09790441813596261 :0.042246736779593744 +in:0.25997785366595755 of:0.25101513952664234 at:0.21132952956457698 from:0.17390562311939756 :0.10377185412342566 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5061531921303697 his:0.27222192670316275 my:0.106813326852356 her:0.0753637280966755 :0.039447826217436026 +the:0.7913753309558667 a:0.05662508864009364 their:0.05620055901313936 general:0.050251442916499356 :0.04554757847440083 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.41662388110466797 point:0.16807091662258078 change:0.16004910728055066 part:0.13649054296501914 :0.11876555202718136 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +come:0.34804186472640936 go:0.20610850614873374 stand:0.16163675459398383 give:0.15426853064738857 :0.1299443438834845 +important:0.2620077795049094 money:0.20643055559641854 effective:0.18644314495602088 rapidly:0.17713521709650543 :0.16798330284614582 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.7699721876892721 probably:0.09531138765437643 never:0.05891260454223101 soon:0.04569168140624439 :0.030112138707876126 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.6509104843331276 the:0.15085309651732856 seeking:0.10206903602572448 of:0.08106501172973365 :0.015102371394085781 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +of:0.8312015625258107 in:0.05720662192420894 and:0.042718213189327864 to:0.040632625924029844 :0.028240976436622673 +present:0.2274370119614554 city:0.21998990893585404 time:0.1951237379639586 fact:0.17996752638774977 :0.17748181475098232 +difference:0.8472635115634105 trouble:0.042634825178750314 difficulty:0.04108474441230906 way:0.034745677640108 :0.03427124120542216 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.3895705326778518 be:0.27885975195313656 had:0.11139933881585459 have:0.11056660334843112 :0.10960377320472593 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +no:0.43429854641147814 a:0.18523651885306602 the:0.16679959295262992 to:0.11768159023779019 :0.09598375154503577 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +mortgage:0.3531514082796797 that:0.22589903703437209 he:0.22247983202608812 it:0.11248333258804194 :0.08598639007181813 +is:0.3815021573122253 time:0.21623464843103052 in:0.15656182894144346 to:0.12992553047821742 :0.11577583483708329 +the:0.7086252881799725 a:0.11071610925866708 and:0.07724807165242886 of:0.07097969285517518 :0.032430838053756454 +self:0.92402530753296 If:0.029181560257708194 if:0.02037118343662887 that:0.01347768903357695 :0.01294425973912604 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him:0.5622047386753992 me:0.24111027972830015 for:0.09035548765504713 them:0.058587766090631696 :0.04774172785062201 +the:0.6936721975226994 a:0.2218717561921074 our:0.03940150061832939 tho:0.024592030843471818 :0.020462514823392005 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +should:0.2775289604118358 will:0.27256923146101425 may:0.15181065646025452 as:0.15155813018101558 :0.1465330214858799 +husband:0.6005812121396129 father:0.11595268724272575 life:0.1026964821021148 ;:0.09178282815007652 :0.08898679036547007 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +only,:0.5960734014546111 laws,:0.15230145057164907 bill,:0.12402657002422582 system,:0.06593665372412497 :0.06166192422538912 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +same:0.6127182710121508 long:0.10376742499231306 well:0.09710558662472232 manner:0.09324468605195613 :0.09316403131885768 +from:0.6253620663455255 in:0.30359144913802255 In:0.0491217481014089 to:0.01784367985023991 :0.004081056564803169 +in:0.32348946354878677 for:0.19802063209884213 that:0.19067472389985346 to:0.15712991300200313 :0.13068526745051456 +he:0.35077209560275535 it:0.2897302060987001 that:0.13613033967864405 who:0.11733210226865042 :0.10603525635125008 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +be-:0.6314905645512048 be­:0.16563522431821412 be¬:0.1476243709594305 no:0.03249204980571343 :0.022757790365437177 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.23053462550081175 system:0.21211225164956987 law:0.2112802413005584 we:0.17427108881546807 :0.17180179273359192 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +speaker:0.43396197558493615 amount:0.18445855744561154 question:0.1574801723841787 bill:0.12313611569830558 :0.10096317888696811 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7127099717632573 said:0.1281262805075146 an:0.06794268297188152 his:0.05225901066221877 :0.03896205409512775 +of:0.4402986510292945 in:0.23948918467251906 by:0.1743425303564942 to:0.08546039348607902 :0.0604092404556132 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +has:0.7694501181225609 had:0.17802551942741168 lias:0.022926694067758824 not:0.01706932709204072 :0.012528341290228149 +top:0.31449750980253516 kind:0.2917040766737737 most:0.1678353853262914 payment:0.11323914317720958 :0.11272388502019012 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.36765397415854745 on:0.3014397873712555 into:0.18588249394408388 with:0.07418322280659638 :0.07084052171951676 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +first:0.5710680329695754 second:0.23911788768774936 other:0.07010359697089716 most:0.06536318415985581 :0.05434729821192228 +no:0.5765522645788039 the:0.18670544641451964 not:0.09634911867138672 much:0.09004095530961924 :0.05035221502567032 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.9135965732151456 bo:0.04038414914975091 have:0.02763916592662461 not:0.011368825696420679 :0.0070112860120579695 +have:0.30133837886903536 say:0.19708079293145558 do:0.19444675616478221 were:0.15382746209480727 :0.15330660993991946 +as:0.26019308618404163 and:0.20547153244647295 when:0.18456268973262266 of:0.18367815805036022 :0.16609453358650256 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.80445027459801 said:0.07623214295211922 his:0.05209573867674754 their:0.03366698503387135 :0.033554858739251875 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6066801479473346 for:0.1683919695261945 to:0.15020562607093735 by:0.03910990672530846 :0.03561234973022501 +is:0.5990030301559554 was:0.2178764183774884 Is:0.06417375623222307 time:0.06138562354639804 :0.057561171687935266 +of:0.9456009071158317 in:0.01726216547930199 ot:0.015385435226966723 and:0.010978858213955122 :0.010772633963944447 +on:0.3373436846264578 in:0.20996176853021717 and:0.18445713580099005 of:0.13942624195968295 :0.12881116908265183 +in:0.7620479809358401 In:0.11745358456721311 to:0.05504992277027544 iu:0.034576000993900166 :0.030872510732771287 +the:0.8032692796215412 an:0.08321519047131049 other:0.04116081918611622 every:0.03796224478133044 :0.034392465939701605 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6854102863118287 his:0.14406364367805088 their:0.08941988118986643 my:0.04305068658101224 :0.03805550223924172 +life.:0.32549241537482876 hand.:0.18675728055419627 case.:0.17111912307453905 own.:0.15972426591362807 :0.15690691508280785 +as:0.26655788832278765 ground:0.26403064435342244 and:0.18590625158859353 was:0.14501485922381335 :0.13849035651138297 +north:0.21356441425188846 same:0.2076575944729774 only:0.20720368184686808 south:0.20167922950265135 :0.16989507992561467 +a:0.5933300251554279 the:0.20975461245845922 no:0.11019020395725262 all:0.04919996558037619 :0.037525192848484205 +all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 +have:0.2901259139919906 ought:0.22134695273976548 are:0.1784451164300058 want:0.17778334585619732 :0.13229867098204073 +made:0.35521071629696976 foreclosed:0.24398410990080924 done:0.14244664034900092 paid:0.14139776831955897 :0.11696076513366108 +in:0.47982212734457325 to:0.15650008233477003 made:0.13570514707553263 at:0.12248307441550255 :0.10548956882962142 +a:0.753913486847982 the:0.1902289601305856 almost:0.038385783241151016 in:0.009273660318168115 :0.008198109462113136 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +pounds:0.35492382432743336 feet:0.2484037586658525 acres:0.200809785814882 miles:0.10731248307090323 :0.088550148120929 +him,:0.33871448821889 them,:0.22989236740702126 us,:0.17634228342281993 me,:0.13795511812601582 :0.11709574282525291 +tract:0.3605614584746068 dition:0.3564919352996782 test:0.10244064816639846 gress:0.09895556019776042 :0.08155039786155624 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +crops:0.2640749329311587 it:0.2381759943401063 crop:0.18402765888201222 and:0.18391541413702978 :0.129805999709693 +All:0.2806905220408695 In:0.19947119763151447 Among:0.19515220971535938 But:0.16550226777559446 :0.15918380283666206 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.4276500938587074 about:0.1923048688075895 of:0.13076444621360206 in:0.12681930971234495 :0.12246128140775621 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +kept:0.3268654371592562 a:0.2742565133427376 keep:0.22850826766246632 be:0.09353360728592379 :0.07683617454961611 +city:0.22369456742961225 amount:0.20773323631999405 day:0.2060255143945402 part:0.18175789781806492 :0.18078878403778864 +that:0.5586788706831035 and:0.18499292916084606 fact,:0.09567152582744505 which,:0.08370337362344471 :0.07695330070516081 +make:0.25893617488399556 give:0.20291323854444404 see:0.20031327429918658 take:0.18289739772996536 :0.1549399145424084 +do:0.38632623385915166 meet:0.25453642554188405 go:0.16273758190751408 him:0.11113823743447639 :0.08526152125697391 +is:0.7152866585205638 in:0.100265916359918 was:0.09679247362296534 Is:0.0456580535205081 :0.041996897976044605 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +A:0.30147720447735304 I:0.27250644463739115 Smith:0.18217792645304412 and:0.12296112249678749 :0.12087730193542422 +make:0.4748962347395264 give:0.15660046887923373 take:0.13075111245983911 keep:0.12790266298044403 :0.10984952094095664 +so:0.24290855110434043 as:0.24134476060884788 that:0.21965913379654853 done.:0.17818138743384976 :0.11790616705641335 +fellow:0.28974843250674964 own:0.2553183023223875 business:0.24484339014787246 young:0.1349444417526289 :0.07514543327036154 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.43551960858718153 to:0.17778835414412764 in:0.16138858767202657 of:0.13834502909495952 :0.0869584205017047 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.3346038743098 who:0.20011395025966328 there:0.17792694396075798 they:0.15270061678764127 :0.1346546146821375 +to:0.8951681945897589 about:0.07284562883945121 interest:0.01310603987037973 in:0.009477558674004422 :0.009402578026405633 +first:0.40963727623886037 next:0.283540534774472 re-:0.19898241842527364 latest:0.0592370582790741 :0.04860271228231984 +and:0.2784214328288342 that:0.27445987315725023 way:0.19873003556260266 way,:0.13406996696721551 :0.1143186914840975 +make:0.4796443371060402 any:0.16304897252611703 take:0.14700062233364122 be:0.11976105109642601 :0.09054501693777561 +a:0.3584949366363551 the:0.29696334871279667 this:0.19659224235220196 each:0.10979663021138641 :0.03815284208725992 +that:0.44289809809061914 and:0.21291470635639606 as:0.20226543926067608 it:0.09040726433782528 :0.05151449195448336 +slightest:0.3038654905194609 highest:0.30252877377809523 same:0.21785340348547702 great:0.10989164370736267 :0.06586068850960415 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +pay:0.2795112296574538 cut:0.1990894678758511 carry:0.1919774355891628 take:0.17476407029437943 :0.1546577965831528 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Smith,:0.33790005875028745 Hill,:0.22058288560482384 Johnson,:0.16126845684247035 V.:0.1566708042138223 :0.12357779458859611 +own:0.8522971202530435 body,:0.055996179650436954 master:0.04003723966412843 public:0.03833544850204396 :0.013334011930347141 +men:0.26045697327893996 as:0.2471185074916363 things:0.20999835039915465 cases:0.16157232907578858 :0.12085383975448027 +in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.2807180919327847 difference:0.20896045097003307 girl:0.1805567461166378 difficulty:0.17579490341105447 :0.15396980756949005 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5318406884167498 in:0.142516304618198 and:0.12758339552945774 for:0.10293484253646577 :0.09512476889912874 +brick:0.6928639068717852 frame:0.09298589560530186 building:0.08754305339752746 window:0.06706203226463854 :0.05954511186074683 +will:0.23560493465926508 did,:0.20834128437541183 are,:0.19555850716485704 have,:0.18038086530424008 :0.180114408496226 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.35521071629696976 foreclosed:0.24398410990080924 done:0.14244664034900092 paid:0.14139776831955897 :0.11696076513366108 +or:0.3322686648504462 of:0.21499845755615696 and:0.18225453868357 that:0.1778211400571542 :0.09265719885267254 +the:0.7272425838891815 their:0.11773522163347357 our:0.07961331780669685 tbe:0.041388574146640975 :0.03402030252400716 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +years:0.329584933057405 miles:0.18385754768021143 feet:0.178514784305485 hours:0.16651158312569145 :0.14153115183120707 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.4494883466564079 the:0.20026118971463547 -:0.12551108622793888 The:0.11812392759440657 :0.10661544980661117 +bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 +and:0.8056509256682115 Smith:0.07434863633786994 Brown:0.059702317812360274 Sherman:0.030670618343018485 :0.029627501838539697 +do:0.38632623385915166 meet:0.25453642554188405 go:0.16273758190751408 him:0.11113823743447639 :0.08526152125697391 +described:0.26542229552760266 soon:0.23356576054097475 well:0.22983095917758292 so:0.15198020025961947 :0.11920078449422015 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.3198581071244783 to:0.2585381343117659 would:0.18901837158894777 an:0.14784723880080453 :0.08473814817400359 +the:0.8229981476768023 a:0.06446108573592291 this:0.04234920471425238 his:0.03852866401504697 :0.0316628978579752 +that:0.30132889896081133 in:0.256854791186334 and:0.15427558926215293 within:0.14867586318129788 :0.13886485740940396 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.4459223275701213 have:0.3614724186054513 see:0.10392579296737967 make:0.044396544950004044 :0.0442829159070437 +to:0.22259761886061358 on:0.21084103927777653 in:0.19838051684438665 abandoned:0.18568525868386596 :0.1824955663333574 +the:0.25352676208584823 Fourth:0.2023899249054429 said:0.19415044293665748 Second:0.1825714843772306 :0.16736138569482067 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +per:0.999516855692805 ner:0.00022410641850525545 par:0.0002173048016877703 r:2.733698085575843e-05 :1.4396106146178455e-05 +first:0.3562839865075 next:0.19504402169703797 1st:0.1798787431117431 same:0.14931347639769574 :0.11947977228602319 +your:0.6351550897313049 the:0.15380816087777924 special:0.09436519195207724 particular:0.08061024598740162 :0.036061311451437074 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +result:0.2799286549752752 vote:0.2496879954019323 and:0.17918765793619787 interest:0.17863637407253458 :0.11255931761406004 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.5072704262957127 country:0.13642118225942532 readers:0.13127867193150136 farmers:0.12128838796121266 :0.10374133155214812 +be:0.5188465049042377 see:0.15034405157361874 make:0.1307274224503514 get:0.1290654080081691 :0.0710166130636231 +in:0.3379945141202231 for:0.19492448776723723 to:0.1699323771467134 that:0.15513162129382507 :0.14201699967200124 +Supreme:0.3753559980359437 District:0.2824162881096287 Circuit:0.20826448698151553 County:0.09495285681086733 :0.0390103700620448 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +showing:0.3622180796836837 see:0.18998505304581056 to:0.18428456027055076 doing:0.1583921887699754 :0.10512011822997959 +be:0.5415905184764669 of:0.1257371680314652 take:0.12232832826596939 make:0.11590789982152223 :0.09443608540457618 +the:0.7240683808148134 an:0.14214294771680483 his:0.07070404417643036 tho:0.03402439887488989 :0.029060228417061452 +and:0.3250032152530777 of:0.23414524025938505 says:0.17452695401637597 that:0.14430578523282697 :0.12201880523833426 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.516404929069087 had:0.325629890682928 were:0.07340755422929846 bad:0.04652832481558779 :0.03802930120309882 +of:0.7267527276366693 in:0.09116759079703453 on:0.07126641748047033 to:0.0643680605248287 :0.046445203560997024 +plat:0.4448926061229033 map:0.26244088751848177 action:0.1562942508542125 oath:0.07538871699633069 :0.06098353850807164 +that:0.5485830702927903 himself:0.16238827722674035 as:0.10667058309604839 myself:0.1053935316445293 :0.07696453773989144 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7461107015448618 this:0.1332677979672725 our:0.05544934771496658 his:0.033653458901892266 :0.031518693871006725 +be-:0.6570923050371538 be­:0.15320032732742253 be¬:0.10240621543024024 to:0.04900106562827572 :0.03830008657690772 +ber:0.7742496436162783 bers:0.2237847351067622 number:0.00100452581118794 bar:0.0007638651478234889 :0.00019723031794781373 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 +that:0.5310078477628835 when:0.19283821077708346 as:0.1008837412257204 then:0.09017868325486615 :0.08509151697944664 +to:0.3239569697508548 by:0.29940648098022077 that:0.15020041729506312 in:0.1498741857175021 :0.07656194625635915 +most:0.7263727492963554 very:0.13131241356965948 other:0.07927638978857701 more:0.04115779191711643 :0.02188065542829138 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.3962248791403346 given:0.16330583264340004 followed:0.15945010195568401 taken:0.1560638116651507 :0.1249553745954307 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +willing:0.2574168564203219 going:0.24215777082517712 not:0.1940711234741652 able:0.16218887352176606 :0.14416537575856986 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.25893388146796625 of:0.24051987111417567 was:0.19654455491808984 up:0.1621517905871092 :0.14184990191265903 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.2979145000757174 signed:0.21776331680776725 made:0.17185720513023478 Hill:0.1565926409581789 :0.15587233702810147 +that:0.3505237344129369 but:0.2081948260970865 as:0.18006459483884849 and:0.155357941213071 :0.10585890343805698 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +date:0.2702999049608445 consideration:0.26499195290359406 one:0.1817196279996263 command:0.15775323472605174 :0.1252352794098834 +man:0.41662388110466797 point:0.16807091662258078 change:0.16004910728055066 part:0.13649054296501914 :0.11876555202718136 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.28529799085324653 is:0.23021077236137413 in:0.19191706321487628 on:0.16206412200561 :0.13051005156489318 +no:0.37702340059371303 the:0.19134821992967146 not:0.17615996890718338 much:0.14155823069796936 :0.1139101798714628 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +schools:0.3184944617030442 auction:0.1821645517065791 buildings:0.16944671619388996 health:0.16504782601865745 :0.16484644437782925 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.42305068345426283 no:0.33687528238444164 as:0.09381017397942704 an:0.0776025779966431 :0.06866128218522533 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.569723662033542 his:0.17571880171874568 her:0.09783596182565325 my:0.08413283929858621 :0.07258873512347279 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.37345569977791593 had:0.2446805677991662 is:0.17447977219468705 did:0.11877863684609506 :0.08860532338213573 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 +country.:0.22100319086403547 world.:0.20916559072023072 city.:0.20628367616284463 sale.:0.18712747359893 :0.1764200686539593 +by:0.3519568736434658 in:0.29497067587746223 for:0.13167597660486013 to:0.11796377020844002 :0.10343270366577179 +feet:0.3692132581724253 miles:0.3179626822178752 inches:0.1882662335165328 years:0.07803788467393552 :0.046519941419231235 +they:0.27958656586269626 he:0.25384299478630346 it:0.1946469487993776 we:0.1734825111833929 :0.09844097936822982 +me:0.5044841556846251 him:0.33370970831990443 us:0.07303065327333576 them:0.058257963270454925 :0.03051751945167962 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.6080860506037264 in:0.17465120576635546 if:0.10505401815202012 that:0.06111591985348445 :0.051092805624413616 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.3845066503515108 was:0.27100183492523017 the:0.16711495133622523 is:0.11423428058686282 :0.06314228280017109 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.35583570345522825 river.:0.19978636286020535 Pacific:0.17709243565924354 river:0.1558031286578073 :0.1114823693675156 +time.:0.25476239044785387 other.:0.2198255417402867 kind.:0.19971225343481927 one.:0.16890937899252406 :0.1567904353845161 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.20860159770840722 not:0.2059250783897851 be:0.20451573498461967 continue:0.19287332038499716 :0.18808426853219068 +a:0.3409104680390761 be:0.2965517371757425 the:0.28079609474892114 this:0.05587671689482429 :0.025864983141435923 +of:0.2938416208024923 to:0.21346037311010016 in:0.18658027175605824 or:0.15727651925345323 :0.1488412150778959 +the:0.7934288317140348 cold:0.07034756603319073 of:0.05225658018031006 hot:0.04238266587832477 :0.04158435619413982 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +pany:0.39409244017999295 mittee:0.2960057180190273 mission:0.18601763721683573 fort:0.06310547320066431 :0.06077873138347973 +lowest:0.5130750488361673 highest:0.22125630964674278 most:0.18112507116076684 way:0.05675986066743451 :0.027783709688888693 +the:0.5188188905312128 he:0.19261660268635172 a:0.11398746511566984 they:0.09546437412180912 :0.07911266754495651 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +day:0.29177927513978336 one:0.27546538675388743 part:0.2162920835259711 member:0.12571916314886405 :0.09074409143149417 +officers:0.38424173117961946 service,:0.24907314085008864 stores:0.1322632389146348 service:0.12285670473280264 :0.11156518432285446 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +cause:0.723374951173226 ing:0.10675996445690207 sides:0.0692292182958529 side:0.05501460125616094 :0.045621264817857936 +and:0.45770500502234696 but:0.1969845455084913 as:0.1329571640101116 for:0.10882456016883314 :0.1035287252902171 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8404544678833009 a:0.08562329669198626 tho:0.03620971317976699 open:0.021034257227136394 :0.01667826501780937 +and:0.6331684527125595 or:0.20382209905796067 purposes,:0.09051564070654504 conduct:0.036280996885450195 :0.03621281063748453 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.27388538794750583 made:0.27149605404774746 in:0.2522741374294984 to:0.10478429931461893 :0.09756012126062918 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +I:0.507998031108565 we:0.14250650103838994 not:0.1341894578713893 and:0.1213076623460352 :0.09399834763562043 +we:0.2960484006338947 they:0.21836254349555642 he:0.19632971940400593 it:0.15589105733702702 :0.13336827912951604 +time:0.3353305298851757 section:0.2777614457293267 country.:0.15088102463890846 city.:0.11971634175400614 :0.1163106579925829 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +about:0.4406776003787546 to:0.1884326274227257 worth:0.16191205230222266 only:0.1296100567767352 :0.07936766311956203 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +after:0.6526050318359782 above:0.16638789465805537 at:0.11080639867436042 in:0.043786521453611504 :0.026414153377994454 +favor:0.35702697395761607 front:0.20165834476590563 one:0.16276286979992774 order:0.1534271826066025 :0.12512462886994816 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.3915353644497493 may:0.22454316596837628 would:0.21213816699358734 should:0.08678679498341482 :0.08499650760487226 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.3279954802415183 a:0.2067042981314706 in:0.15870720026700028 that:0.15809121279897434 :0.1485018085610364 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +m.:0.422979088281532 m:0.32429109574264076 No:0.09642909460573816 Township:0.08527654739899071 :0.07102417397109848 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him,:0.27380728172181573 be:0.19649795736085857 him:0.19098230879313408 me,:0.17372011034931062 :0.1649923417748811 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +deal:0.5907301958349878 sense:0.12161705304350205 condition:0.11174991563087111 many:0.10918125879914733 :0.0667215766914917 +possible:0.4397306953103425 importance:0.16637218396618284 care:0.15988729291634804 opportunity:0.12504571965579314 :0.10896410815133342 +well:0.3675750893465405 aforesaid,:0.19756651670137643 possible,:0.180439332216918 it:0.13993261169144527 :0.1144864500437199 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3025636435087844 in:0.21923970856932853 or:0.20674261210998035 In:0.14747423998410308 :0.12397979582780369 +ing.:0.4006234697315729 -:0.21575120554477134 cause:0.15633287648514743 come.:0.1271228317962259 :0.10016961644228227 +the:0.6497421777713981 that:0.12440007007983618 in:0.12159378930367304 to:0.0587227208133609 :0.04554124203173167 +ner:0.43692954379816085 kind,:0.19112022124420996 age:0.16155299730929273 aged:0.14087358186277663 :0.06952365578555988 +the:0.6600219009934777 a:0.13605747354857461 this:0.07016779237550069 tho:0.06806370831592322 :0.06568912476652385 +is:0.6750648539255654 was:0.17568420226758674 Is:0.12188447506576229 has:0.0150244878726034 :0.012341980868482157 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +men:0.3739703295156943 parents:0.2227225622306154 couple:0.1894052194778647 mother:0.12127102810295633 :0.09263086067286927 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +New:0.9930325477287238 Now:0.006020950986399632 the:0.00047921781813481954 w:0.00026322297991021023 :0.00020406048683130064 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +same:0.4552826101530618 particular:0.2344029777209727 time,:0.11161778935894173 solemn:0.105285592392913 :0.09341103037411065 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5060039010150793 a:0.1957820783992109 his:0.12280238353379012 their:0.09013305086865157 :0.08527858618326799 +and:0.5234424204551603 is:0.18217832778889004 or:0.1150262371985518 was:0.10779235047342928 :0.07156066408396859 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.37360507763595185 claimed:0.17200910516994722 shown:0.16858371270771805 done:0.1446405634121955 :0.14116154107418738 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +men:0.3355444662142457 man:0.31401876484823527 persons:0.166725062472748 person:0.14735899684459974 :0.03635270962017129 +is:0.5747935699452871 was:0.2679283347646157 Is:0.06902262592363115 are:0.06408382882519448 :0.024171640541271366 +it:0.41242901695740736 they:0.17585730991951226 there:0.17455857542856254 he:0.12467133922969874 :0.11248375846481914 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.23392129222355124 is:0.21241137730145046 as:0.20899150579383707 that:0.173181238442042 :0.17149458623911915 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mississippi:0.44379889169787734 Missouri:0.24907801643483377 Ohio:0.1649038537061228 Red:0.08243563058204173 :0.05978360757912442 +made:0.404005389264605 issued:0.20523496962753146 and:0.14201992141911463 therein:0.13930475298648703 :0.10943496670226173 +up:0.43685745472409304 ings:0.21351258633699627 one:0.16730967105624595 ing:0.12136704990975651 :0.06095323797290809 +be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +premises:0.31715201422214157 following:0.29548645441684135 said:0.1617493849010753 lands:0.11636069454626245 :0.10925145191367933 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.5641716894875966 if:0.1889094431675402 then:0.10226941534948743 when:0.0859011328662594 :0.05874831912911664 +are:0.6072530053457007 were:0.1785378368842833 found:0.08665595010382832 have:0.06451589214487186 :0.06303731552131574 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8850417951376174 this:0.034800469815547144 tho:0.034419815403243334 an:0.03042111810773542 :0.015316801535856716 +country.:0.26803284903240115 world.:0.2291145910069688 city.:0.21879424978954234 people.:0.15398937800370113 :0.13006893216738652 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +large:0.6836439214632912 small:0.1280144078593396 larger:0.09124720200114943 largo:0.05121616180413701 :0.04587830687208272 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +wife:0.4369006917939258 wife,:0.1525418985079288 life:0.1515419042429613 head:0.13521155646257982 :0.1238039489926044 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +between:0.4323384107690971 in:0.27756303454481 of:0.21360811761842838 In:0.04278526265942455 :0.03370517440824001 +for:0.3373889683201654 now.:0.238512252952084 at:0.15245157936238052 more.:0.1439868658225734 :0.12766033354279666 +had:0.33473615102392174 have:0.31831823528266173 has:0.20501579138902462 was:0.07684172752627588 :0.06508809477811617 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.632712229109945 he:0.12260856479077353 It:0.1121441255743704 there:0.09739010622955688 :0.03514497429535426 +them:0.35591390801031375 Deeds:0.23898128743073002 land:0.16427108330298018 interest:0.12632544005277482 :0.11450828120320115 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.2870855639095787 will:0.26459011906659174 we:0.20602979088894963 to:0.12291890618018092 :0.11937561995469909 +the:0.511919704069664 that:0.2059538019665788 said::0.14290579924887434 a:0.08912317816156558 :0.050097516553317116 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +did:0.28829157371321046 could:0.24330719796753783 am:0.1900182008400474 do:0.1832299663455131 :0.09515306113369121 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.46326402866168215 for:0.29715200728795055 to:0.1644777827123122 in:0.05926353311905568 :0.01584264821899929 +time:0.4152049642886269 morning:0.17222225230157037 way:0.16130314305391502 that:0.12875168873128479 :0.12251795162460283 +the:0.3218792407959958 in:0.281793517087285 a:0.1639631241752654 with:0.14245555589761089 :0.08990856204384275 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.35564428011320853 you:0.2823643906516749 of:0.14771316780947547 their:0.1254030856931303 :0.08887507573251066 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +two:0.33533543553387113 very:0.31438467256727015 poor:0.17726912768778488 matters:0.12227769962168884 :0.05073306458938501 +said:0.9030187616283484 certain:0.044149523525492784 such:0.021530434993689646 the:0.020879650996970207 :0.010421628855499156 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +homes:0.24965559009128852 own:0.23383676964895136 lives:0.1775105624885729 hands:0.17369028491263128 :0.1653067928585559 +homes:0.24965559009128852 own:0.23383676964895136 lives:0.1775105624885729 hands:0.17369028491263128 :0.1653067928585559 +them:0.35591390801031375 Deeds:0.23898128743073002 land:0.16427108330298018 interest:0.12632544005277482 :0.11450828120320115 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8484941561492974 a:0.06479025476312983 tho:0.04026093149306147 this:0.0319357550071943 :0.014518902587317178 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4510663700126516 this:0.20228559538849003 a:0.141297453430032 some:0.1137566149123703 :0.0915939662564562 +be:0.3787604846437459 appear:0.20382792778694628 put:0.14826221486361182 remain:0.13674382940724739 :0.1324055432984487 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +inches:0.44111527286328994 feet:0.22736571097979222 years:0.1407148069976078 bushels:0.10920937330819663 :0.08159483585111334 +of.:0.31779638634080065 people.:0.25831163239906063 world.:0.22979877170563062 again.:0.14971917721554354 :0.04437403233896472 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +result:0.24281601955784213 number:0.22925850381580123 people:0.1822410601220826 amount:0.1818487372336084 :0.16383567927066556 +and:0.30366531082325676 went:0.29741617379199553 was:0.14089115201447888 came:0.1334832822173921 :0.12454408115287671 +man:0.23512516938558284 place:0.21085574289245193 decree:0.19764450140774678 feeling:0.19180199201609613 :0.1645725942981222 +be:0.7568281660028164 not:0.1340077363281694 bo:0.05308263008237794 have:0.037055766457788214 :0.01902570112884808 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8119620939475993 tho:0.08356683177149828 and:0.07157607993391624 from:0.018028221290110502 :0.014866773056875612 +view:0.3165970093886053 est:0.2951443626129211 course:0.20065538009610917 cept:0.09989432124750136 :0.0877089266548631 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +county:0.4001766070321706 the:0.23096983285273986 or:0.13013090513695008 and:0.12719475716435807 :0.1115278978137815 +to:0.3730117784757217 with:0.2147240328631041 in:0.16380831201982296 husband,:0.13401507780084695 :0.11444079884050422 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4354259832950366 and:0.1708073266792515 in:0.1515808816938241 to:0.14155877520643292 :0.10062703312545489 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +away:0.4103451747980654 him:0.22895662811066314 on:0.1405459620378121 off:0.13439354970286008 :0.08575868535059922 +not:0.4168319107690567 generally:0.3138807463449502 always:0.10611018140996233 also:0.08412786160624754 :0.07904929986978318 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.39627573883597433 and:0.19202110331310987 for:0.16615142334587704 from:0.12459675169754554 :0.12095498280749338 +He:0.6682286685197237 She:0.1783532587183732 One:0.08190436608085629 It:0.05148710191241744 :0.020026604768629424 +and:0.3957077993865005 as:0.22752962566834872 work:0.13519581299799138 mineral:0.1331356643663834 :0.10843109758077583 +willing:0.2574168564203219 going:0.24215777082517712 not:0.1940711234741652 able:0.16218887352176606 :0.14416537575856986 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.3040321274360912 to:0.2693750724265698 on:0.19393481597777654 there,:0.12048064752902536 :0.11217733663053703 +of:0.3165718183878305 in:0.2644704337593209 to:0.1664236341839278 on:0.15209456132600313 :0.10043955234291771 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4320137457904714 their:0.3160957119704991 our:0.10656961821322566 his:0.08250159910241829 :0.0628193249233856 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.5592994397522594 to:0.16718456031014103 in:0.101165889512026 for:0.08869057053978231 :0.08365953988579117 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +He:0.31652602060756635 But:0.2413688975838501 and:0.21015340341464872 A:0.13299112720578526 :0.09896055118814968 +him,:0.27380728172181573 be:0.19649795736085857 him:0.19098230879313408 me,:0.17372011034931062 :0.1649923417748811 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.29869942294928425 and:0.2859369200605272 that:0.16025842120530046 with:0.14204536350074154 :0.1130598722841464 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5039129144849048 duly:0.14451275772222452 to:0.14400715121746166 a:0.11301911098544712 :0.09454806558996183 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7251030822530683 an:0.1300666731569362 his:0.054291831702859124 this:0.048999026829867155 :0.04153938605726938 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.3291185977709797 he:0.2519298051538914 we:0.2292843080170801 it:0.13587953010732282 :0.05378775895072602 +in:0.3518130063467805 of:0.2149169812885283 all:0.21151515469388626 that:0.11209923957060895 :0.10965561810019607 +men:0.4136999573176498 and:0.194246003050795 went:0.1371749627506235 was:0.13276395775666636 :0.12211511912426543 +the:0.8552241503738888 tho:0.046891539627280994 a:0.0365453409287781 usual:0.03293785101738133 :0.028401118052670777 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +entire:0.2982403851746012 county:0.2521810236291745 American:0.17362693362330314 large:0.14474577627378127 :0.1312058812991398 +man:0.25845201388079686 named:0.20790139873198363 was:0.20162881757473963 vote:0.17389481464737522 :0.15812295516510466 +that:0.3130091207804673 he:0.2243717535562977 far:0.19969860183381666 often:0.1425194244997922 :0.12040109932962621 +been:0.8209404308318236 an:0.09250519368474464 not:0.047657852926791325 something:0.019691659369988488 :0.01920486318665184 +lease:0.23900657332408912 control:0.22957496695385343 handle:0.19566842428795495 operate:0.1712460611781749 :0.16450397425592764 +virtue:0.49027458314010086 deed:0.14907298603540964 means:0.1484581059307114 one:0.12436968669233539 :0.08782463820144273 +and:0.33189897067235863 Council:0.28993248629628426 Hall:0.240165043055565 is:0.07528879535814378 :0.06271470461764851 +them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 +the:0.47572266429487226 nearly:0.16244760598251534 each:0.12624946219018904 about:0.11894595121538162 :0.11663431631704166 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +thing:0.3120328154881009 reason:0.21051012047546733 one:0.1837354091836135 possible:0.1689062672694805 :0.12481538758333777 +are:0.34886677734993204 and:0.24005520190171892 as:0.18254910891995763 were:0.17126208673380008 :0.05726682509459128 +on:0.2690099046661418 largely:0.22798653033421837 something:0.21417813702716484 paid:0.15985226747211495 :0.1289731605003602 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.3835272506364659 men:0.27062729872872315 people:0.21086083089951896 woman:0.08022621259575838 :0.05475840713953359 +ready:0.3628517431405841 provided:0.2271772781686584 used:0.1925663127722895 stands:0.11242809975076085 :0.10497656616770715 +to:0.40224556207459383 who:0.32160120939773457 of:0.12395686712448664 will:0.085065530453475 :0.0671308309497098 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.4297023856687259 would:0.26221949868608224 may:0.14943892201617703 also:0.09891100070132727 :0.059728192927687586 +street:0.23973867003608645 of:0.23413798734329508 N.:0.20363982401351066 section:0.1645976635634413 :0.15788585504366656 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9124171787337586 tho:0.050218894282050175 tbe:0.014768134064873059 a:0.013042946109431401 :0.00955284680988679 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.4224351940879293 was:0.1772211015655809 does:0.17105551134860458 would:0.1299145353044791 :0.09937365769340607 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +his:0.29779152044792967 the:0.25690857216033114 100:0.16542697333093123 six:0.14473551387813968 :0.13513742018266825 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.4064016830554282 into:0.22268313547745067 in:0.1549739333519344 against:0.10812889737133095 :0.10781235074385599 +hereby:0.4786773952931736 being:0.25854672958261754 not:0.13974316645808652 now:0.06485206255903002 :0.05818064610709234 +and:0.2747836865564974 as:0.27174219017300894 life:0.2215753310729137 age:0.1488450025718443 :0.08305378962573566 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.5212847390129304 out:0.15294187241192392 composed:0.1327814462586652 made:0.11838493255350334 :0.07460700976297718 +direct:0.22392953928653347 report:0.20953339379791838 point:0.20154545239934102 visit:0.19293253809968133 :0.1720590764165257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.4036412792211286 were:0.17865386168547043 came:0.1708410613719349 come:0.1555527391581591 :0.09131105856330711 +the:0.7566067338621943 a:0.10121881831881586 his:0.05533589699442518 their:0.04428716132770496 :0.042551389496859764 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.6074710955064027 is:0.15071925868082006 who:0.14012186360957446 had:0.06895754979925972 :0.032730232403943044 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +name:0.5944091476983021 life:0.1319818244064209 duty:0.09762295002306193 death:0.09102145421711444 :0.0849646236551007 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.3882556477059495 all:0.17624135766700755 Deeds:0.16088807782174416 land:0.15702328380727673 :0.11759163299802199 +the:0.32565356809213253 his:0.23022003091261883 in:0.21742917770331746 a:0.14624415156940263 :0.08045307172252861 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +corporation,:0.30949575359345466 late:0.18869792347564232 boy.:0.17420343827998738 man:0.16930979770121812 :0.15829308694969757 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +it.:0.37101738964456066 them.:0.22416805906337475 you.:0.1508852716379464 sale.:0.14324569886216212 :0.11068358079195607 +distance:0.4028360878730149 girl:0.1777999938630454 ones:0.14905998460505757 attention:0.1382149216562056 :0.13208901200267656 +great:0.27457239613887097 wonderful:0.2557206840866798 valuable:0.21344149649859348 certain:0.1321218479857673 :0.12414357529008842 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +a:0.5372542926713467 and:0.16437782716858915 the:0.11387935539293303 to:0.10014799998463055 :0.08434052478250056 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +much:0.3681336043859945 wet:0.180114720490851 long,:0.17253480119951967 weak:0.1443802896749316 :0.1348365842487032 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.28336941342445204 I:0.255117620681886 we:0.18254048818856258 they:0.1792390955767895 :0.09973338212831007 +to:0.48625277615692586 in:0.17881569377688697 for:0.1343132910991075 until:0.1089593963737637 :0.09165884259331597 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.7036411772237295 as:0.09259317187106929 body,:0.07027350589332108 peace,:0.06754382138255974 :0.06594832362932021 +he:0.5122754784646757 she:0.1637857895618838 they:0.14558338262085468 I:0.10166048056132293 :0.07669486879126301 +did:0.28829157371321046 could:0.24330719796753783 am:0.1900182008400474 do:0.1832299663455131 :0.09515306113369121 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.4562987977426752 what:0.193650905047024 if:0.17575295771313634 how:0.12907900663528832 :0.045218332861876334 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +government.:0.38388424955990613 law.:0.2239882867125796 duty.:0.13618949954972306 power.:0.13274898443478478 :0.12318897974300635 +of:0.9060596404359029 by:0.0453149527106415 to:0.016729052266158773 and:0.016265525781433393 :0.015630828805863365 +the:0.6810422162016305 a:0.1390878882744646 and:0.09660368632138545 in:0.04706698123629526 :0.03619922796622415 +excellent:0.5158052828873824 eminent:0.14762762316583564 absolute:0.1390009678783597 ample:0.10773750867379221 :0.08982861739463005 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +homes:0.24965559009128852 own:0.23383676964895136 lives:0.1775105624885729 hands:0.17369028491263128 :0.1653067928585559 +have:0.46497155214865077 had:0.15730394829102431 who:0.13827465761817284 will:0.1271663298427595 :0.11228351209939277 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +who:0.3339015767732208 it:0.24856711454033095 which:0.2045649534643611 and:0.11531314221362432 :0.09765321300846286 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +i:0.44712279817786454 in-:0.1613958617141656 l:0.16137830864027355 1:0.12097325772635376 :0.10912977374134253 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +It:0.34374556665565564 I:0.2468232333880304 You:0.17430955273150875 it:0.12741608267202992 :0.10770556455277523 +a:0.45993752017418604 the:0.29376015914599224 such:0.09570913772887628 be:0.09554592020034829 :0.055047262750597174 +is:0.3977442968515334 was:0.2027620582011754 to:0.16900208136486805 in:0.1386371658455847 :0.09185439773683832 +would:0.29257180563090646 to:0.22168315003045044 shall:0.19846498927458797 will:0.18478705032811057 :0.10249300473594461 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +years:0.46713385224818454 miles:0.1439419469270302 feet:0.13863456670478952 millions:0.13190833369247829 :0.11838130042751756 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25893617488399556 give:0.20291323854444404 see:0.20031327429918658 take:0.18289739772996536 :0.1549399145424084 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.39177571257834876 so:0.280154490399486 very:0.14628463735258038 too:0.09833712974090467 :0.08344802992868044 +the:0.9215329279956558 tho:0.031686499922291375 its:0.023391566388098174 tbe:0.016567315888987095 :0.006821689804967466 +he:0.3804340160145224 it:0.24187276857864706 they:0.22438157553126795 she:0.07775809784325254 :0.07555354203231013 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.5934885995069547 lady:0.14939467677343587 woman:0.1454403856587628 girl:0.056894576609769536 :0.054781761451076945 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.30868328858735894 be:0.17916151544747147 me,:0.17681553280612206 him,:0.1737521460638493 :0.16158751709519834 +of:0.8253163916788852 in:0.049328015734623684 for:0.04870116143751956 and:0.043996771099779175 :0.03265766004919238 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +but:0.24207259443030926 decided:0.21139199027951106 certainly:0.20802500357204654 probably:0.2032048747021178 :0.13530553701601536 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +went:0.32979583969910414 pointed:0.23236384633791402 came:0.16665483240192394 was:0.16108270190724816 :0.11010277965380974 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +able:0.40678286427927557 allowed:0.16837189371372713 made:0.16004441386181978 used:0.13387521084376586 :0.13092561730141164 +I:0.2991268178420035 investigation:0.2761700369923984 oil:0.1889617973154222 explanation:0.15361992921197068 :0.08212141863820516 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.5503823718938 are:0.252589064636103 and:0.07343029965511987 has:0.07264749426337458 :0.050950769551602375 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +hand:0.2985044084515125 earth:0.19024965631422006 it,:0.18691055166528167 board:0.17297951477659307 :0.15135586879239268 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.5066438707344467 under:0.29202121071443626 and:0.08973833649677929 shall:0.05646566259732163 :0.05513091945701608 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.38161701791368025 by:0.24091225628745613 up:0.15622177716778538 with:0.1294754189070057 :0.09177352972407271 +king:0.5337453349471781 ture:0.4123507856812327 ;:0.020175944535631832 ple:0.018222206606861555 :0.015505728229095647 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +I:0.36079498822183836 he:0.2389155899372102 they:0.1922849404340769 it:0.1119783877032484 :0.09602609370362607 +is:0.4444749587756546 seems:0.21137095243808565 was:0.13941926833021356 seemed:0.12798029257969082 :0.07675452787635521 +and:0.9115256514883142 of:0.050166158685566876 in:0.014403137401924032 Smith,:0.012768965875152426 :0.01113608654904249 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +or:0.9168577251581581 nor:0.026723245704426687 than:0.024780192211006396 un-:0.017373965541408853 :0.014264871385000022 +to:0.30177038590628075 more:0.3014862579754869 hard:0.1562224597589407 extra:0.12866746909251037 :0.11185342726678137 +in:0.26637273380932064 by:0.20051727514903264 if:0.17963416269367316 at:0.17731810622096542 :0.1761577221270082 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.3220842928339163 country,:0.190526329323428 house:0.16886871133218292 country:0.16166585438199063 :0.1568548121284822 +in:0.2722049117534322 if:0.22092800878777075 nor:0.18313984301291023 as:0.16593276735866397 :0.15779446908722286 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +favor:0.24629659869273499 attendance:0.2161998156795393 charge:0.195898218747123 effect:0.17989219729043224 :0.16171316959017046 +the:0.616814299841363 old:0.11639650309925365 a:0.0999601519288818 them,:0.08696812686685901 :0.07986091826364244 +and:0.26206756840048595 that:0.23643390191733893 because:0.21222940029262088 as:0.15842148008539386 :0.13084764930416032 +the:0.8150576179014313 of:0.06881478549705519 in:0.04617736360283236 this:0.03754587925610887 :0.032404353742572285 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.33987505168382603 such:0.20429190044323775 in:0.1597975838805144 was:0.15804302107453402 :0.1379924429178877 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4922427631381249 to:0.1691675879649133 in:0.16821409019064926 on:0.09111284606805298 :0.07926271263825967 +make:0.34322138585111767 keep:0.19350419037159775 be:0.1667581700847247 give:0.153157434332911 :0.14335881935964903 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.5592994397522594 to:0.16718456031014103 in:0.101165889512026 for:0.08869057053978231 :0.08365953988579117 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.6508556366490896 owned:0.10578685179138829 or:0.10507530131221088 around:0.08291733588224146 :0.0553648743650696 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +executive:0.4530036723685066 great:0.20339010758142942 business:0.1484980665106981 natural:0.10523092339103732 :0.08987723014832859 +pany:0.36927774102157024 mittee:0.3062477503561977 mission:0.11071269506000124 ing:0.10730928517314851 :0.10645252838908234 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +just:0.42554280747267337 not:0.32054223007910737 Just:0.11951579770069178 been:0.08153781425990281 :0.05286135048762478 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +friend:0.5048948963497879 is,:0.1751045520030225 cities,:0.13469469369365794 loss:0.10169067360659886 :0.08361518434693273 +people:0.29553566225384426 we:0.2458653893210707 I:0.2278757567447669 men:0.13871003902994997 :0.09201315265036834 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +there:0.3204188440631065 and:0.2301869118614876 what:0.15588587153225603 it:0.15251823966861688 :0.14099013287453296 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +up:0.4206349697951371 down:0.1702808638051853 up,:0.16819743838516404 away,:0.12685902972205484 :0.11402769829245879 +able:0.4081416956615866 made:0.22572806479799212 unable:0.14330007169873005 compelled:0.1131605658418616 :0.10966960199982966 +be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 +able:0.31358081660741727 and:0.21485736951572101 ing:0.1848058250428197 ed:0.1661267447423215 :0.12062924409172032 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4287719816426461 as:0.20375387484981192 to:0.154568228316988 is:0.1341653918595252 :0.0787405233310287 +all:0.4739392168507537 that:0.2562059616196249 which:0.12320501518463044 said:0.07820061116942735 :0.06844919517556364 +the:0.4250873674365557 this:0.2290183898571274 his:0.14697275026340853 their:0.12990483008578604 :0.0690166623571225 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7744322187826811 a:0.11772816998459246 our:0.05034620038129276 tho:0.03422399566799266 :0.023269415183440802 +majority:0.3833371528292724 total:0.20175067708600938 single:0.14625949101503935 large:0.1360910771194194 :0.13256160195025946 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +me:0.23416810729494922 him:0.2058545786818288 and:0.1926643106125615 up:0.18890069582510963 :0.17841230758555082 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.3193549281489067 is:0.2777829848774328 came:0.1688676445931626 broke:0.13028723871758957 :0.1037072036629083 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +or:0.9787586929768431 of:0.018968605597361524 and:0.0011752612157272656 oi:0.0006642289707696744 :0.0004332112392984226 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7883265422417264 with:0.06364027408167684 an:0.0530421447492246 and:0.05078162083882684 :0.04420941808854541 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.2743998783904892 in:0.2288366774444578 on:0.21849446996600372 from:0.15206588963789106 :0.12620308456115825 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +can:0.40319925172028115 will:0.20249244180909443 could:0.16999100616134327 would:0.16129329917702043 :0.06302400113226063 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4526687311570797 as:0.16924652504673768 in:0.14855766553011485 is:0.11497618397613928 :0.11455089428992843 +have:0.3974554208989962 was:0.2979920228011935 had:0.27796437896874343 be:0.015022018466849958 :0.011566158864216806 +time:0.2662007269602721 demand:0.20374566206278708 necessity:0.19227363546651788 work:0.17423850470127075 :0.16354147080915216 +it:0.2990328777825526 to:0.264662811308389 us:0.23680899183191925 will:0.10508410426292611 :0.09441121481421309 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7850468648661079 by:0.0870418030876829 ol:0.07111531807526598 oi:0.033305237743582516 :0.0234907762273607 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.3178759751755856 them.:0.2392308177037045 sale.:0.21537010795225692 life.:0.12698993345535597 :0.10053316571309702 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +several:0.4243219099785659 for:0.2863101117791479 four:0.1689173173071885 and:0.06314148743321485 :0.05730917350188288 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +due:0.35652308670036387 thereon:0.3062873319855571 and:0.1351953346868698 according:0.10386660567949454 :0.09812764094771467 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +very:0.33196784676414615 most:0.2577501770700018 small:0.14697532011826117 certain:0.13566682310943912 :0.1276398329381517 +the:0.9058073393312376 tho:0.04326409628296924 tbe:0.021376635509181147 our:0.01603894412907241 :0.013512984747539576 +after:0.46385590425883716 default:0.18068015833477366 without:0.12964697211499715 not:0.12164092017080429 :0.10417604512058792 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.5481440258110865 just:0.20414553041210226 a:0.09863069672441678 being:0.08117104602525471 :0.0679087010271397 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +know:0.30777271439161624 believe:0.2950578506344941 so:0.14959199005035662 think:0.12619838322756602 :0.12137906169596699 +that:0.4664866673823332 which:0.2657310285970014 or:0.11814086768458387 and:0.07829193051446069 :0.07134950582162089 +business:0.2504127203674375 process:0.21537715481600034 person:0.20700254384686528 man:0.18943078975430647 :0.13777679121539055 +be:0.8670592681093132 the:0.06143048618068625 bo:0.04365036558195885 have:0.020558861819450273 :0.007301018308591422 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.4345711205605893 Senator:0.23763064265631761 Mrs.:0.16476157117953277 the:0.09670949432481644 :0.066327171278744 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7653115426572044 a:0.1649339562226255 tho:0.03876368244610588 tbe:0.015966312448231948 :0.01502450622583237 +so:0.38434527729342743 been:0.1917292278246543 gone:0.16737246789631685 not:0.14598195584966348 :0.11057107113593799 +a:0.45693446488793715 the:0.4218368351086838 his:0.06474302509249918 so:0.029648234393456423 :0.02683744051742338 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +mind:0.2992418590095368 opinion:0.29045680855818284 belief:0.1962613694348331 way:0.1304606888103838 :0.0835792741870633 +was:0.41129757222919316 is:0.28791428546609354 and:0.13566328897654004 has:0.088185720943553 :0.07693913238462037 +would:0.5238413505630494 will:0.16049233794060636 may:0.11609740330123607 might:0.10224749104993114 :0.09732141714517711 +whole:0.39851455537090774 principal:0.2757790109038661 said:0.19678835235622213 further:0.06589885095072343 :0.06301923041828067 +are:0.29244454637930073 was:0.24291121377054986 were:0.17647461323205593 is:0.14929738335899256 :0.13887224325910089 +that:0.5005155831931414 it:0.2683852913613634 he:0.09741219357177444 It:0.06828066188466853 :0.06540626998905213 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7763859983324731 in:0.12570219014277187 thus:0.05019291790713174 for:0.025020850502043595 :0.022698043115579474 +ten:0.2882127826118327 the:0.24271201104469747 five:0.2116204450815345 fifteen:0.14702062258266166 :0.1104341386792737 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +The:0.7138456887314236 This:0.18696793816939025 A:0.05436684256036876 Tho:0.02843095325416587 :0.016388577284651356 +a:0.4075921561013095 the:0.3963091793266427 my:0.09453064005536216 little:0.05103665050912576 :0.05053137400755985 +and:0.32198705895006446 that:0.27866861640802204 all:0.16636882049869878 for:0.14819710209646772 :0.08477840204674704 +says:0.304397649372872 stated:0.17990656545138953 was:0.17288636242906316 said:0.1726370866615515 :0.17017233608512378 +all:0.2735952418931577 that:0.27231582965676926 which:0.2298014817103934 leaving:0.12406684007474124 :0.10022060666493834 +provided:0.3594626449808402 shown:0.3233657043234826 required:0.11571991894097551 prescribed:0.10810915442390684 :0.09334257733079494 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +more:0.33080082024792656 two:0.2938346577774707 one:0.17735154636294403 three:0.12303141353752144 :0.07498156207413739 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +did:0.2748933283018144 are:0.2299630139720583 could:0.21931520844996785 do:0.15225201193571505 :0.12357643734044439 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +up:0.38824934718837745 and:0.33045909444162436 wheat:0.14917963849898908 season:0.06625473682009278 :0.06585718305091628 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +did:0.2748933283018144 are:0.2299630139720583 could:0.21931520844996785 do:0.15225201193571505 :0.12357643734044439 +people:0.31554231043708736 same:0.21332547551137776 country:0.16027869436190653 city:0.15585135602884304 :0.15500216366078537 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.36013232722177835 but:0.22169802904453562 that:0.19459081888776195 for:0.12383257280039353 :0.09974625204553048 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +remedy:0.40868676636697354 qualities:0.2056446880695492 results:0.14554681110898104 work:0.1315568067294737 :0.10856492772502262 +that:0.3087650391887661 securing:0.20456076326268435 making:0.19838428241518882 all:0.1927704886838413 :0.09551942644951941 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.43671396033738324 men:0.22586492652706128 following:0.13303621497199694 latter:0.10411557441943095 :0.1002693237441277 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +the:0.8723401364009922 our:0.06023167999339589 tho:0.032978724042140285 tbe:0.019114235348121383 :0.015335224215350185 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3312252810696853 in:0.2859389250175949 from:0.1448983501541111 on:0.12422035913208748 :0.11371708462652119 +capable:0.25647061821433986 many:0.2193758653449946 all:0.18563816784770718 some:0.1728729849950285 :0.16564236359792975 +Mr.:0.279639721002356 then:0.23171802833499192 wife:0.16656440492018137 it:0.16412755858855746 :0.15795028715391318 +deem:0.26749105931578615 turn:0.2562767357019406 ceived:0.20674902595770542 turned:0.1649951609860009 :0.10448801803856687 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +war.:0.4677005725521972 hour.:0.21570029105844102 years.:0.11215776280830579 day.:0.10708587819359702 :0.09735549538745897 +the:0.9325863034625386 tho:0.04037391683132624 tbe:0.015248135457127322 two:0.007255110801250146 :0.0045365334477575426 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.3690833669419034 them.:0.21475314725243275 life.:0.20317220737447972 age.:0.10922726239659418 :0.10376401603458997 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4802448760911503 by:0.24066444725642797 in:0.1001244462063414 after:0.0947867649782564 :0.08417946546782402 +the:0.8298729445161634 its:0.051558244097085974 that:0.04819408568823791 other:0.043124431576812526 :0.02725029412170016 +mind:0.2992418590095368 opinion:0.29045680855818284 belief:0.1962613694348331 way:0.1304606888103838 :0.0835792741870633 +result:0.24281601955784213 number:0.22925850381580123 people:0.1822410601220826 amount:0.1818487372336084 :0.16383567927066556 +told:0.4931129828373709 gave:0.22489600995242356 asked:0.11600345577290824 did:0.0859965949215083 :0.07999095651578896 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.4601607484336419 men:0.22893870118682025 and:0.12371392921101428 lady:0.0946988219937487 :0.09248779917477493 +that:0.3696251319778758 of:0.27444165844701035 in:0.14971775209065358 to:0.13978451281823343 :0.0664309446662269 +been:0.6696954370370573 made:0.10823892216365727 had:0.07808331738989421 not:0.07378010246583468 :0.07020222094355666 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.45255007491554683 into:0.20994040893857785 on:0.1952575329884051 through:0.07398488710955141 :0.06826709604791875 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +all:0.43082410254839026 are:0.17748098148447924 in:0.13525789841164876 to:0.13263741790364306 :0.12379959965183868 +give:0.3479250840271788 make:0.2382698212705376 see:0.1796764712115269 keep:0.12664973131541768 :0.10747889217533889 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.2972051903670318 is:0.27425613375097735 are:0.22035854001137292 were:0.11640370214739289 :0.09177643372322508 +in:0.8448808508079906 In:0.09656431237509025 at:0.024462970431822877 iu:0.018258558926651517 :0.0158333074584448 +has:0.445422844351229 had:0.23255057703397763 who:0.15740466596022923 never:0.09866447604169616 :0.06595743661286793 +he:0.3012959577507515 and:0.2518479353046702 I:0.20964109046592305 but:0.14781066453743352 :0.08940435194122168 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.3805768920745337 this:0.2122707542009932 any:0.17272712511090424 an:0.125829420845044 :0.10859580776852491 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.8430862203821585 that:0.1317250351646069 in:0.010321713306237169 and:0.0076294442029649955 :0.007237586944032387 +is:0.5940501835575268 was:0.29143633222507964 has:0.04358606755343859 in:0.035791668430804405 :0.03513574823315065 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made.:0.42387206232626556 used.:0.19143758053876725 not.:0.14258557809292852 dead.:0.12707334837304973 :0.115031430668989 +be:0.8200572147766793 have:0.12345056949666738 bo:0.045621077382893054 stand:0.006851453857742672 :0.0040196844860175985 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.2794725890984442 of:0.2434236557895909 in:0.20643598518109718 to:0.1879091612861326 :0.08275860864473521 +kinds:0.39248399643859305 parts:0.36771283114669484 day:0.09922703556036784 classes:0.07700250880863103 :0.0635736280457133 +the:0.48840340492511364 a:0.27892511072556264 his:0.1065373301752389 their:0.06739657363730975 :0.058737580536775115 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +The:0.6644861639997852 Every:0.13966321625531894 A:0.1233352391740218 One:0.038521206990646324 :0.033994173580227494 +amount:0.26687394479667553 sum:0.21640829342601706 state:0.17653853855737936 result:0.17580715931694996 :0.16437206390297807 +still:0.6114768302201871 it:0.11413328461919223 is:0.09430214597904057 are:0.0926372443908697 :0.08745049479071042 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +well:0.507440036807576 soon:0.22371580522050646 far:0.1680701560236044 much:0.06808586124717403 :0.03268814070113902 +first:0.2650552147487358 child:0.2347538597716923 native:0.1743558129782585 children:0.16392444284905763 :0.16191066965225573 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6926157789530475 an:0.14697722068419414 some:0.08971654213252483 what:0.039049488452044395 :0.031640969778189164 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.697315711624364 the:0.12369596983682028 sufficient:0.11736397421511639 no:0.03848642674894594 :0.02313791757475332 +it:0.3647512111505145 the:0.30639701687283905 is:0.20712790966102765 if:0.062017591343466356 :0.059706270972152406 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +up:0.34251913010610857 care:0.24158004733188898 place:0.19830123173552577 out:0.172417368807137 :0.04518222201933963 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +war:0.3398084719850216 charges:0.18805456304076865 protection:0.16305474961856875 case:0.16254304186971286 :0.14653917348592813 +Howard:0.5766836352087291 H:0.1308580241535768 A.:0.1183579105487592 He:0.09190137435239294 :0.08219905573654208 +to:0.9643909014312689 that:0.01203020419922955 not:0.010609697728445625 I:0.007571708324278994 :0.005397488316776825 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.3733796716657848 they:0.23909933252174312 he:0.19259235488860807 we:0.11508979199959882 :0.07983884892426511 +him,:0.32768115840867806 me,:0.220634152139299 her,:0.15218541331184546 it,:0.15201077417206177 :0.14748850196811553 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +at:0.3942146411794743 her:0.26020207927661176 his:0.22351891716694455 the:0.06150860592353444 :0.060555756453435035 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +has:0.7606775791890327 had:0.13379192650195287 time:0.04945093638251909 have:0.03801925868183542 :0.01806029924465997 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.6447151762991752 that:0.24426285845072618 surprised:0.04493557401612863 even:0.0426989703749884 :0.02338742085898166 +able:0.40678286427927557 allowed:0.16837189371372713 made:0.16004441386181978 used:0.13387521084376586 :0.13092561730141164 +one:0.3184892846720086 the:0.20090286698296123 any:0.16557567064980877 sale:0.1601380808331288 :0.15489409686209246 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +out:0.49804133713937254 up:0.16878270749333088 away:0.13877862874357114 over:0.10756183573477948 :0.08683549088894596 +him.:0.3605351165914421 them.:0.20360697902131966 it.:0.18378244957964623 me.:0.12711756266502403 :0.12495789214256806 +same:0.3282256444744516 best:0.2432056528853636 general:0.1566705393799096 present:0.1481777497119307 :0.12372041354834439 +had:0.5593106009745954 already:0.1389765576672962 not:0.11992162444731279 never:0.11406889059510296 :0.06772232631569278 +the:0.5840499047110982 a:0.2063487504999577 this:0.15084836577893332 no:0.0375469980626088 :0.02120598094740194 +well:0.5280947698498617 soon:0.2150789012203518 far:0.1472554485653053 much:0.07149621962684118 :0.03807466073764015 +to:0.79467098674076 thus:0.0747693438633591 will:0.06902529959545432 can:0.033462272112557735 :0.028072097687868947 +of:0.46399399631467425 to:0.19650673413514916 and:0.14180618552321894 the:0.10804315225895689 :0.08964993176800065 +years:0.32639278964819096 days:0.2912042204043016 times:0.1579753158342688 o'clock:0.13266596585301135 :0.09176170826022714 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +come:0.33235108018335835 do:0.1948831396202358 be:0.18250266701958048 know:0.14592616698892186 :0.14433694618790346 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.5447839161243819 is:0.3076096380891112 be:0.06883937633848733 has:0.0516379031313938 :0.02712916631662566 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.7689310562483691 for:0.07145016164177874 you:0.0607201158268421 it:0.053022813006830434 :0.04587585327617968 +the:0.6281999274911008 a:0.15983439142729616 any:0.10044631695296015 such:0.05935240048811741 :0.05216696364052557 +free:0.24859791767391443 people:0.22214004514879504 road:0.19640848324651725 water:0.1670105641827968 :0.16584298974797645 +be:0.7302686817174942 have:0.21686249799846022 bo:0.033366688874308985 he:0.010168490667580927 :0.00933364074215575 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ai:0.30942749349080506 -:0.30329604867242693 following:0.16485773541646667 same:0.11367105972185722 :0.10874766269844403 +crease:0.8459676256893307 to:0.0800052141732585 duced:0.035543103468183006 come.:0.02824807250246531 :0.01023598416676255 +it:0.378801112451045 that:0.18422353285494042 not:0.1599827915294449 almost:0.1531160549474982 :0.12387650821707161 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7267527276366693 in:0.09116759079703453 on:0.07126641748047033 to:0.0643680605248287 :0.046445203560997024 +it:0.31667046037548513 I:0.2316927071259943 we:0.15950427777120824 he:0.1485491049376234 :0.1435834497896889 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3144810881421146 ago:0.2602985197133065 later:0.22277627235133507 have:0.10838187517525938 :0.09406224461798456 +give:0.28443005174860586 make:0.2632146722725124 keep:0.24123312628563703 take:0.10844734650378057 :0.10267480318946419 +kinds:0.39248399643859305 parts:0.36771283114669484 day:0.09922703556036784 classes:0.07700250880863103 :0.0635736280457133 +will:0.39807684118118836 is:0.23828946413170146 would:0.23424314236895957 was:0.10001543681078234 :0.029375115507368283 +house:0.4237015411633198 house,:0.21706561256495385 together:0.12321216923021794 and:0.12018663023757246 :0.11583404680393582 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +fact:0.34158231410347106 said:0.24391936336744652 order:0.24215339174540285 all:0.11386963032839055 :0.05847530045528903 +special:0.4533753027679138 newspaper:0.3275555497736714 few:0.09240325174169171 Washington:0.07371549233653177 :0.05295040338019124 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +reason:0.2650651340342022 and:0.21681196582147647 thing:0.20000323630736758 things:0.17781643756729187 :0.14030322626966207 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 +things:0.29945976948841024 men:0.268451163023958 facts:0.16062471854545127 people:0.1554800788960831 :0.11598427004609733 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +sum:0.21724853066521582 payment:0.212339397798406 city:0.19546532436856495 State:0.19158701478116472 :0.1833597323866486 +people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 +hereby:0.9312943511466402 not:0.0280527806057066 being:0.02347091239140887 now:0.009883505747921203 :0.007298450108323126 +the:0.6796268792098978 such:0.10798306713701042 their:0.0893021512615737 several:0.08114929474101584 :0.041938607650502106 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.6851167965833106 of:0.10245855206430016 in:0.08301265649069876 on:0.07698296390997439 :0.05242903095171605 +are:0.37459965584063504 were:0.2688063611605144 will:0.19625856676657405 have:0.10179917454699235 :0.05853624168528424 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.9603371801559304 or:0.019617541540053983 in:0.006957009123071206 on:0.006722203425097116 :0.006366065755847424 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ceived:0.48530204220776857 turn:0.15840050724998533 turned:0.12809673216431597 cover:0.11810583980214286 :0.11009487857578736 +it.:0.36020369088479903 them.:0.17468275895394075 Washington.:0.16265750900694595 life.:0.15163114466097563 :0.1508248964933386 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.5103698755541443 a:0.2032087034268071 stood:0.1349706594624713 become:0.09957432808041246 :0.051876433476165086 +are:0.618777514072725 were:0.18815019172112923 is:0.07543043285299526 of:0.06194993325203588 :0.05569192810111463 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.22800988639949962 go:0.21948833637571055 continue:0.20887578828962483 be:0.17519518221252411 :0.168430806722641 +for:0.3840152138996437 of:0.2719775226206847 in:0.13246762109079685 on:0.11634051051807247 :0.09519913187080216 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.8621746708781858 and:0.056054469160492316 they:0.03592914581430114 could:0.02567056875709887 :0.020171145389921957 +was:0.5858385782337926 who:0.21347000495920385 man:0.08178879507848331 person:0.07406913352879717 :0.0448334881997231 +believe:0.24156551393334355 know:0.23352579403272666 knew:0.2208946649695335 is:0.16703230698449426 :0.1369817200799021 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +satisfied:0.5320498317338587 convinced:0.13650627922651673 out:0.12969225749117905 probable:0.12062211762002716 :0.08112951392841831 +be,:0.5435142829181281 be:0.2641067453482126 appear:0.09082002174820542 be.:0.05366077235692906 :0.04789817762852487 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +his:0.3475849054778883 the:0.28116199413654397 their:0.1435203922448205 my:0.12817798181033896 :0.09955472633040831 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +knew:0.37679372360233016 saw:0.26138834168319225 see:0.13163815086235936 know:0.11688984783102285 :0.11328993602109523 +hundred:0.2502767045823328 large:0.21688536435617353 man:0.20733062651268858 good:0.18723035529853752 :0.13827694925026754 +that:0.3383673107691184 and:0.3128365577129129 which:0.20099787076553655 as:0.10432441710645478 :0.043473843645977284 +the:0.25412371505604203 now:0.23511581623851296 a:0.2132813575306299 not:0.15228878749813227 :0.14519032367668291 +of:0.26260083635343895 street:0.21137267071126153 here:0.19942450784931878 street,:0.18730092465561152 :0.13930106043036913 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.36482212219848376 the:0.2531549761196659 his:0.2508395277876274 on:0.06949762642878894 :0.0616857474654338 +of:0.7333259037417059 and:0.09640820309187013 are:0.08053085143040646 as:0.06320757645863533 :0.026527465277382197 +be:0.7345609189260672 appear:0.08301506567024614 not:0.07440691987891951 be,:0.05887557024999375 :0.04914152527477342 +he:0.3717480207066242 mortgage:0.3571410194296957 it:0.10908461709351759 that:0.08587344715093662 :0.07615289561922568 +that:0.3006820385358622 and:0.23059997335711416 as:0.195891920541978 life.:0.13906897496639126 :0.13375709259865454 +that:0.5153812941871666 of:0.19343062638968084 in:0.12755879700010989 but:0.09231985006332329 :0.07130943235971927 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +favorite:0.41933902754925917 summer:0.22925228766872058 great:0.14953008154436656 popular:0.10868347445344781 :0.09319512878420595 +to:0.371243976049795 when:0.18811541736795473 that:0.18624325425736848 which:0.14805724032027068 :0.10634011200461113 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.36354552778532234 do:0.2653526031173493 take:0.1750230696062238 see:0.10067288662010863 :0.09540591287099581 +be:0.24535020163943028 make:0.24478627444475157 get:0.23415075895733276 take:0.14718384787221678 :0.12852891708626848 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.812228501368502 and:0.07094065344668532 in:0.043269863305264944 for:0.04063271617049945 :0.03292826570904826 +the:0.7952921628421469 our:0.12226730681086777 their:0.0396208295801909 tho:0.028028279308968607 :0.014791421457825782 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +He:0.3931687216177822 I:0.23113103672049312 She:0.18831229124405913 It:0.10112958862582776 :0.0862583617918377 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +others.:0.3773046374871692 all.:0.18709471715642245 water.:0.155868127781319 wife.:0.1497702829460951 :0.1299622346289944 +favor:0.5186464414818259 one:0.1844671995275245 order:0.11276878074526824 some:0.09279428025170594 :0.09132329799367549 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5713256121969719 in:0.21292179243733053 at:0.10913434518673888 to:0.05365310364664268 :0.052965146532316015 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +had:0.5593106009745954 already:0.1389765576672962 not:0.11992162444731279 never:0.11406889059510296 :0.06772232631569278 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +give:0.3479250840271788 make:0.2382698212705376 see:0.1796764712115269 keep:0.12664973131541768 :0.10747889217533889 +the:0.9355264956229347 tho:0.03075265279359507 tbe:0.02545750694493841 ihe:0.004528364657027099 :0.0037349799815048802 +to:0.4782609152541507 that:0.278007310541388 upon:0.0868022009054932 by:0.08074705823100706 :0.07618251506796114 +once:0.8534398672880494 which:0.04009011500326833 1:0.039144995905162405 least:0.03509872392991616 :0.03222629787360366 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +account:0.5364740567608858 behalf:0.13550991952581004 board:0.1354428863244095 one:0.11086672590820994 :0.0817064114806847 +him:0.2460646484505709 going:0.2129702610102446 date:0.1877616762267398 one:0.18113791405782592 :0.17206550025461884 +hundred:0.6275884838009234 million:0.16958736809555916 thousand:0.13319079989949384 of:0.05131247894795556 :0.018320869256068142 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +seem:0.24502219568648895 only:0.23220317799461734 likely:0.183776612839227 want:0.17868271241138023 :0.16031530106828637 +and:0.397702960339928 or:0.21835793687114857 for:0.17139826049800155 than:0.10828097037839525 :0.10425987191252666 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +three:0.2479349892520964 two:0.24457588528251695 twenty:0.17444331218749906 ten:0.17277503331837382 :0.1602707799595137 +soon:0.254132072434229 am:0.21540195565069983 was:0.20569836399503863 felt:0.1882200506182423 :0.13654755730179025 +new:0.4553421699259136 first:0.19585669669047975 second:0.17489419845562143 fair:0.10162719423657718 :0.0722797406914082 +will:0.37831339886214527 to:0.2223606354486967 should:0.14562815219229036 would:0.1446397883922058 :0.10905802510466185 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +a:0.48529123190130335 to:0.3268355313282842 with:0.07413954330353856 his:0.05701566605610438 :0.056718027410769624 +people:0.3075346206441583 man:0.19362987365373235 latter:0.17843613941196482 time:0.1619119895678424 :0.15848737672230215 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +quired:0.4796251506854974 moved:0.15456014444674288 turned:0.14940426524364084 ported:0.1283102948803417 :0.08810014474377725 +the:0.5929689521877298 a:0.16723958914823026 this:0.12110482541592041 your:0.05986073266194034 :0.058825900586179106 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.35911565832207654 State:0.25044877425235784 all:0.15321726534563357 some:0.12369161710328837 :0.11352668497664369 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +w:0.5792707766806686 v:0.16332667696187642 st:0.12413485944756207 n:0.07703664610536651 :0.05623104080452632 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +do:0.2515763858006961 be:0.24225826664325933 meet:0.19235028093637174 agree:0.16219014831695833 :0.15162491830271452 +one:0.49438831511342607 a:0.3152262698271612 the:0.09519470423745487 on:0.06240505847505063 :0.03278565234690709 +to:0.7265901541085806 for:0.20292226499889413 in:0.03391887207750828 of:0.02483035191274012 :0.011738356902276842 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +any:0.5005382716624946 such:0.19357369180909717 the:0.15539071802052082 in:0.08934003030061287 :0.061157288207274486 +made.:0.5429558057368005 done.:0.27694589663818947 used.:0.08277414522773713 there.:0.05437055464406389 :0.04295359775320908 +turned:0.3048525439290518 paid:0.2694745690931319 given:0.1631484813918693 taken:0.14105390114316121 :0.12147050444278581 +it.:0.3561884367934559 them.:0.26361398939505376 life.:0.14348639564941842 the:0.12416015078799382 :0.1125510273740782 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +no:0.4626175540302907 only:0.151785207784425 some:0.13295939704758697 from:0.1297988865325617 :0.12283895460513583 +are:0.49482213849210055 and:0.21774911028582883 is:0.11949168718182389 a:0.08875046857181203 :0.07918659546843457 +to:0.296797084184698 been:0.24727381931096204 lost:0.17007442496962744 made:0.1475190603543833 :0.13833561118032928 +and:0.2891450074150891 as:0.2551004542670774 with:0.21725932292622782 but:0.13146005048529766 :0.10703516490630813 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9349408904127074 from:0.018276730340333558 in:0.01773888682871411 to:0.017491695884235152 :0.011551796534009765 +people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.43906645124462146 brought:0.23821927763610187 just:0.1701829028220646 gone:0.08516161508699778 :0.06736975321021442 +quired:0.4775799767127319 ceived:0.1786725741013211 port:0.1477099406480763 suit:0.11250032929359653 :0.08353717924427415 +the:0.8133446542865276 their:0.07199014756930305 his:0.055416807955846754 tho:0.033058286057950075 :0.02619010413037237 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.3749902896091036 are:0.22522094283334174 was:0.22333610855612052 were:0.10781563124084836 :0.06863702776058583 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5964900290254129 in:0.18007473896743828 on:0.079529845102964 from:0.07688786614291734 :0.06701752076126759 +the:0.7023077771758108 his:0.09884421604925729 a:0.08813743705666593 in:0.06458638356251606 :0.04612418615574984 +to:0.7639470751686241 they:0.08068047814804465 we:0.05647562477461819 will:0.055402535194323664 :0.043494286714389395 +men:0.378044212646723 things:0.2433828587489037 together:0.13347507518961838 people:0.12517850931339924 :0.11991934410135571 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +shall:0.48249455606213104 would:0.14495746182191444 to:0.13176677843601411 and:0.12889331529532952 :0.11188788838461093 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +he:0.3696343447627655 they:0.3630283969817678 it:0.10403110121569498 we:0.08574317121599655 :0.07756298582377523 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.3152884230717808 of:0.2838571189159439 know:0.16655641927256537 in:0.1323632315689471 :0.10193480717076277 +the:0.35906524618875824 went:0.24178415007282264 running:0.15146673790893667 go:0.14576767716816053 :0.10191618866132192 +and:0.7201130250293295 Bryan:0.0952034538654455 Cleveland:0.06798732998641138 Smith:0.06241960227289813 :0.054276588845915644 +the:0.9326428407036597 tho:0.043786587626083145 tbe:0.015033337724739516 these:0.0045858493488774585 :0.003951384596640375 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.4244397509982609 they:0.1777386038138465 she:0.14709431080204385 was:0.13767522001615884 :0.11305211436968984 +to:0.8350176445972284 yet:0.05892909380791997 only:0.056773923875522325 take:0.03326913491657152 :0.016010202802757858 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.49926511009097685 shall:0.295618388704508 may:0.07589415787782976 will:0.0745213166810426 :0.05470102664564274 +charge:0.2860838260767526 ease:0.26626693109786903 position:0.1776862105647576 pose:0.17404258114489563 :0.09592045111572516 +which:0.3791216805861341 the:0.19819149067440134 it:0.17552221252080816 this:0.13312774039594152 :0.11403687582271481 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.4408019865134716 who:0.23330583231660582 and:0.1575043501965376 that:0.10362000751780497 :0.06476782345558002 +have:0.3933758818462019 are:0.26764035946262754 all:0.1277980604707824 see:0.11728570750577583 :0.09389999071461222 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8722363694163953 top:0.05162398265297627 tho:0.03858030481543931 this:0.023668065824012076 :0.013891277291177074 +It.:0.41965952647139704 road.:0.1778251479177633 C.:0.1421655451331215 J:0.13854770249602344 :0.12180207798169473 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.34942244265466726 not:0.25607508395891376 anyone:0.15554847237980834 one:0.12820388926543483 :0.11075011174117576 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.37360507763595185 claimed:0.17200910516994722 shown:0.16858371270771805 done:0.1446405634121955 :0.14116154107418738 +satisfy:0.2623184905157561 defend:0.2535544689639669 make:0.20191208961858279 kill:0.14490313928337176 :0.13731181161832265 +ques-:0.8002756431729089 na-:0.07435674450299275 sec-:0.06948586831604682 elec-:0.042931984076873354 :0.012949759931178244 +the:0.5061110450857952 this:0.2930735207861576 a:0.12931386917226106 one:0.04301596213446271 :0.028485602821323428 +use:0.30833286506898255 corner:0.19176613001223175 one:0.190922625727074 be:0.1711156462919077 :0.137862732899804 +help:0.2785015630400007 be:0.20212319556812752 get:0.19862322008547253 stand:0.18027959910150743 :0.14047242220489162 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.8242475838518161 of:0.11925090571823638 and:0.028644995402599068 bv:0.020004903569083517 :0.007851611458265064 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6373352058264176 and:0.13937170467400584 in:0.10482915305072316 that:0.06413189623253734 :0.05433204021631603 +amount:0.33367574802765154 name:0.18299013168488598 view:0.17360884438446778 knowledge:0.15768545770780476 :0.15203981819518986 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +year,:0.27447260614094954 week,:0.23323493822729008 night:0.21575551614698668 night,:0.1403886682966319 :0.13614827118814177 +young:0.3253452029893527 best:0.29122749868490905 old:0.20040038209974265 business:0.09214573382239705 :0.09088118240359852 +coast:0.4067539396660377 company:0.2086336342735335 and:0.1825038072502286 ocean:0.10883419296324756 :0.0932744258469527 +pose:0.8173617022959214 suit:0.14532791866937775 ity:0.01464310040733574 port:0.011436168763297533 :0.011231109864067581 +of:0.4408994483208504 for:0.1754359014919423 and:0.14630864846346744 to:0.12287312116183402 :0.11448288056190595 +it.:0.26988614037646885 the:0.2113798798894478 them.:0.19318107578184696 April,:0.16598737908146127 :0.15956552487077513 +of:0.9648139464733405 ot:0.012761276406701024 in:0.01045089662795504 ol:0.0075355362600291265 :0.004438344231974403 +described:0.32486746642033765 officers:0.19807293697458295 day,:0.17955112470470944 year,:0.16847127165098633 :0.12903720024938362 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.46411432583212686 the:0.23144499797029144 open:0.18525180203430275 into:0.0961228797622277 :0.023065994401051077 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +no:0.6201239956788943 good:0.13830875335562323 lost:0.12272249929914412 the:0.061467622725881625 :0.05737712894045676 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.27969225561753536 amount:0.21351912149210664 purpose:0.1851507046121718 payment:0.1687510661551826 :0.15288685212300365 +the:0.6712871386246012 this:0.2361395704248781 said:0.044036586966660345 tho:0.025382260690902582 :0.02315444329295763 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.5940501835575268 was:0.29143633222507964 has:0.04358606755343859 in:0.035791668430804405 :0.03513574823315065 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9432086342266082 ot:0.01762372325581689 in:0.0176209986409533 ol:0.011535701580864168 :0.010010942295757476 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.523487302131522 was:0.36245509710169005 Is:0.05371704333649195 appears:0.03803195792966676 :0.022308599500629123 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.42534479630849487 of:0.24259107764166657 into:0.11944177112443137 in:0.10921217220226706 :0.10341018272314016 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.6813731393083869 made:0.09773675400355819 done:0.08124393023156463 resulted:0.07313707764103868 :0.06650909881545163 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.5324317414516833 here:0.16379218633474804 ill:0.12607074602683166 hich:0.11593786864408562 :0.06176745754265136 +greatest:0.2668871366431219 splendid:0.2103429519649281 precious:0.1944286925307225 great:0.1655580652544967 :0.16278315360673062 +Sec.:0.9133387327448699 Section:0.06056983744545683 No.:0.011395168820062859 Lots:0.008081939602733401 :0.006614321386877112 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +friends,:0.3685128137261208 wife,:0.218122505001051 mind,:0.15385490721111433 father,:0.1424697125335129 :0.11704006152820073 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +up:0.3727695426020295 of:0.2581880673047265 in:0.20952688720813353 for:0.08280499635967589 :0.07671050652543476 +and:0.46688649067733706 floor:0.22852574865627168 wife:0.1216359547165499 time:0.09857718315624485 :0.08437462279359657 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +on:0.3808582681045895 in:0.24244804711317927 as:0.18378243413876436 with:0.10593527367921474 :0.08697597696425224 +is:0.5940501835575268 was:0.29143633222507964 has:0.04358606755343859 in:0.035791668430804405 :0.03513574823315065 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.3025939127780153 feet,:0.2261933906205311 a:0.16584875065683438 me:0.16165885629413687 :0.1437050896504823 +a:0.61223368415403 to:0.1693982573303177 it:0.09781990175681834 long:0.06476242615597969 :0.05578573060285442 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.5956297973677863 with:0.1593608740230667 over:0.11141414018950609 and:0.07981106915956625 :0.053784119260074696 +according:0.4018189199001973 him:0.228041737776846 as:0.19275387006023167 them:0.11852894660037401 :0.05885652566235101 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5681448725854734 to:0.263430183602866 in:0.09523961734604333 and:0.03838657264727326 :0.03479875381834401 +the:0.6656596275972905 a:0.19788276127125087 said:0.07081592316653508 any:0.03771758873627653 :0.027924099228646998 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.2617572464191035 made:0.22823278566478852 come:0.20429536100632267 gone:0.17922235903234837 :0.1264922478774368 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.511724498509057 not:0.3884718695388764 now:0.04985443079697052 only:0.030093767577358065 :0.01985543357773797 +them:0.31900210988456856 sale:0.23968257479751517 land:0.20620760882781722 interest:0.13039512917043658 :0.10471257731966242 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +recorded:0.25224574524264315 not:0.20407997895155758 and:0.19147041845298393 been:0.19094851019921258 :0.16125534715360273 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.3372205977511197 time:0.21783221877527625 sort:0.2016084934116983 day:0.12282862190105882 :0.12051006816084694 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +a:0.38066012606097877 one:0.19107959252055334 ten:0.18276960827639846 two:0.1269671147368509 :0.11852355840521851 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +good:0.37937607300081105 big:0.22022639568724295 little:0.14952918089947045 small:0.1405315509906256 :0.11033679942184997 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.4152709987592493 it:0.2863906317979847 I:0.13183227245318366 she:0.10552800124843749 :0.060978095741144885 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.3519568736434658 in:0.29497067587746223 for:0.13167597660486013 to:0.11796377020844002 :0.10343270366577179 +of:0.6021710468581248 and:0.2364572274435177 in:0.07602463350226836 to:0.043186481933895675 :0.04216061026219348 +country:0.5002853837525202 government:0.17046470558796117 system:0.11975532778394615 city:0.11111895415875797 :0.09837562871681454 +in:0.33823259750578644 of:0.2529377366570128 or:0.1976408829529433 to:0.11678800794016528 :0.09440077494409213 +whom:0.3053861041910432 surprise:0.302052168905203 by:0.1422073634871718 him:0.1348032088695485 :0.11555115454703342 +but:0.38207786788614345 and:0.3285342348462411 which:0.15385577305192252 as:0.07638499793235791 :0.05914712628333495 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.7750885713522411 a:0.08608267343486008 this:0.0644886105440936 tho:0.03931048551728576 :0.03502965915151946 +to:0.6338657857404483 and:0.11961937577212442 should:0.09580295906302322 shall:0.08928447845044432 :0.061427400973959656 +the:0.6475718471707024 a:0.22442815383932718 his:0.057225096051163465 this:0.044542417499572995 :0.026232485439233975 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +not:0.8079444074682186 I:0.08974490615142264 you:0.08059790849471954 we:0.011904610372476034 :0.00980816751316316 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +said:0.36468108944025457 that:0.27298583918238034 which:0.21085787399917288 it.:0.07820685878254371 :0.07326833859564846 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.35591390801031375 Deeds:0.23898128743073002 land:0.16427108330298018 interest:0.12632544005277482 :0.11450828120320115 +give:0.2603317189911152 have:0.2125223922838202 make:0.20433659809963658 take:0.16321134898790365 :0.1595979416375243 +two:0.2672355438288352 law:0.21730257568369798 city:0.182407130093737 person:0.18157610707596214 :0.15147864331776772 +the:0.6908928175402342 its:0.10478602573750265 such:0.0898053195888012 a:0.0712350613699186 :0.043280775763543285 +chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 +so:0.3010865794669811 found:0.26710495047956123 given:0.16841271551974873 stated:0.1380450587970695 :0.12535069573663937 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him:0.35143466105732724 them:0.22581453705143678 me:0.1641981392530122 want:0.1559293680867314 :0.10262329455149242 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.23768346797960274 country.:0.21189045855555677 world.:0.20868222926294183 place:0.1764674516351094 :0.16527639256678928 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +day:0.29177927513978336 one:0.27546538675388743 part:0.2162920835259711 member:0.12571916314886405 :0.09074409143149417 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.3649491614566502 to:0.3404542040314828 at:0.10863109939507005 done:0.09426762878601377 :0.09169790633078333 +was:0.3562224139498901 when:0.28194091669110316 afterward:0.14525615289474172 afterwards:0.11165207305172845 :0.10492844341253656 +of:0.9274586873923725 and:0.023481767379740413 three:0.020342891359702252 the:0.014440169268444136 :0.014276484599740527 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9223532953915025 between:0.024174321997062286 and:0.02215359262207454 ot:0.017830431771115558 :0.013488358218244928 +of:0.5446104206517096 in:0.2510023257909215 on:0.07972533971781053 upon:0.07181778251203465 :0.05284413132752377 +the:0.8138305234363341 that:0.07186334889670049 by:0.05474641921996741 for:0.03019069761744979 :0.029369010829548212 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +regard:0.3057149411782757 order:0.28334663279449285 search:0.2111464206098458 respect:0.10206572494999128 :0.09772628046739461 +did:0.2748933283018144 are:0.2299630139720583 could:0.21931520844996785 do:0.15225201193571505 :0.12357643734044439 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +up:0.6665764928838865 up,:0.20503152585545137 in:0.06252793387796196 around:0.033902642628265756 :0.0319614047544343 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +longer:0.3098741458947133 more:0.21204368513931296 one:0.18387642566549317 means:0.1483655435694626 :0.14584019973101792 +the:0.9206259370580363 tho:0.034754120351652956 tbe:0.016487359950497434 a:0.014339615137216453 :0.013792967502596804 +a:0.6561994812733819 the:0.2791604022648534 some:0.02496807972748647 his:0.0230767777315185 :0.016595259002759703 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.4267387874693918 in:0.17654803066596406 was:0.1682819797356149 to:0.15877959804404332 :0.06965160408498602 +the:0.6011099755540903 a:0.25672443232029535 this:0.08398793927513061 our:0.03032327750248721 :0.02785437534799664 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9515502295506177 the:0.01668967363212554 at:0.011582061584270147 in:0.01088624141170625 :0.009291793821280103 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.31277580746036093 incident:0.22958947152382672 are:0.19558817638565962 involved:0.14400095761764403 :0.11804558701250871 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8951025982572647 in:0.07047145457610934 ot:0.013061235873178978 In:0.011326034505357678 :0.010038676788089455 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +even:0.4268597976603368 until:0.2102199136354758 shortly:0.14081187050979765 two:0.12920214473348815 :0.09290627346090151 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +lot:0.3056495998377238 parcel:0.2930694097828358 Section:0.1742496006042055 lots:0.13247397405756767 :0.09455741571766713 +else:0.34681611668318135 wrong:0.241417315643322 that:0.20095667877596735 more:0.10985694255160272 :0.10095294634592646 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +just:0.25586027339572265 not:0.19524785793565785 now:0.1889470556514176 cases:0.18043032805423695 :0.17951448496296496 +who:0.33564339994172604 to:0.23267261321310798 have:0.15914999621811635 had:0.13891104696981776 :0.1336229436572317 +that:0.30956887800994426 and:0.2667084287118096 as:0.21388588325339156 when:0.1225421005759054 :0.0872947094489491 +be:0.5582230147768059 have:0.13552776316520213 take:0.12489044146779348 only:0.10470670696764763 :0.076652073622551 +stated:0.4160846515236065 provides:0.19534509393980837 satisfied:0.1621523124176743 true:0.11408802927342002 :0.11232991284549082 +entire:0.2946562596660503 whole:0.29311643041136526 same:0.25742983562784255 great:0.08114913592471017 :0.0736483383700317 +doubt:0.5624175685087676 hope:0.1336515097218968 and:0.12851743951686934 ground:0.0920831638308769 :0.0833303184215893 +to:0.6152689961092674 over:0.13699912641790013 by:0.10061662653839346 from:0.09200604619604948 :0.05510920473838953 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.2681685194219616 to:0.21810760417841032 Scott:0.1943388770163071 Jackson:0.1743111060141311 :0.14507389336918974 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.35326578731982183 on:0.33994590066135505 of:0.13806683251399035 at:0.0919413695569743 :0.07678010994785837 +in:0.592436469856042 on:0.23316649479322035 In:0.10355880510627546 at:0.04284052622537206 :0.02799770401909012 +treated:0.2629403678077351 love:0.2051032636139095 say:0.18717630820481646 and:0.18308391397020501 :0.16169614640333402 +work:0.25290796589404463 rights:0.23483598710351813 power:0.19256367517661932 money:0.17600272227052688 :0.143689649555291 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +who:0.42913811174352884 to:0.2079852946551255 can:0.19699585460271762 will:0.08530042176800437 :0.08058031723062362 +it:0.2461519714710672 free:0.20865856602899532 running:0.19555178959877592 returned:0.18403538943977474 :0.16560228346138686 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +be:0.6308848338855788 the:0.17930484419152323 his:0.09136719933994873 a:0.052592796566845075 :0.045850326016104184 +valley:0.3667307934760998 road,:0.22233550324410387 Valley:0.1723027573344216 street:0.12855035751136387 :0.1100805884340109 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +look:0.2906118803158538 enter:0.23457875146426582 call:0.2238033046332441 depend:0.12998529615411303 :0.12102076743252337 +not:0.3228676900794807 I:0.23154150373348564 to:0.1810809078424126 you:0.16174227939220884 :0.10276761895241239 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +d:0.4358918115781332 -:0.3061909586253246 t:0.09607546008203009 l:0.08695885532024256 :0.07488291439426965 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7598781443675746 by:0.09215311362872766 a:0.0654568346222501 no:0.04613137254459691 :0.036380534836850706 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +rates:0.4898024458365649 cars:0.228339554455139 trains:0.13475862120991017 charges:0.09729047810485546 :0.049808900393530545 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +the:0.7853054370998189 his:0.0606750472810458 its:0.057492222012512806 their:0.055942697201598675 :0.040584596405023814 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Assembly:0.5578109058608385 Government:0.20929326493162895 Grant:0.14676627996316394 Government,:0.04340041122370358 :0.042729138020665164 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +other:0.3329156479071492 these:0.24064207929299158 all:0.2182450476408574 such:0.11478980660298149 :0.0934074185560202 +or:0.4560347917374156 of:0.2974111430847363 for:0.11961602734739976 and:0.06974297394881755 :0.05719506388163068 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.8481385099819522 the:0.10093234630038209 such:0.024418448518292127 his:0.01417155401801661 :0.012339141181357025 +contact:0.47454336726627067 communication:0.24748081861343432 touch:0.13720516672327904 conflict:0.09520794023011653 :0.04556270716689933 +the:0.7120391040605589 a:0.13788302155058876 this:0.06961637856199214 his:0.048388073955879664 :0.03207342187098046 +have:0.6947071330485896 take:0.12412871829202637 exercise:0.07743377817345341 the:0.06435506351885115 :0.03937530696707952 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +lowed:0.7981646162792343 low:0.10690861023055875 lowing:0.03549022746075259 so:0.03418991895789993 :0.025246627071554312 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.5325791603763266 the:0.2921098708028859 one:0.09372881368709325 this:0.05282591344308134 :0.02875624169061301 +the:0.44286723504931713 this:0.2462892246030076 an:0.21761881792026774 any:0.051549265263790604 :0.04167545716361692 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.23938138541240508 held:0.23031708610711968 found:0.20705012666367806 used:0.17758149660284384 :0.1456699052139533 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ceived:0.6110263047512674 ported:0.12770318783259832 moved:0.11351609557643035 turned:0.09147692742259048 :0.05627748441711351 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +port:0.33489688830303477 fact,:0.24709664423476885 the:0.17730301745443897 a:0.12705137016740997 :0.1136520798403474 +and:0.3069043370037409 science:0.20116295264984008 Association:0.18525676046554398 Journal:0.1850941370571006 :0.12158181282377438 +men:0.3487791144558567 man:0.2791378665085578 man,:0.17584707871549035 ladies:0.10335571838119481 :0.09288022193890028 +the:0.37798427204832485 re-:0.20349156104010496 be:0.16839415518426187 re:0.13382990751737062 :0.11630010420993771 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +portion:0.4781245990873984 posed:0.20324266483068482 vision:0.1589970910340449 pose:0.11926332783310009 :0.04037231721477187 +and:0.5556721359512383 in:0.1820479252756791 at:0.10116918716630911 to:0.09357431729421813 :0.0675364343125554 +was:0.41868916824693714 I:0.19360705667273248 he:0.18621009383381362 they:0.11881558077777025 :0.08267810046874631 +same:0.4670557694062045 finest:0.1676261829519798 political:0.1336925036797741 different:0.13191923009218798 :0.09970631386985349 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +E.:0.3096120466736567 A.:0.21406484352734534 L.:0.20386595222147455 F.:0.15193312290833458 :0.12052403466918883 +in:0.2800944683377412 to:0.27706855470998304 for:0.18617168547164809 on:0.1442909634369626 :0.11237432804366498 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +for:0.823871433762439 to:0.0533094856666001 in:0.048640819253793065 from:0.03870060805268677 :0.03547765326448098 +is:0.6691173390967476 was:0.16186711609881937 Is:0.14058758780660552 has:0.01681813195577751 :0.01160982504204996 +the:0.6850614277009638 Rev.:0.13282196644463365 our:0.08639880496877717 Great:0.05825799516117337 :0.0374598057244521 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.2979058428170665 other:0.21401787686828 one:0.18246218944668077 kind:0.15331122404450745 :0.15230286682346522 +the:0.9007099026361464 tho:0.044494599015119034 an:0.020208570107871256 tbe:0.019453189282530897 :0.015133738958332301 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +but:0.27479669460312667 that:0.2554351002525219 and:0.21712499059338458 for:0.13406163309811844 :0.11858158145284829 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7882936679561359 a:0.08004964574952556 this:0.05210644467410511 said:0.04545802251632225 :0.03409221910391115 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +when:0.3705180936770211 as:0.18404855500117037 because:0.17982818862252622 that:0.15265615625065204 :0.1129490064486302 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.7084695122015376 forward:0.09483198768193808 on,:0.07672621781124202 back:0.06060326446409194 :0.059369017841190405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +country.:0.24467188556839767 city.:0.22576096868251727 world.:0.2190887536601012 state.:0.16450294626115974 :0.14597544582782424 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +now:0.29108738956113445 due:0.26192990218022943 dull:0.16742247637202018 quiet:0.15917331493536385 :0.12038691695125199 +made:0.5724820533685476 done:0.13493670522284365 given:0.11859696023873191 taken:0.08936843723916216 :0.08461584393071463 +people:0.4845051036449967 same:0.19824107039905886 men:0.14022728286294306 country:0.10165410160191408 :0.0753724414910874 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +own,:0.26703315471989003 work,:0.2596225532415905 country,:0.16894448286611086 hands,:0.15761285782356163 :0.14678695134884706 +is:0.4851130068822417 was:0.17966354333207624 and:0.17499509410758493 are:0.1008634486444796 :0.0593649070336174 +it:0.3380011056470231 It:0.26846056942818697 which:0.22922027274939774 this:0.11395196012463546 :0.050366092050756706 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +able:0.40678286427927557 allowed:0.16837189371372713 made:0.16004441386181978 used:0.13387521084376586 :0.13092561730141164 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.5519824654964205 that:0.2796282957041216 not:0.10919371959334498 it:0.03485677078503054 :0.0243387484210824 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +United:0.9823903122384878 Southern:0.008335323756619861 Confederate:0.003652086607621244 other:0.0034789154161813493 :0.002143361981089876 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.4800125687036997 so:0.2590479899124522 done:0.10317089109072361 too:0.08144672196255262 :0.07632182833057197 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +so:0.34923499722655926 all:0.25481234169582473 in:0.1469072815842144 found:0.12911293016870792 :0.11993244932469373 +man:0.27061660067100135 week:0.2012666546590631 point:0.18972559500412353 steady:0.17863007625055627 :0.15976107341525572 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +.:0.4787662311083671 ,:0.23329580856767926 -:0.20526849325966076 re:0.06121963732907197 :0.021449829735220992 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +notes:0.610080040767714 of:0.12097202569765492 on:0.0933456592604576 to:0.09044048989728076 :0.08516178437689276 +the:0.27417874680761267 to:0.2450184140154136 a:0.22891228153110435 and:0.14193899529929982 :0.10995156234656964 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +old:0.6431272378510438 of:0.3361716969343928 past:0.010505029636372764 with:0.005168966639867742 :0.005027068938322959 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +survey:0.25180016501184244 ballot:0.21035265189880104 report:0.18653831700883902 position:0.18435401494186385 :0.16695485113865371 +of:0.647134445176645 in:0.12988985228593392 for:0.07956097469799571 as:0.07598480644668903 :0.06742992139273647 +as:0.30037003152663067 found:0.2301075218784299 learned:0.19527741498379356 discovered:0.16219906718809415 :0.11204596442305169 +for:0.5537255653270474 are:0.30289328659421927 of:0.052626311117134894 were:0.04766449721345335 :0.043090339748145155 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +own:0.8990990403711929 first:0.029293070169376247 pro-:0.028729282460242898 original:0.023164246078604334 :0.019714360920583738 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.2685112225121823 the:0.2476015251396888 and:0.1641483130947651 for:0.160965422402438 :0.15877351685092586 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +came:0.4068220913784362 went:0.15713187709314658 sat:0.1555956625792276 lay:0.15144957989909055 :0.1290007890500989 +country,:0.255714336521947 world,:0.24966444254928408 people,:0.18397271953541283 time,:0.15542103659202702 :0.15522746480132904 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +his:0.5833093878636784 the:0.25011312471095215 my:0.0815944084114968 a:0.055963813568607794 :0.029019265445265008 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.45029597174427693 be:0.39006132656441556 not:0.10432604425107962 bo:0.03271207368536536 :0.022604583754862465 +we:0.2532156284982659 that:0.23209098648028323 which:0.2219941379286255 they:0.15847571567885516 :0.13422353141397025 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6418158655667011 with:0.21628197319261586 in:0.09149409565405558 to:0.025251237442078654 :0.025156828144548633 +of:0.417611339534393 by:0.20348395919911508 and:0.14049462477871516 J:0.12974033637538251 :0.10866974011239418 +part:0.3217917352156925 payment:0.2673612799594774 holder:0.19867681277206697 date:0.1420346447095755 :0.07013552734318772 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.4221510240186959 in:0.18474541430149236 on:0.16670087024151567 that:0.13380139016336906 :0.09260130127492687 +a:0.5905029722709677 to:0.1377143283475126 one:0.10122892026819541 each:0.09767596051109244 :0.07287781860223196 +the:0.8169291835564689 many:0.06226895642031761 other:0.05096577637008145 our:0.04087503501839057 :0.02896104863474161 +which:0.27373181542128633 that:0.20864543739718006 say:0.1920316293263952 whom:0.18661564805931516 :0.13897546979582326 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4468483673625859 that:0.14351858652798133 with:0.1391572887948387 to:0.13678077056415583 :0.1336949867504382 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +described:0.8584923686030149 well:0.06350847486869651 bounded:0.051206688404363175 designated:0.016007402619804774 :0.010785065504120632 +did:0.25970958282346235 and:0.23911576336782112 but:0.22884481525282338 does:0.17986855585266748 :0.09246128270322576 +of:0.31422712453779755 and:0.2803396179764214 for:0.19488117830425647 from:0.1105418892351347 :0.10001018994638994 +make:0.3034363011558368 take:0.20557727392563568 keep:0.18383693365580323 get:0.16316149256965284 :0.14398799869307138 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +those:0.2516795997187912 in:0.20698757334937168 the:0.20135042048260313 a:0.18377051253078214 :0.15621189391845183 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +upon:0.5126582023713852 on:0.28839672959118307 by:0.08685982092421096 for:0.0629018691400383 :0.04918337797318254 +a:0.46657925112232257 sent:0.2135073088629025 no:0.1076712658668393 made:0.10627814866521192 :0.10596402548272366 +the:0.7552970741915414 a:0.1367153952751595 northwest:0.03848427343849489 witness:0.035533900716260586 :0.03396935637854377 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +The:0.5038281317060951 A:0.31700219134691154 the:0.08232070345085907 This:0.052968316269288065 :0.0438806572268462 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5744532204904805 this:0.30573079820001753 our:0.05152881633655962 said:0.037211772190471684 :0.03107539278247058 +who:0.3375989348866445 and:0.30011712866113166 it:0.13635509656792894 they:0.1286622541593826 :0.09726658572491234 +the:0.8707609850300969 his:0.03914819594710745 tho:0.03744548217523818 their:0.026568520365424956 :0.0260768164821323 +make:0.36354552778532234 do:0.2653526031173493 take:0.1750230696062238 see:0.10067288662010863 :0.09540591287099581 +piece:0.2424833536299108 more:0.22484660679151272 man:0.1919742288373828 little:0.175613868309332 :0.16508194243186158 +it:0.30349874561731116 I:0.27084724762329165 he:0.1636921619592701 we:0.16218986577052757 :0.0997719790295996 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.29139433881127896 to:0.23674533676291878 county:0.18319460561899698 bonds:0.15264664008368778 :0.13601907872311744 +and:0.6927972554699436 being:0.14759179143309947 is:0.05925452348775762 I:0.05836548580958021 :0.04199094379961886 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +In:0.36468385124674063 On:0.18636678538881388 and:0.18460202866784084 If:0.13735835968619875 :0.12698897501040596 +in:0.5655196985036984 not:0.17738343351401645 In:0.08730589082758107 without:0.08562200105346099 :0.08416897610124312 +far:0.34317358955898547 not:0.21098425054032546 no:0.19677020154396696 very:0.12804192145212467 :0.12103003690459743 +-:0.41632824190025414 ant:0.25803854636717927 j:0.16520998729163638 ti:0.08070547887615633 :0.07971774556477382 +was:0.5201271355767227 is:0.2884378797017023 will:0.07169450601350437 would:0.06089771120241833 :0.058842767505652344 +been:0.6813731393083869 made:0.09773675400355819 done:0.08124393023156463 resulted:0.07313707764103868 :0.06650909881545163 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +too.:0.3594494953397857 however,:0.2518730676321971 3.:0.20120003247657836 too,:0.10483757579020285 :0.08263982876123603 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.9381741638910602 bank:0.026129483114643057 false:0.018212199495506426 official:0.010513894196716583 :0.0069702593020736815 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +any:0.2621273859460673 it,:0.21742538845573964 them:0.1918533962577756 him:0.19153566043716855 :0.13705816890324887 +it:0.40489169173362993 he:0.3064964639938213 there:0.1384694721605473 It:0.08098016200176392 :0.06916221011023736 +condition:0.3581292597908762 condition,:0.1915626733683397 energy:0.1806616576846556 activity:0.15749975071623248 :0.11214665843989595 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.48899346122319537 negro:0.17220897938094445 that:0.1456679267396306 a:0.11838079566232536 :0.07474883699390435 +however,:0.501354522484351 Mr.:0.22893724001488094 It:0.09524706837880652 ,:0.08964556227371125 :0.08481560684825017 +distance:0.5488738804575047 cases:0.1413219971478599 extent:0.11545393932810627 degree:0.09869909705414673 :0.09565108601238244 +present:0.3560155844498974 govern-:0.17950402812864805 report:0.17196943120075922 crowd:0.1542301051479819 :0.13828085107271348 +law:0.2415154069083313 bill:0.19478009397581153 amount:0.1929926626018558 country:0.19043831197547426 :0.18027352453852716 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.3446073433257634 and:0.3166714251482446 I:0.11679470145416286 has:0.11254461503538818 :0.10938191503644097 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +American:0.4177556185458607 young:0.17255214427380125 whole:0.16193392033864812 colored:0.13093731231274836 :0.11682100452894165 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +two:0.37641311440741715 three:0.2458431181977444 four:0.14206310057600394 six:0.12000175507221475 :0.11567891174661983 +the:0.6749641912764263 their:0.1734409472327191 great:0.05840508370527603 two:0.04763038622770737 :0.04555939155787131 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4795203597460338 and:0.1735865973216592 at:0.16566322376849435 in:0.09384123052319086 :0.08738858864062167 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +who:0.7743250092643184 that:0.06810976107811445 we:0.06623870073134676 they:0.05274145528961164 :0.038585073636608666 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.37435466198226097 his:0.23631611679078243 much:0.14071316816324023 the:0.1276191448368465 :0.12099690822686979 +of:0.6160953042152703 Of:0.21987526327046233 in:0.09445661070290107 the:0.04803897053900897 :0.021533851272357275 +which:0.5712656547617422 they:0.13146721688787874 whom:0.11097902474623077 that:0.10995491850347477 :0.07633318510067344 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8566750875143119 a:0.049454286749984776 tho:0.04318684881860834 this:0.03280517696193942 :0.01787859995515569 +made:0.3962248791403346 given:0.16330583264340004 followed:0.15945010195568401 taken:0.1560638116651507 :0.1249553745954307 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +connection:0.3401091424058627 matter:0.19801129251760474 trouble:0.1640484083862325 sympathy:0.15728109919291564 :0.14055005749738428 +his:0.2901577128346547 her:0.2512983725400477 their:0.22390976781818692 our:0.1326055091786585 :0.10202863762845213 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.2795121817920691 likely:0.1955066928538332 going:0.18913954902219285 necessary:0.17840335755718467 :0.15743821877472008 +of:0.3347715314239459 is:0.2856031761001634 was:0.20567132154099063 a:0.10488130719993749 :0.06907266373496265 +cept:0.4962494512284815 count:0.24698296351374716 tion:0.15002038954871183 quired:0.06304307143763255 :0.04370412427142688 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5290577612204869 not:0.17169551966257504 it:0.10871801394561992 is:0.09997575815531036 :0.09055294701600788 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.3138797632232669 him:0.2524973822392309 them:0.1625265567011679 going:0.14487702312763204 :0.12621927470870217 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.5407060085838596 but:0.17432168643570348 came:0.11598658042724515 escaped:0.0864904548017275 :0.08249526975146423 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.5648244101318287 been:0.29200715242474645 have:0.08111444116443894 being:0.03464256901042887 :0.027411427268556984 +people:0.26817505621003856 man:0.22010859150067927 bill:0.19086816596948514 farmer:0.16085203719390448 :0.15999614912589266 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3259959060750748 of:0.19921356280565153 or:0.19917328416502128 and:0.17707707505315898 :0.09854017190109353 +costs:0.39163534554654983 activity:0.18092613216592124 demand:0.15791931649693172 production:0.14515423507739345 :0.12436497071320377 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.44747871152760743 which:0.1957293259400533 we:0.15204780017896988 it:0.11756376327289524 :0.08718039908047405 +a:0.5648305002744152 the:0.33900120424821034 young:0.039123956591158214 little:0.0350883571421938 :0.021955981744022395 +in:0.6100354436730662 at:0.12046584371867715 the:0.10973809955509126 In:0.0899662247643301 :0.06979438828883534 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6730579771258571 this:0.21445774660179137 our:0.05062953184635418 his:0.035562816337386956 :0.02629192808861033 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.3357713273380832 to:0.24910680660083973 and:0.19101495270287988 of:0.16408315385157402 :0.06002375950662313 +the:0.8359800290601528 this:0.077639105736723 our:0.03809607432274916 tho:0.028409723648485753 :0.01987506723188926 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4804537405194439 for:0.15498031876015395 made:0.13501508914336718 on:0.12635785516331022 :0.10319299641372491 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.6787179965300354 as:0.2333588202515069 far:0.03777261170487605 when:0.026367511714521542 :0.023783059799060008 +so:0.3010865794669811 found:0.26710495047956123 given:0.16841271551974873 stated:0.1380450587970695 :0.12535069573663937 +great:0.4420424542063987 big:0.15424140520102625 large:0.14819564131230004 greatest:0.13805088238909066 :0.11746961689118429 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +result:0.24281601955784213 number:0.22925850381580123 people:0.1822410601220826 amount:0.1818487372336084 :0.16383567927066556 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.2539520056090173 are:0.19775362897319773 to:0.19665379987518286 have:0.18850135810218321 :0.16313920744041888 +own:0.247253636392896 wife:0.22447145548191078 life:0.21336423156649947 head:0.16801187571465004 :0.14689880084404378 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +federal:0.33964953948072224 British:0.23384565175157934 city:0.15546579181679032 German:0.13647851268905795 :0.1345605042618501 +of:0.6546525742879925 the:0.12002201070401411 whose:0.11828385525564214 their:0.07912972524470287 :0.027911834507648604 +which:0.3636263034881724 that:0.29213720551003314 and:0.15647943983030618 as:0.1532840513420282 :0.034472999829460234 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.4835744152200314 the:0.4508676983722537 this:0.029597629847326275 tho:0.01963332105796337 :0.016326935502425245 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +was:0.47255854334999964 is:0.3039754740289865 has:0.09193989144919375 Is:0.07745386899028119 :0.054072222181538905 +In:0.26398429888270275 As:0.2616014602136102 After:0.18504342955162287 and:0.1679294854446843 :0.12144132590737981 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +against:0.7354780753460872 of:0.13646064039726924 from:0.06511061857081936 to:0.03296237031301327 :0.029988295372810912 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Main:0.742406756372208 the:0.13039501236007767 Fifth:0.05531661448141935 Fourth:0.04370644738110915 :0.028175169405185756 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8946041870762448 its:0.043275883791016934 tho:0.041174014354483646 tbe:0.014120894932500383 :0.006825019845754157 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +more:0.6528017576847813 one:0.18465216054663267 fail:0.06084478590406701 directly:0.055063658298314805 :0.04663763756620423 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +United:0.9823903122384878 Southern:0.008335323756619861 Confederate:0.003652086607621244 other:0.0034789154161813493 :0.002143361981089876 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8638568328306641 in:0.04753028886251863 to:0.03964909605070989 that:0.0250594184502428 :0.023904363805864713 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +quired:0.44862407969109386 ported:0.16337663193359916 turned:0.1603897923110941 moved:0.13099628799530905 :0.09661320806890375 +cause,:0.21030193347306123 him:0.2087980966331115 that:0.1989747784140432 you:0.19371848847303474 :0.1882067030067494 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +filled:0.24244494535671712 covered:0.23589689849022813 connected:0.20001231129998537 familiar:0.18040280991221141 :0.14124303494085802 +market.:0.3233015324165998 here.:0.25056640353479737 again.:0.16759530090906474 life.:0.14299487642812908 :0.11554188671140894 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +.:0.822535661399877 J:0.08781087333537474 s:0.03953111024364809 J.:0.02517844802212704 :0.02494390699897318 +not:0.24841896853184858 sold:0.2425658156610839 now:0.19632373084178734 held:0.1704437614799453 :0.1422477234853347 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.6171535261993212 it:0.15292069862173036 they:0.07709759270088498 there:0.07645730332550212 :0.07637087915256137 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +a:0.4506106045834642 the:0.24377470355085126 of:0.13973880414813908 are:0.09121989674643884 :0.07465599097110663 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.33513035047046563 thing:0.21364737322129349 very:0.15442843994224092 look:0.15140209971315635 :0.14539173665284363 +the:0.506324082615366 a:0.33992388455907224 this:0.11185245176289438 his:0.021850634340047543 :0.02004894672261983 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.7122151880278845 woman:0.09979668372981657 few:0.08052638868939767 person:0.061627053992930614 :0.04583468555997057 +out:0.6685796517056625 because:0.1328199775058847 part:0.07858789911937654 end:0.06061861580747467 :0.05939385586160179 +all:0.4374659844284752 them:0.15944218800752644 out:0.14896311745107682 up:0.12836781839242778 :0.1257608917204937 +hereby:0.8571777102804095 not:0.08776065289066541 also:0.021801519045817945 for:0.01872892354585528 :0.014531194237251938 +in:0.47298081095165306 on:0.14456116476623965 while:0.13587021422620557 if:0.13385996625080612 :0.11272784380509565 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +pay:0.35470195733247695 provide:0.3132795704599423 vote:0.1460095227201354 call:0.09682153722008563 :0.08918741226735961 +most:0.4117695450951247 use:0.19675478914265976 fact:0.15688089140412723 almost:0.15273875566213563 :0.0818560186959528 +to:0.5204124737101872 on:0.20563848419185707 into:0.1648963184054619 through:0.06293514974485727 :0.04611757394763668 +the:0.8689347573051442 tho:0.08065595816908605 tbe:0.03592625569227114 tne:0.009360828390608358 :0.00512220044289027 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6502046726093105 in:0.14632564426605427 to:0.09788447879499412 from:0.08424100050285883 :0.021344203826782336 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.5940501835575268 was:0.29143633222507964 has:0.04358606755343859 in:0.035791668430804405 :0.03513574823315065 +the:0.9326428407036597 tho:0.043786587626083145 tbe:0.015033337724739516 these:0.0045858493488774585 :0.003951384596640375 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.553879420066935 not:0.2944187558984243 never:0.07023587538336873 they:0.043700615333772334 :0.03776533331749971 +man:0.547710297729993 woman:0.13920018351452043 petition:0.10849066316371277 matter:0.1051524362735239 :0.09944641931824981 +and:0.23478359109194635 wire:0.23010545483877728 are:0.22404377872151274 is:0.1937500199017869 :0.1173171554459768 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city,:0.28227115034459654 country:0.20120402776837767 country,:0.19269461797700246 city:0.1700581071514082 :0.15377209675861508 +that:0.7001355445804749 cause,:0.1651263069162732 that,:0.05830834705430972 taxes,:0.04995859350665503 :0.026471207942287196 +the:0.6376318225780602 a:0.13508784849327904 this:0.09319777468739443 our:0.08864692231010582 :0.04543563193116058 +had:0.41165972345807117 was:0.23653226139044886 is:0.1822426337625183 has:0.1485947640497028 :0.020970617339258864 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8964541647957077 tho:0.041166929058509466 its:0.023684446535728838 national:0.02149535718934934 :0.01719910242070464 +payment:0.230792487352589 part:0.22531449542619947 proceeds:0.2036993338045452 plat:0.18567282479308475 :0.15452085862358161 +a:0.40245794671354546 the:0.3802083083362331 to:0.14231154084178146 spoke:0.04904935722626484 :0.025972846882175202 +him:0.35143466105732724 them:0.22581453705143678 me:0.1641981392530122 want:0.1559293680867314 :0.10262329455149242 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.35162475885822353 the:0.24820245061627685 whom:0.16626061275470694 that:0.13074203704247173 :0.10317014072832086 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.668758030589902 time,:0.1327323909239497 while:0.06692361223397826 and:0.06629431196603076 :0.06529165428613919 +hard:0.28233851907564783 thing:0.21384434894414148 and:0.18794699047260208 clean:0.16581871561006406 :0.15005142589754455 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.7200811568490637 completed:0.1367845693143484 making:0.09731478769379147 existing:0.026495582812396657 :0.019323903330399544 +acquainted:0.4015128884905453 filled:0.17761703999998985 pleased:0.1726540770093868 supplied:0.1358512873976068 :0.11236470710247118 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.30015919762272253 that:0.24643654671671808 by:0.16584081721859545 in:0.157532667071409 :0.1300307713705549 +once,:0.331378217749452 home:0.1879458190179684 once:0.17606325166668244 home,:0.16667278215179304 :0.13793992941410413 +interested:0.7096689574783906 engaged:0.159836266583168 residing:0.05443944921897364 employed:0.04220416923238583 :0.03385115748708194 +Mr.:0.2507041416681069 it:0.22583424596027493 time:0.20887970652465848 day,:0.16934891304830973 :0.14523299279864987 +opportunity:0.28890486657815 order:0.2249940295307912 attempt:0.21037774289510267 effort:0.1777913698834426 :0.09793199111251345 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.3542479003490976 is:0.22419314392543963 are:0.1548924901111969 then:0.15354073844724084 :0.11312572716702508 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.38080740478366093 and:0.2912182965932603 that:0.2099401670350022 as:0.061810359819408175 :0.05622377176866838 +are:0.36167462997378513 have:0.24512686791819055 were:0.19272262079081176 had:0.12213282707286675 :0.0783430542443457 +for:0.43772548716845666 of:0.31777815764543466 to:0.0878597729775441 in:0.08573779383541977 :0.07089878837314494 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +go:0.3718350500570857 look:0.17684999697041523 be:0.16861048269174345 get:0.15706079660766445 :0.12564367367309115 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.34501689717126005 country:0.1993914047255576 confidence:0.16078414346926093 citizens:0.15304309987393172 :0.14176445475998956 +The:0.41063875802367367 In:0.32840992578905936 A:0.11169842955741212 of:0.10052645791236957 :0.048726428717485226 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +accordance:0.30475649316314946 connection:0.2862815873924049 .,:0.23942404237512885 .:0.09701459305888299 :0.07252328401043377 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +property,:0.35289973214852144 real:0.28610012868128726 land:0.17382902442157883 in:0.09798056770449677 :0.08919054704411569 +is:0.33047271704127823 was:0.295164212163862 are:0.19567559235730766 were:0.09259693592977812 :0.08609054250777404 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.27711358413303655 to:0.2648702913255775 for:0.22788331778019597 in:0.1391212222782256 :0.09101158448296442 +the:0.492480066244949 a:0.2191561166157898 every:0.1005877142061404 this:0.10055164350307919 :0.08722445943004159 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.5279691279233537 not:0.21150030749299706 have:0.12156620008796777 appear:0.07017863376901143 :0.06878573072667017 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7780476144201518 an:0.17383226438887672 tho:0.028821277501812712 tbe:0.011566736683118943 :0.007732107006039847 +the:0.6643323856414716 a:0.21734649319532254 our:0.06864527748163912 tho:0.025438316827545843 :0.024237526854020926 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.3530834960784411 them:0.3341402036018159 him:0.10776124770226282 that:0.1065479573307391 :0.09846709528674094 +unable:0.273177137729641 compelled:0.21489434095224683 going:0.1778442415117511 able:0.17407986983570004 :0.16000440997066107 +place:0.34833724788697323 spot:0.20162386496180532 point:0.18414383965253847 country:0.15714008192469367 :0.10875496557398913 +street:0.32247271357781415 street,:0.235446283414655 ;:0.162407496193877 county:0.1454704440343268 :0.1342030627793271 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Smith:0.4726178714414747 M.:0.1930782667692426 A.:0.11900448351164969 Smith,:0.11303546670947391 :0.10226391156815912 +virtue:0.49027458314010086 deed:0.14907298603540964 means:0.1484581059307114 one:0.12436968669233539 :0.08782463820144273 +more:0.42276731747913077 on:0.16171693252012875 whether:0.15870102331256603 one:0.13971541531947745 :0.11709931136869699 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +this:0.302200067986624 jail:0.18667292868530608 both:0.17748268963927571 one:0.17108514681672243 :0.16255916687207161 +the:0.759363224992346 said:0.08972055629778883 these:0.0893078884280696 its:0.03296095457773188 :0.028647375704063775 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.4575492189132489 only:0.2101766223301091 same:0.14156367638303857 first:0.10090145538857885 :0.08980902698502466 +of:0.5735631763647894 and:0.2588204562293289 is:0.07686320671237133 or:0.04807568222286138 :0.04267747847064899 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.6878775794597288 described:0.22408867167856644 the:0.04760515546051629 one:0.026353120525504287 :0.01407547287568418 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4355651760348236 in:0.2555470600887326 to:0.11044904399052814 on:0.10134639630009867 :0.09709232358581706 +25:0.279537468206741 fifty:0.20951670422305854 75:0.20191838036665152 50:0.16570728325135145 :0.14332016395219743 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.34120017902112887 much:0.18836060492444512 secured:0.16432557377053644 amended:0.16359163229734106 :0.14252200998654846 +of:0.7526188039211897 to:0.09109745354445506 from:0.08800548097980124 for:0.04111073700150078 :0.027167524553053306 +all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 +is:0.8218696038701764 was:0.10295302142653807 Is:0.060231089471382525 he:0.007502822720540332 :0.0074434625113625925 +sides:0.6300621270691076 together:0.11135656212118665 hands:0.09084338399628236 ends:0.08958347506624571 :0.07815445174717763 +appear:0.5502707033055716 long:0.20836815174177892 come:0.09634101908804718 even:0.07411946752307673 :0.0709006583415256 +young:0.6824303121118656 good:0.09276267620613028 white:0.08178104757993127 single:0.07478137676498879 :0.06824458733708402 +of:0.49706412238988085 in:0.18999335252169886 for:0.13162738548536998 is:0.1017117028564248 :0.0796034367466255 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7394017195373128 said:0.11739624465257628 a:0.09409451121818518 tho:0.030303650015611427 :0.01880387457631421 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +readers:0.499913380907409 people:0.22758061610464955 country:0.13741936602552385 government:0.07068972153226417 :0.06439691543015343 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.3874534483747249 to:0.19879621566410682 on:0.17440802911663345 at:0.15220287747568603 :0.08713942936884883 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +whose:0.47987200719637224 of:0.17527544236781542 had:0.12558745572271768 from:0.11915785973801056 :0.10010723497508404 +to:0.41754511693643404 in:0.24321046927799947 be:0.12056149707499503 for:0.11139392675218653 :0.10728898995838493 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3165735460247696 in:0.25946936079916144 to:0.15506573127393322 for:0.14103478518490895 :0.1278565767172268 +was:0.22250405777539234 he:0.21777747906429554 being:0.21330703951195498 has:0.17574389671270157 :0.17066752693565565 +best:0.7318892670128958 business:0.11009825161601448 public:0.06052950411464436 great:0.0516495751153207 :0.045833402141124795 +is:0.26907900329081336 ;:0.24225462072353204 was:0.20216169773870063 up,:0.15528045304984803 :0.1312242251971061 +the:0.5588673105594176 a:0.22806830745687365 this:0.12868199440749326 your:0.05005033999043069 :0.03433204758578475 +1:0.28727121262638083 which:0.2735299919334522 least:0.21932466028678596 I:0.11120318157137939 :0.10867095358200163 +not:0.750899960483654 probably:0.09335066619449489 to:0.06781875750829983 thus:0.050490821536840175 :0.037439794276710986 +a:0.7268128978694677 the:0.1564994950226013 no:0.07102613633409828 nothing:0.03147884472095637 :0.014182626052876481 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.24915589253745718 city:0.22854406432363528 payment:0.20642614765754363 day:0.1602732853515545 :0.15560061012980947 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +being:0.4091914426205469 now:0.2121510176763275 not:0.198599968833973 also:0.1099908578394032 :0.07006671302974939 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.3815021573122253 time:0.21623464843103052 in:0.15656182894144346 to:0.12992553047821742 :0.11577583483708329 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.9201288608494863 those:0.03392205255404213 that:0.023637833135038536 the:0.012905278165570093 :0.009405975295862833 +hundred:0.2502767045823328 large:0.21688536435617353 man:0.20733062651268858 good:0.18723035529853752 :0.13827694925026754 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5315001108440658 said:0.29109015079560496 a:0.07151877492182156 this:0.05377529341104589 :0.05211567002746176 +and:0.304200297422003 thereon:0.2882662979177051 payable:0.23262991225878277 thereon,:0.08996398913813286 :0.0849395032633762 +man:0.35592266086034474 point:0.24130479517609796 change:0.14696324754392406 part:0.1304589583290741 :0.125350338090559 +to:0.3196703842535227 will:0.18596148039646349 has:0.18023507037569295 and:0.17486303129366265 :0.13927003368065838 diff --git a/test-A/out.tsv b/test-A/out.tsv index 71c3780..42c56c1 100644 --- a/test-A/out.tsv +++ b/test-A/out.tsv @@ -1,7414 +1,7414 @@ -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -on:0.2 a:0.7 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.5 a:0.4 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 -on:0.2 a:0.7 :0.1 -on:0.2 a:0.7 :0.1 -in:0.5 a:0.4 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.5 a:0.4 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.1 a:0.8 :0.1 -in:0.4 a:0.5 :0.1 -in:0.3 a:0.6 :0.1 -on:0.2 a:0.7 :0.1 -on:0.1 a:0.8 :0.1 -in:0.3 a:0.6 :0.1 -in:0.4 a:0.5 :0.1 +place:0.27929962891697346 day:0.2430502896284843 time:0.22181291769513653 mortgage:0.15177688147056728 :0.10406028228883855 +it:0.4340752629332528 is:0.18237240966646576 time:0.14915784562865575 was:0.12550002808331956 :0.10889445368830607 +the:0.6036709419022299 abandoned:0.3518174744134723 tho:0.020715276769562203 for:0.01340090500092777 :0.010395401913807993 +year:0.22236284663100492 man:0.2216963917815124 certified:0.20105767903898927 fixed:0.18762249760489025 :0.1672605849436031 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4100034821036706 tho:0.19607138096642732 that:0.19415279158494236 many:0.10844385290313945 :0.09132849244182026 +ac-:0.39787733814464177 ac­:0.18997029441044472 sec-:0.15278605561110015 ac¬:0.13082900467915687 :0.1285373071546565 +placed:0.34300024656185446 put:0.2018775466121469 going:0.1868597034045908 laid:0.1411264968137215 :0.12713600660768642 +He:0.3151925090723907 It:0.2851449230249535 She:0.17608978392029298 There:0.12837337548043995 :0.09519940850192296 +since:0.4694916737553812 before:0.25719566858071996 in:0.0971989878020482 to:0.09166677506127803 :0.08444689480057255 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4011263516866788 days:0.20146096382127943 hours:0.1581125882691327 years:0.14122942397749294 :0.09807067224541617 +cause:0.3368722799418023 ing:0.2758361057620928 fore:0.22637752077665624 tween:0.14919385473776384 :0.011720238781684812 +they:0.27965864488195646 there:0.2157859574700905 and:0.19947151296003296 we:0.15554946244838275 :0.14953442223953742 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.48924277103655067 that:0.3202629663646443 what:0.10509004570671922 until:0.04317689810340274 :0.04222731878868302 +the:0.6703538653300152 this:0.1490461771873049 a:0.07015050663852618 any:0.05805124200886788 :0.052398208835285814 +little:0.28035063647166125 whole:0.24986317014688503 town,:0.17135129864446177 said:0.15721931583325935 :0.14121557890373262 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +dition:0.5588996800424216 gress:0.23890441060364687 science:0.0905948383139974 tract:0.06349246521787928 :0.048108605822054805 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +feet:0.4338922077514962 chains:0.22635618831292215 inches:0.21328494140661994 poles:0.07767819643933563 :0.048788466089626135 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +had:0.5809389597713293 has:0.24340461391760287 having:0.08698731998955356 have:0.07010962814577379 :0.018559478175740444 +unable:0.273177137729641 compelled:0.21489434095224683 going:0.1778442415117511 able:0.17407986983570004 :0.16000440997066107 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.43314854367862027 there:0.22173579239672106 who:0.12910633092066634 that:0.12387761016575818 :0.09213172283823429 +not:0.6331658877636394 justice:0.11870762873757369 want:0.10965669117504427 there-:0.08126754413459576 :0.05720224818914689 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +going:0.2585235478252685 placed:0.23642330981040433 held:0.17344731448956857 carried:0.17233595493789808 :0.15926987293686046 +;:0.29637347650597595 in:0.2751797171983777 for:0.1694340168428201 door,:0.1427974311779572 :0.11621535827486913 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be-:0.6852635715268554 be¬:0.18361677656268144 there-:0.06472593050238472 be­:0.058567926785595435 :0.007825794622483031 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +found:0.3234076684373223 remembered:0.2202773322437868 given:0.18162208867405258 so:0.14885244180138496 :0.1258404688434532 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sell:0.26922955199337056 look:0.2584456404941601 be:0.25274974570477554 meet:0.12531627287726474 :0.0942587889304291 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.9562531334948424 ns:0.014636012889471505 see:0.014157032228068694 aa:0.008541750447656447 :0.006412070939960827 +of:0.9349408904127074 from:0.018276730340333558 in:0.01773888682871411 to:0.017491695884235152 :0.011551796534009765 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.2884086001548156 will:0.2598011776620114 and:0.22314484093262654 would:0.14943613806080427 :0.07920924318974219 +same:0.31820535319811083 world:0.19731570358648604 country:0.1750573838548758 fact:0.16145627196515744 :0.14796528739536993 +half:0.38609907028655294 as:0.2569453499811118 to:0.20137892049949827 by:0.07934042508265436 :0.07623623415018276 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.4226682494378403 and:0.21529394954978284 that:0.1522568517146442 as:0.10528886402243784 :0.10449208527529472 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.35516722930474803 showing:0.2230997784497662 shows:0.20371897691598542 is:0.13622425066048988 :0.08178976466901035 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.6674727783844346 we:0.18537122185893062 you:0.08444489508511928 are:0.037904828132854396 :0.02480627653866119 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5744093649422282 just:0.1818396593941611 not:0.1033334716048957 as:0.07958657328449509 :0.06083093077421999 +of:0.5621164030535752 in:0.15030751369028827 to:0.13534000927570136 for:0.09706572740997099 :0.055170346570463984 +most:0.5822565761670837 new:0.13291255530170135 highest:0.12032629881128586 following:0.08726629074827279 :0.07723827897165621 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8901154704233756 only:0.04022781253420908 by:0.03125105159486443 as:0.023906706620881065 :0.014498958826669848 +is:0.5248728443602325 was:0.38106872996405655 up:0.03780409155880953 appears:0.029369193184733043 :0.026885140932168313 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.3104976683899121 of:0.23437236138939613 to:0.19102005538998218 throughout:0.15240288085330006 :0.11170703397740969 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.415239971949358 when:0.24351363254666716 if:0.1649032503243776 then:0.10067323199724439 :0.07566991318235296 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.2940513495555944 sale.:0.23488273750454897 them.:0.21830768927460892 beginning.:0.14277876620941937 :0.10997945745582818 +he:0.4454926198628296 I:0.28574451573038673 she:0.1358210141138963 they:0.08444915767982028 :0.0484926926130671 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.42189969943822436 his:0.2955000558211297 to:0.1423960654800484 her:0.07050275950229644 :0.06970141975830109 +do:0.43864313763393964 have:0.27293440409681724 did:0.1271526717915437 make:0.08156476180269397 :0.07970502467500537 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.8448664814866796 have:0.06518043816529201 bo:0.0645718451733313 easily:0.015036735449484138 :0.010344499725212808 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6669225492625962 a:0.14319453954033048 more:0.07835000803521791 no:0.05942114096334872 :0.05211176219850646 +The:0.34937772390614946 On:0.301438647723741 Upon:0.16873214686458174 In:0.11071781922933611 :0.06973366227619154 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7694113662001432 among:0.08446256835675438 in:0.06172657690837289 to:0.055706898676491694 :0.028692589858237874 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.28789868461569756 world,:0.2337487460001322 country:0.17564625454351693 time:0.1583185741926755 :0.14438774064797788 +of:0.3063970551673443 to:0.2607344896666734 in:0.19168061057581354 on:0.13808190643723048 :0.10310593815293842 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.3502117209311237 never:0.1720721666274353 believe:0.17103435388473584 think:0.16802800829860645 :0.13865375025809873 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +do:0.29221854887681414 was:0.27770944848894724 am:0.1922292390586287 have:0.1459691997040888 :0.09187356387152114 +them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 +east:0.42942178230792105 west:0.2773016404769069 and:0.12722285452162646 thirty:0.0992011984918984 :0.06685252420164714 +in:0.2933388507493354 and:0.2154625343922927 for:0.20717107556165576 so:0.1594371813047239 :0.12459035799199218 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +last:0.3329652592206909 this:0.2727205252353137 the:0.14843918310098023 in:0.12398764722224728 :0.12188738522076796 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +those:0.38344686080373874 us:0.372842720181997 him:0.1450925709938761 them:0.06196259116406876 :0.036655256856319374 +protest:0.35873064228010404 vote:0.20366150918412398 judgment:0.17043003586877886 suit:0.15538698177273783 :0.11179083089425537 +jury:0.6233893835967764 Jury:0.1641976106915968 opportunity:0.07656263271079887 march:0.07399974455408158 :0.06185062844674638 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.39476326964958663 been:0.35664755091737677 in:0.12167785459164707 all:0.06899769485434601 :0.057913629987043344 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +less:0.6821939018322625 more:0.28957373670959047 better:0.011829783405087297 later:0.008336124066564015 :0.008066453986495845 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +taken:0.5471499189010591 broken:0.12516061448541616 given:0.12450513231571153 made:0.10960589148234623 :0.09357844281546707 +people:0.344590370213163 man:0.28270613457884597 men:0.24749205800916033 person:0.07206840613674627 :0.05314303106208454 +been:0.8627413767522168 or:0.051007105857290125 published:0.030165410258435662 fired:0.028430768784961778 :0.027655338347095642 +ai:0.30942749349080506 -:0.30329604867242693 following:0.16485773541646667 same:0.11367105972185722 :0.10874766269844403 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.3044478040010886 petition:0.2619046483062651 mortgage,:0.14695954604827108 mortgage:0.1439252103686568 :0.14276279127571845 +beautiful:0.2487215372170534 interesting:0.24523248123733282 important:0.21255626014944784 active:0.1638176076899696 :0.12967211370619613 +all:0.3665416815310596 that:0.23135779825641822 which:0.17283219759864385 and:0.1495899226760839 :0.07967839993779427 +cost:0.39093592274799616 value:0.34071634956732405 possession:0.10012619503613347 condition:0.08747402691419312 :0.08074750573435324 +to:0.4226682494378403 and:0.21529394954978284 that:0.1522568517146442 as:0.10528886402243784 :0.10449208527529472 +than:0.8228296406625584 he:0.07864869410630362 it:0.04311421679197 time:0.03185824653141504 :0.023549201907752948 +was:0.3063303576165919 are:0.21610634414624666 is:0.19713206647405945 were:0.1511453413063222 :0.1292858904567799 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +more:0.488245232897379 and:0.25098330274345926 death,:0.1012047383583296 was:0.08981815772660467 :0.06974856827422744 +and:0.4209998793494881 is:0.23503938505548627 was:0.17182717227385724 are:0.09619496115381272 :0.07593860216735562 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +world:0.2902661748371584 country:0.2222473979389011 city:0.1773477177489124 government:0.17433420460373003 :0.135804504871298 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.3437296473325138 thing:0.21777808780184202 effort:0.1621189426541865 one:0.15960823247471878 :0.116765089736739 +men:0.4201327429359498 facts:0.16525503234149197 things,:0.15244576450926423 lands:0.13741410403831483 :0.12475235617497915 +back:0.3144127118181548 up:0.23378798975585416 down:0.22812878789971594 out:0.14582670951194704 :0.07784380101432799 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +In:0.225252997081593 is:0.20951866311037032 As:0.20011200766203505 as:0.19181868443724842 :0.17329764770875322 +kill:0.4607978503576886 marry:0.17924003999639873 like:0.12936962927695458 see:0.1153537436054177 :0.11523873676354031 +got:0.3598355078390551 came:0.20550708222211234 picked:0.17992948833185432 put:0.13106512491528893 :0.12366279669168935 +and:0.48501325377093163 was:0.21028309878791074 is:0.11087952033769692 will:0.10794752123394091 :0.08587660586951958 +met:0.2574681759820508 was:0.22442613999493183 charged:0.20823046126515576 covered:0.1665405595859798 :0.14333466317188182 +Mary:0.315342744492808 Alice:0.23157208507422647 Helen:0.20815439199480237 Anna:0.17167878494850333 :0.07325199348965984 +building:0.26049269683507625 house:0.21882519628534855 building,:0.1916267960358532 dwelling:0.1762382353807545 :0.15281707546296738 +been:0.49739277467816617 a:0.26634868324091343 not:0.10063116314979045 to:0.08465250106028076 :0.05097487787084924 +will:0.36505082677887923 would:0.24992507128913913 cannot:0.17619556878762466 don't:0.10489336610762928 :0.10393516703672755 +addition:0.45117525212813114 order:0.2836174243931283 regard:0.18388502857632036 reply:0.04106111744362021 :0.04026117745880002 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man.:0.25935106434983984 year.:0.21797645251527584 day.:0.20802299674239588 time.:0.1579970647770154 :0.15665242161547296 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +successful:0.3087162659107653 prominent:0.25701465185846556 part:0.2112853274632169 effective:0.11818664340991256 :0.10479711135763979 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.37792136134770316 country:0.19762808590802014 world:0.15153485794975546 fact:0.14021026127230052 :0.13270543352222058 +years:0.4448924731776809 days:0.20150236417488657 feet:0.16204608956140115 miles:0.10145629852347476 :0.09010277456255676 +the:0.7731103384485354 said:0.14183259259342781 a:0.0346214846360863 tho:0.025269952545080136 :0.02516563177687034 +life:0.27435200411439736 life,:0.2198343405699623 wife:0.2019501554468227 face:0.15558610856386543 :0.14827739130495216 +him:0.31928762103776237 them:0.26299873371888505 up:0.2216603221625674 security:0.10439430406131377 :0.09165901901947152 +.,:0.44925060217937013 of:0.17021617433285047 and:0.16993895728023714 his:0.10921313055724753 :0.10138113565029482 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +own:0.9726852769669484 great:0.00876641609700926 or:0.007326412354479332 death,:0.006043085565185864 :0.005178809016376928 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4793699904228758 great:0.17305924687187443 its:0.1361709717417632 a:0.12600108376862842 :0.0853987071948582 +fields:0.33339650827166134 occurred:0.20912088343942103 field:0.17460788907032 and:0.16639735109782822 :0.11647736812076942 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +whole:0.23711158619302136 hearty:0.2181864225037151 same:0.2023892825763048 table:0.18960647749658885 :0.15270623123036997 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.45162466539671514 not:0.17569051611208322 got:0.17223122098275628 taken:0.12207855194407893 :0.07837504556436636 +a:0.3689205098135848 so:0.3558259009120394 the:0.1537336901371903 been:0.07680981534134698 :0.04471008379583851 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +bearing:0.6156286321814094 and:0.18756059822322005 or:0.10349570205792986 from:0.04788468235631906 :0.04543038518112152 +is:0.33987505168382603 such:0.20429190044323775 in:0.1597975838805144 was:0.15804302107453402 :0.1379924429178877 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.40847110252795005 shall:0.2813604088935594 will:0.20213484837451204 may:0.0553932901429307 :0.05264035006104796 +days.:0.5057971899867334 years.:0.1581037697513258 miles.:0.133121378858912 acres.:0.11355279375014918 :0.08942486765287971 +is:0.5620336842401474 was:0.3018200746512986 Is:0.0675599603975823 are:0.04307090633462361 :0.02551537437634794 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.37222819900174764 in:0.27421066801457084 all:0.13434439594704725 on:0.11729145192866643 :0.10192528510796796 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.21839366065866123 of:0.20940515842416646 in:0.2078094040285678 ago:0.18533375845843558 :0.1790580184301689 +Saturday:0.2499924746178531 Friday:0.2131158217499018 Monday:0.1915373547400168 hand:0.17744760965836456 :0.16790673923386382 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +talk:0.34083874535511544 all:0.194134758618783 was:0.17841444124341432 is:0.16045932647785252 :0.12615272830483468 +to:0.3871231886201193 will:0.21523779491194944 should:0.1925986206852725 may:0.12077832922020075 :0.08426206656245805 +that:0.5641716894875966 if:0.1889094431675402 then:0.10226941534948743 when:0.0859011328662594 :0.05874831912911664 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.4687804045787755 is:0.2117353861879526 and:0.10873019481234816 now:0.10809373223532284 :0.10266028218560083 +he:0.46452695402959804 they:0.2460480493509285 she:0.13177290145671913 I:0.08206163951839913 :0.0755904556443551 +are:0.35920903376692737 have:0.3121486651928697 had:0.15214681592263224 were:0.12379094986310997 :0.05270453525446068 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +resources:0.3670858997122199 advantages:0.2952451606413833 consequence:0.12095640756441554 more:0.11277599943035892 :0.10393653265162232 +very:0.31444782985336583 certain:0.21583468824863167 new:0.185138831486927 right:0.183278417714999 :0.10130023269607644 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +.:0.29782831471854093 and:0.2949006671828218 power.:0.1701684988589156 J:0.15917928815793306 :0.07792323108178872 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +old:0.25333557600356327 new:0.2474901416793199 present:0.20186213637722894 first:0.18229594935862573 :0.1150161965812622 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.41754511693643404 in:0.24321046927799947 be:0.12056149707499503 for:0.11139392675218653 :0.10728898995838493 +of:0.5485077892694068 to:0.1715061778284287 by:0.15016272452706073 that:0.06579799109996055 :0.06402531727514321 +of:0.6491829234798457 and:0.1569135190500301 in:0.09334944297796112 at:0.06914042623644917 :0.0314136882557141 +no:0.4186392890175606 an:0.36569133834602696 the:0.149931721024212 any:0.04211179087761095 :0.023625860734589527 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.2825642549950013 find:0.19230686998606655 deem:0.19164040099727603 prove:0.17506524721657865 :0.15842322680507748 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +large:0.2704100564790041 few:0.25269441610514043 fine:0.2309690881723811 good:0.13760383670365617 :0.10832260253981826 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +he:0.3775582575303948 it:0.27820313971650956 there:0.17708783376580198 she:0.09767003058746972 :0.069480738399824 +.:0.6690672924315115 is:0.10362871348129327 la:0.08181803571631388 i:0.07804783085377345 :0.06743812751710791 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +interests:0.45613516532553305 part:0.1732158141844742 method:0.1375893520895562 way:0.12037089978577589 :0.11268876861466065 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +J.:0.2547145251120108 C.:0.22489488258643386 G.:0.19642812246680916 W.:0.1831741264158488 :0.14078834341889732 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +an:0.5953411483731866 the:0.12931067168645632 bad:0.12124882428547124 for:0.11713029536302018 :0.03696906029186562 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +The:0.7033754668666796 A:0.1748874054646781 Several:0.045887446595438176 Our:0.03797111892089799 :0.037878562152306054 +has:0.5317862199056687 have:0.2414801872473529 had:0.19838887130275767 ever:0.014753795233725504 :0.013590926310495322 +the:0.7112499954645611 this:0.16421015469493605 his:0.08072926378291297 my:0.02547069822542984 :0.018339887832160093 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +little:0.27626521716624786 point:0.23215109660345956 thing:0.17808634747600482 man:0.16127363845630288 :0.15222370029798502 +State:0.4407880135442261 late:0.26068392172677973 former:0.12083162884057941 States:0.08966205737288332 :0.08803437851553135 +but:0.357181666986822 that:0.20934249744068853 and:0.20107071230388743 in:0.1490213001003862 :0.08338382316821583 +of:0.6936114756431536 in:0.12469370171538098 on:0.07097675918017336 and:0.05955230109444515 :0.05116576236684694 +they:0.367037008301941 we:0.2515969899728162 I:0.20665793676336666 would:0.10269024596148342 :0.07201781900039267 +by:0.36487258691943286 in:0.23294597490259827 to:0.17189478842600422 of:0.12416395067389892 :0.10612269907806562 +is:0.3815021573122253 time:0.21623464843103052 in:0.15656182894144346 to:0.12992553047821742 :0.11577583483708329 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +think:0.2901529933985256 that:0.28518259591523126 can:0.1869036383520142 what:0.12466102181982067 :0.11309975051440815 +the:0.4999388428795517 a:0.3262845371419244 al-:0.09984044013950423 tho:0.04951739341819455 :0.024418786420825105 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.5156375291443305 water:0.1689034341872599 her:0.12859636239078895 it:0.09369986554818341 :0.09316280872943737 +mem-:0.45481509936426967 num-:0.3617706972470142 all:0.11332187969000854 that:0.045011281378623334 :0.02508104232008415 +of:0.33059099128890473 a:0.29983068709338523 the:0.18237503929086174 few:0.09764636497143 :0.08955691735541817 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.48924277103655067 that:0.3202629663646443 what:0.10509004570671922 until:0.04317689810340274 :0.04222731878868302 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +go:0.5317633711415205 come:0.19882747319653823 get:0.1174924319589346 take:0.0765816513839242 :0.0753350723190824 +there:0.25665114554957136 and:0.2474343658364947 who:0.18968747010428827 number:0.1622551656556741 :0.1439718528539717 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +soon:0.32236391471306236 was:0.20277730379859688 and:0.18401518234098183 is:0.1504656390253045 :0.14037796012205433 +He:0.5107718292443105 I:0.24594778433412856 They:0.1126550434023921 She:0.07366407313714486 :0.05696126988202396 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +on:0.6181819004620261 out:0.1868820908041592 into:0.07858019616821411 off:0.06355880712937426 :0.05279700543622629 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him:0.45516496548900415 her:0.2045064699085665 them:0.16241623344004882 going:0.1042258119792084 :0.07368651918317201 +general:0.3483376564486072 county:0.22704019785215945 local:0.14756265290178694 special:0.14264754960334228 :0.13441194319410404 +time.:0.27662750340354453 day.:0.23825284328350174 purpose.:0.18878891937503364 city.:0.17553700885777682 :0.12079372508014333 +male:0.4644411794543423 rural:0.18090659898808856 white:0.1374790202922726 slave:0.11230223327507773 :0.10487096799021871 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.2969065028180742 and:0.2175414508350646 were:0.2125985213912148 or:0.15465324457677881 :0.1183002803788677 +Post:0.460682889489671 as:0.3266057910390387 post:0.08577018985145245 to:0.07271219698207436 :0.05422893263776346 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.4125751185297428 was:0.1782903231769581 a:0.14463706616547278 the:0.14375719680853435 :0.12074029531929203 +their:0.6042778910252551 his:0.22573516175383662 her:0.08731383073731688 its:0.05198944873469715 :0.03068366774889425 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7057320024432636 a:0.13514283742396313 said:0.08428098414850863 this:0.03997355780073701 :0.0348706181835275 +as:0.9683631398790805 ns:0.013365839633898322 aa:0.00949144588480454 it:0.004881552901429654 :0.0038980217007869747 +side:0.26586093323099624 shadow:0.1934207237361289 eyes:0.19313488166218 corner:0.1811665852231193 :0.16641687614757542 +believed:0.2640500489021859 so:0.20969041137632236 probable:0.1908103524339782 stated:0.17261078774836847 :0.16283839953914506 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +laws:0.759308088371189 law:0.15034115374828885 facts:0.03944416175212211 conditions:0.029474739470147848 :0.021431856658252188 +the:0.8039277039409612 our:0.05888079489096115 his:0.05550280665972608 tho:0.04317604092055227 :0.03851265358779927 +them:0.35444814961076127 Deeds:0.20184404038840703 money:0.1689957948524785 land:0.1391189718746798 :0.13559304327367339 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.4780851419118976 as:0.20697859351366155 on:0.1451973887984462 in:0.10677003161384704 :0.06296884416214753 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.44440383267871536 made:0.21094420362985453 lost:0.14605832220899478 to:0.11689998178287268 :0.08169365969956278 +be:0.6094598005233713 make:0.14640437859999528 the:0.09737840153702847 every:0.08337525204943164 :0.06338216729017326 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.6658144985424165 a:0.12512752781180725 not:0.08059854875472029 to:0.07668763245064304 :0.05177179244041296 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7800248981461073 him.:0.07082638156092645 that:0.06107381225290968 them.:0.044880025166220756 :0.0431948828738359 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6715761412017345 and:0.18495748354002423 center:0.06645056288940152 in:0.04053315039034479 :0.03648266197849496 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +put:0.24800393473250149 bounded:0.24341978636301978 that:0.1917432397880384 carried:0.1607129868331474 :0.1561200522832929 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.3775582575303948 it:0.27820313971650956 there:0.17708783376580198 she:0.09767003058746972 :0.069480738399824 +one:0.3688422722993829 matter:0.2107952241818109 means:0.18592441083285283 part:0.14920929055869567 :0.08522880212725777 +and:0.3919476550443722 with:0.19768366595137205 in:0.1749991029192543 as:0.12613965228233748 :0.10922992380266408 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.34124507377002405 out:0.2825562763220344 so:0.14356798894389555 on:0.1355293990080487 :0.09710126195599718 +port:0.27007385014679514 turn:0.26871495416884067 ceived:0.20473992542185973 marks:0.13090909342294632 :0.12556217683955812 +not:0.9396011046362311 is:0.02636844786997559 it:0.012457430070206856 you:0.011567953544525656 :0.010005063879060817 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +United:0.2283227230771005 same:0.21185957027038513 first:0.19941780033531856 country:0.18213639004368298 :0.17826351627351292 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +country:0.4441187853216063 city:0.18186169224110244 time:0.15423962350302564 city,:0.116785307418254 :0.10299459151601156 +the:0.9107354713557658 tho:0.037329773949890004 this:0.023653695022703817 an:0.016072416305296815 :0.012208643366343473 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.29368246391464997 for:0.2105315859864324 occurred:0.20550369430439355 and:0.17442246083182486 :0.11585979496269928 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.26428600652650774 made:0.25009859663494244 in:0.20435240113011832 about:0.15794451916101898 :0.1233184765474126 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.4416829750228396 is:0.15720220657240058 in:0.15670480212611881 such:0.13894831067883417 :0.10546170559980682 +husband:0.24557634759891492 way:0.24404205935292775 back:0.21060515296149449 right:0.1596373417038819 :0.1401390983827808 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6972555871647563 a:0.11847869789837863 L:0.09039823351212782 tbe:0.048119608999226536 :0.04574787242551077 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.39049051221216885 a:0.24110496213535904 more:0.1527891715500505 in:0.11191168525544457 :0.10370366884697696 +change:0.274616456910258 visit:0.21799256984617457 good:0.21399567927318988 complete:0.15096695504911317 :0.14242833892126436 +two:0.6869444685480429 the:0.1687762761295256 The:0.05732913738437781 three:0.04638784721579198 :0.04056227072226163 +do:0.8342631652991193 be:0.07218908523206576 say:0.05728466057565763 think:0.02039560058408511 :0.015867488309072208 +the:0.605240948886558 his:0.15887377338268854 to:0.10093306489487781 a:0.07786299824533527 :0.05708921459054036 +him.:0.34869122192803254 them.:0.24822832940429912 it.:0.17001036217731655 her.:0.15689810885494263 :0.07617197763540924 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.3142559086876891 any:0.27753924140881475 every:0.2106493590972288 some:0.11551507788719186 :0.08204041291907542 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +asked:0.26591505148064126 it:0.22112657683537867 ready:0.18104298309594663 made:0.17565638973160602 :0.1562589988564276 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8127858468781031 this:0.07087465872970376 a:0.05761331512233317 tho:0.0416770842221787 :0.0170490950476813 +will:0.42360209893221745 may:0.1753039640991361 to:0.17392661765376446 shall:0.11574748132776896 :0.11141983798711315 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +persons:0.3613915298763694 over:0.21965564667043527 men:0.1503777024248131 suffering:0.14866277376123416 :0.11991234726714804 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ready:0.2766298537405701 made:0.2708917352329654 used:0.16707510292951744 waiting:0.14803970274467257 :0.13736360535227463 +line:0.6345560104891838 lines:0.13876895823174518 that:0.11391768262485279 one:0.07055353826027728 :0.04220381039394095 +next:0.7043553510541185 last:0.20126672037607227 year:0.03799696670999493 two:0.030829657081416797 :0.025551304778397645 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +other:0.33828350297067583 two:0.26333804069029193 naval:0.18654567082274262 the:0.11559452618592905 :0.09623825933036055 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +forth:0.5949136395347948 up:0.17597163718058578 out:0.1059515171058636 apart:0.07160407224288012 :0.051559133935875585 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +can't:0.284740348210648 hard:0.1918641123400899 do:0.18182065015838947 fancy:0.17863427505668011 :0.1629406142341926 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +New:0.9196968123943277 of:0.047023845590918836 with:0.016444529499001385 the:0.014333252949015527 :0.0025015595667366563 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +two:0.2672355438288352 law:0.21730257568369798 city:0.182407130093737 person:0.18157610707596214 :0.15147864331776772 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2981920396520641 country:0.20186257968601773 country,:0.18879666668555872 time:0.15604954213173194 :0.15509917184462757 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +but:0.3595458365928352 I:0.29077034975684324 ever:0.15230585346016026 else:0.10765082231493137 :0.08972713787522994 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.2994305676496252 bonds:0.27896126881924754 land:0.1554550729824165 debt:0.13755401568698888 :0.12859907486172198 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.454061579648292 the:0.21446455995625832 to:0.1557095886294272 low:0.13822365951755583 :0.03754061224846658 +ten:0.2634892788064756 five:0.20287052682344453 forty:0.18846628137277427 100:0.17827126670311982 :0.16690264629418558 +not:0.3075248712485561 wait:0.2516193049832044 more,:0.15816942716457283 another,:0.14235251241025282 :0.1403338841934139 +ago,:0.47016345004924365 ago:0.3069273046454643 old,:0.08286725385981793 ago.:0.07139164865472304 :0.06865034279075101 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +secretary:0.3450397383674135 sale:0.20735792525245358 citizen:0.1665198011579054 property:0.15429606696024273 :0.12678646826198467 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.39476326964958663 been:0.35664755091737677 in:0.12167785459164707 all:0.06899769485434601 :0.057913629987043344 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +or:0.4423249249834795 to:0.21180739437470558 of:0.16802864005263354 shall:0.11842363558192931 :0.0594154050072521 +been:0.9082403445433292 become:0.03558058774677597 already:0.02473565695189501 now:0.01788513586957237 :0.013558274888427547 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +young:0.4951371277102692 old:0.2914719286644638 first:0.07498043016915264 poor:0.0707977973769783 :0.06761271607913594 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +me.:0.45073327886484654 me,:0.18379043452687435 for:0.13528523142798818 me:0.11539590482937659 :0.11479515035091428 +were:0.6508087381471069 had:0.1463528953584246 have:0.1109125435827059 are:0.08211344473444888 :0.009812378177313757 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.5994712541718059 any:0.14657002063944885 be:0.10854377599148907 take:0.09190660446772189 :0.05350834472953431 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6431622415585752 a:0.2724918827857103 this:0.029600557940155633 his:0.02923310832863178 :0.02551220938692721 +man:0.42328222428655016 bill:0.18444159166613774 resolution:0.15328290999881405 copy:0.12346674550844153 :0.11552652854005656 +of:0.7388294712788657 in:0.08083831978741163 on:0.0641342849743847 and:0.05817491857220038 :0.05802300538713774 +go:0.4652092036217017 pass:0.24625486477441966 get:0.1051825151974533 run:0.09702209187973315 :0.08633132452669216 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.4813807508488466 one:0.18615104954318165 quarters:0.1283592147097957 years:0.10443596788423172 :0.09967301701394433 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.2587770466278489 amount:0.21274862795409125 State:0.17969455837220616 city:0.17623414319364078 :0.17254562385221298 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.4336999090293634 of:0.18472506228922622 in:0.1467541629298145 and:0.13643017913752864 :0.09839068661406725 +of:0.6214744970809231 for:0.14063986392168645 or:0.11481712241492374 to:0.07726205272404993 :0.04580646385841686 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him,:0.27380728172181573 be:0.19649795736085857 him:0.19098230879313408 me,:0.17372011034931062 :0.1649923417748811 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.3122396706103437 be:0.23546165459622612 have:0.22168093599785324 had:0.19367649276641002 :0.03694124602916693 +a:0.6933341850320841 the:0.2005823012950191 available:0.05996275179781331 such:0.027215457326345074 :0.01890530454873847 +Methodist:0.42373474767066427 Catholic:0.40829921701165334 Christian:0.07671207172679649 First:0.050376294302645404 :0.0408776692882404 +in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 +the:0.5398137168654048 no:0.17775044446416777 some:0.1117361014307545 daily:0.09072592053543607 :0.07997381670423673 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +election,:0.4093859881129752 on:0.20656121248647902 and:0.18046494506453778 shall:0.12500524441192398 :0.07858260992408396 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5640761607540923 this:0.1680334759341253 some:0.13594228941244635 no:0.0673636001273117 :0.06458447377202453 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.4526872058457845 there:0.27436793993887704 It:0.10015919345440695 done:0.0899370966987188 :0.08284856406221286 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.3011631478785402 when:0.2514420982770487 that:0.17318309172149438 if:0.16943231667743688 :0.10477934544547986 +the:0.272542629233529 which:0.2426317292726945 that:0.22568101955903805 whom:0.14193277316888264 :0.11721184876585579 +Mr.:0.279639721002356 then:0.23171802833499192 wife:0.16656440492018137 it:0.16412755858855746 :0.15795028715391318 +and:0.8786557348399121 acted:0.0327019786491431 be,:0.030649713773292876 or:0.030583334594268246 :0.027409238143383776 +the:0.6403577114126856 a:0.2468708804142158 tho:0.04518272435707398 mere:0.037221055687356626 :0.030367628128668066 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +increase:0.3576492934141918 hour:0.21135426543650054 open:0.17407937829179693 in:0.16598046127234056 :0.09093660158517015 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +no:0.5553848567185471 any:0.22817519936701647 some:0.07952921036229792 been:0.07867694558931602 :0.058233787962822414 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +lowing:0.5288721830723215 lowed:0.36576149894105897 low:0.09583746904085652 by:0.005885544528133959 :0.0036433044176290247 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +whereas,:0.2820187667917907 if:0.2631992498772402 as:0.21704687430022998 although:0.12248723281026581 :0.1152478762204733 +the:0.5310317121973193 a:0.34911016054802496 present:0.0729081899445916 tho:0.025946831773792537 :0.02100310553627162 +necessary:0.25931622031166096 ready:0.20610421314042437 possible:0.20110341172972038 bids:0.1811273759145347 :0.15234877890365964 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +disease:0.24475887686825445 market:0.22055183293092415 storm:0.18915032887327163 weather:0.179663525534165 :0.16587543579338476 +railroad:0.42006668685564036 said:0.234890957446692 same:0.12445768405752852 railway:0.12326007980711855 :0.09732459183302067 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.4899363711207568 to:0.22878815995067248 one:0.1447870406934422 of:0.08890896886359054 :0.04757945937153805 +part:0.31028899527683895 portion:0.20218365376756128 one:0.1889578423695801 day:0.17618667258820278 :0.12238283599781698 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5382768120697441 a:0.16860080453348836 his:0.11741025155391979 make:0.09269970563490183 :0.08301242620794591 +day:0.2962525822937853 Monday:0.2600770986820858 place:0.17535555727657084 time:0.1648307342564858 :0.10348402749107213 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +do:0.6397681279996322 think:0.11115605133003881 be:0.11027784903145224 doing:0.08841349126970305 :0.05038448036917371 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +tion:0.7733271729934568 tions:0.1657311648777453 tion,:0.047984177986286104 tions,:0.008787049420020943 :0.004170434722491104 +of:0.7017198845621068 in:0.17415264342344886 to:0.04547174608066524 for:0.04242853352141151 :0.03622719241236771 +in:0.26637273380932064 by:0.20051727514903264 if:0.17963416269367316 at:0.17731810622096542 :0.1761577221270082 +go:0.37984996820751143 sit:0.19185640036597262 put:0.1451866269539824 break:0.14271984163918666 :0.14038716283334673 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +City:0.7334831032984012 Town:0.15040446492369144 Union:0.08020157290441715 Army:0.01815212846115625 :0.017758730412334067 +those:0.5412430481686509 all:0.13754252546756005 women:0.1113237074070073 others:0.10821651783973059 :0.10167420111705111 +made:0.4437874340174794 taken:0.1633390592910644 given:0.15703732540907547 killed:0.11944968794230583 :0.11638649334007495 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +acre,:0.35959773656943794 article:0.17719852589133187 act:0.16656447746995778 amendment:0.15089737328652414 :0.14574188678274827 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +great:0.3337104578233396 the:0.2876092430073183 a:0.16325397291229707 of:0.14815523163105315 :0.06727109462599178 +The:0.5180379672980362 the:0.27713009824430895 Any:0.11984576512587256 Every:0.04283317368230086 :0.042152995649481335 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5625227966613234 what:0.12923022947972815 no:0.1240213026471663 that:0.10350196586871586 :0.0807237053430661 +city:0.6167406199160685 half:0.12716186133723026 steel:0.10254781215913482 paper:0.08467780845143587 :0.06887189813613044 +the:0.8198115781121043 of:0.05856601126190172 that:0.052168105607638314 tho:0.041134401495562356 :0.028319903522793295 +number:0.357066106350674 amount:0.28626897999522427 cost:0.15811112676934172 value:0.10826333554764836 :0.0902904513371116 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +made:0.518199917583272 in:0.14696883152184906 found:0.14082067212125995 held:0.1033644880124015 :0.09064609076121759 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +taken:0.340018285349904 made:0.24991105067391844 picked:0.1572938104450728 given:0.12748868203750482 :0.12528817149359994 +the:0.41100976720151594 his:0.255518124350897 a:0.158869111532273 my:0.08952901446431079 :0.08507398245100342 +Church:0.348228629243083 church:0.33012631165971845 Church,:0.118377723982409 faith:0.10540881227045584 :0.09785852284433372 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +day:0.236247084957264 e:0.21896269273970398 country:0.1939279919055029 city:0.1776911016358264 :0.17317112876170268 +new:0.5101380006112574 particular:0.1540588792991618 an:0.12969021168781295 simple:0.12125461175028515 :0.08485829665148284 +made.:0.3889964545061107 done.:0.3101269544835944 used.:0.18360616179669512 before.:0.05907615385848931 :0.058194275355110514 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +his:0.6114473244966706 her:0.13942861123629735 to:0.10275855079225854 after:0.08792065985550593 :0.058444853619267524 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.237091778020143 held:0.23330056353944417 used:0.19105605084241906 found:0.18762546808626168 :0.15092613951173195 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +then:0.31890058987330727 thought:0.20409977143002314 made:0.19756234723383012 leaves:0.16769810493183002 :0.11173918653100953 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +get:0.6453157913894747 go:0.12511136545667326 all:0.08414932675288474 come:0.08204314045545184 :0.06338037594551545 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +court:0.8608611493458783 power:0.051911211066830054 command:0.031975834563167285 law:0.0294964268748203 :0.025755378149303877 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.32527089354332717 has:0.25338379517228515 is:0.1866710120744496 had:0.1191545092441744 :0.1155197899657637 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +up:0.5424653590494194 up,:0.20455470213833354 rich:0.09129704325491492 in:0.0881639347313913 :0.07351896082594082 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +as:0.6666488927064538 well:0.1453341765044518 and:0.09300721192286047 guilty:0.05084184142506087 :0.04416787744117314 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.2756995055969029 and:0.21965281807180773 in:0.20727914231567793 of:0.17744131504454397 :0.11992721897106742 +have:0.43566196875438806 had:0.27025921546081283 was:0.16689286729673758 am:0.07895371023658736 :0.04823223825147413 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.45799172542562155 he:0.37069514413278815 she:0.08934928969707727 It:0.05966579634620596 :0.022298044398307126 +of:0.857759949186879 to:0.0574521336428488 in:0.04285305045913058 that:0.02624472706622813 :0.015690139644913483 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5646300798522377 a:0.24950475534296465 this:0.11962508134534525 no:0.04459168727189446 :0.021648396187557862 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +home.:0.22032787392689374 face.:0.22002146332428063 death.:0.21729672532277478 life.:0.2137807360217256 :0.12857320140432518 +which:0.382822512214865 that:0.3189651646776821 fact,:0.13227465521724788 said:0.1132625584891586 :0.0526751094010465 +he:0.4480995390681986 I:0.17581972247155428 they:0.15786148584009835 she:0.1427183176438113 :0.07550093497633742 +to:0.6906259377248578 may:0.2186192902617216 shall:0.04959620930370196 and:0.0266509148346066 :0.014507647875111954 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3950937267274982 in:0.30229319397582793 to:0.13232349052698963 under:0.08877117028110286 :0.08151841848858145 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.28147012339328836 by:0.2796103789531846 with:0.16240403812700518 of:0.14283011497204337 :0.1336853445544784 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.794527759507964 on:0.07249967245512022 in:0.05181139655836193 and:0.05132185777688634 :0.02983931370166769 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.7003362758556873 in:0.22810600029945594 In:0.03274868381392822 to:0.028861035046104665 :0.009948004984824031 +fact:0.6811856975996785 said:0.129424747603616 ground:0.0668337494128204 belief:0.06258864438599437 :0.05996716099789066 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +free:0.24859791767391443 people:0.22214004514879504 road:0.19640848324651725 water:0.1670105641827968 :0.16584298974797645 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +C:0.28474600709676084 E:0.18519546315133983 B:0.18332411609027244 W:0.17875587287094405 :0.16797854079068283 +his:0.6114473244966706 her:0.13942861123629735 to:0.10275855079225854 after:0.08792065985550593 :0.058444853619267524 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.37233464861192545 America.:0.19059024891336182 the:0.16792448922739395 them.:0.1456612654291315 :0.12348934781818738 +and:0.4327543179457997 but:0.31450666287552903 and,:0.10015887432513831 that:0.08189179224438563 :0.07068835260914746 +of:0.2666484158544237 use:0.24730350899251596 being:0.17807826460719448 way:0.1694384813425528 :0.13853132920331301 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8629827365365101 tho:0.04466622088761815 their:0.0427455922093495 freight:0.032821278361018606 :0.01678417200550376 +people:0.31554231043708736 same:0.21332547551137776 country:0.16027869436190653 city:0.15585135602884304 :0.15500216366078537 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7448590226492949 a:0.1390914077192995 our:0.048134068750492295 tho:0.04468604424276123 :0.023229456638152048 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.523487302131522 was:0.36245509710169005 Is:0.05371704333649195 appears:0.03803195792966676 :0.022308599500629123 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.38236937281689487 a:0.3805517957672416 this:0.1101486683242592 any:0.09489511970655966 :0.03203504338504472 +the:0.6845231390678806 of:0.11147321785613293 his:0.10994185596287016 my:0.049985746226673955 :0.04407604088644233 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.267861136824984 it:0.20383673215650489 time:0.19401556187946167 time,:0.1686106703346862 :0.1656758988043633 +people:0.2687539768442318 place:0.2364378571301644 time:0.18446464312153793 same:0.1699856905403859 :0.14035783236367985 +is:0.421769938190978 has:0.2518665204415521 may:0.15852474864712318 was:0.09654557710718363 :0.07129321561316296 +he:0.5638347019702764 it:0.22327987366174534 she:0.14409619947965507 It:0.038879135851071854 :0.0299100890372514 +of:0.7426468585380817 and:0.09460015463947226 in:0.0800523025004472 to:0.052690411805860864 :0.030010272516137942 +duty:0.2443036096521243 views:0.20281579720904214 home:0.1953281848113325 work:0.18818011683716432 :0.16937229149033667 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.6435970974749966 had:0.12732018861750605 are:0.12253773967739857 find:0.055079998557356055 :0.051464975672742656 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.3894253283065857 should:0.20197804997371752 to:0.16839376577676599 would:0.12295282759046314 :0.11725002835246752 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +payment:0.230792487352589 part:0.22531449542619947 proceeds:0.2036993338045452 plat:0.18567282479308475 :0.15452085862358161 +of:0.8708901337826848 to:0.04059196636227122 in:0.039316920735402876 that:0.02505446318643989 :0.02414651593320142 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +average:0.262609927170552 whole:0.24465373768889534 same:0.2218786572107609 great:0.14289025765025912 :0.12796742027953267 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +even:0.5160057881434225 the:0.37466341337602416 bearing:0.06658340217566258 interest:0.029479136338469165 :0.013268259966421522 +that:0.324316500847497 he:0.2025768121475051 it:0.17353134994514116 I:0.15144901217639406 :0.14812632488346264 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +important:0.29546952270922033 of:0.2424134513434441 likely:0.2280480829360008 desirable:0.11811225803486033 :0.11595668497647448 +have:0.24682621236874797 has:0.21952188925956095 had:0.21929290101575818 was:0.19362105314304626 :0.12073794421288657 +and:0.29212149405430765 of:0.2511669439285053 in:0.23362995317273186 at:0.13755081626389296 :0.08553079258056234 +are:0.2889273550528222 have:0.21661436896613256 ought:0.1956993604835726 were:0.15191221466628485 :0.14684670083118778 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +life.:0.37463839821483685 government.:0.27613490491356163 election.:0.11803302006296948 law.:0.1179285231936595 :0.1132651536149725 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.2998064370197907 who:0.23146241125766123 day:0.214644448340376 thing:0.17967427419211845 :0.07441242919005353 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +virtue:0.49027458314010086 deed:0.14907298603540964 means:0.1484581059307114 one:0.12436968669233539 :0.08782463820144273 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.4459223275701213 have:0.3614724186054513 see:0.10392579296737967 make:0.044396544950004044 :0.0442829159070437 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +their:0.6854854760697403 the:0.23675401379870212 our:0.0489181581760275 tho:0.015405934005141522 :0.01343641795038869 +months:0.7586631752616985 years:0.09942126193496156 weeks:0.08247731478289531 days:0.031547518965051265 :0.02789072905539332 +chance:0.23704184975588768 man:0.22467215142031646 right:0.20713360841673276 desire:0.1793389447387502 :0.15181344566831298 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +long:0.38337830678612894 well:0.2169569119218413 large:0.1744648695656167 good:0.14565992151957216 :0.07953999020684091 +them.:0.5418967070052477 it.:0.20411234320701613 him.:0.13482853754930088 us.:0.07827636942576274 :0.04088604281267241 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.4340752629332528 is:0.18237240966646576 time:0.14915784562865575 was:0.12550002808331956 :0.10889445368830607 +and:0.2915407599180623 in:0.2707230201860661 from:0.19376921079653808 to:0.14974639603034903 :0.09422061306898467 +of:0.5346565734466369 you:0.13168563883431836 whether:0.11595092178266239 what:0.11474008294905672 :0.10296678298732559 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +about:0.31518220765009664 of:0.3049155883406177 to:0.13423558696869362 north:0.12748443819427588 :0.11818217884631604 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +said:0.869967515582271 Democratic:0.03980171415438008 District:0.03576311272091193 District,:0.027911624110143068 :0.026556033432293773 +would:0.30132202511362466 to:0.20134335097501027 who:0.1851915441005974 will:0.16044808517235148 :0.1516949946384162 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +did:0.24693295655049666 does:0.24118173325407918 was:0.1981097289170006 is:0.18507910304345168 :0.1286964782349719 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.2948005148851082 with:0.24678036030087755 in:0.18544282389754674 of:0.15758742403927742 :0.11538887687719007 +highest:0.3177466605530098 new:0.18788074718168093 said:0.1796836742110362 final:0.1749088318385615 :0.1397800862157115 +the:0.6292442989569401 a:0.18652179848223271 this:0.13290109204201378 tho:0.02844800225137504 :0.02288480826743846 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.48087917354816817 on:0.22941378961178568 at:0.1531674130421898 In:0.06849074209001556 :0.06804888170784085 +will:0.4311874681553715 may:0.20171570997978597 would:0.15599469524284743 shall:0.12314748397336106 :0.0879546426486341 +which:0.420592995689699 said:0.20209082065553577 whom:0.13078224777454728 that:0.1259679340949773 :0.12056600178524056 +and:0.37604432003605914 was:0.19627840984671535 are:0.16982381127916693 as:0.12908341889372674 :0.12877003994433173 +sure:0.37555006936348345 to:0.22532596980891315 terest:0.19148922134974072 formation:0.14881534080148529 :0.05881939867637749 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +who:0.5498347706702335 which:0.1274579088702106 they:0.121360763697825 there:0.11066846800240931 :0.09067808875932189 +to:0.4226682494378403 and:0.21529394954978284 that:0.1522568517146442 as:0.10528886402243784 :0.10449208527529472 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +day:0.4547332106616316 part:0.16860762795210724 class:0.14980146531786717 story:0.12091001954858295 :0.10594767651981106 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +whole:0.5534772781176368 first:0.15506461472378869 next:0.1403152142008995 closing:0.07788714308214634 :0.0732557498755287 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.27057425687745057 with:0.20520127679835576 to:0.20510521520213149 in:0.18226333261037747 :0.1368559185116846 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +a:0.3804200016095241 in:0.23237547459171803 the:0.17274328474875925 no:0.1441484875368722 :0.07031275151312652 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7267527276366693 in:0.09116759079703453 on:0.07126641748047033 to:0.0643680605248287 :0.046445203560997024 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.5579864994410588 was:0.1824977828007068 appears:0.10833532323307725 seems:0.08628289743446999 :0.06489749709068707 +from:0.5392251669363305 for:0.1890861960616435 with:0.11027481910952128 and:0.09686348859221476 :0.06455032930028996 +order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 +he:0.7265060808505964 she:0.15477736426640762 I:0.044061997635927184 they:0.039439856358112736 :0.03521470088895602 +ceived:0.3227586953914724 port:0.2284261000273819 turned:0.19218251209174678 ports:0.1612062389938944 :0.09542645349550437 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6037049216404505 a:0.32080946760516676 tho:0.032515773427244536 sea:0.02961152438593359 :0.013358312941204528 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.36915831345958844 paid:0.17488932083355793 secured:0.16227135660216174 done:0.1567834062108821 :0.13689760289380976 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +at:0.3146425405955671 in:0.291078355826065 on:0.26758187726703375 with:0.0669873891073452 :0.05970983720398891 +newspaper:0.5709049766209288 paper:0.27528337138926 and:0.05411783649103584 letter:0.05365803282498486 :0.04603578267379053 +wife.:0.24967870951022553 life.:0.21427720711979803 head.:0.2053588781273843 age.:0.17151502792982343 :0.15917017731276878 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +wish:0.2139351032775634 went:0.21068230681553277 have:0.20700734941190393 want:0.20401605424950528 :0.16435918624549464 +them:0.41300329584559003 free:0.19322393832292992 water:0.14196810612365435 land:0.14186166546669446 :0.10994299424113121 +in:0.37409782436151773 of:0.3530333417159617 considerable:0.15380324813862387 their:0.06884537340552903 :0.050220212378367525 +he:0.4027515192604606 bill:0.22224057561191873 I:0.13548352914117462 action:0.12001514145812832 :0.11950923452831776 +man:0.3365570067160079 men:0.32676711479903753 lady:0.1680471203353185 people:0.09778843333156874 :0.07084032481806747 +him:0.41135245806584964 them:0.18352470462266487 me:0.1370050269539439 her:0.13455226706281223 :0.1335655432947293 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4122410004966187 pursuant:0.1799496860922268 as:0.17675939328383047 on:0.1321319706930795 :0.09891794943424449 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city.:0.2687553192465947 country.:0.26474334338264893 world.:0.19881503539006837 day.:0.13473216391929435 :0.13295413806139372 +well:0.35087980670486524 and:0.233739049258664 is:0.19072714015270298 done:0.12248361927049822 :0.10217038461326963 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +about:0.5620691715837564 of:0.2076201096829569 are:0.10335733662112236 and:0.07429100658012835 :0.052662375532035975 +law:0.3584613291937762 two:0.2275663913283805 one:0.1683729394993571 law,:0.13777077791394424 :0.107828562064542 +of:0.9060596404359029 by:0.0453149527106415 to:0.016729052266158773 and:0.016265525781433393 :0.015630828805863365 +of:0.3668677466765059 for:0.2011066143717148 to:0.15273195879711302 by:0.14593492892431978 :0.1333587512303464 +the:0.768561183604784 of:0.11317826712406694 a:0.04621678037110182 to:0.0417158381965697 :0.030327930703477553 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +strong:0.4154925513703237 the:0.2750765506997773 hot:0.11431776027164005 that:0.1066104368064635 :0.08850270085179533 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4916658036044739 in:0.22178548892195366 no:0.11709635547215018 any:0.0919461216260615 :0.07750623037536071 +claiming:0.6474672465722684 interested:0.11396095662469805 having:0.09551896145985256 on:0.08062480265703302 :0.06242803268614801 +the:0.3293747819090199 a:0.31924728999300633 be:0.30826242862262027 bo:0.02286104723315851 :0.0202544522421951 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.3714329539305315 has:0.34237759125721273 had:0.2671211487012492 bad:0.01000248269506761 :0.009065823415939039 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4706991561931746 in:0.2702344681557709 to:0.09248673483210505 and:0.08357343766855002 :0.08300620315039949 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.44511997691536814 America.:0.1447708103979088 life.:0.1441365054083981 them.:0.14222741258971366 :0.12374529468861126 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +na-:0.9123665767789771 sec-:0.046471525104471834 na:0.03428900170690316 op-:0.005297012643014915 :0.0015758837666328017 +where:0.3656515788336137 on:0.20767668281177945 in:0.19643109845088833 of:0.13791083046354216 :0.09232980944017648 +up:0.3191957739798401 how:0.1959505283759279 up,:0.18663666599775208 in:0.16186225558684356 :0.13635477605963628 +new:0.3605351041485895 office:0.2380398733290707 city:0.15724144145757404 road:0.12677927020621926 :0.11740431085854638 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +run:0.37166534375321986 in-:0.18363616082154877 can-:0.17479506979176732 light:0.1663571815518214 :0.10354624408164259 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +over:0.2975677496060477 to:0.26511401928125955 into:0.2011410397604788 on:0.1362555669088669 :0.09992162444334694 +same:0.6127182710121508 long:0.10376742499231306 well:0.09710558662472232 manner:0.09324468605195613 :0.09316403131885768 +to:0.5313648407782988 shall:0.18481837652026917 and:0.1286824693950544 will:0.08043771643787652 :0.07469659686850103 +out:0.7994111659577439 ahead:0.08011781294201531 back:0.06675780630303274 home:0.03270700021324862 :0.021006214583959477 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +only:0.7728851169450291 exceeding:0.08101937077922246 bo:0.0553549829360128 be:0.049105443887134864 :0.04163508545260076 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.3034363011558368 take:0.20557727392563568 keep:0.18383693365580323 get:0.16316149256965284 :0.14398799869307138 +bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 +that:0.21481047288251806 the:0.21135764911252714 con-:0.20940121977485468 this:0.18228996093913458 :0.18214069729096555 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8021910512078377 such:0.07362126921157085 tho:0.050997745141725274 their:0.03926060963100314 :0.0339293248078629 +The:0.8235333450208013 This:0.05865810666270981 Every:0.04524152863109338 Our:0.03920016918428386 :0.03336685050111154 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +far:0.31815115285235995 it:0.2660527324742948 much:0.19714553925977332 that:0.12402403438613809 :0.09462654102743376 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +of:0.5380316826711351 from:0.17399886172299145 in:0.13152353356483223 on:0.07876425614289952 :0.07768166589814168 +a:0.6187348565141263 very:0.14472580095899415 too:0.09891905509722869 not:0.06927165604560023 :0.06834863138405066 +who:0.3756689522867987 it:0.1776301380946511 and:0.16391980882097953 he:0.15536382096197987 :0.1274172798355908 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.344590370213163 man:0.28270613457884597 men:0.24749205800916033 person:0.07206840613674627 :0.05314303106208454 +the:0.8136899629657293 gold:0.0702626725926222 tho:0.05442389530921453 a:0.031825679609324184 :0.029797789523109918 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7075699112382388 ing:0.11891721003359458 their:0.09997783098060806 tho:0.03689367728963055 :0.03664137045792808 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Section:0.2649805184311266 section:0.25885089198282285 lot:0.217857670165036 April:0.1358917721245493 :0.12241914729646543 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7713488306502687 and:0.07164807094567092 on:0.06285447973724761 to:0.059892356404872296 :0.03425626226194068 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3027830290784722 as:0.26414942899680693 range:0.17363221155086636 since:0.1344100168990665 :0.12502531347478796 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.48511391976155915 a:0.3433717287049866 this:0.08280631294500082 his:0.0505296769218864 :0.038178361666567 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +calling:0.41375125620421527 law:0.24573439642704267 him:0.12268556108446274 entering:0.11004713914083798 :0.10778164714344136 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +days:0.39061477313264 acres:0.23775431664487212 years:0.13516248867172445 feet:0.12440006845975807 :0.1120683530910053 +was:0.41479703931313844 hereby:0.3331989708584169 were:0.09776115598218622 has:0.09481472716002072 :0.05942810668623791 +went:0.427273002727272 sat:0.2930482234238173 came:0.1310212408593474 got:0.07933638201498594 :0.06932115097457729 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2953733420980562 which:0.2775741993830776 a:0.1638023571237032 only:0.13397747283159245 :0.1292726285635705 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.4635243960191842 the:0.3005439940097867 this:0.12179735562302874 to:0.05738168374468724 :0.05675257060331318 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +parcel:0.5909479099506468 any:0.1791916136708397 some:0.08873858015682487 part:0.07361809121316343 :0.0675038050085251 +any:0.5135577453163578 are:0.24839292290229825 and:0.09903854460109866 no:0.07423398957276225 :0.06477679760748307 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +up:0.3213779671868427 out:0.304177786339083 down:0.15572111306407208 hold:0.11924096456119758 :0.0994821688488047 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5551123420839851 for:0.19663672596925705 to:0.11405044984561732 an:0.08820524537822226 :0.04599523672291818 +the:0.769853998324972 their:0.06342674786798254 beef:0.06279064457125894 his:0.05931320490143706 :0.044615404334349296 +secretary:0.3450397383674135 sale:0.20735792525245358 citizen:0.1665198011579054 property:0.15429606696024273 :0.12678646826198467 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.5529389145143224 it:0.22245359654103025 you:0.12483195206837784 the:0.062407808035399394 :0.03736772884087004 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +men:0.2613634027539848 bride:0.19598341567867708 first:0.18758453796095603 house:0.17949570359626563 :0.17557294001011658 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8025706497427723 his:0.05668814869560258 add:0.053294815588585995 give:0.04782532530723798 :0.039621060665801094 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.519768321777071 in:0.2579701873542871 to:0.1052716770989521 and:0.06778502921383572 :0.049204784555853975 +of:0.31947832714209534 in:0.2797730399662859 by:0.2234883618146298 side,:0.08964924973727835 :0.08761102133971066 +will:0.3915353644497493 may:0.22454316596837628 would:0.21213816699358734 should:0.08678679498341482 :0.08499650760487226 +title:0.9718045732576459 claim,:0.012184137547801377 interest:0.006287655169271127 justice:0.005412801978987187 :0.004310832046294506 +to:0.3453241715000359 in:0.29078010471106375 that:0.14516943181503786 of:0.13060794956887573 :0.08811834240498681 +up:0.3094519396100683 them:0.21480946236991363 it:0.19353560032649322 him:0.18117104046203059 :0.10103195723149433 +day:0.4547332106616316 part:0.16860762795210724 class:0.14980146531786717 story:0.12091001954858295 :0.10594767651981106 +the:0.3324483187717432 Mrs.:0.32382290272985664 Mr.:0.14625781931963272 Dr.:0.10554680676336115 :0.09192415241540623 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +would:0.5454767398070173 could:0.15441668413587795 might:0.11745439392378189 will:0.09715594013071575 :0.08549624200260714 +arrangements:0.34525768253530054 funds:0.312320258052763 expenses:0.13089444073504578 and:0.12658420534857223 :0.08494341332831837 +and:0.6283136246048762 but:0.17471017323348811 so:0.09386187165911039 however,:0.07270242925176061 :0.030411901250764595 +country:0.3042754026830651 people:0.20915384089266617 candidate:0.20857218518219584 city:0.14030914735910047 :0.13768942388297237 +went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 +it:0.3776069407378469 that:0.283587390399868 what:0.2248377981560451 you:0.06998334694384462 :0.04398452376239543 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9314776529573962 tho:0.04441026680878769 tbe:0.016320491751711366 a:0.005022050934206069 :0.0027695375478986655 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +day.:0.42246345055481926 day:0.18382449534068407 de:0.1553620079139552 one:0.12201027091916726 :0.11633977527137426 +now:0.4417402308633828 made:0.17340194633186362 due:0.14167440297050643 in:0.12395284283861285 :0.11923057699563422 +no:0.2594274482107354 the:0.2240554250296065 every:0.2142785983720492 that:0.15480448886433426 :0.14743403952327452 +man:0.7122151880278845 woman:0.09979668372981657 few:0.08052638868939767 person:0.061627053992930614 :0.04583468555997057 +No.:0.6255754024257446 lot:0.28824068560488325 lots:0.052165784869224366 thereof:0.024825683040440208 :0.009192444059707523 +forward:0.4005233504776897 up:0.2088366486507039 out:0.14511316348028722 back:0.13847881101215298 :0.10704802637916622 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4106282843588866 in:0.3422922723039723 and:0.09831189605971807 to:0.09618233517903418 :0.05258521209838878 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.732711341430702 and:0.157185251181469 would:0.049616462504912896 will:0.038292271474230206 :0.022194673408685778 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sell:0.30280226671861676 be:0.2451117382724518 look:0.22976687892390676 meet:0.12830192880382135 :0.09401718728120333 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +on:0.2680350824059217 at:0.23774636691959164 of:0.18726661709356285 in:0.18310645806382883 :0.12384547551709506 +all:0.24107861403608172 having:0.21736795650605858 making:0.21392466738442117 giving:0.16452184045431129 :0.16310692161912735 +one:0.4361741561371982 that:0.18880532844953052 some:0.14261832749360806 and:0.12526874926049808 :0.10713343865916508 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.853877889233595 cold:0.04064685208835872 tho:0.03711447810317029 dry:0.03665826357937179 :0.031702516995504186 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +own:0.23405878455607926 way:0.20358716180032535 own,:0.18901136725121165 head:0.18748645812657858 :0.18585622826580506 +In:0.43847549957307713 tween:0.1718224446892278 fore:0.16867821867683178 and:0.13204329667558634 :0.08898054038527689 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8638568328306641 in:0.04753028886251863 to:0.03964909605070989 that:0.0250594184502428 :0.023904363805864713 +two:0.33443485424973396 more:0.2336745859238879 one:0.20161368766543944 interest:0.11529656842239344 :0.1149803037385453 +the:0.9011670031447462 tho:0.035116055455847145 an:0.025282485139888445 this:0.023271960211591534 :0.015162496047926717 +time:0.2662007269602721 demand:0.20374566206278708 necessity:0.19227363546651788 work:0.17423850470127075 :0.16354147080915216 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.35548833076383496 to:0.23503855850277972 made:0.15917866114432064 such:0.1356890442490078 :0.11460540534005705 +were:0.30928746300174936 are:0.301655048058564 had:0.16157690664710408 have:0.11599659858881248 :0.11148398370377025 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2945456440986426 it.:0.20033359432003528 them.:0.17853117474675106 him.:0.17325114054925292 :0.15333844628531812 +that:0.4237301266536398 as:0.17625663323434962 until:0.15966406603640831 when:0.12978858510933525 :0.11056058896626711 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6306979202397921 this:0.14941925598105799 a:0.12046279278462503 his:0.06494527394000879 :0.0344747570545162 +and:0.3497689074658103 the:0.27184123518318654 he:0.16394286182366788 such:0.1281799154335086 :0.08626708009382655 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +years:0.44065063523721243 miles:0.1709710641720771 days:0.1420084165594722 feet:0.13024140525846864 :0.11612847877276959 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7489619613762715 his:0.09977879348138119 their:0.07089594886561006 her:0.0421255395043545 :0.03823775677238276 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.333541648489166 he:0.2782637449687775 there:0.22002800437486147 which:0.08448382213941368 :0.08368278002778129 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +their:0.37084031550081753 the:0.3190056711354761 leading:0.15654703040648474 to:0.08887983621684226 :0.06472714674037935 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5296322576342275 on:0.19050810660942866 their:0.15058467924827731 such:0.06750432475348211 :0.06177063175458451 +enough:0.45125595903145654 greatly:0.19051733177721994 much:0.12505732108123735 one:0.11875654303215076 :0.11441284507793548 +and:0.6523084549743727 was:0.10243695868989457 left:0.08805137866909724 had:0.0829070836330216 :0.07429612403361374 +it:0.3424664104005311 that:0.24324227295464307 now:0.20565828707178488 was:0.11000210057824547 :0.0986309289947954 +a:0.8193091280096856 of:0.0560357710225425 and:0.04444321138127112 is:0.04387983390068192 :0.036332055685819 +not:0.2795121817920691 likely:0.1955066928538332 going:0.18913954902219285 necessary:0.17840335755718467 :0.15743821877472008 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.45144663207805247 on:0.1877356107317231 or:0.13544174304169254 to:0.12417264938160673 :0.10120336476692517 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.5940501835575268 was:0.29143633222507964 has:0.04358606755343859 in:0.035791668430804405 :0.03513574823315065 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +large:0.7600326768573179 great:0.08026692866414625 total:0.06616354053901397 largo:0.04937565139963632 :0.04416120253988556 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.3310468606606106 as:0.3171821956011566 when:0.14194304961425766 if:0.1090689480655602 :0.10075894605841484 +that:0.33593629281439963 and:0.24118714260741841 but:0.2056210597530129 tion.:0.11273148672451802 :0.10452401810065096 +the:0.6914696889439818 these:0.12003928370811114 young:0.06707565083768365 you:0.0659670665790224 :0.05544830993120102 +the:0.76431849327689 our:0.12604065130850764 this:0.05645226397525426 tho:0.03763557945931719 :0.015553011980030944 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.3138797632232669 him:0.2524973822392309 them:0.1625265567011679 going:0.14487702312763204 :0.12621927470870217 +they:0.2573556637291737 it:0.25399695574392034 he:0.20362481499248958 we:0.15318846948635148 :0.13183409604806492 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8488264275190718 at:0.10138815465477422 tho:0.03287672967132772 tbe:0.011153638372228051 :0.005755049782598224 +the:0.5995991372512215 these:0.11779704933136603 to:0.10449964771144982 two:0.10342997314526522 :0.07467419256069735 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.5815756631792119 was:0.27443044750696943 Is:0.11338262924914469 seems:0.016311506740330883 :0.014299753324343174 +was:0.28330969585292554 and:0.21833534134833407 came:0.18923739833402728 as:0.15854352120282011 :0.15057404326189297 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8625730883500952 this:0.04953923170468142 his:0.034407314417868554 tho:0.03061119917029064 :0.022869166357064222 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.2511828217890587 and:0.24314914651725972 moment:0.2072136947685535 year,:0.1642530055190051 :0.13420133140612306 +to:0.28258196102255956 would:0.24899333304099136 who:0.1783507625446864 should:0.16794626448344455 :0.1221276789083182 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5050220278801113 these:0.21948311423056818 all:0.144531224187181 such:0.08035318268479157 :0.050610451017347985 +the:0.6917167234824858 said:0.13640352178152354 this:0.12071616166631564 every:0.028459555832857343 :0.022704037236817687 +of:0.3398510516553033 in:0.22568913713266223 or:0.16876640246850788 on:0.1627088283460801 :0.10298458039744637 +time:0.2662007269602721 demand:0.20374566206278708 necessity:0.19227363546651788 work:0.17423850470127075 :0.16354147080915216 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +150:0.4639295046089149 200:0.14638178361131754 100:0.1341390725423584 and:0.12859574013794337 :0.12695389909946575 +one:0.5212847390129304 out:0.15294187241192392 composed:0.1327814462586652 made:0.11838493255350334 :0.07460700976297718 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.9016173907171718 bo:0.04125854314709842 have:0.026003388008001973 he:0.017759297968709294 :0.013361380159018412 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.950939721540357 greatly:0.027858679807203156 become:0.00812800333963036 already:0.007991556226685898 :0.005082039086123678 +twice:0.262912984726779 even:0.2528827081192343 otherwise,:0.18086420608688406 that:0.17061733880611224 :0.13272276226099045 +order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 +virtue:0.49027458314010086 deed:0.14907298603540964 means:0.1484581059307114 one:0.12436968669233539 :0.08782463820144273 +J.:0.3573110881582943 and:0.18994859005163034 John:0.16651140537999193 Mrs.:0.1528199742659758 :0.13340894214410756 +to:0.9486843284329957 and:0.024074413344846224 or:0.012296587652029454 of:0.007716180750953292 :0.007228489819175561 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.5287209234938688 it:0.23249066386245054 she:0.10685321342238234 there:0.08365310080307628 :0.04828209841822201 +can-:0.2682579750444695 bad:0.210022229534447 fine:0.1818891837562547 man:0.17044447326933432 :0.16938613839549452 +Davis,:0.40806378153493944 Williams,:0.2401894699070625 Jones,:0.1378094569551531 Smith,:0.11349543381285737 :0.10044185778998756 +all:0.3011228595699251 out:0.19662482579654006 away:0.1808925353105726 directly:0.17592772548994584 :0.14543205383301647 +short:0.6788316106960061 long:0.16834718093477496 good:0.06398142473412512 little:0.05932619847032106 :0.029513585164772826 +to:0.391542529666022 in:0.20639731626166455 will:0.15778916425257075 and:0.15123860896994867 :0.09303238084979398 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mrs.:0.5773956501739188 George:0.13188603555536998 John:0.13148354906697243 J.:0.11031450558719512 :0.04892025961654345 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +States,:0.5895728615740914 States:0.39345690837457464 State,:0.011238860530573692 Congress,:0.004273079066464562 :0.0014582904542958031 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.31554231043708736 same:0.21332547551137776 country:0.16027869436190653 city:0.15585135602884304 :0.15500216366078537 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.629132166522344 his:0.1757813797707634 her:0.08861513011206146 my:0.05846376440236234 :0.04800755919246878 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.8310765981326997 Bryan:0.08849844593940798 Roosevelt:0.029577782462831704 Miller:0.02609846489009964 :0.024748708574960924 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +have:0.3933758818462019 are:0.26764035946262754 all:0.1277980604707824 see:0.11728570750577583 :0.09389999071461222 +to:0.643746668846586 will:0.14685562542070194 it:0.08781146562155662 and:0.06090665504317824 :0.06067958506797719 +and:0.29377997814665124 Smith,:0.27531833923425997 Brown,:0.17205716235664853 Johnson,:0.13379538667597154 :0.1250491335864688 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.2974879219900176 but:0.20504443193886399 and:0.19765750949728084 he:0.1817040767525256 :0.11810605982131216 +fact:0.6811856975996785 said:0.129424747603616 ground:0.0668337494128204 belief:0.06258864438599437 :0.05996716099789066 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +to:0.4193909191695697 in:0.21202617416436806 on:0.1267109925706018 for:0.12277356177014126 :0.1190983523253191 +office:0.30415755602034067 time:0.26768201526389296 date:0.17005313916874165 same:0.1320309962537506 :0.1260762932932741 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.2828109989428772 that:0.2571368311614903 as:0.24335688240740805 of:0.12368866720134856 :0.09300662028687573 +secretary:0.3450397383674135 sale:0.20735792525245358 citizen:0.1665198011579054 property:0.15429606696024273 :0.12678646826198467 +the:0.6468854348789427 this:0.1819925719988545 an:0.07845713077623166 their:0.049033141285365574 :0.04363172106060546 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4254677443594255 eral:0.16941994156746865 e:0.15289704064366097 The:0.13947170240937595 :0.11274357102006899 +such:0.6565819405276382 that:0.1132066184439417 them:0.08934185961561471 making:0.08396647000126202 :0.05690311141154352 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +stand:0.5580630360652151 was:0.13608574169543583 stated:0.11361199356090843 came:0.09842562661635783 :0.09381360206208285 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.3361075632516218 in:0.24246212814597914 as:0.14754991181747226 made:0.1472837353305749 :0.12659666145435194 +and:0.2989890520359169 in:0.25316428400077196 to:0.1749105571842435 for:0.15293516232712273 :0.12000094445194491 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +piece:0.2886838718812382 little:0.1935834481521195 man:0.1837121383300525 person:0.16826751622582306 :0.16575302541076672 +But:0.39291785853090405 And:0.23040062018064753 It:0.13817718259460618 Even:0.12093573252516987 :0.11756860616867247 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.581218443190777 have:0.206704017310375 has:0.08180180247314027 no:0.07717707077128531 :0.05309866625442249 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +part:0.6222562013559172 end:0.1365908725780161 house:0.1175057555601247 counties:0.06704179440089604 :0.056605376105045874 +ceived:0.3227586953914724 port:0.2284261000273819 turned:0.19218251209174678 ports:0.1612062389938944 :0.09542645349550437 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +hundred:0.2502767045823328 large:0.21688536435617353 man:0.20733062651268858 good:0.18723035529853752 :0.13827694925026754 +in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.5840176897100635 were:0.29703613175224064 have:0.06503095420195784 be:0.030622484861297723 :0.02329273947444024 +the:0.6625468899362945 since:0.1013763015499397 a:0.08287310692234721 made:0.07903026910352394 :0.07417343248789474 +the:0.36764519292935355 working:0.24993163755165365 able:0.17881646759591244 prominent:0.10535584579653536 :0.0982508561265449 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9205525471410262 time:0.03527925287340764 ot:0.02452590785798379 in:0.010504155520724694 :0.009138136606857682 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.5287209234938688 it:0.23249066386245054 she:0.10685321342238234 there:0.08365310080307628 :0.04828209841822201 +far:0.7917059143775466 long:0.08328510032727152 much:0.051923120032108666 soon:0.047069508313199435 :0.026016356949873858 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.37121810681251194 over:0.21458356527688052 to:0.17680387329641778 while:0.11988141553047572 :0.11751303908371419 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 +company:0.24971167363999766 station:0.24556461444923747 track:0.2018720083158122 tracks:0.17964475224731669 :0.12320695134763594 +the:0.744820431056205 still:0.07345047836472839 then:0.07196260482804673 after:0.0646607637365758 :0.04510572201444402 +not:0.36116429189647836 in:0.19222718335719152 to:0.18480426666810834 as:0.13324811211622656 :0.12855614596199513 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7604703745023687 said:0.10771713822903631 this:0.053672381516452046 a:0.04212333871733592 :0.03601676703480701 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.5146464129885979 there:0.2292980972160073 we:0.16426425183263524 you:0.06898444926701801 :0.02280678869574158 +by:0.3519568736434658 in:0.29497067587746223 for:0.13167597660486013 to:0.11796377020844002 :0.10343270366577179 +line:0.4508436384896919 direction:0.250656563444991 side:0.22201935467316206 corner:0.04773402622620509 :0.02874641716594994 +be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 +work:0.31389084376682796 money:0.23471261975316485 attention:0.19340705178039375 father:0.13240520817729284 :0.12558427652232074 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8882130962300357 tho:0.03389410593024437 16:0.028076330041032722 3:0.027589739665392656 :0.022226728133294547 +and:0.3522623598757154 who:0.31898262312989667 was:0.11736317294844756 named:0.11174181056069087 :0.0996500334852495 +bill:0.3130192209026884 result:0.207745711953939 bride:0.1790661194044228 man:0.1504124945085327 :0.14975645323041717 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +I:0.5869656447401118 and:0.21838637041115733 1:0.07601853385672565 J:0.06487241217684364 :0.05375703881516165 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.625079997905728 an:0.21041673512383266 no:0.06450557462175274 all:0.05643039738517214 :0.043567294963514365 +held:0.38007321114053066 sold:0.330792238028317 made:0.12751620132517588 seen:0.08739890031559738 :0.07421944919037919 +make:0.4748962347395264 give:0.15660046887923373 take:0.13075111245983911 keep:0.12790266298044403 :0.10984952094095664 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.5230445174745113 been:0.30970563868759243 the:0.09349879817416917 not:0.03693524286134964 :0.03681580280237746 +the:0.7851174629517181 a:0.07597739731976444 tho:0.04890182754062444 this:0.045665762191353376 :0.044337549996539424 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.9136036618805775 million:0.0560929235589484 hundred:0.0175368689608558 of:0.00757555775809507 :0.0051909878415231335 +part:0.951286656082248 portion:0.02500038244921095 holder:0.011044696584090711 member:0.006790741195749205 :0.0058775236887011065 +sum:0.26613773914661987 payment:0.22696524500494134 amount:0.1942676309744366 purpose:0.1570745845214131 :0.1555548003525891 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +twice:0.2949696480038277 opposite:0.2674136681442296 to:0.16999438152193733 as:0.16864020862167348 :0.09898209370833196 +a:0.6612443666882956 the:0.22883908688899554 no:0.0851999621274078 captured:0.013001410817202571 :0.011715173478098374 +purchase:0.32336256531416446 highest:0.19443919803361567 same:0.17420305209087555 average:0.17190906978361375 :0.13608611477773047 +of:0.42021538872034897 with:0.21755589029340175 the:0.18222869229006003 on:0.09805500658694559 :0.08194502210924363 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +part:0.5201812084285321 portion:0.18058597911711066 end:0.17994158642236704 side:0.06294685849659533 :0.056344367535394894 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +go:0.3304131597783069 enter:0.25915505342515477 get:0.19274157062846373 put:0.13123748981961175 :0.08645272634846293 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +do:0.4389826172127022 get:0.1840928277465789 see:0.13881054489579756 make:0.12908263547470925 :0.10903137467021225 +is:0.4444749587756546 seems:0.21137095243808565 was:0.13941926833021356 seemed:0.12798029257969082 :0.07675452787635521 +amount:0.33367574802765154 name:0.18299013168488598 view:0.17360884438446778 knowledge:0.15768545770780476 :0.15203981819518986 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.5299355440599023 in:0.25599625261541387 out:0.1266165732239275 on:0.0484355815554277 :0.03901604854532862 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.7699721876892721 probably:0.09531138765437643 never:0.05891260454223101 soon:0.04569168140624439 :0.030112138707876126 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +J.:0.252932682069448 W.:0.22013122853214628 John:0.2087385578503463 George:0.1863143986892159 :0.13188313285884354 +of:0.7828938851398758 for:0.1032514722491411 by:0.04841579300553691 the:0.03922753137513944 :0.026211318230306795 +his:0.3166594645459452 a:0.2863393456210251 the:0.19851393001996112 my:0.1018649973240742 :0.09662226248899446 +of:0.38508785689650366 for:0.1983351819517313 and:0.1742851689410618 with:0.13592809533854827 :0.10636369687215509 +the:0.5748429289293095 a:0.3198701049331538 large:0.03801742749916946 lot:0.03671366576506199 :0.030555872873305166 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.5106702827120327 to:0.17232842993382327 as:0.13923650189276948 speech:0.09893938017601542 :0.07882540528535921 +any:0.5553228480400179 having:0.15398219970033167 remedy:0.1323626804708189 it:0.08720495175238982 :0.07112732003644193 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +timo:0.41546967396229384 best:0.16450542627222509 morning:0.15863288194976788 time:0.1408297604202117 :0.12056225739550153 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.3300461385570608 of:0.2228379615820337 and:0.17552472704418995 are:0.14421039483659503 :0.12738077798012062 +and:0.813939009880711 speeches:0.10469461339459481 recently:0.03224951850173333 was:0.028994445066507456 :0.020122413156453408 +B.:0.26614675853720593 H:0.2558205412222951 H.:0.2380105775241017 L:0.15576677066535696 :0.08425535205104037 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.47246553704202304 to:0.2816106425141536 in:0.09045842103757128 through:0.08118036858393478 :0.0742850308223174 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.648880725957189 in:0.14648749814042267 and:0.0735029823190676 at:0.06615571167072601 :0.06497308191259472 +of:0.5515847051069919 the:0.1729398059904653 for:0.11247903078266577 and:0.08639991348098064 :0.07659654463889641 +industry:0.398865362173729 trust:0.2299189603292843 trust,:0.19951777147854932 packed:0.08736479534555225 :0.08433311067288517 +it:0.3345674602170162 he:0.24172186022518574 there:0.21661592776084573 I:0.13110951189674333 :0.07598523990020899 +seen:0.24594774575086126 learned:0.20347542790329926 been:0.1888229642725532 found:0.18090935937762956 :0.18084450269565677 +of:0.6650930657584568 and:0.14468781593613195 to:0.1232285125582683 O.:0.033741449047774326 :0.033249156699368614 +as:0.4799223575145564 so:0.3022219302474177 is:0.10282029650915933 of:0.06833020207737181 :0.046705213651494895 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7288474047270896 this:0.1876957954738528 tho:0.0362430077732695 refuse:0.029188413095988353 :0.018025378929799617 +a:0.8469012855115001 the:0.07456463632393168 his:0.02961949335101508 with:0.024809771488938717 :0.024104813324614435 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6068345648931147 he:0.17764187218637267 a:0.0849130020315904 is:0.06549286810320698 :0.0651176927857152 +a:0.6035313122186137 the:0.2760359344429598 this:0.050789062344711 very:0.0350288842773415 :0.03461480671637397 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +day.:0.25206948033692844 year.:0.24680703047058403 time.:0.19823072133640535 week.:0.15541693264101605 :0.14747583521506613 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.8654107171473564 of:0.05394694480276402 as:0.0401428024196613 and:0.024487224990666395 :0.016012310639551875 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9219078652668475 that:0.029325983976091628 in:0.02243488249655384 to:0.015054893157293293 :0.011276375103213825 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +thousand:0.41017745017874885 or:0.3878654279212249 feet:0.08265157770788197 hundred:0.06475222910296954 :0.05455331508917475 +was:0.5980350040239844 had:0.23186020222478718 has:0.1271567233057857 ever:0.026239316270166752 :0.016708754175275908 +by:0.41452308389527254 in:0.23248332559462834 on:0.19962601117212989 to:0.1022761291868103 :0.05109145015115895 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him,:0.22502825939080973 them,:0.2238634671376418 him:0.21694802310127906 you,:0.18921229642848128 :0.14494795394178808 +train:0.27859029463052365 the:0.25620998914923604 of:0.17502466307387707 civil:0.15288531490229804 :0.13728973824406537 +and:0.45240042615673787 but:0.14691221420150624 instead:0.1381778499482385 out:0.13568312844978653 :0.12682638124373088 +life:0.29818321585428487 white:0.19731863673284555 law:0.18631327908981754 buildings:0.16425023128107114 :0.15393463704198104 +would:0.34672967232794494 to:0.21844373827389724 and:0.17058872715460455 I:0.13925923803345794 :0.12497862421009527 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.6585008709815218 im-:0.10157782905149798 below:0.08939880961254751 now:0.08848755981721236 :0.06203493053722038 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5402832755553493 in:0.34430951568932056 with:0.04295803976620328 for:0.03955727344291818 :0.032891895546208735 +and:0.31297455446893624 one:0.25401365038396645 the:0.24131806437914197 or:0.10512763142564144 :0.08656609934231375 +I:0.31398518939283643 they:0.2958570970822511 we:0.27611761913072813 would:0.06073359777307008 :0.05330649662111424 +the:0.27932842449953577 for:0.2767509622271481 and:0.2730371003033058 of:0.12143187362873131 :0.04945163934127905 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ascertain:0.42112481321600004 see:0.18303473058536934 make:0.1348743013799805 get:0.13054528774835897 :0.13042086707029124 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Col.:0.3298974674694251 James:0.17929516506981794 Robert:0.16404267176832515 William:0.16366081687956985 :0.1631038788128619 +of:0.35328060582623 on:0.21715586838998868 between:0.18058346386610197 over:0.12651434335251194 :0.12246571856516747 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +hand:0.24605190992480278 it,:0.23760104631930903 board:0.1811338176354331 board,:0.1682744651265696 :0.16693876099388555 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.3771624501681076 that:0.2572548666159114 what:0.18156192396783033 whom:0.11628476805256424 :0.0677359911955863 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +their:0.40972373607943025 the:0.3249238747634666 our:0.14009999533711134 many:0.08420841972958053 :0.041043974090411196 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +do:0.38632623385915166 meet:0.25453642554188405 go:0.16273758190751408 him:0.11113823743447639 :0.08526152125697391 +at:0.33533917645401545 is:0.227135588897449 in:0.16674763968952716 it:0.13577644466302385 :0.13500115029598453 +.:0.9754106735922866 street.:0.013797708159646295 o'clock.:0.004276161269860325 company.:0.003998044550546264 :0.002517412427660425 +they:0.3130296474336706 he:0.31120539277711146 I:0.17531792303371438 we:0.1269073066279321 :0.0735397301275714 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +important:0.586261280468157 essential:0.19635770816032258 Important:0.11082614076532649 unusual:0.053824554704688034 :0.052730315901506036 +of:0.485465061111722 that:0.3085178623138175 in:0.1291124500776917 on:0.05607853639132008 :0.020826090105448718 +time:0.8250613779509361 distance:0.08596627263925848 time,:0.03216633417892921 address:0.03142138967480378 :0.02538462555607241 +made.:0.5335010166868757 done.:0.31057277061764266 used.:0.06716851971622027 said.:0.04544273611178921 :0.04331495686747215 +the:0.5407702959127273 his:0.29351665327880905 her:0.08416378601760297 my:0.05029965789416094 :0.0312496068966997 +deceased,:0.4180488733502012 Mr.:0.22404167541827946 James:0.14305617193632778 William:0.11598261519873812 :0.09887066409645338 +the:0.5954329503015001 a:0.33344694247191886 this:0.03250635160422614 tho:0.027167661284427415 :0.011446094337927504 +pres-:0.9855412263950472 expert:0.005852503518260448 interior:0.003795692414836322 management:0.0026865324816778458 :0.0021240451901781933 +law.:0.3216851681407431 one.:0.1840749624639054 system.:0.18055986262266593 country.:0.1620529469612528 :0.15162705981143274 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.4426108282158289 they:0.21718344254888342 she:0.11838538887836264 we:0.11681622125658964 :0.10500411910033529 +that:0.7114672321447363 of:0.14272322721885863 what:0.06228722146956065 where:0.04440549567711491 :0.039116823489729564 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 +America.:0.2586966612342879 country.:0.1962816452637468 party.:0.19008241483846589 trade.:0.186138994661863 :0.1688002840016363 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +with:0.3349521245554094 is:0.24904592939704384 of:0.16086126470896617 was:0.1462459559399334 :0.10889472539864736 +the:0.35075588553290815 a:0.19953608427184427 se-:0.17399070721926035 permanent:0.1476908683947567 :0.12802645458123044 +has:0.5413648139410977 have:0.23813829070455397 had:0.19882814980727118 lias:0.01477099914420752 :0.006897746402869612 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +go:0.34312684861426235 all:0.2008735555828587 get:0.16474416246690013 pass:0.15373708345124298 :0.1375183498847357 +only:0.36388944494205044 be:0.2994803671572123 to:0.11976851349838633 have:0.11006068090284714 :0.10680099349950367 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +evening,:0.45114440767107367 morning,:0.17106114581989587 in:0.13961757153767165 of:0.1345196899400607 :0.10365718503129814 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6432387300092833 and:0.15338424018482033 an:0.11414927281501853 or:0.04531303636581395 :0.043914720625063824 +Mrs.:0.6200565346098025 Mary:0.1259663754968156 J.:0.09926018632439518 Mrs:0.08712385105997585 :0.06759305250901079 +man:0.39659494986186167 one:0.21793378505781694 effort:0.16006518133435033 department:0.11639863947923555 :0.1090074442667354 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +The:0.4782311587428306 A:0.1902108898882342 Every:0.13615809485587838 No:0.11316590179907707 :0.08223395471397976 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.3571734738037028 they:0.2943766628539341 we:0.160257505650098 she:0.10151763048150642 :0.08667472721075865 +the:0.45730543036437354 his:0.24261374045427267 a:0.16491005352295637 their:0.0709217869877007 :0.06424898867069673 +much:0.4241789998321079 far:0.16986977292033606 arranged:0.14827152491498824 as:0.14705921514239365 :0.1106204871901743 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8249360039768447 to:0.05534892023050223 in:0.05421122998086181 for:0.04325472062477008 :0.02224912518702113 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +scribed:0.24655175724195852 -:0.2270367852497988 fault:0.22499105503848052 mand:0.18910694516185164 :0.11231345730791065 +ceived:0.48530204220776857 turn:0.15840050724998533 turned:0.12809673216431597 cover:0.11810583980214286 :0.11009487857578736 +100:0.3019114174527727 his:0.1940710648823827 50:0.19028177377175715 1,000:0.18776262879409084 :0.12597311509899659 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be-:0.5715027191173435 be¬:0.22518179106715766 be­:0.15573833036946239 think:0.02404869754217507 :0.02352846190386137 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +any-:0.49876411908303103 a:0.21968688638380646 one:0.12162533988604873 every:0.09164828323926197 :0.06827537140785173 +all:0.4763418370333663 that:0.23819491576976637 which:0.1920576549385153 this:0.04850952499400939 :0.0448960672643427 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4395942189764365 was:0.2697932916090376 is:0.1324486241420178 by:0.1005653233004103 :0.05759854197209784 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.2911579793486492 used:0.23857317460862604 seems:0.20733903272176385 as:0.158523767845762 :0.10440604547519895 +went:0.27230826321821405 took:0.23091225641223212 came:0.17998930424995904 fell:0.16726028619134448 :0.1495298899282503 +the:0.563890067307771 a:0.32378051113228296 they:0.04033272180131019 we:0.039293217547005654 :0.032703482211630205 +regard:0.3057149411782757 order:0.28334663279449285 search:0.2111464206098458 respect:0.10206572494999128 :0.09772628046739461 +of:0.24056382332284 at:0.21597681786991796 for:0.214516469257559 and:0.1830386902604198 :0.14590419928926332 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7738970584035777 this:0.07050839427607174 an:0.06292138083636022 one:0.06274213855956019 :0.02993102792443036 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +right:0.3453929917804486 way:0.17118315200964848 time:0.16737311488882695 subject:0.16714063652733305 :0.14891010479374306 +a:0.29091300004838877 found:0.2415872556418565 not:0.17426752806059045 the:0.14907280964694827 :0.144159406602216 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7909511349685769 a:0.06297941935260112 our:0.04903254079732795 their:0.04876958067969392 :0.048267324201800035 +same:0.5613031175538102 early:0.1195481511722737 said:0.11113460590679103 exact:0.10581205479543403 :0.10220207057169112 +of:0.8638568328306641 in:0.04753028886251863 to:0.03964909605070989 that:0.0250594184502428 :0.023904363805864713 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.566490923479531 in:0.1972865407348413 been:0.08990540210725946 is:0.07947085361298935 :0.06684628006537902 +and:0.284626764178383 in:0.2570302186749849 under:0.1783205085619371 on:0.17429965723155316 :0.10572285135314187 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.7603368078675502 and:0.06607667780673952 should:0.06479369438881645 not:0.05483441158753891 :0.053958408349354926 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8522569951566268 between:0.05441961811747425 to:0.03927705108687627 from:0.029947696704742403 :0.024098638934280114 +the:0.3069953956991274 a:0.3028709262729842 any:0.18706008386597822 to:0.15790870738637688 :0.045164886775533084 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +other:0.5980847584875283 more:0.15504185420642533 good:0.11277659536919082 ordinary:0.06936051404616796 :0.0647362778906875 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.29028156570257263 six:0.20188927382846703 two:0.1937337047487268 three:0.1729115895364782 :0.1411838661837554 +seen:0.24382716668605736 given:0.224497468664085 to:0.2108523925333124 told:0.16332992246045247 :0.15749304965609265 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.3099604234603693 of:0.3092456491408393 in:0.1938960468620875 on:0.13563557898126147 :0.05126230155544251 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.2698315495873536 by:0.2431251706193758 to:0.2135208714500239 all:0.1681705380317102 :0.10535187031153648 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.6864054966619095 that:0.16872563727348341 such:0.05285939174695163 thereto:0.05002856423940095 :0.04198091007825454 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3108930077059749 study:0.22466180316635306 in:0.19833996770070836 of:0.1453832325296439 :0.12072198889731975 +as:0.39560017327588765 in:0.21571070586071844 it:0.13776098912834892 after:0.125766728232129 :0.12516140350291607 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.855089883604799 never:0.05399654621229402 scarcely:0.03321440854626277 hardly:0.031028282836091332 :0.026670878800552827 +employment:0.3449793856754548 as:0.24620079628359795 way:0.14740200176549081 than:0.13826338774250904 :0.12315442853294746 +the:0.8894846474056033 tho:0.043468692519603 this:0.03398768642972818 civilized:0.019010539774900526 :0.014048433870165064 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.6499357948608346 not:0.1735535022873791 in:0.07216805783230756 must:0.05986649443445207 :0.044476150585026505 +and:0.5439248570589202 or:0.23463356814722267 for:0.1161690135684114 but:0.06193603810319295 :0.04333652312225267 +resident:0.5567285636511718 one:0.19778571297929057 all:0.10669431176813737 instead:0.07042655809754457 :0.0683648535038555 +who:0.6996489852507947 women:0.10367249316052442 we:0.0811637619897762 they:0.05891843737132524 :0.056596322227579564 +the:0.7825998224690001 their:0.08849910382764786 its:0.05109706326289861 tho:0.0421516326431281 :0.03565237779732525 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.2840973036537027 which:0.21592593486607645 storm:0.20932002231430064 has:0.1878754570860723 :0.10278128207984781 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.6589483545349129 were:0.1431804011310859 is:0.10275188299947906 men:0.05707658796473881 :0.038042773369783435 +hours:0.3342605766983803 of:0.295427546064596 dollars:0.17457444574283307 and:0.10458300264514707 :0.09115442884904353 +not:0.5202153952352868 to:0.36602708997243943 now:0.050827404926771555 also:0.03353316264511652 :0.0293969472203857 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +has:0.6952850952593489 had:0.13546544477422667 haa:0.09289239585170185 baa:0.03950237067403136 :0.036854693440691276 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4260426717607154 in:0.328066263145436 to:0.14805970772778157 In:0.06336436860936792 :0.03446698875669904 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.38657300829042107 better:0.2551386567159669 valuable:0.21346708918947205 the:0.07798122215805896 :0.06684002364608105 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +.:0.644293571899575 .,:0.2423252728347836 A:0.05939332857169904 C:0.02767556816657856 :0.026312258527363783 +the:0.6929227286478797 a:0.10520488239161851 this:0.10095598521996041 every:0.06482319813639094 :0.03609320560415032 +and:0.26594793538518274 was:0.24562784583518693 made:0.19782804326284917 agent:0.1683997458987645 :0.12219642961801673 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9027672216723739 described:0.036539799115285945 or:0.022242084404514473 ot:0.01978539221860093 :0.018665502589224812 +the:0.7546637881848428 make:0.12172476219352563 their:0.04662399237969164 tho:0.03953249535953839 :0.037454961882401584 +of:0.29429515696927255 ceived:0.24108681259069437 in:0.19886756817761778 to:0.15697929829033955 :0.1087711639720756 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.48483008633330005 years:0.17539330490142574 to:0.11506568037416953 or:0.1141425602758343 :0.1105683681152703 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +were:0.7239718767123098 will:0.08216870418461752 to:0.08113647480084563 are:0.06051911470757119 :0.05220382959465572 +New:0.9907034083275106 Now:0.00548204238732119 the:0.0034524492034893077 w:0.0001951231870171112 :0.00016697689466199734 +difference:0.37608545481071115 line:0.24696757637622516 distance:0.23709018485210429 war:0.07096274191202127 :0.0688940420489382 +made:0.29178942454107776 in:0.2712003000391061 not:0.2464105796146314 as:0.09613535677376374 :0.094464339031421 +have:0.40288889615048096 and:0.19025957411635142 he:0.15417860597065927 was:0.1418769929138108 :0.11079593084869753 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +on:0.29965438987674453 of:0.20753909681811752 and:0.20267546901876224 in:0.16934937980081552 :0.1207816644855602 +of:0.631311213006753 in:0.2806964847306368 In:0.03416716623614992 that:0.027161648892123264 :0.026663487134337097 +recorded:0.4984399731733091 that:0.14957083603055452 it:0.12778864120976063 interest:0.12105971834665655 :0.10314083123971923 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.5182833861972507 was:0.23489175165330792 Is:0.19149944186130471 has:0.03525930233420199 :0.02006611795393496 +to:0.2865546855772322 in:0.24321856297076463 by:0.1716481395816088 on:0.16694495734001955 :0.13163365453037484 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +Mining:0.5961250417604109 Valley:0.2869456052009651 and:0.0414033180837423 the:0.038086970365430926 :0.03743906458945066 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.22369456742961225 amount:0.20773323631999405 day:0.2060255143945402 part:0.18175789781806492 :0.18078878403778864 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.825452804105519 that:0.06624085103977934 his:0.05352348946958735 this:0.032221092604835355 :0.022561762780278858 +in:0.2855374491455766 that:0.21459330359753515 to:0.2089841473973801 for:0.15866097450700903 :0.13222412535249892 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.44987287127584874 Main:0.37975965302080267 Wall:0.07753240879768979 said:0.05120646640387533 :0.04162860050178341 +that:0.6377292974031921 they:0.16377241091164693 there:0.11129967349285912 sales:0.044020695014959 :0.043177923177343 +was:0.3017812137133732 he:0.234278683070456 then:0.1846502571791671 be:0.16229141645267928 :0.11699842958432441 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.5981491458573046 have:0.23285215634339504 make:0.06737252818895816 not:0.05740202894870641 :0.04422414066163587 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.43092336192844727 that:0.2931524127051881 what:0.1209815790730512 his:0.0934000727694928 :0.061542573523820504 +day:0.22753826476708763 floor:0.2232358973026597 story:0.21197043536639926 time:0.1917010058554843 :0.14555439670836914 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +amounts:0.36276468345307683 enough:0.25614152730452244 task:0.13410671925711543 sums:0.13077927101470635 :0.11620779897057894 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.5023527647960697 lady:0.22861673707700061 woman:0.13461535256830418 girl:0.08932841411046821 :0.04508673144815709 +the:0.9021981284697784 tho:0.037443849823167355 his:0.031960371414817806 their:0.014445194161199135 :0.013952456131037353 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.37280417937809984 board:0.18898747496271978 prison:0.15090216331150502 convention:0.1487298147251664 :0.13857636762250894 +tho:0.29140502843717647 any:0.21630869461520025 the:0.1964709990792459 every:0.15173795222904693 :0.1440773256393304 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.401677149707566 to:0.24776814029723207 in:0.14481202176557872 for:0.12725937792187383 :0.07848331030774933 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6587907448456556 or:0.15701436177610842 and:0.07717606688577637 in:0.0604817078381905 :0.04653711865426912 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9310736410711427 tho:0.03820632419414702 South:0.015390978394611305 tbe:0.010529711050656419 :0.004799345289442506 +mortgage:0.3399707275688441 men:0.21145714925240977 sale,:0.17979756121695742 rules:0.14624259892312286 :0.12253196303866588 +unable:0.273177137729641 compelled:0.21489434095224683 going:0.1778442415117511 able:0.17407986983570004 :0.16000440997066107 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.7127176856153891 is:0.13052857622181663 Is:0.06245315289132792 was:0.05648309555363911 :0.03781748971782718 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3968377059513875 Bryan:0.19702680908172632 Davis:0.14841242007394234 Smith:0.1443383246444514 :0.11338474024849245 +been:0.788284839908293 ap-:0.10918609880027023 already:0.04562416495893908 ap¬:0.029324984759927435 :0.027579911572570413 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.4118461385107266 they:0.2586973295805354 she:0.13730855813546913 I:0.11906087980381284 :0.073087093969456 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.43621692673134543 is:0.249459278156967 and:0.13496673579452753 was:0.12888895927898236 :0.05046810003817762 +they:0.3427644108811817 we:0.24971206275180077 you:0.2273495612121639 I:0.13629679420499613 :0.04387717094985758 +is:0.3815021573122253 time:0.21623464843103052 in:0.15656182894144346 to:0.12992553047821742 :0.11577583483708329 +he:0.667223416303931 she:0.11453208315335887 they:0.08828398676291047 I:0.06598230974368975 :0.06397820403610988 +hour:0.28790869813115627 act:0.212748389574435 account:0.19028024213079217 amount:0.16334313226288413 :0.14571953790073258 +a:0.6934731093496822 any:0.15760203880801885 the:0.08052518950870408 all:0.03822348130646654 :0.030176181027128386 +the:0.7745116225663797 his:0.09066806115951366 their:0.07665314076319969 its:0.0368993806832881 :0.02126779482761894 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +market:0.8636643272914027 was:0.06569825250265894 and:0.03184159920900646 has:0.02193723845767473 :0.016858582539257153 +a:0.22323915211552592 at:0.21992468803974755 upon:0.21858841119382952 the:0.17018167928054173 :0.16806606937035531 +in:0.8245074772063711 In:0.07182759913478373 within:0.04663375348247419 the:0.04170408198091915 :0.015327088195452015 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +said:0.7558124698740757 the:0.09543101224000974 such:0.05846391356290429 a:0.054366843870194616 :0.035925760452815585 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +any:0.4724039485689615 the:0.2236784154218287 Main:0.19391678732975123 Third:0.07350108774036591 :0.036499760939092664 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.46098514688605774 to:0.442366917921644 in:0.058833833769480856 at:0.02337621897425442 :0.014437882448563007 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.4149734230617392 result:0.1707078537837385 increase:0.15371215992597612 resulted:0.13482773512560464 :0.12577882810294153 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.26086328643041573 in:0.22687253268585453 that:0.21339736275621132 of:0.15014223151991993 :0.14872458660759857 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.2848931654712822 and:0.2670009643936719 map:0.20018205592257962 roll:0.15826725206036926 :0.08965656215209696 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7544249827651681 a:0.14585191096757835 said:0.03686419259155941 tho:0.03508915335195652 :0.027769760323737822 +he:0.43839349484493306 they:0.2438462449815894 she:0.18681622270588855 be:0.08114587264108993 :0.04979816482649897 +beautiful:0.2487215372170534 interesting:0.24523248123733282 important:0.21255626014944784 active:0.1638176076899696 :0.12967211370619613 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.2796262544922033 as:0.25018608941441145 from:0.23505968223381316 without:0.12808713695586305 :0.10704083690370908 +man.:0.24799216288088155 success.:0.22779933691915688 work.:0.2180261428217251 city.:0.203287503446568 :0.10289485393166838 +most:0.2571865793153796 evils:0.2524435815503892 market:0.19543929082510558 only:0.14786169557976553 :0.1470688527293601 +the:0.5850402406249358 in:0.301081647507531 an:0.056346869571783885 issue:0.030940300438757423 :0.026590941856991932 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.42419770333717544 he:0.3856372509521161 she:0.10596550330090401 there:0.04350249052657724 :0.04069705188322722 +wife:0.44264057589643646 father:0.2261584286956828 friends:0.12332020742659147 name:0.10619296933009302 :0.10168781865119624 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +year.:0.4235994330416361 week.:0.258982551280206 night.:0.2125252505440073 evening.:0.07847636920730394 :0.026416395926846845 +inches:0.3234807104810202 months:0.29766124328689725 feet:0.15590494504747257 weeks:0.13312863492294263 :0.08982446626166742 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +largely:0.4429736733841633 entirely:0.2456047931517805 mainly:0.12768962852455815 wholly:0.11647170761599886 :0.06726019732349911 +R:0.2506759276911019 C:0.21403477893357806 E:0.20394989284365095 W:0.1742162620095908 :0.15712313852207824 +right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 +part:0.24791902209171252 majority:0.2132877534406275 increase:0.20317028266570442 share:0.168118304832713 :0.16750463696924245 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7119355447169781 said:0.15672089365395414 this:0.07858214613222306 tho:0.02729129195298425 :0.02547012354386044 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +tent:0.34567769935304266 press:0.2844575153320419 plain:0.12992840916943185 ports:0.12688972481127309 :0.11304665133421037 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8242958604224737 other:0.07868871833207301 tho:0.036849746318194224 these:0.033095086205808665 :0.027070588721450486 +see:0.3630267179337288 know:0.31672443555825147 do:0.16375532428382614 say:0.08300529544119116 :0.07348822678300254 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25001794287679424 pay:0.21111736990191468 be:0.1964993545982799 take:0.17365681459017626 :0.1687085180328349 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +fifty:0.3500324985330506 14:0.19691079277214438 forty:0.17804122926163998 two:0.14323057797987632 :0.1317849014532886 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +but:0.3487466610088991 and:0.2958658315329436 that:0.21959653564662887 if:0.07175691243862137 :0.06403405937290692 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.7876675945793695 he:0.06152248281231525 was:0.058266545554101365 which:0.057087437434525524 :0.03545593961968821 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8511476978505857 our:0.04911318036191279 tho:0.04249161815772593 First:0.03166277662623188 :0.02558472700354351 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.49171269420591224 well:0.18318765811714371 that,:0.17415229886966313 is,:0.08114969041321904 :0.06979765839406189 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.432374617894176 much:0.34777850144218525 the:0.08813291398343749 nothing:0.07744262241641478 :0.0542713442637865 +do:0.4870890625558518 don't:0.2265940813180377 can:0.12221932267211616 could:0.1011220829443833 :0.062975450509611 +regulations:0.2583279905938755 information:0.24276845450570617 asked:0.20052027883425744 made:0.18059772402582827 :0.1177855520403326 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sight:0.7531056932721031 hold:0.07739798211425127 one:0.07099415982716932 out:0.06098146052764967 :0.03752070425882677 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.31017310686940436 delivered:0.29198371001032525 secured:0.16689980006029553 designated:0.11674181474599904 :0.11420156831397581 +who:0.5663893510017927 she:0.2783279022946491 and:0.09407730458157178 he:0.03818946961058454 :0.023015972511401906 +the:0.7779554784668095 that:0.1326621457790383 a:0.044973533726015154 and:0.022464481094582146 :0.02194436093355499 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +very:0.44018919187277517 little:0.1988684616156923 re-:0.14665976074357018 pretty:0.11614350750601454 :0.0981390782619478 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +had:0.8783491234127474 has:0.05564393669083046 bad:0.02561149087854307 ever:0.022097958324511467 :0.01829749069336754 +father:0.24030125890441256 mind:0.22166434639986843 life:0.19574978487616654 heart:0.1730539534269439 :0.16923065639260848 +go:0.409634576180319 come:0.1820413690832247 him:0.15491679222342905 try:0.12769469573402084 :0.12571256677900647 +joined:0.4001063025989945 join:0.19907301489438656 turn:0.1570414564890318 tire:0.12924922872725272 :0.11452999729033449 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.38030200002871833 country:0.20439055195388578 friends:0.14422294034895228 government:0.1404151606435878 :0.1306693470248558 +large:0.5458570964139405 small:0.27084506869835945 great:0.06969654347539447 sufficient:0.06048306662636006 :0.05311822478594558 +to:0.4797718079575929 work.:0.23321100594871585 for:0.12284082121531549 money.:0.08786525412089581 :0.07631111075747996 +the:0.5695557444804394 an:0.2317706392797576 any:0.10341840515355163 such:0.06660671614013736 :0.02864849494611391 +3,:0.27059194474626663 4.:0.26502242706133533 1.:0.17731367756330157 3.:0.14758627093325372 :0.1394856796958428 +a:0.4555879159543496 no:0.2497292004873661 sent:0.12162258723826638 received:0.09604767088442887 :0.07701262543558891 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.5059921789773126 it:0.2638911851311987 is:0.11667022116235791 if:0.056786295678881334 :0.05666011905024932 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +side:0.32056071538876246 parts:0.24410934586853963 day:0.18353269187517868 members:0.14703349966100004 :0.10476374720651908 +man:0.27573893157549373 person:0.2512445942640613 half:0.24456952580288266 matter:0.11565951128706316 :0.11278743707049914 +the:0.44621391019636786 their:0.3863948577246185 our:0.12422082754702825 human:0.022954861598121663 :0.02021554293386357 +the:0.42552105430386 Now:0.21023537383017854 and:0.15576212011454277 here:0.12061449619003055 :0.08786695556138827 +be:0.2795882837149915 get:0.2564401932966066 perform:0.2221143540539856 make:0.15755160038283353 :0.08430556855158267 +in:0.349578914285354 and:0.29473985881271314 of:0.17927880397395435 to:0.12039569740288648 :0.05600672552509213 +be:0.8323193120518638 have:0.07311879152374955 not:0.050354636375595695 bo:0.0316046521417949 :0.012602607906996008 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5411186326250456 a:0.19272641013111985 this:0.17826630926474768 no:0.047259863896715076 :0.040628784082371736 +to:0.8489017790259403 the:0.049137885272087276 his:0.04418242592090012 at:0.03708078933678345 :0.020697120444288796 +of:0.39486881318584416 after:0.20539890073224293 from:0.17024106333423208 before:0.11835260660285217 :0.11113861614482866 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Lieut.:0.266371285986597 of:0.22314665568496125 Mrs.:0.17970260552562087 and:0.17195305554107107 :0.1588263972617497 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +United:0.9660871445925763 Southern:0.014847843204905764 Confederate:0.009134564711745638 other:0.005786371306168121 :0.004144076184604209 +could:0.33557437692526054 would:0.3022330222177181 will:0.1681959557574959 can:0.15682328537309773 :0.037173359726427685 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.4438736971739895 attention:0.17448214204489781 thereof:0.1394461881157221 pleased:0.13563943484682447 :0.10655853781856607 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 +not:0.552417203896007 only:0.14875354595218332 entirely:0.13836171615359918 altogether:0.08703961492993806 :0.07342791906827234 +street.:0.7444325064140606 river.:0.09953991492908996 Army:0.07965845961071535 Jury:0.04452097354897582 :0.031848145497158316 +the:0.34212844740234916 in:0.26443205871572567 tho:0.16702039971856594 others.:0.12490593151457739 :0.10151316264878188 +of:0.32768939741288755 in:0.17602941693026272 half:0.1741046073801057 as:0.16690382172805693 :0.15527275654868705 +the:0.7745116225663797 his:0.09066806115951366 their:0.07665314076319969 its:0.0368993806832881 :0.02126779482761894 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.34823471485303403 was:0.2898454613631334 in:0.15538884751732587 for:0.1210653517874934 :0.08546562447901332 +new:0.42816983981164064 Republican:0.22125001327895916 Democratic:0.16890435809995757 petition:0.11120242181250131 :0.07047336699694141 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.7587895502615699 we:0.12956115021614634 it:0.038572804625810614 there:0.036591289027455565 :0.03648520586901768 +2d:0.3134389223505119 .:0.21736256241631363 Johnson,:0.15973125982363953 for:0.1553217639619035 :0.1541454914476316 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.29594081368205916 in:0.2941464647059499 and:0.16516902182942397 as:0.1296535173807296 :0.11509018240183727 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +more:0.5937486189034198 less:0.2951392816466523 better:0.05738036380780866 higher:0.030474086630811976 :0.0232576490113071 +a:0.4139504208358596 the:0.32711148481303276 into:0.13977094763935655 under:0.07077617581283112 :0.048390970898919826 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +served:0.32050725587186296 the:0.2830491353160701 only:0.15260125365648206 some:0.12322746521265493 :0.12061488994292992 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +reached:0.3064105255683562 to:0.27550960413812237 in:0.1796605164684989 got:0.1266103236479699 :0.11180903017705267 +make:0.25893617488399556 give:0.20291323854444404 see:0.20031327429918658 take:0.18289739772996536 :0.1549399145424084 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.37109984121662765 with:0.29613377181337636 and:0.12955720743015478 to:0.10749186362663923 :0.09571731591320186 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 +of:0.8522569951566268 between:0.05441961811747425 to:0.03927705108687627 from:0.029947696704742403 :0.024098638934280114 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.4033682026200842 men:0.27777211748644065 present:0.11619392827570985 children:0.10365867661698541 :0.09900707500077982 +to:0.39476326964958663 been:0.35664755091737677 in:0.12167785459164707 all:0.06899769485434601 :0.057913629987043344 +held:0.2413972363206686 placed:0.24053160270689386 made:0.18780208327570927 due:0.1713522810500942 :0.158916796646634 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +divided:0.25773250969230127 taken:0.24843272921345744 put:0.18179716413845098 paid:0.15844453577989812 :0.15359306117589222 +It:0.4066470849260706 There:0.3436217372435106 This:0.12338476511678025 He:0.10156937709304843 :0.02477703562059018 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.5789019529940022 from:0.1699902104681432 for:0.13070434450808843 of:0.08303421654849018 :0.03736927548127614 +upon:0.27091454642589075 it,:0.26959878041049595 into:0.2578395393020229 judgment:0.13135483394765926 :0.0702922999139312 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +cut:0.25753362600193197 spring:0.2528070055551714 move:0.234296369202268 built:0.12932325094732386 :0.12603974829330483 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.3452611785656094 the:0.20562586387740434 no:0.18012440935186877 still:0.1486261180855827 :0.12036243011953496 +cent:0.39256889608050344 annum,:0.2516382765997904 annum:0.12342148081266742 acre,:0.11708782360443633 :0.11528352290260244 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.358048611679565 is:0.22926080259409254 are:0.2195791954464131 not:0.10285775255570341 :0.09025363772422582 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9113340224741332 tho:0.039810375678301216 South:0.019835198955242512 tbe:0.015914673584769844 :0.013105729307553344 +of:0.5376447187803708 to:0.25233007714077893 in:0.10256390264651132 on:0.05422683548381115 :0.05323446594852774 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4516565521879114 his:0.31723997798704434 a:0.14680947784940282 my:0.06284943890359788 :0.021444553072043595 +the:0.46097664819816253 this:0.17436947683462528 so:0.1314980622529931 a:0.12836386842772463 :0.10479194428649447 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +all:0.3762544032911623 that:0.20657763619234754 in:0.15574381709619606 about:0.13678667471140593 :0.12463746870888816 +not:0.27388538794750583 made:0.27149605404774746 in:0.2522741374294984 to:0.10478429931461893 :0.09756012126062918 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +well.:0.4690675878464163 good.:0.2286034080426939 much:0.13110054311309685 old.:0.12312132530503635 :0.04810713569275669 +by:0.37731850119039817 on:0.23368890635650386 in:0.192461202772757 to:0.11427074341805285 :0.08226064626228811 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +recorded:0.4984399731733091 that:0.14957083603055452 it:0.12778864120976063 interest:0.12105971834665655 :0.10314083123971923 +almost:0.39513373804434515 nearly:0.16771611307290835 that:0.15550167217515706 to:0.15332065881881007 :0.12832781788877923 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +about:0.3716018459939082 the:0.25480357863770725 only:0.1641780909553678 in:0.1100137036250659 :0.09940278078795095 +he:0.37226056188427964 they:0.27865808163960837 I:0.16944708277446888 she:0.09468449049877241 :0.08494978320287072 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +result:0.2348976511795785 following:0.21883624409225189 question:0.21288170737869797 fact:0.17837350394983845 :0.1550108933996331 +where:0.5794516609927919 and:0.1726545794219664 which:0.1391639443318044 but:0.055690560645131504 :0.05303925460830579 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4621678577313285 by:0.3618283425804661 and:0.095469451300285 to:0.049358263948166635 :0.03117608443975371 +will:0.4591855893539 would:0.17436038977095647 should:0.13612921516603887 shall:0.11803866736303577 :0.11228613834606894 +conditions:0.4100681012187173 terms:0.21073316081047777 report:0.15270691849825138 opinion:0.11873503804420545 :0.10775678142834809 +to:0.42534479630849487 of:0.24259107764166657 into:0.11944177112443137 in:0.10921217220226706 :0.10341018272314016 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.2795121817920691 likely:0.1955066928538332 going:0.18913954902219285 necessary:0.17840335755718467 :0.15743821877472008 +the:0.8248998744086584 our:0.09211871161604977 these:0.03344845301254356 American:0.02787888331554928 :0.021654077647198882 +and:0.46162337067852355 with:0.18578937126541864 but:0.1429169952646837 for:0.11606859346382538 :0.09360166932754889 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +If:0.44038153857835177 When:0.24902329601390977 Then:0.11337599835259714 But:0.10681530071951376 :0.09040386633562753 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6971332264710438 a:0.10844714514822822 his:0.08263807808702286 tho:0.05828508822508451 :0.053496462068620604 +corner:0.4161622498347786 One:0.1544731758405243 All:0.1526148774494868 Smith,:0.15127407203033288 :0.1254756248448775 +a:0.5619437656375059 the:0.33578240633031714 such:0.04662958198900726 his:0.02975468576145579 :0.025889560281713818 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +their:0.3322752412610413 the:0.33198747007420176 no:0.1685074312789618 little:0.09528135162504885 :0.0719485057607462 +and:0.44675780821507727 to:0.1893072494096103 in:0.16464656514222034 for:0.1047089163775613 :0.09457946085553073 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.2898840640509074 I:0.2844648013204839 only:0.2290818458142747 earnest:0.099375138071393 :0.09719415074294091 +that:0.2675137633648932 to:0.24835781896876338 for:0.18431889646672087 in:0.17210338473346531 :0.12770613646615728 +wife:0.44264057589643646 father:0.2261584286956828 friends:0.12332020742659147 name:0.10619296933009302 :0.10168781865119624 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +tend:0.501847263239443 tended:0.4457307978495082 tribute:0.04010547790844006 tained:0.007057365896771419 :0.005259095105837346 +excellent:0.7829929398704233 unusual:0.07494589924058173 ordinary:0.05459365899459181 extraordinary:0.04794986975644122 :0.03951763213796193 +at:0.37601817379763447 not:0.3216323104673551 to:0.1275711676638852 in:0.10150973162279112 :0.07326861644833409 +one:0.5629580457125193 composed:0.15215471327221744 worth:0.1018594684595848 capable:0.09813831331119799 :0.08488945924448049 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +so:0.34923499722655926 all:0.25481234169582473 in:0.1469072815842144 found:0.12911293016870792 :0.11993244932469373 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +able:0.49557616965793255 forced:0.17953351268856563 courage:0.15324720768588707 try:0.0873035783378639 :0.0843395316297509 +of:0.5219896498216882 young:0.20226087300507245 other:0.14389621968194294 a:0.07492155033368503 :0.0569317071576114 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.30522518007913685 and:0.26767543042421266 to:0.18953254824910348 was:0.15098927371586476 :0.0865775675316823 +not:0.9555555463864736 never:0.018788454003122873 certainly:0.01124207622041619 hardly:0.008663829546204344 :0.00575009384378297 +of:0.3163892160432853 is:0.2814467171105164 the:0.20270359807655378 in:0.1260196456454266 :0.07344082312421789 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5368116814716978 they:0.15018401159119754 to:0.15004169026892275 his:0.09020606163539024 :0.07275655503279167 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.29320028362225475 a:0.23232650829653964 S:0.17918210096307002 M:0.14903632421890659 :0.14625478289922883 +first:0.6754047839969607 present:0.2585950067824264 one:0.028633336727764448 single:0.020506506475563707 :0.016860366017284783 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5928769581503618 an:0.22303035455408501 its:0.07948468398312573 their:0.05401515215713385 :0.05059285115529362 +small:0.3612864370299869 good:0.20700699200594408 young:0.20013943055128383 successful:0.1238740388283883 :0.10769310158439685 +o'clock:0.4567279093886343 P.:0.30594860040137156 A.:0.1398358446355947 o'clock,:0.05015982678680694 :0.047327818787592596 +the:0.7416380410975887 said:0.1042640047818386 this:0.07056837312975163 a:0.0468886231580446 :0.03664095783277652 +own.:0.28285741903304656 work.:0.2596446818219341 country.:0.16076511094654336 way.:0.15174072040783496 :0.14499206779064108 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +day:0.4547332106616316 part:0.16860762795210724 class:0.14980146531786717 story:0.12091001954858295 :0.10594767651981106 +Britain:0.8811451585251445 was:0.06754246626675862 Western:0.02339538401356187 the:0.017771275883123033 :0.010145715311411804 +and:0.46297046185391094 in:0.18031667290240116 to:0.12767026126618086 but:0.12728248782694804 :0.10176011615055897 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.2607088761936732 as:0.2597809366755588 in:0.24500187499480863 of:0.132118708113138 :0.10238960402282139 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +States:0.5656821172806845 States,:0.4207305784952803 states:0.0059476988349809225 State,:0.00393338830393115 :0.003706217085123002 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ere:0.4479701180829342 ho:0.22017591000657658 is:0.1306854996665702 are:0.11130717830424743 :0.08986129393967164 +they:0.5715620758085647 we:0.19266673796431125 there:0.13469318880621609 it:0.0545421443910364 :0.046535853029871566 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +same:0.6127182710121508 long:0.10376742499231306 well:0.09710558662472232 manner:0.09324468605195613 :0.09316403131885768 +times:0.31359391350072713 improvements:0.2502087053342886 methods:0.23734755323263754 science:0.11150256024016657 :0.08734726769218024 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +come:0.4737314133851614 go:0.2380495690666368 run:0.10812856392627661 look:0.09612130536899059 :0.08396914825293453 +he:0.652522716379429 she:0.13051847927999433 that:0.10696221413209492 they:0.06432543485506985 :0.04567115535341187 +be:0.7049211307100851 speak:0.07529408471598081 the:0.07439283315968048 become:0.07344837293084286 :0.07194357848341074 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ques-:0.4515338379918281 sec-:0.23401622068075978 mo-:0.21177008203085576 na-:0.09446424050728532 :0.008215618789270896 +there:0.33127746417116627 it:0.26836733108373756 It:0.21436669651030907 he:0.09883323595752522 :0.08715527227726187 +up:0.4599989558747142 his:0.1889496151407016 her:0.13196748192196592 their:0.11006589385820645 :0.10901805320441177 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ir:0.29276690572964464 country:0.2229238026084801 world:0.19759002167516643 -:0.16500509706951272 :0.12171417291719605 +which:0.30019217188460046 whom:0.2549796137567038 me.:0.1835946118316055 that:0.13788501233525205 :0.1233485901918381 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +to:0.9673852639293794 the:0.010327119639340137 and:0.008914528010574385 his:0.007026376341837333 :0.006346712078868835 +the:0.8268505797387272 conditions:0.06644381401826337 circumstances:0.03703133774423158 tho:0.03624961158408424 :0.03342465691469378 +a:0.779307851819415 in:0.11208239343424345 of:0.03833182103459007 no:0.035487749340712416 :0.03479018437103904 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7295174686862521 a:0.16203007182632137 his:0.04055397020123217 this:0.03714054964548965 :0.03075793964070478 +avenue:0.233413820402659 America,:0.23242251784214948 America:0.18941666464818324 Pacific:0.17796109792099146 :0.1667858991860168 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.2870469952464825 had:0.19925228844695209 has:0.18747536037295717 are:0.18063092706987124 :0.14559442886373697 +same:0.3571736350166149 it:0.3039475934363801 duty:0.13577538319802065 long:0.10442158869333176 :0.09868179965565271 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6827295756640418 a:0.18656341489144335 very:0.046188588966300036 tho:0.044085570435232604 :0.04043285004298229 +at:0.6143103439378467 about:0.13101010872362026 after:0.09374111748789218 lots:0.0873080667139943 :0.07363036313664642 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5416442330914274 the:0.2860348819971125 a:0.12539994569306293 new:0.024047601432815525 :0.022873337785581625 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +work.:0.28925562466083343 friends.:0.20658841437160436 children.:0.19249661836788004 hands.:0.15680877442439609 :0.15485056817528603 +come:0.2354928863074445 been:0.23340556937970203 not:0.19197402515201092 gone:0.1718898962518852 :0.16723762290895738 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +you:0.28807221822002577 I:0.25185190881491853 they:0.23301933745447612 we:0.21352029515576534 :0.013536240354814207 +cents:0.7960450192683273 for:0.1271976497534917 to:0.0467071990835526 barrels:0.016696547649033427 :0.013353584245595209 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6390435500944216 by:0.14516449680515153 along:0.08751518345048138 on:0.06941880938885271 :0.0588579602610925 +and:0.30021480749205837 Smith:0.27207321159049697 J:0.1715063172648197 Jones:0.13082532663759053 :0.1253803370150345 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5364551962818305 this:0.2219260219752172 some:0.1021431656932798 any:0.07328125221886454 :0.0661943638308079 +a:0.3875750372252762 the:0.35173421670260724 this:0.1724212324692737 his:0.05832420954883592 :0.029945304054007044 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +do:0.363935586248458 are:0.233047596290868 have:0.17014171614941276 did:0.15458186746579278 :0.07829323384546855 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.43604848992747836 are:0.1909507366451398 will:0.18001882984635525 was:0.14289034768888906 :0.05009159589213754 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +believed:0.2914688623353979 probable:0.18379297389358415 understood:0.18212928634706593 so:0.1786703498739672 :0.16393852754998478 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +country.:0.25863013631770937 people.:0.250168914805841 city.:0.24875522051140167 State.:0.14057141541734486 :0.10187431294770306 +western:0.4527967194157128 and:0.23905850286678082 silk:0.1117784359782558 flour:0.10362842253982793 :0.0927379191994227 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +otherwise:0.328143260746495 they:0.23093513854061234 it:0.1751002347756135 he:0.1485689431758826 :0.11725242276139657 +works:0.252245898024292 they:0.2439826149868893 and:0.19370414605831235 rates:0.1557114070621733 :0.15435593386833307 +annually:0.24494266362047146 tendency:0.22873456704643122 importance:0.185160584707464 ability:0.1731593328273277 :0.16800285179830565 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +on.:0.2892532047303238 is.:0.21063496188027186 dead.:0.1938769533884682 in:0.1555642226377552 :0.15067065736318092 +was:0.4481104239234991 says:0.14419812884280275 saw:0.14188716440511548 told:0.13378656615071127 :0.13201771667787127 +went:0.28322020810287124 put:0.20716629249854848 took:0.20460834435500888 came:0.15411734927472043 :0.150887805768851 +that:0.3889252526513192 him:0.20787114716204763 instance,:0.18094707459643172 even:0.11491539956599577 :0.10734112602420563 +a:0.5472431962173714 the:0.2404008164132383 no:0.12243437555061741 not:0.07111508327830213 :0.0188065285404708 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.4845051036449967 same:0.19824107039905886 men:0.14022728286294306 country:0.10165410160191408 :0.0753724414910874 +Central:0.33126748934316375 street:0.3259995219280813 Island:0.13182318669963053 avenue:0.10588920345579729 :0.1050205985733269 +he:0.47668601339834543 it:0.2553512228102108 she:0.1088863916965048 I:0.0900008866470033 :0.06907548544793557 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.8833054589185964 ::0.03847539809289775 day.:0.026714863274300567 day,:0.026036738919047994 :0.025467540795157277 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.305069535102498 in:0.2478079897154482 to:0.16639745242132636 of:0.14105143952341348 :0.1396735832373139 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +line:0.8884040696474987 lino:0.0388341221946539 filled:0.030033333882861567 line,:0.02467049489267233 :0.018057979382313294 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time,:0.2581004357568273 care:0.2516865256457958 time:0.23196606508439033 place:0.1426120459397908 :0.11563492757319582 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7080175686410553 a:0.11979263916779821 his:0.10852398893607604 tho:0.033540957374539875 :0.03012484588053068 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +of:0.4397458004572767 of.:0.3680281149135106 to:0.15945436504213692 by:0.022916256256445618 :0.009855463330630367 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.2680488920279353 will:0.20707349707659203 can:0.19397167570191517 to:0.17626755233408395 :0.15463838285947362 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +had:0.3281815345560928 were:0.27368513709512776 are:0.20079910689480712 have:0.18525748477355145 :0.012076736680421047 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.691124651998682 here:0.1010910206479786 again:0.07829319467123716 ready:0.06515151835494079 :0.06433961432716133 +tained:0.5447675230394642 gress:0.24740819869872238 dition:0.08680106930669966 tract:0.06883404048121716 :0.052189168473896784 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +thence:0.6166301879514855 and:0.15909577989961415 together:0.15582469340639277 charged:0.034630376924618435 :0.03381896181788918 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Assembly:0.40324008610107287 Grant:0.23960655597616973 Government,:0.15817182067975435 Government:0.12490069490188273 :0.0740808423411202 +it:0.42999852126027044 there:0.2599751831559433 he:0.17269270314752797 It:0.0912187823005572 :0.04611481013570094 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +face:0.808066935567377 I:0.10681987202066102 face,:0.03550233904260232 round:0.02688813399641253 :0.022722719372947262 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.6813731393083869 made:0.09773675400355819 done:0.08124393023156463 resulted:0.07313707764103868 :0.06650909881545163 +sixty:0.27478386653684295 eighty:0.24295757357693695 fifty:0.19664753362788404 forty:0.17144246381862863 :0.11416856243970748 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.37874390268936814 and:0.254635330242702 enough:0.16625106957902297 time,:0.12134616521499278 :0.07902353227391426 +young:0.5077199601875142 old:0.2700723491418876 poor:0.11134673300740261 colored:0.05805705003129146 :0.05280390763190414 +went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.22369456742961225 amount:0.20773323631999405 day:0.2060255143945402 part:0.18175789781806492 :0.18078878403778864 +is:0.6335685160414394 was:0.2419629842883279 Is:0.07466613351806352 makes:0.02765713663997471 :0.022145229512194563 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +friends:0.42337939752882797 audience:0.23693107877136863 neighbors:0.1307658115033111 guests:0.11944557738658264 :0.08947813480990956 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.2806804053220968 who:0.23021658253070815 have:0.21967415982305932 were:0.13554757321320157 :0.13388127911093414 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +pair:0.29851696796148514 prize:0.22917204406604158 think:0.1996186909876157 box:0.13740938575447473 :0.13528291123038286 +of:0.7746568084599991 in:0.07426008662061874 to:0.05725705795731131 and:0.047414400059885876 :0.04641164690218501 +to:0.9755531927262934 and:0.010449456438479809 in:0.006538994144769161 lo:0.004816970350236754 :0.002641386340220953 +not:0.3890979701409219 be:0.29456063814525935 have:0.12771327091310314 get:0.0994009122162952 :0.08922720858442051 +asked:0.26591505148064126 it:0.22112657683537867 ready:0.18104298309594663 made:0.17565638973160602 :0.1562589988564276 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +thereafter:0.40345503007194944 a:0.23595075635923635 being:0.15000469280788842 not:0.11979284521056217 :0.09079667555036368 +re-:0.29558099496441115 other:0.2529859502440726 Democratic:0.15871391070920884 oldest:0.155842425105572 :0.1368767189767354 +time:0.3901767875367833 days:0.18402171505721013 weeks:0.15741238730115034 years:0.15464643553665305 :0.11374267456820324 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +the:0.6892563833767177 a:0.19747067527863046 this:0.04225742297341679 tho:0.036074717080194774 :0.0349408012910401 +any:0.5553228480400179 having:0.15398219970033167 remedy:0.1323626804708189 it:0.08720495175238982 :0.07112732003644193 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.49176562644659544 in:0.2800173092613267 for:0.08359226562685541 on:0.07430918954661359 :0.07031560911860865 +of:0.5150176899828345 his:0.18690912898032921 her:0.13310814798341636 by:0.09096022419225992 :0.07400480886115998 +along:0.4106308369118688 with:0.2669748619374524 in:0.11964937289346426 to:0.11016220309825438 :0.09258272515896016 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8982027888878481 tho:0.05161721443993014 this:0.028641250147958007 tbe:0.01353093225071615 :0.008007814273547771 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.5818858157347447 the:0.1877409382153044 so:0.1193853516877518 very:0.06016863890607873 :0.05081925545612026 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +hour:0.27792223753527034 hour,:0.19792389143497674 acre,:0.18544513977624716 old:0.1720240078065667 :0.1666847234469391 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6107014788700388 its:0.23849163408149257 any:0.060144282000669104 their:0.05339462627484699 :0.037267978772952556 +homes:0.24965559009128852 own:0.23383676964895136 lives:0.1775105624885729 hands:0.17369028491263128 :0.1653067928585559 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +The:0.4872369169889302 This:0.19420709664242136 My:0.1322884798506266 No:0.09502049968596075 :0.09124700683206119 +Island:0.36458772318258587 White:0.264872266456635 Court:0.19815141910724965 Central:0.15269956513699084 :0.01968902611653866 +for:0.6534956216469641 of:0.17477808385246274 in:0.11585967184503619 In:0.03414843132571988 :0.021718191329817105 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5485635758143974 in:0.2115065874037343 upon:0.09563321769761585 from:0.07353496980300632 :0.07076164928124615 +was:0.4528730173083342 found:0.16000035090628034 is:0.15879898697715236 had:0.12603781943613881 :0.10228982537209419 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +had:0.3915611312983361 not:0.17204564578038756 already:0.16947183855088177 never:0.15832306530011775 :0.10859831907027682 +one:0.3604785064284075 three:0.35709860137246013 two:0.14352097001398392 five:0.07105217815687305 :0.06784974402827541 +a:0.7099134222540164 of:0.09736965604526725 the:0.0854652956074572 are:0.07218599513862656 :0.03506563095463234 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.45410925532373997 the:0.41362836070443654 which:0.07819095924565983 that:0.02733408637616494 :0.026737338349998686 +and:0.3781830116469016 contained:0.2786336784260064 is:0.17353834329264647 house:0.08879265296574204 :0.08085231366870355 +was:0.4723005537965713 had:0.2551283613799193 has:0.18465234598717833 is:0.05465449280231851 :0.03326424603401252 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.3200793436287384 all:0.23698392766806617 to:0.1712324711648699 for:0.1468005618038697 :0.1249036957344558 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3892843509597423 he:0.17430520351364373 they:0.16870023281848268 it:0.1403971417936755 :0.12731307091445582 +more:0.602026620973022 less:0.17172711453963266 rather:0.12921682194128029 is:0.05111171474668244 :0.04591772779938264 +of:0.652939353182606 into:0.15173898829075338 by:0.09996885208585823 and:0.04827139238719609 :0.047081414053586394 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +two:0.2891922931559792 more:0.2799196147589272 three:0.23013105020136385 four:0.11431411200452968 :0.08644292987920005 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +more:0.4548940741081455 other:0.16439136970613075 less:0.12992134648793818 lower:0.12619297717173553 :0.12460023252605014 +made:0.35521071629696976 foreclosed:0.24398410990080924 done:0.14244664034900092 paid:0.14139776831955897 :0.11696076513366108 +the:0.48669196938791504 his:0.29544462999219057 a:0.13378946191367824 her:0.04216220134709889 :0.04191173735911731 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.430997085321662 sea:0.2850332666640767 is:0.10499945243019426 was:0.09397760118698442 :0.08499259439708248 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +into:0.7017467196240552 between:0.097006722857719 Into:0.092786478072206 or:0.0639960404697752 :0.04446403897624463 +pay:0.35470195733247695 provide:0.3132795704599423 vote:0.1460095227201354 call:0.09682153722008563 :0.08918741226735961 +man:0.4977413373040864 matter:0.13678798048397203 point:0.12914945235724917 result:0.11943237639890907 :0.11688885345578343 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +far:0.2374272883677013 it:0.219330088640144 obtained:0.19771446817386007 saved:0.18165574490743636 :0.16387240991085833 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.5333085152513634 not:0.1826379926702023 an:0.16455571959861476 taken:0.06173259811258951 :0.05776517436723005 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5340936938458537 his:0.19097114535913198 be-:0.1563316960455383 her:0.06815421709817096 :0.050449247651305096 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7301168155226763 an:0.14177885935249987 his:0.05365811078576625 its:0.037512171283710656 :0.036934043055346984 +that:0.26068154943065847 of:0.21115345272889946 all:0.18179946332919206 have:0.17455149511755394 :0.1718140393936962 +been:0.9483222595190596 had:0.018426967405436676 ever:0.016684801494282468 recently:0.009201030345527135 :0.0073649412356941515 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +These:0.5184943278167037 The:0.433824738903378 Tho:0.021757133432149092 He:0.01672778888367264 :0.009196010964096541 +at:0.5437522332455197 last:0.19815662876791817 all:0.11429685642048276 that:0.07198232023680323 :0.07181196132927628 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +hundred:0.48528611472987754 13:0.19970164821883268 thousand:0.13406710886456408 miles:0.11991036288009066 :0.06103476530663493 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.32073642887104464 than:0.2104181077143929 has:0.1984519160753799 had:0.1630917256991464 :0.10730182164003615 +the:0.41876871464388266 either:0.2222699677085069 each:0.19718485040341 one:0.0916842381002334 :0.07009222914396696 +now:0.2774856421482546 talking:0.2177830451485038 brought:0.20978605313622367 being:0.14963000582409033 :0.14531525374292759 +be:0.8471044665558259 have:0.06298319584692516 bo:0.05468907155049025 not:0.02727706275722858 :0.007946203289530019 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +had:0.4917066619881819 has:0.4742270222487543 bad:0.015347401839742052 lias:0.009414120582384432 :0.009304793340937272 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +J:0.3809974750142998 W:0.20770338449232417 C:0.1551691398517447 E:0.15350523339597913 :0.1026247672456523 +to:0.791143085604342 in:0.09286031094208202 from:0.05010677233491847 by:0.03303377246260949 :0.03285605865604798 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +w:0.27813854176269137 country,:0.22928547182853395 way:0.18177233711180635 friends:0.1686725029666967 :0.1421311463302716 +interests:0.31726644598850706 interest:0.20641003923801587 known:0.17703263392852467 thing:0.1575350336819397 :0.14175584716301268 +public:0.7212074576230764 same:0.19923118968076525 general:0.03662988917775877 political:0.023482523316307378 :0.019448940202092185 +both:0.4632537631333518 one:0.14713600265563623 account:0.14494374036131782 this:0.12627454721377096 :0.11839194663592317 +have:0.3562305610378128 having:0.21046998361605573 has:0.20612518914609465 had:0.13119023071681196 :0.09598403548322494 +the:0.7336352260449112 a:0.10811651742629555 his:0.07959602518733137 our:0.04762819455410631 :0.031024036787355606 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.44886390986285823 it:0.19056854983731705 this:0.18583953875469666 law:0.09850827569034332 :0.0762197258547848 +find:0.24052805749408546 be:0.212947685883528 show:0.20525460156250697 say:0.1968911662329019 :0.14437848882697768 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +those:0.3490542237732899 land:0.20031875424902806 things:0.16852529750334297 that:0.15411299553118296 :0.12798872894315608 +made:0.3993997459365809 made,:0.28756047657154893 done,:0.11011705044992949 able:0.10924272838994191 :0.09367999865199879 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.30108265378603943 well:0.2566918497019301 much:0.15878947967410206 provided:0.14388689542299365 :0.13954912141493467 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.854530667868843 its:0.05106028473966853 no:0.03987103934144234 their:0.027963305231351213 :0.026574702818694864 +made:0.3172132515378427 due:0.24133849395393464 made,:0.1740560679210998 done,:0.1432970708610888 :0.124095115726034 +the:0.8108332094572548 their:0.06253025135672219 its:0.06164271333923707 tho:0.04410577055896549 :0.020888055287820388 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +interest:0.373422498194942 importance:0.2884358976232226 organs:0.14981613322668494 forces:0.09727467378355688 :0.09105079717159359 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +I:0.5925224613450693 he:0.1866238662467761 they:0.08503350921057366 she:0.0820203219202831 :0.053799841277297825 +he:0.5833237546531892 I:0.21438553867778462 she:0.1286962474990822 they:0.04071878941358026 :0.03287566975636381 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +only:0.4484939786604129 columns:0.19819790378217939 papers:0.1476313104821104 beginning,:0.1088678166547686 :0.09680899042052854 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7640292232745802 they:0.08861638798001441 his:0.07099968727524436 their:0.04171432664049734 :0.034640374829663576 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.4881395514509317 is:0.18088215814919967 were:0.12949189137452805 has:0.11464647673981264 :0.08683992228552787 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +years.:0.4704345720384581 months.:0.17354043294813032 hours.:0.13762314065052503 days.:0.12624463605450895 :0.09215721830837742 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.6528550263856682 for:0.17398642801871267 of:0.09413234947619271 in:0.06424487380515861 :0.014781322314267993 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.426209225407315 these:0.27819311434075006 good:0.12751735360929742 better:0.08673787873128555 :0.08134242791135204 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +day:0.29177927513978336 one:0.27546538675388743 part:0.2162920835259711 member:0.12571916314886405 :0.09074409143149417 +be:0.9308504241971133 bo:0.041225364143835305 have:0.011530119949838045 he:0.008794444202892255 :0.007599647506321071 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9048147570666462 tho:0.0388973120666566 this:0.022440215421831815 its:0.018485498438965943 :0.015362217005899407 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one,:0.30927186388631933 work:0.19711965580552837 question,:0.18187405756726113 changes:0.1560779041347623 :0.15565651860612878 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9027672216723739 described:0.036539799115285945 or:0.022242084404514473 ot:0.01978539221860093 :0.018665502589224812 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4622794985359273 with:0.19963923908320283 but:0.1413351637037934 as:0.10542046604100348 :0.09132563263607292 +is:0.5828157665026565 was:0.2191823791835575 Is:0.12173194669427344 to:0.0439638967000863 :0.0323060109194262 +the:0.64104334441982 his:0.1605724679545596 their:0.11501774910117206 my:0.04815458700028726 :0.03521185152416096 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.33308907606209043 Mr.:0.30491760847257127 Mrs.:0.1733105657398584 J.:0.09681483786786498 :0.09186791185761489 +same:0.28100852377992835 country:0.21997135574273222 world:0.1860091939743425 city:0.1574309443129809 :0.155579982190016 +it:0.34652131041825723 he:0.27161978823545524 that:0.16954240514481062 "It:0.1258523864802724 :0.08646410972120445 +interest:0.4927527898535898 him:0.20596618836019623 Interest:0.13160514540864307 them:0.12031257514156847 :0.04936330123600239 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +could:0.3289970597494731 can:0.3083780943440244 will:0.16054620416852952 would:0.13690999146757507 :0.065168650270398 +a:0.32556246103346287 the:0.20410584501380344 very:0.17253139189923514 too:0.1530201383157508 :0.14478016373774782 +and:0.5064623873305786 running:0.17017036552312084 except:0.12835762869136322 along:0.1061948060044749 :0.0888148124504625 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +room:0.4509553870015024 room,:0.261043790019545 up:0.14537200133056746 rooms:0.08266369967132946 :0.05996512197705566 +that:0.2994305676496252 bonds:0.27896126881924754 land:0.1554550729824165 debt:0.13755401568698888 :0.12859907486172198 +section:0.36099906382656194 day:0.26004376352765585 sections:0.17194109156326137 year:0.1121809240732514 :0.09483515700926957 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +side:0.48193886993806734 line:0.22847454497161682 quarter:0.15406192018187542 corner:0.07941577042754575 :0.05610889448089465 +the:0.7523135734847469 said:0.11798175939233378 personal:0.049134600826182595 his:0.04775422972157281 :0.032815836575163765 +ques-:0.405250864393749 elec-:0.21998708668975997 sec-:0.21378165834153567 na-:0.09652804049922353 :0.06445235007573161 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +northerly:0.3841352299628106 along:0.18531335231043344 easterly:0.14945614010239525 at:0.1435126962176028 :0.13758258140675794 +made:0.35521071629696976 foreclosed:0.24398410990080924 done:0.14244664034900092 paid:0.14139776831955897 :0.11696076513366108 +which:0.3765662726088103 and:0.26434674867092184 he:0.17998281798630708 who:0.10042122968163657 :0.07868293105232434 +say:0.47759094718248624 know:0.2270057461242821 believe:0.1383167195055771 knew:0.08984025854785858 :0.0672463286397958 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.3182462905359186 we:0.30594156753328905 I:0.2647204969483989 you:0.07079454992288613 :0.04029709505950747 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +inter-:0.7875314701786709 old:0.0868830158898088 for-:0.05689219315460606 l:0.050603012856440664 :0.01809030792047361 +if:0.442665934900336 though:0.24557744730215977 that:0.13530971144908116 an:0.08947419795634952 :0.08697270839207338 +to:0.3745437894089711 will:0.2417912987291144 who:0.17639658660778737 and:0.11783495392364728 :0.08943337133047986 +or:0.4379627255054819 on:0.3008038002446648 taken:0.12411996718543906 and:0.07653195687554461 :0.0605815501888696 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +point:0.22394192426485618 hand:0.2169096826846268 dollar:0.1971831586412016 year:0.19095865171082813 :0.17100658269848706 +case:0.2930188596344642 man:0.20995556019689038 people:0.20484770000330355 same:0.17171166888917824 :0.12046621127616361 +homes:0.24965559009128852 own:0.23383676964895136 lives:0.1775105624885729 hands:0.17369028491263128 :0.1653067928585559 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +come:0.3995840425335272 be:0.25612129617962887 receive:0.1334537676713455 take:0.11559482176500432 :0.09524607185049422 +In:0.375634098160784 That:0.29184221626617624 At:0.12116629475561054 On:0.10695068170791237 :0.10440670910951663 +order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 +Salt:0.6640001816361542 the:0.2643917253847247 said:0.05341499105060167 Green:0.009701656151802024 :0.008491445776717305 +and:0.3119670349172395 up:0.27536653548690354 down:0.17360455392463603 out:0.15810971747762212 :0.08095215819359883 +cash,:0.5842589917452051 that:0.14945695201547687 night:0.10208657562472961 day,:0.08649242554735476 :0.07770505506723345 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.4033682026200842 men:0.27777211748644065 present:0.11619392827570985 children:0.10365867661698541 :0.09900707500077982 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +able:0.4081416956615866 made:0.22572806479799212 unable:0.14330007169873005 compelled:0.1131605658418616 :0.10966960199982966 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +It:0.30540004783051006 They:0.2865164497579964 He:0.16701472594792866 There:0.14180071921313972 :0.09926805725042512 +the:0.8371561460489745 a:0.059368617218866555 tho:0.03812658037424291 this:0.03781569733429794 :0.027532959023618013 +do:0.3214676690578258 make:0.2528002150429558 see:0.1531916938581309 get:0.1463131119278161 :0.12622731011327135 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +from:0.35352677030943513 as:0.31051687895162783 aa:0.21515213656063406 beyond:0.07003746204148888 :0.05076675213681412 +failed:0.23285022364306351 come:0.22033299427397599 been:0.19791801323131356 gone:0.1950553578571899 :0.15384341099445706 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +law:0.2415154069083313 bill:0.19478009397581153 amount:0.1929926626018558 country:0.19043831197547426 :0.18027352453852716 +is:0.5213694444632256 little:0.15626218807352307 much:0.11796969056390068 was:0.113861462084461 :0.09053721481488954 +the:0.6913457752561492 foreign:0.1308259214388151 a:0.06383619286661171 his:0.05708511567783446 :0.056906994760589524 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +better:0.4325588827327017 man:0.25213158629038446 to:0.13222244151623969 will:0.104146788941818 :0.07894030051885603 +be:0.6375115904742006 the:0.23799592579769868 bo:0.0506454076780908 have:0.04068649152036379 :0.03316058452964604 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.4763418370333663 that:0.23819491576976637 which:0.1920576549385153 this:0.04850952499400939 :0.0448960672643427 +and:0.30755048307986066 at:0.27293489498082474 on:0.19596898409461203 in:0.13033834944802467 :0.09320728839667797 +filled:0.25762084994382817 compared:0.23834842899051242 covered:0.17502541508792596 charged:0.1738821123689405 :0.155123193608793 +great:0.41002151923145713 difficult:0.23443926325690673 hard:0.15727616785478488 big:0.1007846219786156 :0.09747842767823556 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +later:0.3886340911015305 more:0.25609648748139474 earlier:0.19784064298585216 less:0.10419515198584173 :0.053233626445380836 +and:0.24276242857868743 city:0.21440055698336274 a:0.1969866465320451 City:0.18305862975418624 :0.1627917381517185 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.43562495671460405 or:0.19395539551394209 was:0.14076618355522905 had:0.13367069705836912 :0.09598276715785584 +the:0.456386160448014 a:0.27126494674200663 this:0.10932588891473118 every:0.09969720588705086 :0.06332579800819725 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +no:0.6147695149326129 o:0.1203296554574421 uo:0.10359205040206074 little:0.088412161607232 :0.07289661760065219 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +so:0.3243905084634679 suggested:0.18031962140703497 found:0.18006778012694888 ordered:0.15954611708246735 :0.15567597292008098 +system:0.38361516727176487 rate:0.2752931612278896 depth:0.140377505206199 width:0.10754262005224835 :0.09317154624189831 +the:0.27995457229359894 whose:0.22468569827467802 and:0.18020150999792856 her:0.1783496273149834 :0.1368085921188112 +No.:0.9662121769098947 No:0.015153875608251453 6,:0.00876040662698926 of:0.005165045856944651 :0.00470849499791996 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.44809171643072104 there:0.2605723890180332 he:0.15481368637776266 It:0.10290163380554197 :0.033620574367941095 +of:0.5125092319904554 in:0.1667100840299336 on:0.1515820947276807 and:0.11939662144221175 :0.04980196780971849 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7089496397500725 and:0.12020169203916298 in:0.09377252426051483 has:0.04164405554566965 :0.03543208840458023 +Mr.:0.279639721002356 then:0.23171802833499192 wife:0.16656440492018137 it:0.16412755858855746 :0.15795028715391318 +are:0.6251354975229132 were:0.23973334246401076 was:0.06472235449387095 is:0.03952018226870478 :0.03088862325050038 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6661745772801642 in:0.22085757859684102 In:0.0396215715733642 to:0.03821088087280667 :0.035135391676823946 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.6852147246970205 yet:0.12233178546935386 having:0.09334949466584878 had:0.05314428404152801 :0.045959711126248734 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +pair:0.29851696796148514 prize:0.22917204406604158 think:0.1996186909876157 box:0.13740938575447473 :0.13528291123038286 +it:0.2759404687379905 which:0.25555526316163213 It:0.22381221388878514 there:0.13115501689861542 :0.11353703731297676 +city:0.31258217869558846 house:0.19821906664847957 country,:0.16782370626587217 time:0.16547526058137638 :0.15589978780868344 +for:0.4423005164319972 to:0.26747166261472777 by:0.18084813955691054 in:0.0700257105186195 :0.03935397087774506 +who:0.7932618645999436 would:0.07749432155201783 to:0.06287331518503717 will:0.03694326812198614 :0.029427230541015342 +connection:0.45732010812540475 conflict:0.2280923104099324 relation:0.16883810964313453 line:0.09537866120689292 :0.05037081061463543 +one:0.550213285830832 other:0.17167472303179268 true:0.12260934532112043 legal:0.1010795179041823 :0.05442312791207275 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +fact:0.4079436409412021 certain:0.2616383158220535 man:0.13243075593194786 statement:0.1027480400224104 :0.0952392472823861 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.22789607257379563 are:0.2093315269979692 be:0.1926753529257929 the:0.18697033893129758 :0.1831267085711446 +day:0.36062828713599016 week:0.19611024225495935 year:0.19151706222262455 two:0.177793992427583 :0.07395041595884294 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.342412796922511 to:0.2514062245057282 told:0.18881590863592426 gave:0.1178381210529249 :0.09952694888291173 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4330678859050419 of:0.19335594145032423 not:0.15113989321511132 for:0.11228076088056355 :0.11015551854895893 +not:0.6155368679933246 in:0.15576169483532223 on:0.11741005601794686 all:0.06148374542550097 :0.04980763572790535 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.5642602253913526 had:0.20681227972922864 never:0.09275752902883165 was:0.08875362128510543 :0.0474163445654817 +and:0.37253456523015477 followed:0.22666572134836413 owned:0.15045825296957693 occupied:0.12616722091812352 :0.12417423953378065 +of:0.8298100390871647 that:0.1256052787981676 for:0.023027844520228383 in:0.011037572697893027 :0.010519264896546381 +only:0.4466786291758313 present:0.15571616299493782 time:0.14760864568358734 form:0.14400996960956275 :0.10598659253608061 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.5985402167536273 a:0.23630822668415832 his:0.07628027273865558 tho:0.047088910643052345 :0.041782373180506455 +went:0.28922704423966783 carried:0.2184088425888961 carry:0.1798410865231085 sent:0.16011476599744415 :0.15240826065088328 +the:0.8135971705269699 those:0.0805749770765452 tho:0.04125092194399178 all:0.03672242512346018 :0.027854505329033007 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.35659066045981136 to:0.22886978313691703 and:0.16140154870194962 all:0.12700554785325005 :0.1261324598480718 +make:0.4796443371060402 any:0.16304897252611703 take:0.14700062233364122 be:0.11976105109642601 :0.09054501693777561 +the:0.4999388428795517 a:0.3262845371419244 al-:0.09984044013950423 tho:0.04951739341819455 :0.024418786420825105 +and:0.27841943381589385 council:0.25674616084308444 is:0.20594771856294328 as:0.15449400326922277 :0.10439268350885561 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +two:0.3968491583893765 several:0.24092714644184596 many:0.14784704831196518 three:0.12630137346059456 :0.08807527339621771 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.623119253155801 was:0.3072707703367888 goes:0.025079825952590937 Is:0.02279344552818334 :0.02173670502663614 +,:0.2672131915614693 .:0.22586399453403355 Smith:0.202002120992399 Mr.:0.18897153468569877 :0.11594915822639934 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.296797084184698 been:0.24727381931096204 lost:0.17007442496962744 made:0.1475190603543833 :0.13833561118032928 +the:0.34738329909126986 he:0.29811202603127007 time:0.1432696205165055 I:0.13224598398265888 :0.07898907037829579 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +part:0.3170342392181338 e:0.21686884678001425 cent:0.172578133268767 hours:0.15328157495659042 :0.14023720577649454 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.47961021032022183 block:0.15779820633193373 J:0.153281949638522 however,:0.12631448008937324 :0.08299515361994911 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.8342737067320873 them:0.057632853020750226 him:0.0421994342977116 shall:0.04032685456639895 :0.02556715138305191 +10:0.3682181131485753 12:0.17532819510002923 9:0.155079549997498 11:0.15304893002182418 :0.14832521173207336 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.662230961516379 an:0.13992677435020384 that:0.08419326485375861 a:0.05818042144593854 :0.05546857783372 +said:0.48856081747506486 school:0.20974128050957205 work:0.10632996304276791 highway:0.10256267271307008 :0.09280526625952501 +and:0.5547672340557851 which:0.18374728794810685 they:0.09025316459233745 as:0.08673215058976093 :0.08450016281400968 +of:0.665447235006312 in:0.127632988734968 and:0.10032792025179255 for:0.058959152248553824 :0.04763270375837356 +as:0.34531453169390053 and:0.21422191653835898 children.:0.17610950624741048 holding:0.1333057488738596 :0.13104829664647027 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +parallel:0.44751956097654766 along:0.29340979060619177 line:0.14487616578160092 direction:0.05790246352546735 :0.05629201911019229 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +home:0.2272952342569261 work:0.2242078405598838 hand:0.18746363659881116 duty:0.18418389046488912 :0.17684939811948994 +and:0.5736399742034789 Commissioners:0.16378999361646682 Court:0.11696309570678812 Court,:0.11405383753798722 :0.031553098935279016 +and:0.3138167275150548 in:0.21442751889152123 of:0.19676463006837108 on:0.1388158866114563 :0.13617523691359643 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +Methodist:0.4937981067126809 church,:0.24796483060645824 Church,:0.22796410176988716 E.:0.024757833220933445 :0.005515127690040155 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.8661089087665743 had:0.08212496420101369 already:0.024921131820361906 not:0.017143546943098976 :0.009701448268951146 +in:0.24732434061163902 ing:0.2305806163701238 of:0.2189659622143478 to:0.16288994974408091 :0.14023913105980837 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4102161650276938 of:0.269774814893488 in:0.17860050812835215 are:0.09101629880127106 :0.05039221314919493 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.26477055201283245 that:0.2523922178804962 to:0.19029469857840736 for:0.14930715469353087 :0.1432353768347331 +the:0.6929227286478797 a:0.10520488239161851 this:0.10095598521996041 every:0.06482319813639094 :0.03609320560415032 +of:0.4009468285658382 on:0.2073221223803979 in:0.1548449302285892 from:0.12789871881009238 :0.10898740001508228 +was:0.36466007099222214 is:0.2840711084215033 the:0.17397690875883912 of:0.10978120301432824 :0.06751070881310724 +from:0.4525449790329552 to:0.16747330935004381 by:0.1429235486673637 down:0.11962215780796617 :0.11743600514167125 +he:0.47668601339834543 it:0.2553512228102108 she:0.1088863916965048 I:0.0900008866470033 :0.06907548544793557 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.3977442968515334 was:0.2027620582011754 to:0.16900208136486805 in:0.1386371658455847 :0.09185439773683832 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +worn:0.44511126908926835 paid:0.2404990163323939 it:0.1757174143332139 you:0.0719418672830491 :0.06673043296207477 +and:0.419972651807104 of:0.3426169004479728 or:0.12577165801504872 an-:0.058889901424687585 :0.05274888830518677 +be:0.3794032569423176 go:0.2601201912192818 put:0.13260147422242716 have:0.11827628064217337 :0.10959879697380014 +that:0.46253200036873865 next:0.19338663336179984 to:0.13508200918988145 every:0.12238989842164233 :0.08660945865793776 +the:0.6863755861616951 an:0.16718266676156904 special:0.0648956024778835 such:0.04759133142190873 :0.03395481317694354 +posed:0.6890189931268891 position:0.1755026932444159 pose:0.049621696760848336 and:0.04815457016129648 :0.03770204670655012 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.30058346581922957 as:0.22471032496846158 many:0.2174898736017934 and:0.17061195897623213 :0.08660437663428329 +to:0.552698486281646 for:0.12337782643247121 in:0.12277126400890337 him:0.10805849965980696 :0.0930939236171725 +so:0.34923499722655926 all:0.25481234169582473 in:0.1469072815842144 found:0.12911293016870792 :0.11993244932469373 +be:0.9016173907171718 bo:0.04125854314709842 have:0.026003388008001973 he:0.017759297968709294 :0.013361380159018412 +State:0.49706777401798663 said:0.24729588675265973 County:0.12799772872330928 first:0.0814880173257156 :0.0461505931803287 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +told:0.3123197626877837 let:0.19522485301720835 gave:0.18411170486955275 asked:0.1743258495115557 :0.13401782991389943 +will:0.4103591426552746 would:0.38288984554884337 has:0.11997836032019156 may:0.046049075142817524 :0.04072357633287291 +will:0.5678341368483207 would:0.17924332902520485 which:0.0948763661745493 at:0.08104520431655438 :0.07700096363537062 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +right,:0.2533359301819557 over:0.2400611336695273 persons:0.17442561195090364 kinds:0.1666647663552314 :0.16551255784238209 +and:0.38520479205794833 a:0.3502976549087539 so:0.10201241059018216 as:0.08332486127017441 :0.07916028117294124 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Co.,:0.6083305293530569 Co.:0.28062863956006506 Company,:0.048871779496531945 Company:0.03936798660604624 :0.0228010649842999 +by:0.410290485759818 as:0.4082570516465684 with:0.06903766336630487 for:0.05919774621566079 :0.053217053011647975 +the:0.5782608995442797 a:0.17129457958217378 and:0.15410841059314154 every:0.05902334136936406 :0.037312768911041024 +Pacific:0.3818400476034049 Central:0.2619192665649905 Ohio:0.17592911546182843 Pennsylvania:0.09841700719462426 :0.08189456317515194 +cept:0.9570383344301692 of:0.016778439548423837 -:0.01360579947069455 c:0.0067976877503282485 :0.005779738800384291 +and:0.35217021651558733 ing:0.20188266381045367 Beginning:0.15307054014834534 was:0.1515674695791522 :0.14130910994646126 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.24880793017511574 people:0.24230341881036516 same:0.19970147990835327 world:0.15544076525054557 :0.15374640585562024 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +before:0.2911265420346286 after:0.24869523831827006 on:0.1808330249547263 from:0.1433380706623664 :0.13600712403000864 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ad-:0.5012761332651944 hair:0.20044258154681635 ad¬:0.11762907286330997 best:0.09977047861055628 :0.08088173371412308 +excitement:0.49180999925268654 work:0.18991567063798942 numbers:0.1273614965993052 favorite:0.09698191250660974 :0.09393092100340915 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.4267387874693918 in:0.17654803066596406 was:0.1682819797356149 to:0.15877959804404332 :0.06965160408498602 +what:0.38360995082562527 so,:0.2286665847271407 so:0.1750400486644831 as:0.10762860717015246 :0.10505480861259844 +and:0.39007752138935825 of:0.1795099437385265 company:0.1504404087704435 company,:0.14975353082749068 :0.130218595274181 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.615759512779208 to:0.21191646709434614 in:0.06433605147875555 premises,:0.06047413543204698 :0.0475138332156433 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +pointed:0.2600195225232736 carried:0.2051365877444647 going:0.19681846698155614 brought:0.18130880822375198 :0.15671661452695357 +of:0.6882354527683898 in:0.2242366313068404 In:0.04475326557695061 for:0.03010938162432242 :0.012665268723496928 +One:0.3883580039900132 Some:0.2105439956116121 Town:0.1486884070295398 Many:0.12937775712449118 :0.12303183624434372 +of:0.46718215246992195 was:0.21498065587188897 is:0.16992031658772955 or:0.0757056803577952 :0.07221119471266432 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5708557851400858 this:0.2099792460478843 a:0.1343540455871668 tho:0.043677061604471976 :0.04113386162039105 +district.:0.6470936808725756 property.:0.16171558823088097 country.:0.06807192325958339 town.:0.06440991549748314 :0.05870889213947697 +all:0.7525372113043504 them:0.13786600172317037 water:0.04628103754115521 it:0.03266277575314692 :0.03065297367817733 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.6037419065619622 day:0.16289549864952818 only:0.08608307945970177 morning:0.07925352984339745 :0.06802598548541029 +Dakota,:0.2588104647050625 and:0.2197647855271767 in:0.20323455515334046 of:0.19730688156764833 :0.12088331304677198 +that:0.670272925657225 day.:0.09905319349750792 county.:0.09386450156033106 city.:0.08286958471399031 :0.0539397945709456 +had:0.3374965084849942 was:0.2990209376438913 took:0.17801174105221448 saw:0.10028899082706202 :0.08518182199183785 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4301860534537812 families:0.1880605275739217 citizens:0.17276720122320377 merchants:0.10539126117157882 :0.10359495657751457 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.2671059975318142 him:0.22481434595463928 stand:0.21345148820539417 me:0.14737505842206014 :0.1472531098860921 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +regard:0.3057149411782757 order:0.28334663279449285 search:0.2111464206098458 respect:0.10206572494999128 :0.09772628046739461 +of:0.8792049566512694 and:0.04768079979225432 in:0.03987879505183529 ot:0.01848841071264003 :0.014747037792001056 +time:0.33737323863282304 use:0.2109083100396215 said:0.17561093752822596 fact:0.14936583813304144 :0.1267416756662879 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.2734532525886093 had:0.24208504487108556 never:0.2341224900921569 already:0.16323568034532895 :0.08710353210281915 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.3880782822395473 of:0.2931527661646545 and:0.18368388868360966 I:0.0696953892516177 :0.06538967366057082 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +at:0.35449482286067413 his:0.23757984769608861 the:0.20927666863767572 my:0.11081032747760873 :0.08783833332795286 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5605194671477549 against:0.14999154906255321 for:0.11530298514449186 by:0.1004678587015054 :0.07371813994369472 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +been:0.6371395697793749 about:0.11412294681737534 had:0.09072282308367959 lost:0.0792328085971758 :0.0787818517223943 +and:0.31192355943190236 to:0.25676064233317863 To:0.19848630407641701 would:0.13669187682613207 :0.09613761733236972 +the:0.781423223830473 a:0.13176415856754922 their:0.04016509087064651 its:0.02347430016948612 :0.023173226561844947 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +world,:0.4736821143532079 door,:0.2845544446069559 air,:0.08423418344034028 end,:0.08111132754033111 :0.07641793005916481 +at:0.4230340581709289 and:0.3313132434313465 of:0.10694814535592607 from:0.07112399171858184 :0.0675805613232168 +he:0.4480995390681986 I:0.17581972247155428 they:0.15786148584009835 she:0.1427183176438113 :0.07550093497633742 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +It:0.3693933615820967 And:0.262213385870861 Is:0.2343310101971602 How:0.069423671933443 :0.06463857041643918 +same:0.5361075483070551 long:0.13147705420555578 country:0.12220168424113019 manner:0.11745039658586354 :0.09276331666039558 +the:0.8098238283809231 a:0.07092759050218736 tho:0.054134605454455705 said:0.037106110895175105 :0.02800786476725881 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +buy:0.3435040876104401 sell:0.31517119208878946 dry:0.15087056094128035 get:0.10846444600209315 :0.08198971335739684 +result:0.26992558260439276 question:0.2045132489356475 following:0.1950846640540525 man:0.1659140454548249 :0.16456245895108232 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +railroad:0.42006668685564036 said:0.234890957446692 same:0.12445768405752852 railway:0.12326007980711855 :0.09732459183302067 +who:0.37955413938094257 were:0.2207135325203593 had:0.14576445747268765 and:0.13996905301609816 :0.11399881760991244 +the:0.8087150983458984 was:0.056459743364094345 at:0.04748493988439267 of:0.047093140814845794 :0.04024707759076865 +by:0.335557058142843 an:0.2826741990513672 the:0.15278672151607164 with:0.12368967410925087 :0.10529234718046723 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.5353365643176564 they:0.18142911128976572 is:0.12946664890750187 she:0.0795338069349986 :0.07423386855007728 +dis-:0.5324666548571158 period:0.1359928247645572 distance:0.13313289944236534 dis­:0.10985622066844032 :0.08855140026752129 +District:0.3803946718717023 part:0.19832516312487072 cities:0.15519523249994996 branch:0.14324876362007294 :0.12283616888340405 +the:0.8972852392734502 tho:0.04332415425905271 tbe:0.023535489173998964 a:0.01989995189242891 :0.01595516540106934 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +general:0.3334658842044789 best:0.1879811547471848 public:0.1730576776560635 proper:0.15553579198153814 :0.14995949141073459 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6830348686020336 a:0.1310414647794961 this:0.08992919004291025 moderate:0.04903210625462064 :0.046962370320939466 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.5032157414567506 she:0.14604728221116287 they:0.14539970652379672 I:0.12583118299352541 :0.07950608681476454 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.5421674599504354 possible:0.11932704803345281 equal:0.11836975559240627 early:0.11114146641078573 :0.10899427001291967 +it:0.28508618411200076 hereby:0.2670128360721503 certainly:0.17094917536132198 that:0.141821968237338 :0.1351298362171889 +a:0.6156289379751599 the:0.1842131793580709 said:0.11819248001939278 final:0.06160442973230964 :0.020360972915066715 +of:0.2572912661332985 to:0.2412152668176543 in:0.22281461983752898 and:0.14144229163864644 :0.13723655557287176 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.34492882087081167 it:0.3141922597184706 and:0.1650366858160368 up:0.11486875934473137 :0.06097347424994977 +of:0.27465839413987453 on:0.2439064859232352 and:0.23821603380730688 in:0.124147468680499 :0.11907161744908443 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.32264985476930946 to:0.2880773695625757 on:0.16589042468300483 before:0.11260281042884565 :0.11077954055626452 +it:0.2461519714710672 free:0.20865856602899532 running:0.19555178959877592 returned:0.18403538943977474 :0.16560228346138686 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +expenses:0.2910421460939731 course:0.25696079204305206 process:0.19590778424534638 branches:0.17682325357366538 :0.07926602404396306 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.47246553704202304 to:0.2816106425141536 in:0.09045842103757128 through:0.08118036858393478 :0.0742850308223174 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.808885467954778 not:0.11028475201359429 better:0.028811013442674786 already:0.027072499232147756 :0.024946267356805232 +the:0.42658284542178443 any:0.2147527296264028 a:0.1931156015615424 this:0.09130833562838613 :0.07424048776188426 +posed:0.2745806740289961 pose:0.20718362513052638 ports:0.18459966399206248 possibility:0.16955206065142828 :0.16408397619698664 +come:0.3175402221467192 escape:0.22384009754258677 recover:0.1560774848032916 him:0.15259520439595395 :0.1499469911114485 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.5935269358523736 had:0.15979285601104423 was:0.09967346586277764 will:0.09192469814889488 :0.055082044124909725 +effort:0.24364795608272008 amendment:0.20502732192899112 I:0.18681660854503418 attempt:0.185579870678692 :0.17892824276456265 +children,:0.3486652320481303 ;:0.22011083646604104 them,:0.1562210324207478 doubt:0.15133275646676994 :0.12367014259831097 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +most:0.40472877512397776 very:0.377275817386419 more:0.16894943799380574 single:0.03757718053773485 :0.011468788958062793 +of:0.2557480305459821 that:0.2443822742138322 for:0.21294650854776126 in:0.15409786827101662 :0.13282531842140768 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ple:0.9892615919624403 I:0.007929475223575441 We:0.0011667943511534757 j:0.0008463779771948872 :0.0007957604856359492 +first:0.3562839865075 next:0.19504402169703797 1st:0.1798787431117431 same:0.14931347639769574 :0.11947977228602319 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4589617552500369 and:0.16477768709258772 of:0.1434098426724558 to:0.12726024634347974 :0.10559046864143982 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +says:0.304397649372872 stated:0.17990656545138953 was:0.17288636242906316 said:0.1726370866615515 :0.17017233608512378 +to:0.4226682494378403 and:0.21529394954978284 that:0.1522568517146442 as:0.10528886402243784 :0.10449208527529472 +of:0.8951025982572647 in:0.07047145457610934 ot:0.013061235873178978 In:0.011326034505357678 :0.010038676788089455 +back:0.675018627879203 life:0.08618361099492627 hand:0.08327006988130159 mind:0.07797323841386962 :0.07755445283069959 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6341223919963638 tried:0.14182703650232922 in:0.07880877586037026 to:0.07644524262268096 :0.06879655301825587 +of:0.5105257558520195 in:0.26966531901240365 was:0.0784346649779857 is:0.07417141153542252 :0.0672028486221686 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.7098869275130917 never:0.10928283239209591 probably:0.08070919920365324 you:0.05694283319221829 :0.04317820769894086 +protection:0.3121467925150426 them:0.18624082780492382 damages:0.17402693670282257 war:0.16883690301654375 :0.15874853996066712 +recorded:0.4984399731733091 that:0.14957083603055452 it:0.12778864120976063 interest:0.12105971834665655 :0.10314083123971923 +city:0.25788713661469204 man:0.21463230968184568 he:0.1864372527571178 their:0.17099484163197443 :0.1700484593143701 +and:0.47773118331030284 I:0.2118411405436567 which:0.11786193610011023 he:0.10918661309612714 :0.0833791269498031 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.2416689916955858 in:0.23084838219024353 that:0.20808754853921743 from:0.1902798744337226 :0.12911520314123076 +of:0.20656164427904883 by:0.20454385374108194 in:0.20288133390125582 bv:0.1961894937357985 :0.18982367434281497 +it.:0.2973183634211784 the:0.2232839489970272 them.:0.2050920775239709 him.:0.16185908226411386 :0.11244652779370962 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9346475675770901 tho:0.04013387999386294 tbe:0.01773326865135808 The:0.00386469192835974 :0.003620591849329047 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +District:0.9560048100312449 Book:0.01419114024144086 District,:0.013236010554691632 House:0.009407590474706544 :0.007160448697915951 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.574555500258288 very:0.16484297744075643 more:0.11047651296495274 less:0.08425139801393434 :0.06587361132206854 +very:0.5944215864422823 poor,:0.14542392481581126 closing:0.13396634653090161 last:0.06383839547591698 :0.062349746735087835 +vision:0.48081751058676475 claim:0.1646903091933881 test:0.1376222188810773 portion:0.11369488416228876 :0.10317507717648104 +of:0.401677149707566 to:0.24776814029723207 in:0.14481202176557872 for:0.12725937792187383 :0.07848331030774933 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +portion:0.2455531437822309 amount:0.2329404091438283 part:0.20187215378021284 quantity:0.17544573089797064 :0.1441885623957573 +to:0.4310445363305251 from:0.2020800228876521 in:0.17774969397781415 into:0.13607295701199537 :0.05305278979201321 +of:0.5463365099428191 is:0.15158518707565433 as:0.12240190371654189 and:0.09391038952234494 :0.08576600974263973 +the:0.7344882988296282 said:0.1092499316721914 this:0.09825011250589744 tho:0.03031372327540726 :0.027697933716875373 +the:0.2877920414352671 that:0.28466452687386196 this:0.21001437235883705 such:0.15718732919804546 :0.06034173013398846 +those:0.3688860274319316 all:0.33781285429068897 and:0.13031327171456836 one:0.10035636758537497 :0.062631478977436 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +few:0.9762953520690524 ten:0.00917370587423652 week:0.007420297266025401 dark:0.003855927592337654 :0.0032547171983480527 +the:0.6018699173615609 a:0.21846206983092029 in:0.0630620099655306 all:0.061888635408814716 :0.05471736743317353 +that:0.698583588433307 himself:0.14913560548368102 today:0.05272648049661866 that,:0.050993164477222734 :0.04856116110917047 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.3993631679675232 in:0.29024944258219104 to:0.13486719212612644 with:0.08817575205921989 :0.08734444526493938 +and:0.38288077593948405 but:0.26437285036031954 which:0.22087752817755157 where:0.0867241697132065 :0.0451446758094383 +see:0.32086960139147 asked:0.19591644123537436 to:0.17322642281344156 for:0.15502368511196765 :0.1549638494477464 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +The:0.4237405216685202 No:0.22649810523159114 My:0.16783779575397406 His:0.09109348261727712 :0.0908300947286374 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.4850049962740818 would:0.18243500518113898 to:0.12300975609602682 shall:0.11905732970731409 :0.09049291274143838 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.3640175479003139 already:0.22151100503096474 above:0.21086818576485836 also:0.10752227900733344 :0.09608098229652969 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.38204669026422755 any:0.1792479940045952 in:0.15792404588054804 the:0.15195113108854752 :0.1288301387620816 +way:0.2912281259206911 right:0.22110020146674944 wife:0.1854758735001724 return:0.15819311668545358 :0.1440026824269334 +out:0.41776308507646076 on:0.16205206415383727 in,:0.1533366277044415 directly:0.1427567222623063 :0.1240915008029543 +who:0.7489232998787662 would:0.11430127200417357 to:0.049585428228797704 should:0.04559697109548007 :0.04159302879278259 +the:0.5122466383165941 take:0.3971231068036058 give:0.042538488941652346 its:0.02595295060299376 :0.022138815335153966 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +result:0.28190500835637533 people:0.20308597963791886 man:0.19556898998762892 men:0.17210859777814644 :0.14733142423993048 +his:0.6409811611170665 a:0.19740920979871285 devoted:0.07344095427149612 my:0.04778829732983293 :0.04038037748289155 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.45680778407006045 to:0.1783813295805605 as:0.13508401864981553 for:0.11790731691573068 :0.11181955078383293 +not:0.24910309743433354 to:0.24764009806428447 I:0.20269197547947249 that:0.16024471056777287 :0.14032011845413664 +Minnesota,:0.45160910605351473 Washington,:0.3200542524330416 this,:0.0774081751892213 Iowa,:0.07568815189627488 :0.07524031442794749 +at-:0.47971021450306345 ex-:0.2565656179176962 pre-:0.09250054505699969 con-:0.08676302893899215 :0.08446059358324855 +a:0.6254091440766654 the:0.24969301117993278 this:0.07861977402654512 any:0.023821815535806697 :0.022456255181050107 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +or:0.4434243760358045 the:0.21665885379804678 and:0.20197300934014004 from:0.08197431465728275 :0.055969446168725845 +shipped:0.4041086294656323 came:0.22680843343258897 addressed:0.12605500625199573 were:0.12586106661664515 :0.11716686423313775 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.46772582907886845 as:0.2627143054933923 and:0.2036656998655727 a:0.036660377427572374 :0.029233788134594346 +time:0.28802450895724097 first:0.25606774734522775 fact:0.17967415324372232 man:0.14056221099019464 :0.1356713794636143 +be:0.40621595196922916 only:0.27768344470671014 been:0.11648929223471625 what:0.11058380218167979 :0.08902750890766471 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +know:0.30777271439161624 believe:0.2950578506344941 so:0.14959199005035662 think:0.12619838322756602 :0.12137906169596699 +man:0.41662388110466797 point:0.16807091662258078 change:0.16004910728055066 part:0.13649054296501914 :0.11876555202718136 +favor:0.4286606174776465 front:0.16663700046522184 spite:0.14436924942848997 one:0.14085741126542772 :0.11947572136321394 +1,:0.2927119673059914 4,:0.21417170553373757 3:0.2030395476078221 2,:0.15504350553972568 :0.13503327401272341 +as:0.40604762058911914 and:0.37008741708404325 that:0.09503184206928765 or:0.08950194226750696 :0.03933117799004287 +west:0.22074091467451437 north:0.20880810102411393 south:0.19637947154494703 first:0.18717390018975721 :0.18689761256666743 +as:0.39071171871001137 known:0.34033858635122755 enough:0.11434024502461099 adapted:0.10568069965007323 :0.04892875026407683 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +.:0.9213538794899029 J:0.023102277161287297 C:0.022925346201619227 .,:0.019917444128495883 :0.012701053018694746 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +own:0.40042640110780614 food:0.36464209921551577 surplus:0.09172756717703524 vast:0.08047483385308678 :0.06272909864655585 +will:0.34918081515922844 to:0.3352493010579887 must:0.13197095835389372 would:0.09442086824900686 :0.08917805717988225 +Roosevelt:0.32519360536030145 Davis:0.17983696592165715 Smith:0.16695719913304427 Johnson:0.16679506679291617 :0.16121716279208098 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +the:0.8203024109790319 their:0.0992567646171539 tho:0.030963298282853793 our:0.02558294309063835 :0.02389458303032197 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3678219802824767 as:0.29325780236980087 man:0.12981862177062384 man,:0.11557421877743511 :0.09352737679966336 +the:0.4908377518043681 that:0.14868311341036267 at:0.1319776772507814 all:0.12158020141814833 :0.10692125611633943 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +see:0.3667023620002201 them.:0.19035761596396136 it.:0.17506106201948096 him.:0.14107798835657182 :0.12680097165976587 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +very:0.34677772030859666 a:0.22392099352784361 most:0.147081751288809 more:0.14194043619963687 :0.1402790986751137 +the:0.9118965401660062 tho:0.03331265920957103 his:0.02673141977393186 tbe:0.015047021889920242 :0.013012358960570729 +up:0.482040717606335 over:0.15643945944994955 into:0.1500751432139771 Into:0.12029860514189498 :0.09114607458784342 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.44809171643072104 there:0.2605723890180332 he:0.15481368637776266 It:0.10290163380554197 :0.033620574367941095 +in,:0.4461969580868492 here:0.15887166658189447 more:0.13763912585014354 ;:0.12879749357957956 :0.12849475590153323 +other.:0.7622216406039192 year.:0.09779483313774617 side.:0.0705155710258481 other,:0.045331455652176625 :0.02413649958030987 +United:0.9660871445925763 Southern:0.014847843204905764 Confederate:0.009134564711745638 other:0.005786371306168121 :0.004144076184604209 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +up:0.2888798783339719 up,:0.21896849310947852 was,:0.18311077844821969 ;:0.15755012301283172 :0.15149072709549827 +says:0.37097685712800876 stated:0.20346347130388523 said:0.19522824302532127 was:0.1263378078706507 :0.10399362067213405 +the:0.7633752216079451 this:0.11147099029937677 his:0.06947110597069472 land:0.03370907411267589 :0.021973608009307425 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +toward:0.31086398792900066 to:0.23934238884780626 for:0.2164905770465813 before:0.12328315556626945 :0.11001989061034244 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4735598375305276 between:0.25594960955429 &:0.10493755343841357 to:0.0933031195095576 :0.07224987996721133 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +and:0.45758509261952196 in:0.1822243361554901 but:0.13165210785957507 after:0.13078674354873862 :0.0977517198166741 +or:0.37402755709555174 a:0.3291830766435895 and:0.17956009158450584 in:0.09075135579840699 :0.026477918877945802 +other:0.6223233649152056 two:0.12764259211539206 some:0.10074477723759545 three:0.07515454800407054 :0.07413471772773651 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3665980939090354 are:0.19006053537092002 thereon,:0.1804579167909239 thereon:0.15395141859210032 :0.1089320353370203 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.21617478398963663 you:0.2111628383809547 we:0.20307935677728725 he:0.19391305866840952 :0.175669962183712 +he:0.40814896130360456 never:0.24816465550116948 lie:0.13100631187299938 ever:0.11921109720269353 :0.09346897411953296 +the:0.7386153658028686 an:0.18823184547125563 said:0.0417734054052507 tbe:0.016452410747323957 :0.014926972573301 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.36340086628579665 to:0.23438477458732046 of:0.16411599856047165 all:0.12078877542460353 :0.11730958514180773 +a:0.6435322690816193 the:0.14609595648189713 of:0.08581971120911216 this:0.06362289689899266 :0.06092916632837866 +so:0.40088062608467495 how:0.15920387449882384 the:0.15460638598438162 in:0.14465351953726924 :0.1406555938948503 +J:0.45560548771982773 A:0.3605915778535604 T:0.06739241850484448 P:0.06504370640906787 :0.051366809512699715 +¬:0.40843326369623933 ac-:0.2814926674588145 ac­:0.1478414671139214 ac:0.10582192894690988 :0.05641067278411499 +removed:0.2413352510695816 willing:0.2033628487131382 confined:0.19786945523356242 unable:0.18552320678064957 :0.1719092382030681 +of:0.6449706705538802 or:0.18574915737541203 Hundred:0.09265235628405685 thousand:0.0438899789974672 :0.03273783678918349 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4961491480962572 county:0.2167910914657569 company:0.13077826992801056 ore:0.0809500024941976 :0.07533148801577778 +the:0.7427881492083666 about:0.09018038602093667 these:0.08361844054474116 section:0.04567486611077412 :0.03773815811518141 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +his:0.6114473244966706 her:0.13942861123629735 to:0.10275855079225854 after:0.08792065985550593 :0.058444853619267524 +the:0.8748814721639289 this:0.046617777938132154 an:0.03004467487740711 tho:0.029348313114212113 :0.019107761906319787 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.2976513809674839 had:0.25773811866797164 saw:0.2030265933993208 was:0.14310272133790883 :0.09848118562731487 +came:0.3078911000110205 come:0.20454167040124577 are:0.20193654768573135 were:0.16313089969071307 :0.12249978221128925 +he:0.53661700697365 be:0.19319517020803367 they:0.12066515908473212 has:0.08141906290421917 :0.0681036008293649 +is:0.48857926275786634 does:0.16933614279448253 was:0.1519676047169747 did:0.10502954847532744 :0.08508744125534902 +I:0.3899101109384214 he:0.34342470875376857 they:0.1224505042964285 she:0.07669490482647304 :0.0675197711849086 +person:0.38217631561993404 other:0.1867795207820188 one:0.16574065025792084 time:0.1453689641933797 :0.1199345491467466 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.31956123596302205 that:0.24562922725583497 in:0.16247797620830112 which:0.14011324524419969 :0.13221831532864214 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +It:0.2563175385936893 who:0.22761354395858377 and:0.18847577165582322 Jones:0.17731660700897486 :0.15027653878292888 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.3140669146222644 they:0.24102134242915607 there:0.16187409967810254 he:0.15288449132689638 :0.1301531519435807 +gradually:0.25815184920547796 so:0.22227216096229183 he:0.18142608018472936 be:0.16926804979383894 :0.16888185985366203 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.4986564103336822 is:0.19665896811718578 were:0.17790930224562274 will:0.06401407345665924 :0.06276124584684994 +to:0.5799691973438664 the:0.15668814395405173 a:0.14756358489309604 and:0.062368128341803566 :0.05341094546718216 +and:0.8949520155827599 of:0.043675551768719074 the:0.02363849244933312 was:0.021194476898986465 :0.016539463300201417 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.37813763840934006 by:0.34040266434306427 that:0.10376582879893324 in:0.0955573280552489 :0.08213654039341343 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8186990135138588 in:0.05749648123941857 and:0.05070776556032348 to:0.048924107310338596 :0.02417263237606056 +has:0.6442290170346326 had:0.20478386755762992 have:0.08284019665059424 having:0.058732888433850085 :0.009414030323293136 +time:0.48110766474368916 world.:0.13632204793128486 country.:0.13336293299084215 first:0.13281926250208542 :0.11638809183209846 +life.:0.41625486362226805 her.:0.23274350691220486 man.:0.14168249205524416 again.:0.11702489725244139 :0.09229424015784156 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +H:0.2742666894110321 C:0.22005977501731808 E:0.1710674568919423 F:0.16787259649828906 :0.16673348218141848 +be:0.6077574528246437 make:0.13739689136006603 have:0.08956848017209505 not:0.08934165412800639 :0.0759355215151889 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.48989741915878066 stocks:0.2649381979809411 merchant:0.1162650894626019 part:0.06561628163587445 :0.06328301176180184 +10:0.38560758763623254 9:0.17702561820644344 ten:0.17686411418853204 4:0.1320377492771865 :0.1284649306916055 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +having:0.47907289257578245 he:0.2800166528890871 being:0.09564820188139779 they:0.08123637220595258 :0.06402588044777995 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +known:0.24921887866720357 adapted:0.24116836512146847 cared:0.20609104885885363 enough:0.16239459639780426 :0.14112711095467023 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +property:0.445094362838031 privileges:0.16872177788776668 premises:0.1434245189065469 estate:0.12232241312947063 :0.12043692723818493 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.2750879188148647 to:0.2365306790735926 in:0.16419374082521848 of:0.1641794643798518 :0.1600081969064723 +much:0.4747377817002089 day:0.15884568732714907 best:0.14455649174629648 few:0.11286922476895608 :0.10899081445738946 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.6729550714087694 the:0.1641539972088615 in:0.09250315610534261 their:0.04062137810225555 :0.029766397174770972 +and:0.38364751895909743 of:0.2858238060749097 for:0.14070468925931384 far:0.1166344196329433 :0.0731895660737357 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.4716826463561209 the:0.379256026957951 this:0.07069151834615821 for:0.04935654339516728 :0.029013264944602664 +of:0.9668920900808565 ot:0.019526467371129723 ol:0.008159275647790249 oi:0.0028079486207335134 :0.002614218279490062 +turned:0.30369523134339915 thrown:0.19901304446588616 all:0.18622719829846085 swept:0.16220210189269132 :0.14886242399956257 +sell:0.30280226671861676 be:0.2451117382724518 look:0.22976687892390676 meet:0.12830192880382135 :0.09401718728120333 +thorough:0.517552663288096 careful:0.31535499084504376 vigorous:0.09129701723716083 powerful:0.04678585287878046 :0.029009475750918938 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.2617572464191035 made:0.22823278566478852 come:0.20429536100632267 gone:0.17922235903234837 :0.1264922478774368 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +present:0.2810399190364747 people:0.25022508213550737 country:0.21637830762579582 arrival:0.13156743213164773 :0.12078925907057445 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +.:0.9406000548277571 L:0.023304187428533116 B:0.013214917276401532 W:0.011706451346515719 :0.011174389120792471 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.8910461081738427 already:0.05598133865268058 so:0.030566534099045837 ever:0.013343361533057478 :0.009062657541373436 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.41420816671259897 the:0.21093214177763528 this:0.1377823187954309 to:0.12760125423255872 :0.10947611848177606 +in:0.21881845627669896 with:0.2135203138977869 for:0.19723705000767125 that:0.18960002467059017 :0.18082415514725278 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +County:0.25238105257050786 deed:0.24715346637445168 county:0.17341080776496423 Board:0.16569919638178154 :0.16135547690829463 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.3915353644497493 may:0.22454316596837628 would:0.21213816699358734 should:0.08678679498341482 :0.08499650760487226 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.6696954370370573 made:0.10823892216365727 had:0.07808331738989421 not:0.07378010246583468 :0.07020222094355666 +following:0.3222519075662959 above:0.23934315289722324 only:0.21630631010368329 answer:0.11426558325615231 :0.10783304617664517 +that:0.24315715600267454 when:0.2124997071781429 and:0.189394648862917 because:0.18458564644222397 :0.17036284151404174 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +years.:0.4922542994324403 hours.:0.16544827807143778 days.:0.14611489162386618 months.:0.11907900236310484 :0.07710352850915095 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6559676808752368 tho:0.17051077402916542 a:0.07252825075972769 at:0.05251663839441009 :0.04847665594146008 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4562686099275969 on:0.24967751313681452 in:0.12124995551191994 reserve:0.10981628122064535 :0.06298764020302322 +the:0.8315374768962613 this:0.059192763177896804 his:0.04609430816808372 tho:0.04428519469334866 :0.018890257064409468 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.4034003574492826 had:0.243143355175947 is:0.20933228350494443 has:0.10109724189284679 :0.043026761976979196 +That:0.3515254744222052 For:0.2403940763951173 President,:0.235933304971671 1.:0.08692708848374114 :0.08522005572726533 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.6123662562211499 make:0.1287415409118293 not:0.10712252326114452 have:0.08437450903561178 :0.06739517057026446 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +large:0.65396877539161 small:0.1645326205420422 larger:0.11422659592968291 new:0.03645964448028044 :0.03081236365638437 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +trict:0.3898440895652623 charge:0.33286433045741887 ease:0.12538624972360377 position:0.0792610707452254 :0.07264425950848949 +by:0.36487258691943286 in:0.23294597490259827 to:0.17189478842600422 of:0.12416395067389892 :0.10612269907806562 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +seem:0.24502219568648895 only:0.23220317799461734 likely:0.183776612839227 want:0.17868271241138023 :0.16031530106828637 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.41729895784969423 a:0.19081964104501425 been:0.1539285771895887 to:0.14926344863259602 :0.08868937528310673 +they:0.45178790902969207 there:0.2626815524029223 we:0.15209295702396872 who:0.08191310601524777 :0.051524475528169224 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +willing:0.2574168564203219 going:0.24215777082517712 not:0.1940711234741652 able:0.16218887352176606 :0.14416537575856986 +the:0.792438779448615 a:0.1071646712462463 tho:0.0376265472432958 to:0.03487947888841501 :0.02789052317342776 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.43272633386276715 and:0.4211201805142102 is:0.055670197103847255 was:0.046588908470078225 :0.043894380049097306 +will:0.3607559348687838 to:0.33804772968518565 may:0.12027600656108864 would:0.09933233001776462 :0.08158799886717713 +not:0.5622222879017572 very:0.23019926822979703 being:0.08296450122663326 more:0.06636823556742154 :0.058245707074391015 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +evident:0.46330137959982715 a:0.2696134172252526 growing:0.13277003763039974 and:0.07186765990724414 :0.06244750563727644 +was:0.6183456745513505 is:0.2599517636865023 had:0.06159357955209474 has:0.03152586800075191 :0.0285831142093006 +to:0.3332311597572575 or:0.3177367904456634 who:0.1977149185267805 is:0.08109672650577342 :0.07022040476452523 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.2772453388601207 funeral:0.18242894609454846 result:0.18231352872428724 bill:0.18213413797425754 :0.17587804834678616 +appear:0.23614286470578708 care:0.22988094841738002 long:0.21059833091763272 be:0.19721940977764435 :0.12615844618155575 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +use:0.30833286506898255 corner:0.19176613001223175 one:0.190922625727074 be:0.1711156462919077 :0.137862732899804 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +right:0.25713588352461564 reason:0.19943811793838703 attempt:0.19294083764245654 desire:0.18478369497441377 :0.16570146592012697 +make:0.34322138585111767 keep:0.19350419037159775 be:0.1667581700847247 give:0.153157434332911 :0.14335881935964903 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +headed:0.4095916089207946 and:0.29776675636769134 cured:0.12100076657971777 but:0.10286957108701891 :0.06877129704477736 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8680760572698037 its:0.06239117643753748 tho:0.027308611958396005 a:0.026893822923623936 :0.01533033141063875 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +would:0.5238413505630494 will:0.16049233794060636 may:0.11609740330123607 might:0.10224749104993114 :0.09732141714517711 +confidence:0.4539202430218915 harmony:0.2124416826464859 health:0.1176833214902458 right:0.11283762951409912 :0.10311712332727764 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +*:0.6335567604776448 t:0.12991655099273666 I:0.09947748245775824 i:0.07018740175106998 :0.06686180432079034 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.9902480742061723 lo:0.0034721273488701326 should:0.0028598670105081047 that:0.0018889531728420242 :0.0015309782616072193 +was:0.23434393197503847 thought:0.20620144443809899 found:0.20177002368991256 says:0.19001873820924878 :0.1676658616877014 +fact:0.4079436409412021 certain:0.2616383158220535 man:0.13243075593194786 statement:0.1027480400224104 :0.0952392472823861 +the:0.47211834348797177 a:0.27038995094609114 this:0.1746773119410774 his:0.04282427197874684 :0.039990121646112806 +the:0.8750793394225367 on:0.06236387435862917 tho:0.030373611268656106 he:0.01831198612564714 :0.013871188824530789 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +well:0.4801413782676198 duty:0.1670048834673525 and:0.16402967694724338 them:0.1022811158288907 :0.08654294548889366 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +face:0.2336451963365204 attitude:0.22153308215721287 eyes:0.21152177290394242 way:0.20104012911732672 :0.13225981948499763 +himself:0.27145172592731787 in:0.2294981426815026 him:0.18477425675874123 out:0.15995877512658682 :0.15431709950585146 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.2572830720669783 we:0.2214358647302447 which:0.20246436737040588 that:0.16587105536417296 :0.15294564046819822 +coming:0.5189409571399406 work:0.16890948647240522 p:0.13258823003236417 door:0.09042037807887453 :0.08914094827641546 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.3605071166223901 the:0.3273497366189582 land:0.15565138225020955 life:0.08787882178618889 :0.06861294272225311 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +least:0.30346277913096087 once:0.22704067485628962 all:0.16120658003388594 time:0.16071439731003767 :0.14757556866882582 +was:0.33500616456097737 thereon:0.2406427413049799 that:0.203597219305462 and:0.12058061417775318 :0.10017326065082739 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +it:0.3345183174168167 and:0.24714894407362753 we:0.18570814807341907 which:0.1549526799330556 :0.07767191050308112 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +one:0.26237072888837515 made:0.25226894450947995 subject:0.17167341117977733 guilty:0.16111728972119063 :0.152569625701177 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.37488921933364705 it:0.27224155347087403 there:0.1963769976258048 It:0.08096658103682143 :0.07552564853285268 +the:0.5121570964961651 a:0.1754471717508557 our:0.1480836782025215 this:0.13569082722109105 :0.028621226329366676 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +once:0.33272799926555374 right:0.23623250683678043 least:0.1990716453629417 home:0.12559821484433517 :0.10636963369038907 +bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 +of:0.4928433870300212 the:0.2783998244294658 with:0.08081645061547259 her:0.07480940982054551 :0.0731309281044948 +and:0.5115714801011005 is:0.17760069025893657 occupied:0.11371833938002456 that:0.10323826676118968 :0.09387122349874862 +been:0.6770864895993197 become:0.10376088516963276 made:0.09278395929906323 not:0.08333248820113134 :0.043036177730853026 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +friends.:0.26437989214179786 heart.:0.24128204893880434 people.:0.2019778315868766 ?:0.15918448276633573 :0.1331757445661855 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6062890701093439 said:0.14412422144719667 this:0.10620191552242833 an:0.08659211077442244 :0.05679268214660867 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +such:0.5873595725805673 making:0.12760508086118016 that:0.11955801867566028 which:0.09335643505306311 :0.07212089282952913 +committee:0.2895964643256264 work:0.2057180801513136 Committee:0.20503680541207173 city:0.1636414949199141 :0.13600715519107417 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.3776742239653584 and:0.23643017911662997 in:0.16378869354195932 to:0.12846058976268307 :0.09364631361336927 +formerly:0.45330763827259823 now:0.2345623763085418 was:0.13076450678494936 and:0.0942442515760563 :0.08712122705785431 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.3181147111053525 had:0.2472873859482227 his:0.23383755742823778 the:0.12887608318570012 :0.07188426233248695 +world:0.2902661748371584 country:0.2222473979389011 city:0.1773477177489124 government:0.17433420460373003 :0.135804504871298 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +hundred:0.2502767045823328 large:0.21688536435617353 man:0.20733062651268858 good:0.18723035529853752 :0.13827694925026754 +determine:0.28078757344469596 know:0.19494027503122693 see:0.1793961666093413 decide:0.17540659578165796 :0.16946938913307782 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +its:0.2389744435740891 no:0.23500870337589527 their:0.18291119177093756 in:0.17436124714882967 :0.16874441413024846 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.3704695411068918 to:0.20612180666002716 made:0.1636549832335105 as:0.1320601070658586 :0.12769356193371195 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.41662388110466797 point:0.16807091662258078 change:0.16004910728055066 part:0.13649054296501914 :0.11876555202718136 +have:0.9452146989626687 havo:0.027200553900302453 not:0.0138003014271372 hare:0.008909072262440868 :0.0048753734474508755 +order:0.32096951448564637 idea:0.21378319647691318 opinion:0.20548700507143666 extent:0.1440961382592008 :0.11566414570680301 +they:0.367147008352228 you:0.20322884831902818 there:0.18207251018827053 we:0.14875603466796475 :0.09879559847250863 +country.:0.2641640877486444 world.:0.24021016282613272 city.:0.20547493348380128 day.:0.15109692473092562 :0.1390538912104961 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.27704312744361254 likely:0.2371434664494363 entitled:0.21210164823881894 claimed:0.14212117221906162 :0.13159058564907056 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.2842887759355088 for:0.23966749793368425 with:0.2093240814076171 to:0.1877915581909425 :0.0789280865322473 +not:0.3258256191612416 would:0.21096476901234132 to:0.2065412034586143 that:0.1608403192211142 :0.09582808914668857 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.6853828547018868 is:0.13721287484661746 in:0.07770582474057589 by:0.057909857411274045 :0.04178858829964592 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +auction:0.4775723041848599 auction,:0.4324391734391834 attention:0.04234517025357027 road:0.024108919992915954 :0.02353443212947044 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7514205982912769 in:0.0929430286020968 to:0.0584402075431167 for:0.05306588855244359 :0.04413027701106589 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.33063986237874765 on:0.24446801471162596 with:0.1593534146044323 upon:0.14649066596127328 :0.11904804234392079 +extra:0.2982922818159057 attempt:0.20161822742808908 estimated:0.18805928082216805 hour:0.16793832863855016 :0.144091881295287 +newspaper:0.9743008797114375 other:0.008361183950598716 of:0.006436335194820014 papers:0.005508059819804291 :0.005393541323339475 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +convenient:0.24647945279476632 popular:0.20393129519307798 attractive:0.19452989852467317 per-:0.18077028325731306 :0.17428907023016946 +be:0.8200572147766793 have:0.12345056949666738 bo:0.045621077382893054 stand:0.006851453857742672 :0.0040196844860175985 +for:0.5350373686006112 to:0.18996115680468642 at:0.13342543310857255 return:0.08778212941931075 :0.05379391206681903 +to:0.33247699891677235 by:0.22313930047406022 that:0.2176613447642903 from:0.12729641349975934 :0.09942594234511794 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7898977493110874 this:0.08734132287535187 a:0.053911609897468016 our:0.04178540629773671 :0.027063911618356112 +be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 +wit::0.3021939301188946 them.:0.20649221786076075 him.:0.20124812714149273 it.:0.17824690288787012 :0.11181882199098189 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.3313115994800045 the:0.24819046202112177 that:0.1819323101312003 him:0.1263915568572921 :0.11217407151038133 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +lands:0.3927178345427627 region:0.32509209820041096 one:0.10296728726843149 land:0.09666582932264671 :0.08255695066574815 +any:0.38818998037730224 all:0.25307992818444913 the:0.16298141079590345 some:0.13490364125148116 :0.06084503939086412 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +use:0.30833286506898255 corner:0.19176613001223175 one:0.190922625727074 be:0.1711156462919077 :0.137862732899804 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +so:0.5183947640019982 as:0.17842112499421459 how:0.1515238829270866 very:0.0811220074988877 :0.07053822057781269 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +W:0.2383259664294527 W.:0.23148709423700134 E:0.1933025272424758 .:0.172567261454911 :0.1643171506361593 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.3212276234486541 day:0.1865571679943897 part:0.17540911239191764 kind:0.17376886165058528 :0.14303723451445333 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.2779901826267672 arrested:0.19980263295671252 born:0.1868817776721978 made,:0.17161346003385894 :0.16371194671046363 +city:0.22369456742961225 amount:0.20773323631999405 day:0.2060255143945402 part:0.18175789781806492 :0.18078878403778864 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6056145057753473 a:0.20416927104126287 his:0.09030494125078836 all:0.06071601915349468 :0.03919526277910695 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5857643433673505 all:0.23471331811804108 full:0.08418931931600768 his:0.05614828062079692 :0.039184738577803774 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +at:0.8484343881478553 the:0.12441661308468524 of:0.010623753152065336 nt:0.010289185690228542 :0.006236059925165587 +the:0.4525380678995489 why:0.30763718457375433 to:0.10303718661931978 that:0.08380856291406276 :0.052978997993314354 +services:0.26211120009917893 took:0.25397751577079464 service:0.21510876262819253 march:0.13869472479429001 :0.13010779670754394 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +less,:0.47044888399138846 otherwise,:0.1387714358528358 two:0.1367855454825271 not,:0.1270223469679346 :0.12697178770531398 +it:0.30108265378603943 well:0.2566918497019301 much:0.15878947967410206 provided:0.14388689542299365 :0.13954912141493467 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.6435910103317871 or:0.11437428792248529 power.:0.09516574181714828 world.:0.07772626866470182 :0.06914269126387762 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Smith,:0.5775642549727631 Jones,:0.1263579552000939 Miller,:0.11670146717184908 Johnson,:0.09938993892421706 :0.07998638373107678 +the:0.6537299840920071 that:0.1459637010542504 this:0.13853460093513795 of:0.03634885844632081 :0.025422855472283575 +the:0.8500759707064951 an:0.09303125350542522 tho:0.031428979906403476 our:0.012862081335326361 :0.012601714546349866 +would:0.35933316628393225 really:0.17317540293769265 in:0.16313970758269247 will:0.1624844760579194 :0.1418672471377631 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +level:0.40058097981227486 ball:0.21254267349398648 line:0.13557145399755102 front:0.13370221901694626 :0.11760267367924122 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.9944291567953177 lo:0.002704800470600978 and:0.0015446155685985559 tc:0.0007978015687324129 :0.0005236255967503947 +have:0.3068407897604979 was:0.26446371473580094 saw:0.1999439853594232 had:0.12822860893463942 :0.1005229012096385 +the:0.7714246009261777 our:0.1262849161900414 American:0.047882467941780374 tho:0.030409462826134034 :0.023998552115866656 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +matter:0.7466812602603079 state:0.07758142377309092 world:0.06671078435704976 only:0.05518718557032296 :0.05383934603922859 +a:0.548354502463293 the:0.3780408453359887 his:0.03384135793420944 their:0.021138497417183464 :0.018624796849325418 +made.:0.5429558057368005 done.:0.27694589663818947 used.:0.08277414522773713 there.:0.05437055464406389 :0.04295359775320908 +is:0.27742021650572574 and:0.23163612908378473 was:0.2102062877709678 enough:0.19485938406376577 :0.08587798257575606 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time,:0.31130619608613036 moment,:0.22448202802414757 man,:0.1637014694013994 week,:0.15733833916810028 :0.14317196732022253 +his:0.29779152044792967 the:0.25690857216033114 100:0.16542697333093123 six:0.14473551387813968 :0.13513742018266825 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +water:0.36006193184558044 full:0.1847761960054005 same:0.16674119128853984 great:0.149535312025039 :0.1388853688354403 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8396897632358391 is:0.05015077796562084 and:0.04795949897092769 as:0.03394040672205593 :0.028259553105556483 +of:0.43150498821046746 in:0.21731407309134587 to:0.1581162757562424 with:0.1032066164063016 :0.08985804653564264 +dollars:0.24807875783260766 ten:0.24456113467699467 six:0.19874383274995844 the:0.15771210253068021 :0.15090417220975896 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +country.:0.3627292507412835 system.:0.22769384125874095 world.:0.1416859692938387 people.:0.13702363625176867 :0.13086730245436817 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7112499954645611 this:0.16421015469493605 his:0.08072926378291297 my:0.02547069822542984 :0.018339887832160093 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +people:0.3142381763988829 citizens:0.22439818109797813 State:0.15677548772701233 midst:0.15294955770760543 :0.15163859706852117 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.42094087921141643 one:0.19108915259175477 this:0.16807444476116662 that:0.15329232747789923 :0.06660319595776291 +hundred:0.5024731283127128 several:0.2840095189433405 other:0.10077098063740517 ninety:0.06136751130622226 :0.051378860800319184 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +wife:0.4369006917939258 wife,:0.1525418985079288 life:0.1515419042429613 head:0.13521155646257982 :0.1238039489926044 +born:0.27909499281399636 found:0.20874192851455553 made:0.19950402527668518 held:0.16262582102093442 :0.15003323237382857 +are:0.2835211042988689 will:0.20888285552480323 did:0.18221101144147236 and:0.17335008021149545 :0.15203494852336005 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +never:0.3127497796039304 who:0.19510793459458348 do:0.17439622656699774 thought:0.1713332844084562 :0.14641277482603213 +wit::0.47991642393591866 him.:0.16890638827287094 them.:0.14528239869578458 it.:0.12005476036668801 :0.0858400287287379 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +same:0.5021798614196137 best:0.2373263260366396 only:0.10366196102391946 other:0.09016064288426916 :0.0666712086355583 +of:0.805906877614314 at:0.16262239027170355 ot:0.011437184787861055 on:0.010663714248209648 :0.009369833077911801 +order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.36661699050316654 they:0.2873604946007754 I:0.1475249797067974 she:0.12514304324036915 :0.07335449194889156 +day:0.5354411331658363 class:0.14493276505926866 part:0.13813235350401537 time:0.10325276153268695 :0.07824098673819259 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +.:0.41176152799706495 -:0.2814478598104181 J:0.12267571581657905 possible.:0.10560506433012945 :0.07850983204580841 +and:0.41922153449207916 Wilson:0.17325438136355278 Smith:0.1453692814817751 Johnson:0.13620852309898074 :0.12594627956361226 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.45403032740345467 if:0.18953733533818778 when:0.16657015543950082 as:0.11176096867417942 :0.07810121314467741 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.3402887161763415 at:0.25376707577475355 by:0.18241138190780187 on:0.16817624823495034 :0.055356577906152796 +and:0.5239216877119949 was:0.20325857921365528 is:0.10941422831595043 off:0.0904086865446726 :0.07299681821372697 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +from:0.23971064769513492 on:0.23228387853181645 than:0.22712868173015827 in:0.15980446234180876 :0.14107232970108163 +it.:0.3164310613675328 them.:0.28214395643487694 him.:0.23233322794109096 home.:0.10127792150385417 :0.06781383275264516 +the:0.8131408334857341 a:0.06844890323894556 his:0.060335012538510036 tho:0.031066498425004255 :0.027008752311806057 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7822692838238814 and:0.07725935824710008 in:0.06693047619232188 to:0.037503278574070466 :0.03603760316262623 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.5769593364065818 to:0.14000374998965626 would:0.11049140533428432 will:0.08661601163430363 :0.08592949663517369 +in:0.35835328448611553 a:0.2345993435554344 the:0.22588444997149462 such:0.09825378517530368 :0.08290913681165164 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5932643890823308 or:0.1424284545352993 to:0.09704435289380342 and:0.08751616432533701 :0.07974663916322952 +of:0.5577105040904291 he:0.19683501667634576 the:0.17395373259772343 she:0.038049780061598114 :0.03345096657390363 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.27843881819871785 amount:0.20358306606175863 payment:0.18315006895948913 State:0.1691924639092322 :0.1656355828708021 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +years,:0.3125645420769201 days:0.2776040800441834 years:0.225843969409792 days,:0.10474836684471325 :0.07923904162439131 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.35592266086034474 point:0.24130479517609796 change:0.14696324754392406 part:0.1304589583290741 :0.125350338090559 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9039052576989579 tho:0.039504873557758745 make:0.021419691300778268 tbe:0.01884804649522814 :0.01632213094727685 +is:0.5620336842401474 was:0.3018200746512986 Is:0.0675599603975823 are:0.04307090633462361 :0.02551537437634794 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8483194736642966 a:0.05220430671045231 this:0.04880910931200348 tho:0.030356296564115093 :0.020310813749132486 +and:0.41569243562251534 questions:0.33489569802978164 is:0.08785006956045328 has:0.0822702622335078 :0.07929153455374192 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +has:0.6582281119805335 than:0.10666290065795374 had:0.08572801240088136 will:0.08170970099657468 :0.06767127396405681 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7529415915074488 their:0.09076453628896729 been:0.05465586954943909 thought:0.0520202750610265 :0.04961772759311831 +that:0.6093014581039848 as:0.1494121802645019 to:0.09477254613442891 far:0.07643464838144164 :0.07007916711564267 +will:0.36388420921439624 would:0.1838385363797403 may:0.18088962505809225 can:0.14291700862641105 :0.12847062072136012 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +believed:0.2640500489021859 so:0.20969041137632236 probable:0.1908103524339782 stated:0.17261078774836847 :0.16283839953914506 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.9037422977833378 tho:0.033004200602529454 said:0.028330158855514577 a:0.018642920824866075 :0.016280421933752093 +young:0.2995569221739687 a:0.21971085056891893 No:0.20713170589457405 the:0.14299536974704588 :0.1306051516154925 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +thus:0.2567955450363673 the:0.2508936655545416 in:0.21039328437462398 thereby:0.14387067639654524 :0.13804682863792175 +made:0.2779901826267672 arrested:0.19980263295671252 born:0.1868817776721978 made,:0.17161346003385894 :0.16371194671046363 +is:0.31350430437460475 country:0.2332816191961504 country,:0.19876019060788022 act,:0.12884056855937157 :0.12561331726199307 +that:0.7291021288953461 which:0.0822393287919067 as:0.06786696601012658 what:0.06721635703366416 :0.053575219268956475 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +taken:0.35632257030537795 picked:0.19691759124611916 made:0.1783983677547279 come:0.1530931977175917 :0.11526827297618335 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +railroad:0.4503789647180898 new:0.23281763101713893 good:0.17365077392563028 telephone:0.0732831386953048 :0.06986949164383606 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6608859544939015 said:0.19879765914483014 a:0.08558657806521656 his:0.02785585922986255 :0.026873949066189153 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +if:0.32730349934027386 when:0.2765675181097611 what:0.16778784227154414 that:0.12414200470010879 :0.10419913557831205 +white:0.2734873655868955 one:0.23479422716521933 a:0.19080558251537025 young:0.17906367239032292 :0.12184915234219186 +the:0.4698206566660799 is:0.18080529180522673 he:0.1418256984202924 it:0.10822671499319475 :0.09932163811520608 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +good:0.44686674987319497 very:0.29017517737835963 work:0.14340512126853358 working:0.0720388085550229 :0.04751414292488896 +the:0.9337795843134823 tho:0.02991105008140766 tbe:0.015698535753133066 this:0.012216747934094092 :0.00839408191788284 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +M:0.27851155114256093 M.:0.23150652445963843 S:0.18463485955753103 C:0.16651064907207372 :0.13883641576819583 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +from:0.4214607613883391 after:0.18546472458326765 that:0.16416677518740808 to:0.12686819265537133 :0.10203954618561384 +covered:0.24909869742040106 cover:0.24358160423398412 played:0.18653191150881684 ease:0.1859747229358934 :0.1348130639009046 +are:0.24192091656990827 did:0.23585760093631963 does:0.18032476239929154 had:0.17450355585688496 :0.16739316423759557 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4171081479824778 to:0.40966387234426344 in:0.08042307699311893 on:0.05068637255206167 :0.0421185301280781 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ends:0.3172224886049831 will:0.21033146004540001 first:0.19749919136964414 best:0.1439995396370599 :0.13094732034291273 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.3172132515378427 due:0.24133849395393464 made,:0.1740560679210998 done,:0.1432970708610888 :0.124095115726034 +country:0.2883707845392758 year:0.257460019285792 letter:0.1805969727034635 way:0.13760588454372008 :0.1359663389277486 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +entrance:0.3971512928517299 line:0.18763668504028205 object:0.1496089976092981 road:0.1413880684948727 :0.12421495600381738 +The:0.2763068301134219 His:0.22092504814180147 and:0.21505369509830594 his:0.17815142525486588 :0.10956300139160483 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.3680582932858102 how:0.19958474448119776 from:0.18624374412378705 that:0.12378612162611574 :0.12232709648308925 +Dakota,:0.34873823889047784 Carolina:0.2530432394969562 Carolina,:0.21907469566530668 Dakota:0.09703092766174087 :0.08211289828551852 +fact:0.3280831464444268 time:0.2278107091426005 city:0.15422984351585659 present:0.14822898040931445 :0.1416473204878017 +they:0.46452278395430474 you:0.2010354758438952 we:0.19568381067313978 it:0.10903371116275425 :0.029724218365906035 +able:0.4081416956615866 made:0.22572806479799212 unable:0.14330007169873005 compelled:0.1131605658418616 :0.10966960199982966 +it,:0.2896989706298191 him,:0.2553604816484152 it;:0.18932306648149066 ;:0.1645142915529774 :0.10110318968729771 +said:0.2690156192447461 him:0.23174835335500202 her:0.16867861984690805 going:0.16608102838888647 :0.1644763791644572 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +J.:0.2695927180227289 John:0.24867270776624778 James:0.19708440668445246 W.:0.16679622997255586 :0.11785393755401508 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.29238239897739265 and:0.28399133022703293 it:0.20176613682396383 Notice:0.12095350047549024 :0.10090663349612043 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +gress:0.914224174325943 way:0.05026624713202548 dition:0.015609909587135968 go:0.011204109323728863 :0.008695559631166517 +caused:0.33424924559565483 in:0.21896153577775165 to:0.20742445170289484 for:0.13282021289244536 :0.10654455403125328 +it:0.3060325733268504 as:0.2117445357599935 owing:0.18232142498893752 not:0.15224176984016674 :0.1476596960840518 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +trict:0.4178490421420346 charge:0.3151819813687058 ease:0.12431897451604268 posed:0.0730832806351111 :0.06956672133810582 +and:0.3787124037641557 of:0.2452067198017316 stated:0.1412505838855732 believe:0.11891249315542439 :0.11591779939311495 +this:0.6050706021256923 the:0.20662591376690945 said:0.12477968112218596 an:0.041830637232953424 :0.021693165752258988 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.5442025402114087 he:0.13294250085344705 there:0.11503798773275319 work:0.1133462851238558 :0.09447068607853541 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3218287919104678 work:0.248780884444118 early:0.19387969306158465 taking:0.1334007956166008 :0.10210983496722868 +and:0.3730165837394331 which:0.29804557317294256 he:0.12839977352667864 who:0.12312552040218382 :0.07741254915876196 +city:0.22369456742961225 amount:0.20773323631999405 day:0.2060255143945402 part:0.18175789781806492 :0.18078878403778864 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +though:0.4792830869510942 t:0.17040628707399966 to:0.13417144960064373 I:0.12756852476383115 :0.08857065161043133 +account:0.5364740567608858 behalf:0.13550991952581004 board:0.1354428863244095 one:0.11086672590820994 :0.0817064114806847 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +unable:0.273177137729641 compelled:0.21489434095224683 going:0.1778442415117511 able:0.17407986983570004 :0.16000440997066107 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +church:0.28383954889874485 and:0.222831918227415 side:0.1870247200446475 E:0.15487111474708193 :0.15143269808211077 +before:0.2877254288099252 as:0.2822876087970764 at:0.23311496470897067 in:0.10822670250764885 :0.088645295176379 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.3254682517342364 in:0.22755953527330067 as:0.1668380816812941 among:0.14104073246773274 :0.1390933988434359 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.719121051783987 this:0.13346648222429724 his:0.057264884994407975 a:0.046900146667943864 :0.04324743432936403 +are:0.2821137526033365 contained:0.2708813187551497 and:0.19633762715820832 exist:0.1442542692605657 :0.10641303222273973 +of:0.9206817252383912 to:0.03019070660857513 and:0.02317612389489635 with:0.014432375122516989 :0.011519069135620298 +seem:0.36776571687006265 be:0.2102324364841674 have:0.15893568314002243 not:0.13610036708504536 :0.1269657964207023 +now:0.3397150866326594 not:0.23384014546633738 situated:0.16031857120743634 made:0.13936289499483412 :0.12676330169873284 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +up:0.6734776265562549 on:0.10292708782311248 and:0.08482277628412639 for:0.06961497298464314 :0.069157536351863 +the:0.36970223206359776 good:0.3218931916212152 their:0.13417316000395882 his:0.09521051229703222 :0.079020904014196 +to:0.9505147902632042 and:0.019610042874957344 will:0.018029812028139133 would:0.007077035745153596 :0.004768319088545897 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +to:0.29704278579563553 I:0.28459647214918654 we:0.16128258043708424 they:0.1402082573658677 :0.11686990425222599 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9254359716099344 tho:0.030045153091815158 very:0.020312723723059214 tbe:0.013541899098745681 :0.010664252476445882 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +States,:0.5099891979766389 States:0.4788316328716074 State:0.004850384295480244 State,:0.0033225392638069917 :0.003006245592466492 +would:0.3457944110127706 could:0.20392947906326875 must:0.1663421593638928 will:0.15729763117769752 :0.1266363193823703 +the:0.7149173781641232 this:0.11359276090197291 what:0.10338972144221273 a:0.04098874376964524 :0.02711139572204609 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.2822903109031107 are:0.22455097646984074 do:0.21830033026657902 could:0.15622563285710084 :0.11863274950336877 +the:0.5518820837242775 a:0.19248958101775632 law:0.10028243726023188 said:0.08584665012447064 :0.06949924787326371 +name:0.5621461404184557 duty:0.15027400294609322 life:0.1309956178685093 business:0.08370351086678203 :0.07288072790015988 +and:0.7734253263806309 of:0.16387812050221676 to:0.021954224235477576 were:0.020928377489288615 :0.01981395139238621 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5673326133967603 other:0.26071175543022607 its:0.11434322904114981 of:0.034373768995570084 :0.023238633136293617 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.3882556477059495 all:0.17624135766700755 Deeds:0.16088807782174416 land:0.15702328380727673 :0.11759163299802199 +that:0.4513898758277822 at:0.2719636642613595 to:0.1254819063086608 by:0.11014869243756902 :0.04101586116462848 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +weak:0.3851742909158658 late:0.2543800798910226 human:0.1241214287683467 full:0.11836327270802476 :0.11796092771673994 +the:0.4368256011860268 his:0.2992014824709439 my:0.12453629970084047 her:0.08952025239868644 :0.04991636424350228 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.48656989467100054 for:0.163578222552624 to:0.15292599923321035 the:0.11286346605586983 :0.0840624174872953 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +country,:0.255714336521947 world,:0.24966444254928408 people,:0.18397271953541283 time,:0.15542103659202702 :0.15522746480132904 +little:0.5002591414492538 short:0.24786894833928783 new:0.09573012620337011 long:0.084577083076218 :0.0715647009318703 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.46692448173281653 the:0.4058909060090027 his:0.05381222966325288 their:0.04032000307096957 :0.03305237952395831 +the:0.9227374214516284 tho:0.046218053078418586 tbe:0.01739675401425532 this:0.007301583571932815 :0.006346187883764798 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +deal:0.3034058178027782 miles:0.28224506828574136 foot:0.15935995178395884 feet:0.14058586095451983 :0.1144033011730018 +been:0.9107609618039544 so:0.031629744654622434 had:0.02781887037672702 more:0.020903056244848936 :0.008887366919847258 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +men:0.4201327429359498 facts:0.16525503234149197 things,:0.15244576450926423 lands:0.13741410403831483 :0.12475235617497915 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +year.:0.3062489959620686 day.:0.24280784303850633 week.:0.16143727824865514 time.:0.14983395257373813 :0.13967193017703175 +way:0.2912281259206911 right:0.22110020146674944 wife:0.1854758735001724 return:0.15819311668545358 :0.1440026824269334 +let:0.3746726365966321 told:0.16981787100161683 give:0.16494045592673376 put:0.1584847331910835 :0.1320843032839338 +with:0.5255987981899227 in:0.1932806706023279 on:0.11879994448178274 at:0.08695486745560908 :0.07536571927035757 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +same:0.27905913715653313 present:0.2491606791809853 State:0.1605905937171786 beginning:0.15878575393041286 :0.15240383601488994 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +purpose:0.20719197122450905 State:0.20592744932833862 day:0.19613414923494918 people:0.19556251276437905 :0.19518391744782418 +duty:0.2372963852281673 people:0.2365533150996598 attention:0.18319710963392397 way:0.18160577983651732 :0.16134741020173163 +Mr.:0.6581399058555627 A:0.15950743797698733 John:0.06388150932469627 Mrs.:0.060521110667399 :0.05795003617535465 +I:0.4812932085455356 then:0.2094917429676473 he:0.12064029701581022 had:0.10335638171712919 :0.08521836975387773 +next:0.5415449290198936 first:0.12776821613248615 third:0.11311421145185634 second:0.10950072116961065 :0.1080719222261533 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +day:0.21394256475108095 part:0.20062940614861025 purpose:0.19798122308807414 amount:0.19514145819312026 :0.1923053478191144 +in:0.5449324158371589 on:0.35524131672417103 In:0.07704536089973521 ou:0.01360368914311002 :0.00917721739582485 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.5728435929344954 in:0.1833948983807339 from:0.121069598874995 by:0.06758351010902072 :0.05510839970075518 +of:0.40582163611151656 and:0.16541250472001617 in:0.15219648273465816 on:0.14147423113272933 :0.13509514530107983 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.39050706970364385 of:0.19975637023280254 a:0.16122140977115978 or:0.15086135608960122 :0.09765379420279272 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +above:0.2753984828752391 time:0.25208737667378567 of:0.200334354233471 following:0.1645277099062733 :0.1076520763112309 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.37222819900174764 in:0.27421066801457084 all:0.13434439594704725 on:0.11729145192866643 :0.10192528510796796 +red:0.31467191972377884 the:0.24809137027037362 bad:0.1623874501864744 of:0.15397404614051302 :0.1208752136788603 +and:0.3029391078341907 resolution:0.29093415897163677 bill:0.15392199119497466 committee:0.12689626721126052 :0.12530847478793752 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.38832010937035966 premises:0.1706576699996867 same:0.16093712772464264 same,:0.1594141546126557 :0.12067093829265534 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6569747451925192 do:0.14352882461985647 Mrs.:0.0738658636939054 Mr.:0.07026591938745778 :0.055364647106261246 +interest:0.5006456124515634 increase:0.2215374326115964 reduction:0.1129610964796651 and:0.10334120234583262 :0.06151465611134238 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +present:0.2691414887343137 same:0.23868593358564386 city:0.18154835764275756 work:0.15912793496289163 :0.1514962850743933 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7229298956240826 his:0.14481445368646118 my:0.04864280700708154 a:0.044202320726532976 :0.03941052295584168 +same:0.28100852377992835 country:0.21997135574273222 world:0.1860091939743425 city:0.1574309443129809 :0.155579982190016 +are:0.29244454637930073 was:0.24291121377054986 were:0.17647461323205593 is:0.14929738335899256 :0.13887224325910089 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4099928831097417 first:0.22880479914247595 a:0.15917805436038301 last:0.13040930816758686 :0.07161495521981241 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +regarded:0.3004545061459762 well:0.25755668023693734 used:0.18391076100161668 known:0.16290202158912828 :0.09517603102634152 +and:0.3957365613926019 was:0.303554509903078 or:0.13578469072640692 born:0.08334077523306666 :0.08158346274484657 +side:0.36512043952883544 day:0.31394079956770965 end:0.13581817229506907 part:0.10001497355056445 :0.08510561505782134 +say:0.38962403882348745 see:0.1896022161155592 show:0.16372765363851213 believe:0.1309843469651658 :0.12606174445727536 +are:0.4127931037762225 were:0.2308888510403035 know:0.13505866756261387 think:0.11259139046023846 :0.10866798716062168 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4283042194265817 within:0.1531477623050012 the:0.1438454842545359 that:0.13815184743512823 :0.13655068657875297 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7290537702411778 this:0.17058474061708973 tho:0.04581871506017417 that:0.032739488959626376 :0.021803285121931748 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +long:0.47744890566703285 far:0.24752940334377052 well:0.09886855966955042 much:0.09370130063199944 :0.08245183068764692 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +posed:0.6199863995661345 duced:0.21642809903098859 claimed:0.07643885433585082 gress:0.047744793593084776 :0.03940185347394131 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +market:0.3005685885462567 report:0.1871917106438374 evidence:0.18391504549775659 result:0.17423491101657546 :0.15408974429557387 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.7122151880278845 woman:0.09979668372981657 few:0.08052638868939767 person:0.061627053992930614 :0.04583468555997057 +be:0.6776507832329091 have:0.1309560592372272 at:0.0671717076470443 make:0.06544532871674885 :0.05877612116607074 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.25423141853692655 I:0.24357168873633825 we:0.19163982161996845 they:0.17363033623964472 :0.136926734867122 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +A.:0.5916112730176197 Mr.:0.1579156405362587 18:0.09685989495838579 August:0.07920755080178364 :0.07440564068595228 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time,:0.2704948862266997 year,:0.2048911973114478 week,:0.18317697614566916 small:0.17726699252353248 :0.16416994779265082 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9206817252383912 to:0.03019070660857513 and:0.02317612389489635 with:0.014432375122516989 :0.011519069135620298 +and:0.32964940146877597 Council:0.2588227302083267 Hall:0.21394960533581867 Hall,:0.10176757410774692 :0.09581068887933179 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +terest:0.4080273395902492 crease:0.2644925468548499 formed:0.127476651685952 roads:0.1077075424502519 :0.09229591941869705 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.415239971949358 when:0.24351363254666716 if:0.1649032503243776 then:0.10067323199724439 :0.07566991318235296 +have:0.25334774014090866 had:0.22451430291214375 are:0.1789461153966648 wish:0.1731210724324909 :0.17007076911779212 +per:0.9986106954772882 par:0.0007944713763550763 35:0.00020614813642586604 25:0.00020162620131560375 :0.00018705880861537622 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.9873686440315345 and:0.00841493699795396 lo:0.0029873919338505163 men:0.0006952577898132217 :0.0005337692468479523 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +his:0.33033777127141617 the:0.2995324771895554 our:0.1527992123581837 their:0.12321388643007893 :0.09411665275076588 +.:0.4893488712683715 .,:0.20712237744665624 at:0.18232169891619623 ,:0.07967953924235148 :0.04152751312642454 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.33743034192453253 that:0.19778329322109606 to:0.17611275048125952 with:0.15037386128037195 :0.13829975309273992 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +voted:0.3706891823988265 mand:0.2640714716277018 based:0.16362746279687507 pressed:0.10119449828077891 :0.10041738489581778 +and:0.2663236782809293 but:0.23086062930684206 with:0.21250690841479808 as:0.19910620481668354 :0.09120257918074706 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.3915353644497493 may:0.22454316596837628 would:0.21213816699358734 should:0.08678679498341482 :0.08499650760487226 +that:0.39337065127017484 when:0.2436577372285483 if:0.1435115544366602 then:0.12776661242254575 :0.09169344464207098 +of:0.7409347416665786 in:0.07220033167192699 during:0.06878088316244745 at:0.06111978007294661 :0.05696426342610048 +the:0.4026711232257502 a:0.23503042207644576 his:0.22699870459347624 its:0.08313322477754789 :0.05216652532677997 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +say:0.38962403882348745 see:0.1896022161155592 show:0.16372765363851213 believe:0.1309843469651658 :0.12606174445727536 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.26445502160625267 be:0.2088375319631481 follow:0.18980840235821264 to:0.17662982280838327 :0.16026922126400334 +and:0.3696586913753579 where:0.23285803224296825 in:0.19964827864043488 for:0.10464891190799348 :0.09318608583324549 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +about:0.4159908291613755 the:0.19820023082144622 only:0.17681867703119647 a:0.10865383917412227 :0.10033642381185959 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +same:0.28586806082776356 i:0.23634852373329435 first:0.17703357609335907 time:0.1552430478850999 :0.14550679146048312 +the:0.8676872983976787 its:0.05304640450151908 tho:0.04063231838296596 their:0.02051956999544142 :0.018114408722394868 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +on:0.5611628486677717 in:0.22393657793805935 upon:0.10243470237182797 of:0.057904466007181285 :0.054561405015159735 +take:0.6568662990540863 not:0.33119989865208926 be:0.005670415427434305 hardly:0.003349520777906414 :0.0029138660884836507 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +fact:0.4079436409412021 certain:0.2616383158220535 man:0.13243075593194786 statement:0.1027480400224104 :0.0952392472823861 +people:0.4845051036449967 same:0.19824107039905886 men:0.14022728286294306 country:0.10165410160191408 :0.0753724414910874 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +said::0.49297646921615323 says::0.2780705190416514 said,:0.1388585777341689 said.:0.059974341502707126 :0.030120092505319315 +his:0.3329927779530486 the:0.3211307057925009 their:0.1536877223709586 her:0.12079411741585626 :0.07139467646763564 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.33649601782069855 engaged:0.27741125290338137 placed:0.15496249722535935 found:0.127012770473925 :0.1041174615766357 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8951025982572647 in:0.07047145457610934 ot:0.013061235873178978 In:0.011326034505357678 :0.010038676788089455 +pain:0.2879724320356133 communication:0.18979767830773292 and:0.18696066858732804 effort:0.1840090698713637 :0.15126015119796196 +been:0.5735427075368285 gone:0.1163691794123549 made:0.11572015386305418 shown:0.11085010206718365 :0.0835178571205787 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +last:0.6302881755568676 at:0.14231942916972076 of:0.10364249378307758 after:0.06311250930025411 :0.06063739219007997 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.7801674345760651 which:0.111762937969622 as:0.062366006322340864 and:0.03150151118374444 :0.014202109948227721 +was:0.30174703189515273 the:0.2738221241187848 in:0.1873117094200991 while:0.13647876158830946 :0.10064037297765395 +business.:0.25136956365510216 one.:0.23395166098990666 city.:0.22092190809398127 success.:0.1530780634912247 :0.14067880376978512 +upon:0.3086130341639344 by:0.2299524473064549 of:0.16714560028820832 on:0.1583908488058413 :0.13589806943556118 +time.:0.2987354517976815 city.:0.21988677486068592 day.:0.20885576581747567 way.:0.1498473920315098 :0.12267461549264716 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.28774033730994975 from:0.22230336362478456 for:0.16815690186636176 on:0.16396612857027687 :0.15783326862862704 +to:0.3642773377609949 of:0.29762015080970344 that:0.2901880872597813 and:0.030054347931100227 :0.01786007623842005 +to:0.8518073235218229 and:0.059257856355786606 could:0.03340703556400602 will:0.02998843765298227 :0.025539346905402143 +been:0.5592994397522594 to:0.16718456031014103 in:0.101165889512026 for:0.08869057053978231 :0.08365953988579117 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +nothing:0.5186898132387141 anything:0.22022735257821827 something:0.10390724186263814 everything:0.09332948707259144 :0.06384610524783825 +be-:0.47590694245614473 be­:0.1945317585115578 be¬:0.1875154292337946 I:0.07786204134101712 :0.06418382845748574 +the:0.6071363289809525 their:0.18041100274631153 his:0.0815821442795781 dry:0.0752570779310378 :0.05561344606212001 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.28774033730994975 from:0.22230336362478456 for:0.16815690186636176 on:0.16396612857027687 :0.15783326862862704 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +States,:0.30936507304832644 States:0.22963124772185872 flour:0.18809030034512855 Pacific:0.18678686539670575 :0.08612651348798049 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.35803860782327174 that:0.26568052367424283 which:0.17046408827187517 fact,:0.13473415691354593 :0.07108262331706426 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +country:0.4167992302169917 week:0.16737842513256151 year:0.14581391953357373 city:0.13859939252850356 :0.13140903258836945 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +morning.:0.563925314701316 afternoon.:0.3576426369010777 evening.:0.053521452525227185 morning:0.016426935645920456 :0.008483660226458588 +Then:0.3648925520726022 When:0.20741028707091294 If:0.17062094904192587 But:0.16423757884141385 :0.09283863297314529 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +you:0.28404043965635273 yet,:0.2393709875559207 I:0.17311408083557364 just:0.1555071876834556 :0.14796730426869736 +up:0.39252927649849073 him:0.21150825526611342 place:0.20927845962286254 them:0.09604189327812625 :0.09064211533440708 +will:0.4917889467023763 may:0.1555141452224058 can:0.13379013824420402 should:0.1095887901578658 :0.1093179796731481 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.43059548938540765 of:0.3445210426243312 in:0.1044209389580105 and:0.0748863587582835 :0.045576170273967105 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +had:0.25487938660346593 went:0.2505466441599175 was:0.19684330087856647 is:0.15975910861351597 :0.13797155974453398 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.3804340160145224 it:0.24187276857864706 they:0.22438157553126795 she:0.07775809784325254 :0.07555354203231013 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +year,:0.3029533691706821 year:0.22342572381850603 and:0.2020427279325414 person:0.17036851914816584 :0.10120965993010454 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +country:0.29971493723018405 morning:0.19463542289810368 year:0.1899982328241526 city:0.1759391559481172 :0.13971225109944227 +said:0.40320126333542466 time:0.3595409908140984 day:0.0839955797679585 best:0.07757820046903845 :0.07568396561348001 +and:0.39875797964311 the:0.22459754720423475 or:0.16635946430867987 with:0.11866682686466873 :0.09161818197930664 +one:0.2683140205387431 two:0.2613964256103944 person:0.18597162537178472 order:0.14379244286210743 :0.14052548561697034 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7713365278868772 a:0.11060533793836906 its:0.041790287889517726 tho:0.03860178472591676 :0.03766606155931924 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him:0.34735252604912953 that:0.26441931641614747 in:0.18174135390963309 such:0.13141361512673588 :0.07507318849835413 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.37231762020805387 in:0.2513227527924472 as:0.18882026083694048 so:0.12394606322484088 :0.06359330293771763 +forth:0.5110476046103386 up:0.22015398771673078 aside:0.12936357664207568 apart:0.07517763933845735 :0.0642571916923975 +in:0.4634140423809999 on:0.2509044556271826 In:0.1307654572211398 to:0.09976647511211523 :0.05514956965856237 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3470095104479173 but:0.19658746314179107 where:0.18509995580035904 which:0.16150232716371996 :0.10980074344621263 +of:0.38805932383620545 to:0.2508333063732371 and:0.24067229981800883 while:0.07729668120447677 :0.043138388768071946 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +way:0.2912281259206911 right:0.22110020146674944 wife:0.1854758735001724 return:0.15819311668545358 :0.1440026824269334 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.29326597709812974 to:0.2641579671884685 ever,:0.1898723565962337 much:0.16103752215489334 :0.09166617696227451 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all.:0.34867592001116965 being:0.20740112943099723 him.:0.17458572149888488 them.:0.15880791611230566 :0.11052931294664256 +the:0.5440750558129244 this:0.2976840707552414 whole:0.066775932385088 a:0.04766041460753623 :0.04380452643920998 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.43845355829817306 other:0.2727964927529002 their:0.11403194247421732 good:0.08972113795979933 :0.08499686851491031 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +other:0.6012057536082369 personal:0.1333356752106517 real:0.11811087762407368 such:0.08769369652008654 :0.05965399703695111 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +dition:0.5444241408309557 dress:0.20287389713707235 mission:0.12735061519120405 minister:0.07019658587839682 :0.05515476096237094 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8049100982200799 his:0.06323853559748464 this:0.05867768543918559 a:0.03858539050610069 :0.0345882902371491 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +same:0.27905913715653313 present:0.2491606791809853 State:0.1605905937171786 beginning:0.15878575393041286 :0.15240383601488994 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +deem:0.5483002303111583 be:0.34732227409591643 think:0.04816185139434515 seem:0.034823424452688025 :0.021392219745892102 +Washington,:0.4097400232030107 the:0.2225643328810057 last:0.18104484848534916 Chicago,:0.1302318249246054 :0.05641897050602889 +fact:0.4079436409412021 certain:0.2616383158220535 man:0.13243075593194786 statement:0.1027480400224104 :0.0952392472823861 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Sir:0.6079959613851261 st.:0.14981838188856825 .:0.11022744139835289 and:0.08110679420918719 :0.05085142111876554 +to:0.9889148981565137 lo:0.00482659534121032 as:0.004347313226213416 In:0.0009966369585681846 :0.0009145563174942207 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +had:0.40993540169484066 been:0.3246035512213228 always:0.12738447151975824 given:0.0783737729931413 :0.059702802570937075 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.4169375894179534 seem:0.18122584447660398 go:0.15215700624736933 be:0.13350937412360384 :0.11617018573446947 +the:0.7344449024178281 an:0.19851453381274858 tho:0.03986739232843089 said:0.016652250114677906 :0.010520921326314608 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +country:0.3177074802647415 time:0.20254878272226665 city:0.1739753385468219 city,:0.15645194422877484 :0.14931645423739523 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +back:0.513231970425984 over:0.27643258853519126 down:0.10845589373712906 thence:0.0634781831675117 :0.038401364134183935 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.6484365170788601 the:0.1647039148154137 for:0.07884361192616385 on:0.06923403674677664 :0.0387819194327857 +final:0.2675141460908287 direct:0.2419962840235365 natural:0.24020765080429973 net:0.1360469227711008 :0.11423499631023432 +hour.:0.5351198532743836 acre.:0.21322222426341692 end.:0.1908970938250149 election.:0.036391769492275315 :0.024369059144909215 +Attorney:0.49299565933720807 of:0.4082371405961189 Judge:0.03769050801334136 and:0.03463129086893278 :0.026445401184398986 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.34027519543644114 in:0.19818040735973394 that:0.1675115356480368 of:0.1487881935270823 :0.1452446680287057 +had:0.36058563137086985 was:0.24070185262738258 is:0.18640330669380434 has:0.11601007382729345 :0.09629913548064986 +is:0.4267387874693918 in:0.17654803066596406 was:0.1682819797356149 to:0.15877959804404332 :0.06965160408498602 +made:0.23938138541240508 held:0.23031708610711968 found:0.20705012666367806 used:0.17758149660284384 :0.1456699052139533 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +has:0.6705950040370989 had:0.1619577182776847 have:0.08048184600383508 extent:0.050675941619173395 :0.03628949006220791 +all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 +the:0.42658284542178443 any:0.2147527296264028 a:0.1931156015615424 this:0.09130833562838613 :0.07424048776188426 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +tion:0.5230060009622262 tion,:0.23906715855134283 tion.:0.17221810177588118 tions:0.03357467961754312 :0.032134059093006595 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.3999506466968328 at:0.23677249022603203 on:0.13975853273624375 by:0.11730270822367812 :0.10621562211721318 +strength:0.30706924805822683 friends,:0.22707233021181125 mind:0.19705836529633589 opinion:0.15146503996439445 :0.1173350164692316 +dollars.:0.5141658796740289 years.:0.19964239089716163 feet.:0.1466952504711215 miles.:0.08419517646878347 :0.055301302488904525 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.5828157665026565 was:0.2191823791835575 Is:0.12173194669427344 to:0.0439638967000863 :0.0323060109194262 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.43928935151580234 men:0.26822464914683136 present:0.10053319454538917 officers:0.10008527024370913 :0.09186753454826802 +city.:0.2085271685022158 effect.:0.20851649013430806 country.:0.2057979835595353 place.:0.19785683406142313 :0.1793015237425176 +say:0.338854708947066 believe:0.20098228874838234 and:0.19755426477961874 of:0.16029268663364338 :0.10231605089128955 +they:0.3649212788320134 there:0.28469943665017333 we:0.2039858898488088 who:0.08687015936496226 :0.05952323530404228 +length:0.3214534132906193 noon:0.31501263363863113 that:0.13376888294799633 present:0.1216474795744787 :0.10811759054827438 +for:0.3038616405717259 of:0.23726870349381016 in:0.22926786618631173 is:0.11750328689023216 :0.11209850285792004 +of:0.4198236692878355 in:0.2771490226184156 where:0.13176090564068546 on:0.10316893809730635 :0.06809746435575706 +was:0.7294491041760901 had:0.18868017871474116 has:0.03495535595490675 is:0.03063311574048093 :0.01628224541378097 +of:0.5387133455230527 the:0.2321432395329759 at:0.09684988499542362 upon:0.07137985109404071 :0.060913678854506985 +is:0.28745874121040554 could:0.2122240621702804 would:0.16962200794249177 will:0.16904759026558278 :0.1616475984112394 +carried:0.28352337052863574 went:0.2464281111873953 ran:0.1823629223443569 get:0.17145919733506831 :0.11622639860454392 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.272542629233529 which:0.2426317292726945 that:0.22568101955903805 whom:0.14193277316888264 :0.11721184876585579 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.3416119316805803 that:0.2770965023025837 which:0.24114041110127982 and:0.09790441813596261 :0.042246736779593744 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +has:0.636153287109877 had:0.1976979891333181 have:0.1336095311098706 having:0.02029882490192923 :0.012240367745005113 +to:0.704991967127306 and:0.22072529389989906 will:0.05132070027087484 or:0.013442081286839103 :0.009519957415080915 +to:0.32589825777359477 out:0.20686376484595964 into:0.17241297921503762 in:0.16088226086685614 :0.1339427372985518 +a:0.5090005143529363 the:0.3471156921637945 any:0.051219886655156754 tbe:0.047620078106850046 :0.045043828721262474 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6001240460502615 on:0.14032615802032677 to:0.11535246691815677 that:0.09052739301602909 :0.05366993599522587 +and:0.34409588661106033 fact:0.21725923273502312 for:0.19508844263018538 is:0.14390630092774886 :0.09965013709598236 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +of:0.36657422214141966 against:0.32780360960735433 for:0.11804755593310323 is:0.09762491409682837 :0.08994969822129444 +other:0.3573178097077375 right:0.23317365606087784 mountain:0.1395362338730919 east:0.13576531881007425 :0.13420698154821847 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.6079441431278488 that:0.14776236091681338 known:0.09704578010660642 and:0.0911221466610403 :0.056125569187691196 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.31554231043708736 same:0.21332547551137776 country:0.16027869436190653 city:0.15585135602884304 :0.15500216366078537 +posed:0.2745806740289961 pose:0.20718362513052638 ports:0.18459966399206248 possibility:0.16955206065142828 :0.16408397619698664 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Rev.:0.2495729214441649 Mr.:0.21772942416645377 J.:0.21607883207007653 Mrs.:0.19944452458119893 :0.11717429773810596 +covered:0.2822824150647194 parallel:0.2498464022803805 it:0.20703737238311423 filled:0.15737732285658504 :0.10345648741520089 +of:0.5112722949731829 the:0.2906738552703576 for:0.08254578333324161 is:0.06726003047096314 :0.04824803595225461 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6700219689193994 this:0.14192897488697465 his:0.07664759437883636 tho:0.05686997832626947 :0.0545314834885202 +The:0.7943386622801608 A:0.07375311851825327 This:0.058211163446425115 They:0.04236376989994256 :0.031333285855218204 +by:0.3519568736434658 in:0.29497067587746223 for:0.13167597660486013 to:0.11796377020844002 :0.10343270366577179 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +men:0.600183010537192 children:0.12154747210483548 years:0.10853164902228003 houses:0.08789175847790959 :0.08184610985778298 +miles:0.26321473676803936 feet:0.2211220246805254 numbered:0.20051743529988117 inch:0.16754840776293847 :0.14759739548861564 +right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.35240859239472894 on:0.23584736281104068 in:0.22041039014179048 and:0.10547331949880345 :0.08586033515363645 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.6081690147870586 seen:0.11181474822659883 done:0.10621367812892284 made:0.10289032955598296 :0.07091222930143658 +him:0.3025081560060519 them:0.24827029909538703 up:0.2154434039655054 us:0.11820866399296351 :0.11556947694009219 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.569364483877002 was:0.17874646007525502 are:0.13127685720556198 Is:0.06821883032997914 :0.05239336851220174 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6727059132097257 in:0.180596344898063 with:0.08399033661211883 to:0.032197584456455576 :0.03050982082363691 +air:0.3054869778674453 air,:0.2664861485427665 up:0.20383061417193632 door:0.1330556501777355 :0.09114060924011641 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.4002279848413371 are:0.3397114528585857 and:0.10248376936368182 were:0.08152411130702227 :0.07605268162937322 +bers:0.8075023762683327 ber:0.19170354231543696 cry:0.00030889897130569375 ment:0.00028323284581452634 :0.00020194959911028323 +The:0.8996683161921869 Tho:0.03607948950434789 In:0.025379993892386574 This:0.020256851642690265 :0.018615348768388378 +a:0.5708062804939923 the:0.2365215419466977 every:0.11076654684788165 one:0.05316426271348934 :0.028741367997938968 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +once:0.43570231925452574 home,:0.15811689316903282 law:0.14771292800038913 his:0.13995057976540523 :0.11851727981064704 +said:0.3965165858739642 the:0.282117234842873 this:0.2655856010780727 Police:0.03505901490469557 :0.020721563300394583 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.24116372805030956 and:0.2280877910805206 .:0.22447412921192525 Mr.:0.17812544036190633 :0.12814891129533812 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +wife:0.263188434336132 hand:0.21379095888279698 mind:0.19130617844391617 life:0.17981177051998581 :0.1519026578171691 +will:0.4837928823308395 to:0.165306984742984 would:0.13636362186794093 men:0.11553543598677082 :0.09900107507146484 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8415019376771147 said:0.10829663202846918 tho:0.026496243614415618 tbe:0.01656627171772858 :0.007138914962271853 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.30076376196922144 the:0.29321586726832893 being:0.2617869702123197 which:0.08685469587629784 :0.05737870467383207 +him,:0.27380728172181573 be:0.19649795736085857 him:0.19098230879313408 me,:0.17372011034931062 :0.1649923417748811 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Silver:0.4916022969448045 Gold:0.208207241716236 said:0.140556100727699 District:0.08769809620102834 :0.07193626441023217 +of:0.7873007776982319 in:0.09235658905113157 on:0.06082029600009988 and:0.030415429127281658 :0.029106908123254928 +no:0.33963940306106255 the:0.33406638389363225 a:0.26210036375662565 that:0.03932982437927126 :0.024864024909408314 +made:0.3297350959024896 took:0.22862932120635557 taken:0.16686331044972885 gave:0.1487480409933631 :0.12602423144806285 +the:0.8484361421817552 this:0.05519130237390858 tho:0.04403088378523359 our:0.029204556931908782 :0.023137114727193885 +there:0.39157595308326404 it:0.3732539959991392 It:0.11217855404506379 he:0.07976820644150616 :0.04322329043102673 +last:0.628720313074223 the:0.17650989465944866 every:0.11462954323174017 next:0.04238170973171897 :0.037758539302869196 +homes:0.24965559009128852 own:0.23383676964895136 lives:0.1775105624885729 hands:0.17369028491263128 :0.1653067928585559 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +see:0.30641378640646744 marry:0.2530132499704585 kill:0.1955178001052409 meet:0.1436459846312772 :0.10140917888655608 +part:0.31028899527683895 portion:0.20218365376756128 one:0.1889578423695801 day:0.17618667258820278 :0.12238283599781698 +than:0.7941951736086035 to:0.09131903932764267 of:0.043087447890709445 in:0.04264529510977698 :0.028753044063267404 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.3320486789487959 of:0.2656280882593774 and:0.1937719192181297 at:0.13314757327076393 :0.07540374030293301 +was:0.5962508739913358 found:0.1080027603049108 Is:0.10514833284101907 is:0.10005757515014355 :0.09054045771259078 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +most:0.7978676875020816 ways:0.16964354714644675 though:0.027414707779135173 so:0.0032283490679734343 :0.0018457085043632093 +world.:0.2640367111746353 country.:0.23178389373806066 people.:0.19682201850485836 other.:0.1579133213924044 :0.14944405519004136 +in:0.24864188421884653 to:0.21939092777148986 and:0.1946697974032759 for:0.1868189068047458 :0.150478483801642 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4526718567912345 a:0.23924149046925472 no:0.11324902698650337 this:0.11001164112618714 :0.08482598462682028 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.45259170817509914 will:0.30455038577624227 would:0.13386483052483958 may:0.057233338046924445 :0.051759737476894385 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.3212276234486541 day:0.1865571679943897 part:0.17540911239191764 kind:0.17376886165058528 :0.14303723451445333 +an:0.9713606320061413 au:0.013052163669004791 nn:0.008357289424268872 preparations:0.004022532704472298 :0.003207382196112862 +of:0.3203570499722803 in:0.2859041634260003 and:0.1433277940300722 as:0.1318785588662083 :0.11853243370543898 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.7037284210410927 very:0.22653580714878346 the:0.03922162814666863 really:0.01609483161297346 :0.01441931205048178 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +side:0.48193886993806734 line:0.22847454497161682 quarter:0.15406192018187542 corner:0.07941577042754575 :0.05610889448089465 +the:0.5639161682786816 a:0.3015469441466153 little:0.07149946173674147 tho:0.033146413519698575 :0.029891012318262918 +time:0.3138797632232669 him:0.2524973822392309 them:0.1625265567011679 going:0.14487702312763204 :0.12621927470870217 +lar:0.6878269385998771 league:0.14932542202394053 red:0.09155076111452613 j:0.04013193366906186 :0.031164944592594314 +The:0.661078215485995 A:0.20570660929943044 As:0.045207710801350595 In:0.04504104433574428 :0.04296642007747977 +J.:0.3018318569418829 the:0.23795167486866062 Mr.:0.21869506159587904 W.:0.1304899788874453 :0.11103142770613206 +try:0.7710062761009558 ty,:0.10156463391596032 ty:0.09890372799448757 ties:0.017643052779371653 :0.010882309209224766 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +up:0.5930025825047306 him:0.12570286347742773 them:0.11403557730502076 out:0.10465448989139238 :0.06260448682142843 +forth:0.5949136395347948 up:0.17597163718058578 out:0.1059515171058636 apart:0.07160407224288012 :0.051559133935875585 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.5598201398953152 of:0.2890173159277852 in:0.05349802325523019 and:0.05296683893921635 :0.04469768198245309 +possible.:0.6099245557796904 well.:0.14563920213183948 follows::0.12153987440875268 before.:0.06200345597587233 :0.06089291170384511 +the:0.8772258561612092 tho:0.03823575045329659 our:0.03489423291862016 his:0.026745988906341826 :0.02289817156053226 +fixed:0.3430311400276269 shut:0.19144944570703637 were:0.17670699831150463 are:0.15999032515717196 :0.12882209079666007 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +year:0.24452618209171156 time:0.2259116450484832 week:0.19534835948835788 point:0.17461002864941666 :0.1596037847220307 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.273364925445421 bill:0.19225638157369232 city,:0.18986071978519262 time:0.17714217209823907 :0.167375801097455 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4648118818245994 no:0.18847965118600196 a:0.17164102548494015 that:0.10137199445733883 :0.07369544704711971 +too:0.31467330930862664 as:0.18843103114078164 and:0.17460982611773274 of:0.1631420335215189 :0.15914379991134003 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +mittee:0.3389413239665586 pany:0.1993867064203458 mission:0.1746015391846665 mand:0.1530752443921894 :0.1339951860362397 +The:0.598908566542148 This:0.12833808268698052 His:0.10774982726879542 Public:0.09577153500094598 :0.06923198850113027 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.9340899242570472 and:0.027103634131823026 that:0.016269682014907267 us:0.0144791436355156 :0.008057615960706827 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4188476097346238 in:0.3678417463984908 to:0.09382461322132388 and:0.08692564670665824 :0.03256038393890317 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.29023399843446174 thing:0.23104014146189628 way:0.1955199310657497 year:0.15642575220011298 :0.12678017683777928 +plan:0.3475954638494641 men:0.23140858007949197 first:0.1508527256970035 teams:0.1430505940022208 :0.12709263637181975 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.46418634184208474 are:0.25450106527203953 was:0.14966770803812063 were:0.07487352642853921 :0.05677135841921598 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.3125724848989732 no:0.23719442382354508 only:0.20390594494327577 some:0.1617120076476275 :0.08461513868657851 +he:0.49513210578097283 the:0.271687666536168 she:0.170944525983063 ho:0.034213280169226756 :0.02802242153056928 +to:0.4936417911204384 or:0.1821048940684199 weeks:0.14865979730506657 and:0.09385681912271181 :0.08173669838336331 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +of:0.3527803659853331 for:0.3317826874878852 on:0.14171946608819802 in:0.11091408129316963 :0.0628033991454141 +the:0.7628384615446826 a:0.11747728293492722 this:0.0461657866715472 tho:0.03844144976930242 :0.035077019079540514 +exceeding:0.6490681132360999 slow:0.15826270326282768 sufficient:0.06627834600960313 mere:0.06439157694366136 :0.06199926054780786 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.34035290553232056 of:0.29086327382903937 in:0.166839216956384 from:0.11813147180842952 :0.08381313187382664 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +rights:0.2890095385611231 works:0.2047505095965565 power:0.20045914895625544 supply:0.15922652792355496 :0.14655427496251008 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +or:0.8194144375558886 thousand:0.08088470044997044 of:0.044498141693660405 feet:0.030369405841965187 :0.024833314458515256 +the:0.7548768548043039 last:0.11725051040266611 all:0.050100574091252716 tho:0.04149445404588876 :0.03627760665588866 +the:0.313132212983186 into:0.2576647949730352 a:0.15494049916255173 in:0.1516085788618374 :0.12265391401938984 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.32497190683857685 on:0.23759402191175735 in:0.20260265788018697 by:0.12668609256342558 :0.10814532080605323 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +place:0.3329925200293868 point:0.23907457490455003 and:0.20373858977694628 points:0.13275676619517537 :0.09143754909394158 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +;:0.43844620450820443 ,:0.26048372469798176 well,:0.11177662227022686 people,:0.10961841643619345 :0.07967503208739352 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4050233384057615 a:0.2124363130278423 or:0.20872300187036955 this:0.11099154635051155 :0.06282580034551508 +own:0.6124228217140617 if:0.21221014826156517 needs:0.07582555697930174 trade:0.06338416422074965 :0.03615730882432183 +That:0.49881907290899247 All:0.2020437244080927 In:0.1522657031692263 On:0.07781334305756335 :0.06905815645612517 +S.:0.2609197898321997 Co.,:0.25992618726327826 O.:0.24518877380467088 U.:0.1329148039100378 :0.10105044518981338 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.420715710039336 .:0.18138234795533723 was:0.18060970640160184 Is:0.14910895559854515 :0.06818328000517972 +the:0.8671453996267858 a:0.07188079982992482 tho:0.03531487727504082 tbe:0.014087474334657945 :0.011571448933590621 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.4780156815622097 of:0.21093752935167995 in:0.12707557640488096 into:0.09620798268388112 :0.08776322999734823 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.8849657808835519 you:0.0862715977676926 us:0.011097823730421867 me:0.009334134941257899 :0.008330662677075749 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.4777683476557802 had:0.32235823715833545 was:0.11662643911919 never:0.059025968790883385 :0.024221007275810974 +1.:0.29252533577316664 last.:0.27853138061621047 5.:0.16856650474806648 4.:0.13472271629280294 :0.12565406256975345 +in:0.46637402532361516 on:0.23092856460395517 that:0.11588562365573385 to:0.10056550453526453 :0.08624628188143114 +in:0.38133720952285066 the:0.2424136252095242 that:0.18243114916164116 proposed:0.09888618336623647 :0.0949318327397475 +time:0.2662007269602721 demand:0.20374566206278708 necessity:0.19227363546651788 work:0.17423850470127075 :0.16354147080915216 +be:0.7866837128644234 not:0.07343838103764205 remain:0.0661979110203024 keep:0.03992576232680291 :0.03375423275082931 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4022440283931326 car:0.1970016619314406 entrance:0.1597326703028063 extended:0.12436295026744447 :0.11665868910517603 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.31554231043708736 same:0.21332547551137776 country:0.16027869436190653 city:0.15585135602884304 :0.15500216366078537 +in:0.3553717683401607 that:0.2794409315946077 almost:0.14880788413105278 for:0.10914551537239803 :0.1072339005617809 +door,:0.21713175449218583 line:0.2165058899179903 door:0.19352777425184464 platform:0.19319341257914346 :0.17964116875883562 +mind:0.24970070692320784 opinion,:0.210725514647908 can-:0.20395163544961986 will:0.17577068280872638 :0.15985146017053783 +and:0.5786517994445712 but:0.15869699851786268 for:0.10534583291262196 leaving:0.08930786035402727 :0.0679975087709168 +until:0.3489820282111818 and:0.2996118927114153 for:0.1410198754304784 the:0.1091408716614342 :0.10124533198549032 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +or:0.44230067550509006 appointed:0.312873625586435 authorized:0.119058649965787 elected:0.06488553542225695 :0.060881513520431196 +those:0.7211154233551041 men:0.12412846917238905 all:0.06904661178572712 one:0.0478192844083785 :0.0378902112784012 +ought:0.2706718267955586 are:0.2690555738075612 want:0.19074605158428895 have:0.1783330172996319 :0.09119353051295938 +above:0.4545900780510038 most:0.1453840086883466 fact:0.13867015487205667 use:0.13597438807656143 :0.12538137031203148 +be:0.7485888936009311 have:0.0857790738024304 a:0.07973218557425953 bo:0.04950693370370551 :0.036392913318673434 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.45522613401259954 is:0.2639509651415301 was:0.1327746651623637 were:0.0854305901040813 :0.06261764557942559 +con-:0.35695935359991393 pa-:0.24707628421565694 con¬:0.16290217430531576 con­:0.11936170842202942 :0.11370047945708393 +other:0.5177599967832672 one:0.320002791226973 young:0.08094268112730277 business:0.041708509687603014 :0.03958602117485391 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.35884434906640844 as:0.2842267039798616 in:0.15307280466483866 that:0.14003429088057912 :0.06382185140831226 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +In:0.3930575122398376 On:0.16527012215681253 At:0.15373176586771395 When:0.14916901576284777 :0.1387715839727881 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +same:0.6127182710121508 long:0.10376742499231306 well:0.09710558662472232 manner:0.09324468605195613 :0.09316403131885768 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.43826317578850865 he:0.19150135459496362 were:0.17214515796077984 will:0.11200814487073665 :0.08608216678501136 +ceased:0.48001252631272917 voted:0.25229494395236846 scribed:0.12717612680667864 mand:0.08551021901592343 :0.055006183912300284 +or:0.29144918561700844 between:0.22339456532619462 and:0.21321239955628293 within:0.20098557222435318 :0.07095827727616083 +ready:0.3210968550803944 responsible:0.20485525622884368 not:0.17704462254243802 used:0.16780011026781108 :0.1292031558805127 +taken:0.317643352723852 made:0.29798766242774516 put:0.14075790765428128 kept:0.12495864715908714 :0.11865243003503441 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.22369456742961225 amount:0.20773323631999405 day:0.2060255143945402 part:0.18175789781806492 :0.18078878403778864 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8396933162345454 by:0.053649852855165235 that:0.05050851353467972 tho:0.03132991033289697 :0.02481840704271287 +to:0.9796493619984706 greatly:0.007119285007353044 lo:0.004821387273974781 not:0.004530796319470946 :0.003879169400730411 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +But:0.3260042005428255 If:0.24387725139215993 And:0.16674225903762893 When:0.14045099213303086 :0.12292529689435482 +mortgage:0.37222054759223683 mortgage,:0.3668598300329682 lot:0.10059747927498155 piece:0.09940761333334588 :0.06091452976646764 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +law:0.2550492170482123 bill:0.2476841831643734 party:0.17498755227968865 bill,:0.16775078981243333 :0.15452825769529213 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +long:0.36937957219587636 time:0.17551359211504977 way:0.16415863232390637 speech:0.15489088994756392 :0.13605731341760358 +order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7342942866308225 and:0.11868115155639133 in:0.08888868614384487 from:0.039483464469103155 :0.018652411199838 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.26588307666285543 by:0.2535887871656669 on:0.2256465032485819 of:0.14539335640542134 :0.10948827651747434 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +stated:0.4160846515236065 provides:0.19534509393980837 satisfied:0.1621523124176743 true:0.11408802927342002 :0.11232991284549082 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.32140260079354854 work:0.18333331102584519 it:0.17711044345666008 and:0.16368478655531252 :0.1544688581686338 +wish:0.2139351032775634 went:0.21068230681553277 have:0.20700734941190393 want:0.20401605424950528 :0.16435918624549464 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5370708249037944 in:0.17858769780139386 have:0.11402801146577515 to:0.08570992999777996 :0.08460353583125654 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +brought:0.30759432441888723 fallen:0.2268916980891186 it:0.16164560565355635 thrown:0.15876875863267137 :0.14509961320576642 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +piece:0.3319299210450734 black:0.18536316226477215 lot:0.17171266193189164 man:0.16914788787589605 :0.1418463668823666 +side:0.46837310084691536 line:0.2675132209226397 east:0.1093347376363238 side,:0.09099281796701927 :0.06378612262710188 +last:0.5170200040188152 final:0.17053557310281248 responsibility:0.15396335470254172 head:0.10957780651310309 :0.04890326166272757 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.37239684889556807 Main:0.3094179953905809 North:0.12505441317345067 said:0.10657621021027083 :0.08655453233012943 +sale,:0.30152719840291364 them:0.20495217130615834 trust,:0.19074126290927626 us:0.15433205529467203 :0.14844731208697962 +with:0.3884054091203667 from:0.25960164872629765 between:0.1655764080207748 of:0.0972962259460409 :0.08912030818651986 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5682183232957249 a:0.18975522446183618 to:0.16562996879296715 of:0.039463922973537305 :0.03693256047593446 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +said:0.7022281989150801 the:0.1641745546569556 such:0.07539544261069284 a:0.033342916605232496 :0.024858887212038872 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.33507882382312226 crop:0.2778859405398704 it:0.16249886253189302 which:0.1129525458445079 :0.11158382726060648 +some:0.3695326913160566 one:0.20011742679345793 many:0.19438428408714012 payment:0.12917183988031627 :0.106793757923029 +as:0.48577366269747857 and:0.3651525196183506 is:0.058292158219462195 be:0.053050657528894596 :0.037731001935814225 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7119355447169781 said:0.15672089365395414 this:0.07858214613222306 tho:0.02729129195298425 :0.02547012354386044 +say:0.38962403882348745 see:0.1896022161155592 show:0.16372765363851213 believe:0.1309843469651658 :0.12606174445727536 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.48254043209367536 no:0.19618359554944861 a:0.16350596572811743 any:0.09383575444508714 :0.06393425218367137 +to:0.6080860506037264 in:0.17465120576635546 if:0.10505401815202012 that:0.06111591985348445 :0.051092805624413616 +the:0.8541307498935982 our:0.058369903078921336 tho:0.03455271743633561 its:0.030848665827762932 :0.022097963763382043 +from:0.2409364476104008 high:0.22777800482573668 trade:0.20201164484568424 grant:0.16538287587391604 :0.16389102684426218 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3250696988109646 the:0.3003647025359562 to:0.14511740967782394 on:0.12132234287979837 :0.1081258460954569 +of:0.8254661108449765 in:0.10953487250736446 and:0.030938169498543208 to:0.0185002835934326 :0.015560563555683379 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.3247520521496308 that:0.22117999781496467 for:0.16417075548217291 to:0.15331087086920925 :0.1365863236840223 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +days:0.33189518510920957 years:0.2680084809622495 months:0.1972385384011277 hours:0.10867855881749956 :0.09417923670991357 +F.:0.4053352629655686 C.:0.22331506734744658 G.:0.13964709505301168 J.:0.1262603058259151 :0.10544226880805808 +the:0.3655151203709846 high:0.18837861753855153 at:0.15030613643418286 higher:0.14921682360137528 :0.14658330205490572 +4:0.23836620788249235 to:0.22121889455696928 four:0.19910623434201283 at:0.18613175529477935 :0.15517690792374617 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.37536489129764167 for:0.2243266285238123 secret:0.17733585910846145 military:0.1191847770419578 :0.1037878440281267 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.684379766079736 but:0.12978343406603712 with:0.0633596276957089 in:0.06179068514725092 :0.06068648701126693 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +personal:0.4254041375604099 the:0.3273842652685117 their:0.1100853374763539 his:0.08626170146276539 :0.05086455823195907 +that:0.32541714420148404 it:0.3054149841045845 he:0.15855468404548234 there:0.14082274857062432 :0.06979043907782471 +j:0.2772497706055892 ful:0.2134336337747079 press:0.18550924339532737 test:0.17441546326845234 :0.14939188895592312 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.2835432054716596 the:0.25010949725417686 his:0.20363854624522132 of:0.1536342959848252 :0.10907445504411711 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.8171724631071035 the:0.14238410715475974 ing:0.016414813852855488 any:0.013410905646748779 :0.010617710238532618 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.9105086396497395 rapid:0.03932383382538497 as:0.017372700724544762 other:0.016491700269863057 :0.016303125530467782 +went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 +be-:0.7213118513256698 be­:0.19811681752083787 be¬:0.07640299451345696 b:0.0022372872996154237 :0.0019310493404199605 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +up:0.24941498478907512 and:0.2359215207887829 out:0.21016516522232775 are:0.16759153693505968 :0.13690679226475444 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +says:0.33524338586404967 said:0.2254028682589326 had:0.1533608161566088 will:0.1450572386446466 :0.14093569107576243 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +the:0.30559909443186484 test:0.24574173997099716 keep:0.1920039210809548 prove:0.16227891280100523 :0.09437633171517801 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.3078794050826118 when:0.2676344578429705 if:0.15224633624628595 on:0.14145666668843127 :0.1307831341397005 +large:0.2870046042289021 pine:0.21051395073724377 single:0.1904116287766876 big:0.16096686022124487 :0.1511029560359217 +to:0.6080860506037264 in:0.17465120576635546 if:0.10505401815202012 that:0.06111591985348445 :0.051092805624413616 +for:0.34656165552344115 at:0.2691341745009541 to:0.15375834375830102 over:0.13826184194796526 :0.09228398426933847 +right.:0.29492770944451796 times.:0.29286154488822813 night.:0.20215159614262987 day.:0.1283920331904563 :0.08166711633416765 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +The:0.3804260873313774 A:0.3712476790846767 This:0.16895257395985286 gift:0.040942299104692 :0.038431360519401145 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.44839158729007156 was:0.18015285330256275 in:0.13455765140677903 is:0.12151777176836888 :0.1153801362322178 +to:0.47709324678843584 the:0.3400665064240181 from:0.06506377671496379 that:0.05947729304120767 :0.058299177031374626 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +what:0.2577224053787371 you.:0.24439561670326634 you:0.2044944553447775 how:0.14996285703136075 :0.1434246655418583 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city,:0.2781708388524493 country,:0.215553108251919 State,:0.1844325126612371 city:0.1619735488053586 :0.15986999142903582 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +wish:0.2139351032775634 went:0.21068230681553277 have:0.20700734941190393 want:0.20401605424950528 :0.16435918624549464 +years:0.26108112011731915 months:0.19767232346556368 out:0.19232239677873397 cases:0.18882527651872189 :0.16009888311966133 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.43889695756957214 in:0.28993822116372686 on:0.1189579242798879 for:0.08563946632952693 :0.06656743065728615 +them:0.4577284306818429 war:0.16138858839222903 Minnesota,:0.14287714783450617 her:0.12401437431367282 :0.11399145877774909 +and:0.36591460389294195 in:0.21680504719386975 that:0.16464226127755344 shortly:0.14888318109983587 :0.10375490653579898 +He:0.39029043356461046 I:0.24209396405031192 They:0.1552682238160454 It:0.1332355282282776 :0.07911185034075453 +time:0.22730828165217862 city,:0.20535750998260024 State,:0.19606449932464612 act,:0.19304360980708857 :0.17822609923348656 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +at:0.47436452826244646 from:0.35588385262238037 to:0.06780195027057374 for:0.053112571812908495 :0.04883709703169081 +was:0.2381839266093997 have:0.21832098960998264 is:0.2166435347850028 had:0.21052179316459696 :0.11632975583101784 +the:0.5236027083457311 it:0.15238655018103514 to:0.11942413026957274 his:0.10587472055705201 :0.09871189064660896 +of:0.4737924262115224 for:0.2709475007195903 and:0.10003648293096341 in:0.09860707344298154 :0.05661651669494248 +He:0.4593300449754914 I:0.1739062791931282 They:0.14578564433830868 It:0.11885940352002948 :0.10211862797304215 +and:0.6597016052151035 Jefferson:0.2285811242352706 I:0.047532400475384595 he:0.03308719932527826 :0.031097670748963042 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +other:0.7238779869562242 of:0.14675697467885093 legitimate:0.055022145617855074 such:0.03960935823002753 :0.03473353451704237 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +who:0.806680486627623 it:0.06504488454450824 and:0.04535716414919985 that:0.04273304131192252 :0.04018442336674638 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +country,:0.255714336521947 world,:0.24966444254928408 people,:0.18397271953541283 time,:0.15542103659202702 :0.15522746480132904 +been:0.8811100512429769 had:0.056538123580684274 already:0.03103311976912608 not:0.018787967869967864 :0.012530737537245065 +to:0.3024178992071704 will:0.24483242619012616 may:0.16884261366695014 would:0.1591246126316907 :0.12478244830406258 +It:0.32478409983563494 it:0.30768118557517643 there:0.24233415306114217 that:0.06648654151621519 :0.0587140200118313 +to:0.9891027350896957 may:0.0035502939840124995 will:0.0027240999014929057 lo:0.0023295084652684745 :0.002293362559530387 +and:0.4421830341286619 in:0.17637922329853103 for:0.12875941864748358 to:0.12730753712001858 :0.12537078680530483 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.3428306508802291 will:0.22079920407089054 and:0.20065864152979487 would:0.12314490274069767 :0.11256660077838779 +The:0.6083979145125259 This:0.2595868329832751 A:0.0734158747447178 That:0.04438562614393532 :0.014213751615545882 +the:0.7961538345512716 one:0.07255753190917304 this:0.04722893532373743 an:0.04602749069003485 :0.03803220752578297 +the:0.7148752939934243 an:0.15022365429080867 this:0.07339706868965479 his:0.031467102298786374 :0.030036880727325903 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +similar:0.34983698279357894 j:0.17931552996181002 like:0.17171369818734916 the:0.15939334981916 :0.13974043923810184 +readers:0.3693274351408431 people:0.29253605728921056 country:0.19046418091066472 government:0.0810965640144414 :0.06657576264484026 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6390449437154518 any:0.21677097476497023 all:0.06580303576578764 each:0.04634724339755558 :0.0320338023562347 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.4813807508488466 one:0.18615104954318165 quarters:0.1283592147097957 years:0.10443596788423172 :0.09967301701394433 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +knew:0.31517933839619244 did:0.25212757182758205 saw:0.2213202332697951 sees:0.10882282079243114 :0.10255003571399926 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +would:0.5010938073939298 should:0.15105234034873294 could:0.14662829432614446 will:0.10572135898253886 :0.09550419894865393 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.32987175874108454 his:0.2343799087298907 our:0.19728800635349225 their:0.13266116077130327 :0.1057991654042292 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +south:0.2457968828404529 north:0.24404247147779493 west:0.21590956572120368 east:0.1925224506476388 :0.10172862931290977 +by:0.6182559438741791 and:0.22745805791797916 Mrs.:0.08898869258870176 Mr.:0.03710796266866791 :0.028189342950472197 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.44173082543677616 in:0.17785025753393094 to:0.14954541806095367 on:0.1237589583560503 :0.10711454061228898 +see:0.3630267179337288 know:0.31672443555825147 do:0.16375532428382614 say:0.08300529544119116 :0.07348822678300254 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +letter:0.25614025702378934 mile:0.24453732906499095 distance:0.2388177775648556 free:0.1632228982651789 :0.09728173808118526 +the:0.5613961645639179 this:0.24141086162322437 next:0.06844674160178053 every:0.06747817899092622 :0.06126805322015103 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sell:0.30280226671861676 be:0.2451117382724518 look:0.22976687892390676 meet:0.12830192880382135 :0.09401718728120333 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.6542367363604202 as:0.2130104066197825 much:0.055613890545498784 when:0.04291218548541628 :0.03422678098888232 +willing:0.25515105163428503 going:0.20735362161638116 not:0.20076753293046337 entitled:0.17043494968224637 :0.16629284413662407 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.6123662562211499 make:0.1287415409118293 not:0.10712252326114452 have:0.08437450903561178 :0.06739517057026446 +is:0.6844785219944199 was:0.25748940241566687 Is:0.041102768138435664 be:0.009374861211935976 :0.007554446239541411 +mind:0.31862355608570403 and:0.24880486459675127 husband:0.16805970890385916 to:0.13830016700367517 :0.12621170341001037 +it:0.5485777179455898 them:0.14016109416999184 him:0.12276473713647663 is:0.11209810608171153 :0.07639834466623023 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 +not:0.2982569314982331 be:0.2718897688455929 is:0.1701069928959043 contained:0.13854130756521407 :0.12120499919505558 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7470161553800376 this:0.08933243629989689 his:0.06927613417351747 their:0.048426345808208204 :0.04594892833833977 +little:0.4226804117983705 small:0.2582966651503127 large:0.2283620403543523 single:0.05214151762268924 :0.03851936507427512 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.4471856940555742 they:0.2864491084889527 I:0.1044948829869406 she:0.08726689777835243 :0.07460341669018011 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +com-:0.28861744501083325 department:0.18326909673575612 inter-:0.18080537514043588 pay:0.18075638435976596 :0.16655169875320874 +dress:0.5524636757827649 vice:0.17897894074283258 dition:0.15701782129832603 mission:0.06863847688681993 :0.04290108528925642 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4507979316844605 can:0.16290204898479116 of:0.13703924602778123 were:0.1340687665635897 :0.11519200673937743 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.41862817387004553 or:0.1733854156912038 and:0.16533876553327645 after:0.14583675627930645 :0.09681088862616782 +order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 +to:0.7863931101506932 by:0.17622810774720274 on:0.01768120474560251 in:0.014719640972301742 :0.004977936384199829 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +his:0.27982956643446794 the:0.27061374094386165 six:0.16312873346764453 ten:0.15814239137595457 :0.12828556777807126 +of:0.4219689996113349 away.:0.2525414318219687 there.:0.12096301360789483 well.:0.1023131639780986 :0.10221339098070285 +a:0.6171671099244961 the:0.22693459675423194 other:0.07427606505113712 their:0.04331523559754885 :0.0383069926725861 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.37222819900174764 in:0.27421066801457084 all:0.13434439594704725 on:0.11729145192866643 :0.10192528510796796 +to:0.35501705416719925 for:0.20492698161428508 from:0.20291354917185717 in:0.16781550411138482 :0.06932691093527359 +to:0.3967817596569152 before:0.23134189372619318 upon:0.16432111478823141 soon:0.11312395607580916 :0.09443127575285114 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.4416829750228396 is:0.15720220657240058 in:0.15670480212611881 such:0.13894831067883417 :0.10546170559980682 +as:0.6823365814762603 so:0.15802031320058688 too:0.06826679102331139 very:0.04950685069068899 :0.0418694636091524 +the:0.6669018886646426 this:0.17449491925387087 any:0.05782775794968469 a:0.052349154777121445 :0.04842627935468033 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.30381116575784306 a:0.276335487054247 whole:0.2309567684958625 main:0.09805135915199178 :0.09084521954005563 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6891192095809842 our:0.24155738530157048 tho:0.045694545109554174 tbe:0.01568430817966468 :0.00794455182822644 +of:0.3076001545419617 about:0.3031288662974 and:0.24455846211443627 $1:0.07855543500473221 :0.06615708204146988 +and:0.44203085168522854 with:0.23470893569035975 at:0.11241803960734217 during:0.10654679664840214 :0.10429537636866743 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +put:0.2595306196083462 placed:0.19096377299855247 bounded:0.18549797734665052 carried:0.1841342007496199 :0.1798734292968309 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +do:0.3982846521950611 get:0.19285570440678426 see:0.15092462979672722 make:0.13762015287442791 :0.12031486072699958 +na-:0.3420257675755698 elec-:0.3227602610405963 sec-:0.1924597983603342 ques-:0.10325676721883414 :0.03949740580466562 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8079295266463187 our:0.06819661144015046 two:0.06462940849853369 tho:0.03813202925265178 :0.021112424162345426 +which:0.35594936538061844 the:0.243293013684276 you:0.21450043266874236 whom:0.11313787025391757 :0.0731193180124456 +green:0.5439229059323647 papers:0.13795994625990643 ;:0.1204522945777563 peace:0.1062967920244113 :0.09136806120556128 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.4796443371060402 any:0.16304897252611703 take:0.14700062233364122 be:0.11976105109642601 :0.09054501693777561 +army:0.306908986714605 army,:0.2093552401799441 government:0.19367141438211732 government,:0.15770183138814187 :0.1323625273351918 +people:0.2772453388601207 funeral:0.18242894609454846 result:0.18231352872428724 bill:0.18213413797425754 :0.17587804834678616 +to:0.9423987200426412 in:0.021480310655547535 all:0.013996095784264749 by:0.012071630841721323 :0.010053242675825092 +months:0.7586631752616985 years:0.09942126193496156 weeks:0.08247731478289531 days:0.031547518965051265 :0.02789072905539332 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8095983603213667 and:0.06276734523790682 in:0.04992287836159593 for:0.046920800125487806 :0.030790615953642853 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +would:0.27838783865743433 must:0.2335908917818225 should:0.18212034466359553 shall:0.1765517907930046 :0.12934913410414317 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.46678226469322387 that:0.23937477472396507 by:0.1061296023524854 upon:0.1048643403031399 :0.08284901792718566 +very:0.31734991282775526 man:0.2787080850174038 most:0.20779385013572343 more:0.13312964940894312 :0.0630185026101743 +on:0.5398234195379097 last:0.2541329132496575 and:0.1438662029847571 On:0.032271903891274795 :0.029905560336400974 +and:0.34963577359007525 of:0.2247692072472189 in:0.22134542150077532 from:0.13231699170031633 :0.07193260596161412 +long:0.9177955547148327 some:0.02286983719235276 that:0.022763546795425887 hard:0.020248560212812346 :0.016322501084576415 +right:0.32570524994821026 subject:0.25450752678665106 way:0.1630479896136901 time:0.12847798764276902 :0.1282612460086796 +that:0.43194516597733723 which:0.171468313876108 and:0.17139521040640232 when:0.12115129399512571 :0.1040400157450266 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +his:0.3604390011521138 their:0.2719211867823639 the:0.15608241028119108 been:0.11897398823798697 :0.0925834135463443 +them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 +men:0.600183010537192 children:0.12154747210483548 years:0.10853164902228003 houses:0.08789175847790959 :0.08184610985778298 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +he:0.3690632240258226 they:0.2979326823560751 we:0.18839229448742703 I:0.07944276038085882 :0.06516903874981635 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2830259028783202 said:0.22214319047199943 Jersey:0.2133497014862358 Pennsylvania:0.17700083268571543 :0.10448037247772919 +the:0.7942089973766258 an:0.09620216709342341 his:0.045719945323770016 tho:0.039190301166861924 :0.024678589039318775 +able:0.40678286427927557 allowed:0.16837189371372713 made:0.16004441386181978 used:0.13387521084376586 :0.13092561730141164 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8681351720286505 in:0.0712087843140318 ot:0.02776863951695661 ol:0.02212244913290932 :0.010764955007451789 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +home:0.23313203653119388 taxation:0.2247886371379031 success:0.20913973423230964 time:0.17121990326335784 :0.16171968883523544 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.35915517270467295 of:0.27617951582180245 that:0.1878039330766362 as:0.10832644576462883 :0.06853493263225968 +few:0.790799680718384 two:0.061656888916446564 one:0.051859741694763116 five:0.04879398443813169 :0.04688970423227467 +the:0.7950123154747399 this:0.10796235737670391 a:0.04921234151180027 tho:0.03426050605033126 :0.013552479586424459 +in:0.49941743760780455 of:0.23479745720933168 In:0.1458222690405727 and:0.07617976676143633 :0.043783069380854744 +has:0.30867661736453283 are:0.2841188454810675 had:0.17618425380453526 have:0.1695056241704326 :0.061514659179431885 +people:0.4845051036449967 same:0.19824107039905886 men:0.14022728286294306 country:0.10165410160191408 :0.0753724414910874 +one:0.3377750500244458 the:0.2020251601908389 by:0.1857257910165216 that:0.1528713332852759 :0.1216026654829178 +sell:0.2789031811854642 one:0.21012209263887743 whether:0.17818014786755743 make:0.17529727722933416 :0.15749730107876678 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +great:0.2521214791881242 few:0.20826900493723902 general:0.20515470467419947 good:0.1703662841856413 :0.16408852701479598 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +but:0.3159065418514061 and:0.3006311596830908 that:0.13841080627801783 when:0.12409454753142625 :0.12095694465605901 +any:0.2707162318558559 the:0.22611886865558528 a:0.2252033704701783 this:0.2062629766192953 :0.07169855239908525 +and:0.8533948182852643 years:0.05344167201135389 are:0.03367144243662373 were:0.03061137415642594 :0.028880693110332027 +time:0.32966399264046614 way:0.20625510730842453 best:0.19671556450530375 said:0.1415754802767744 :0.12578985526903122 +taken:0.36109347040665185 come:0.19660939518540227 made:0.17639900343595585 picked:0.1437022773329085 :0.12219585363908152 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +said:0.40785917986697134 the:0.28853883237842104 this:0.18147920682172106 Lake:0.07781585254243581 :0.04430692839045105 +der:0.627111152377035 til:0.34315996418721895 known,:0.011768398074837339 less:0.009097382916741673 :0.008863102444167222 +is:0.6323329355908928 the:0.15534831553495954 Is:0.0870643855939726 ever:0.07493539026746049 :0.050318973012714596 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.31014865362778976 of:0.29634344457061784 in:0.15426244923110896 by:0.1537658550668828 :0.08547959750360062 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.3690637661277975 the:0.23911882787897407 in:0.23053126320222586 no:0.08157806643351823 :0.0797080763574845 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +property:0.4801815059266159 horse:0.20309549054440904 hands:0.12256986960349282 horses:0.10079512173265506 :0.09335801219282705 +that:0.9544564646694316 as:0.01790650874803629 above,:0.01176627028898892 in:0.009020839417187912 :0.006849916876355156 +others.:0.27665244441116255 water.:0.239509453206523 wife.:0.23052297716070433 it:0.14084810653326998 :0.11246701868834014 +by:0.27931580700455927 in:0.271842388907853 of:0.18459363326587933 to:0.17738299184261547 :0.08686517897909286 +as:0.259935691746607 is:0.22022128443439368 of:0.18556067141486962 was:0.16751994779356907 :0.16676240461056066 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +way:0.26256603694744957 own.:0.21756945259285623 time:0.17772217861276138 hands.:0.1754669520508731 :0.16667537979605992 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5439092097384569 that:0.15991789036342824 over:0.15503837557295697 in:0.09341063443498619 :0.04772388989017147 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +at:0.36385773209115574 of:0.22456377925971574 in:0.15961776130102448 ut:0.12845508388009697 :0.12350564346800703 +ceived:0.7111650388252285 quired:0.10355816136734979 duced:0.0726373939723279 form:0.057402239229121604 :0.05523716660597208 +which:0.3710595560155367 and:0.27108264997088405 but:0.17513092144337364 when:0.10682654131743471 :0.07590033125277094 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +New:0.9929909030634123 Now:0.004547618028067338 new:0.001029229763626775 South:0.0007787708970185721 :0.0006534782478749187 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +go:0.36080905261796875 get:0.21572081582449512 the:0.19245800982018244 come:0.1390059287436487 :0.092006192993705 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +wife:0.4369006917939258 wife,:0.1525418985079288 life:0.1515419042429613 head:0.13521155646257982 :0.1238039489926044 +way:0.34212704084197454 necessary:0.19995134463355824 thing:0.1771505284272098 one:0.15710832647964076 :0.12366275961761668 +@:0.4746373911447295 at:0.16889376833154082 .:0.14198207334144972 and:0.10983740214813478 :0.10464936503414517 +First:0.3201989763309226 Fourth:0.24535675845099278 Third:0.15714901519496793 Second:0.14849963570178126 :0.12879561432133538 +over:0.2975677496060477 to:0.26511401928125955 into:0.2011410397604788 on:0.1362555669088669 :0.09992162444334694 +time:0.2983924542466915 ":0.21281313955068412 country.:0.18341338226849652 last:0.15313439756842848 :0.15224662636569944 +woman:0.40244374880215844 woman,:0.3149407875727293 Mr.:0.19659702036752266 however,:0.04900936038789647 :0.037009082869692914 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8880002583342741 tho:0.04272304503864015 our:0.028825671711379498 an:0.023528171929326637 :0.016922852986379598 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.35096210603241507 they:0.26732894377813043 it:0.20226824765162676 we:0.09213658236123283 :0.08730412017659483 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +than:0.7161263558862053 or:0.11060325865937586 interested:0.06486150044266481 particularly:0.061397598495206984 :0.04701128651654703 +thought:0.32329536379595286 did:0.22790301015028594 had:0.20333792840868226 could:0.1261276802995124 :0.11933601734556662 +number:0.35208990854993516 part:0.21928828919674237 member:0.17736196365867013 portion:0.13253161499696547 :0.11872822359768706 +American:0.42902152397438315 whole:0.27493048640317086 young:0.10850298016370712 colored:0.10693133720200369 :0.0806136722567352 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +part:0.4208536376287847 door:0.33958351646911955 line:0.08986650844955207 and:0.07708376315771355 :0.0726125742948303 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +no:0.2594274482107354 the:0.2240554250296065 every:0.2142785983720492 that:0.15480448886433426 :0.14743403952327452 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.25277025583393287 period:0.21098599328048945 line:0.18792411766422568 list:0.1814930331873122 :0.16682660003403987 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.7275771243872489 In:0.12383577243509256 on:0.10599318707101218 within:0.021717987333150633 :0.02087592877349574 +first:0.23333153493800335 work:0.22313594995341368 time:0.19580433822334709 bill:0.17691861218589439 :0.17080956469934155 +the:0.7770997165853794 this:0.16695130695412497 tho:0.02444488018199495 our:0.0233909068917048 :0.008113189386795784 +of:0.930176268826511 to:0.021525050211288668 ot:0.01710915504454046 and:0.01584290861645429 :0.015346617301205569 +be:0.8448664814866796 have:0.06518043816529201 bo:0.0645718451733313 easily:0.015036735449484138 :0.010344499725212808 +fort:0.9023844795208578 feet:0.08819951134776836 feet,:0.004206140827251062 face:0.0034376643126926543 :0.001772203991430224 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.35815164565794383 it:0.2816022276921985 they:0.1524697744189323 she:0.1291455926209568 :0.0786307596099687 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.47778468984403427 and:0.21943400801247065 section:0.11829360113063135 township:0.09321789412560061 :0.09126980688726304 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.5670267692372785 was:0.26529127789549156 Is:0.1179355383667739 has:0.037622996326004125 :0.012123418174451749 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.3225148992087138 have:0.2881374041132473 take:0.1694146134131783 pay:0.12041629960737624 :0.09951678365748434 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7660884837442786 an:0.11830620397699325 his:0.0550037620933306 tho:0.03101774187209254 :0.029583808313305027 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.30704978239311403 it:0.25161728489132673 he:0.23007606134778166 there:0.12750160756287154 :0.08375526380490604 +law:0.2415154069083313 bill:0.19478009397581153 amount:0.1929926626018558 country:0.19043831197547426 :0.18027352453852716 +the:0.7259538683228355 a:0.1789122878967126 said:0.05510174768344206 tho:0.024646319368010212 :0.015385776728999559 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.38558555367611724 him:0.23087118641368554 the:0.1381569531158991 it:0.12809551405506675 :0.11729079273923118 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +The:0.7396435720554078 A:0.09707497234945152 This:0.09276072278459284 the:0.04657912762300908 :0.023941605187538836 +find:0.24052805749408546 be:0.212947685883528 show:0.20525460156250697 say:0.1968911662329019 :0.14437848882697768 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +north:0.21356441425188846 same:0.2076575944729774 only:0.20720368184686808 south:0.20167922950265135 :0.16989507992561467 +and:0.46403946969354576 Mr.:0.23450346483047177 the:0.11196474192747169 Dr.:0.09828892908966945 :0.09120339445884125 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +mining:0.37977932007478993 the:0.21164378398059916 he:0.17202004699331772 their:0.12588291159712117 :0.11067393735417197 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4271954709662433 and:0.2847589128314134 in:0.14824710821902318 at:0.08588061399305509 :0.05391789399026506 +so:0.40088062608467495 how:0.15920387449882384 the:0.15460638598438162 in:0.14465351953726924 :0.1406555938948503 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.28092109184577946 day:0.2779536374172674 time:0.19134610663388263 class:0.13195047524192088 :0.11782868886114961 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +with:0.31915989161095953 in:0.22764939329618852 as:0.1762934707424486 to:0.16636881042173066 :0.11052843392867273 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.4311874681553715 may:0.20171570997978597 would:0.15599469524284743 shall:0.12314748397336106 :0.0879546426486341 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.48802077630352975 which:0.2177135722865635 having:0.10524448013578484 course,:0.09877742223112841 :0.09024374904299352 +of:0.29429515696927255 ceived:0.24108681259069437 in:0.19886756817761778 to:0.15697929829033955 :0.1087711639720756 +fact:0.6811856975996785 said:0.129424747603616 ground:0.0668337494128204 belief:0.06258864438599437 :0.05996716099789066 +finally:0.3578730965020545 not:0.3153016850873408 soon:0.12034975359025547 never:0.1095648275131224 :0.09691063730722671 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +But:0.6101646691495285 And:0.24319952985253623 This:0.06116636034024915 It:0.048580561615300014 :0.036888879042386 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.41548860639733753 that:0.2127326657918231 good.:0.1839280273086548 them.:0.10018702968043185 :0.08766367082175261 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +amount:0.2662692671636648 country:0.2197624766034563 world:0.1785491906011432 work:0.17077520196742044 :0.16464386366431538 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.22917578371917904 as:0.21113878861761545 went:0.20762908891088971 delivered:0.1986088026299503 :0.15344753612236559 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +nothing:0.6978930692746044 anything:0.11818509083533987 something:0.07749016617081461 a:0.06265115226282007 :0.043780521456421154 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +know:0.30777271439161624 believe:0.2950578506344941 so:0.14959199005035662 think:0.12619838322756602 :0.12137906169596699 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +result:0.31567675277058016 man:0.2052496829979448 men:0.1713678799908639 work:0.16794510069278754 :0.13976058354782356 +or:0.4144178532425718 of:0.31597368991564667 hundred:0.10979323703820713 thing:0.08974589218758706 :0.07006932761598733 +by:0.5869952677119109 the:0.24330699121803145 express:0.10552041843975295 to:0.04903253334403447 :0.015144789286270163 +that:0.6477550336207094 of:0.14095654037981262 but:0.09089799533493571 in:0.0780039739695611 :0.042386456694981284 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +addition:0.45117525212813114 order:0.2836174243931283 regard:0.18388502857632036 reply:0.04106111744362021 :0.04026117745880002 +a:0.5160648775786237 the:0.24721923202755167 their:0.108712114260599 his:0.08624706885619093 :0.041756707277034635 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.546548626178719 their:0.1707393036049362 his:0.1160723929222134 two:0.08583924169910842 :0.08080043559502306 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.3872872406276764 the:0.25965681856413325 it:0.17869788035951198 they:0.08935155397827056 :0.08500650647040779 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +more:0.3600485604499394 one:0.34027443210110386 killed:0.10866528857299437 on:0.10172669486861682 :0.08928502400734578 +that:0.3873773136937177 to:0.3378967123737225 thereto:0.1262307531239078 largely:0.08234307946637731 :0.06615214134227464 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +fault:0.41447709130642435 voted:0.2748896196682557 scribed:0.11798455064669308 Cuba:0.10140804725455073 :0.09124069112407604 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4647916236694661 in:0.19374264666183239 but:0.1395320165172028 when:0.11392587970047469 :0.08800783345102402 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +costs:0.39163534554654983 activity:0.18092613216592124 demand:0.15791931649693172 production:0.14515423507739345 :0.12436497071320377 +the:0.8555785686910101 their:0.05001588354410009 our:0.038455733002707375 tho:0.029973666913140982 :0.025976147849041453 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.28680472542009455 the:0.24142890097744624 Rev.:0.2096003311331078 that:0.19454594052737884 :0.06762010194197259 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.33268533852543214 ir:0.30101758171474857 y:0.14590222164859198 box:0.12087030958048844 :0.09952454853073893 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5672636725006927 any:0.20912937836683299 every:0.1222353406059048 some:0.06520738567587397 :0.03616422285069559 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +eyes:0.3138104779961678 services:0.19837155763542919 wife:0.18954261236463132 friends:0.16867320467277924 :0.12960214733099243 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +his:0.4526417523936129 good:0.21380336354262552 the:0.1480337432486028 perfect:0.10100799777119275 :0.0845131430439661 +of:0.639255398883875 and:0.16555302033360464 are:0.07002494440275199 in:0.06637306941353473 :0.05879356696623372 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.3391290146937289 the:0.31816394106563506 President:0.22524020527298683 Colonel:0.09002172439336306 :0.02744511457428616 +well.:0.48828920970100437 good.:0.23507758704800163 old.:0.1708080413934155 much:0.05704652005602676 :0.04877864180155169 +small:0.488481356183922 large:0.13161754551333046 good:0.1299471234490841 sudden:0.1258370607677404 :0.12411691408592303 +and:0.5045378400559439 was:0.18821236617692913 is:0.18625443328099103 always:0.06420194626848068 :0.05679341421765529 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.36167462997378513 have:0.24512686791819055 were:0.19272262079081176 had:0.12213282707286675 :0.0783430542443457 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.8190970181320623 possibly:0.047289266773906366 hardly:0.04638397892006206 never:0.04401427758291523 :0.04321545859105398 +known:0.4447886996926174 as:0.34380612624222956 dressed:0.11318328223055864 and:0.05296811045122756 :0.045253781383366797 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.669163230069696 a:0.14090664248678716 his:0.07360187284114518 its:0.059632348808587844 :0.05669590579378375 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.42240895688642793 with:0.1616060980521413 every:0.1523216585039801 of:0.1410096191581715 :0.12265366739927916 +born:0.2791222590679705 made:0.20847557865280278 found:0.19957373610466836 held:0.17380270864971717 :0.13902571752484116 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +danger:0.32732899749304395 courage:0.3049951534241225 son:0.13002686627257368 right:0.12602951259085168 :0.11161947021940813 +that:0.9601654399210661 which:0.015020592746731705 thnt:0.012838499356416292 tbat:0.006043475672230368 :0.0059319923035556455 +amounted:0.2588604840775276 is:0.24169292618513413 able:0.239300318268135 ought:0.13602198633868406 :0.12412428513051924 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +of:0.4402986510292945 in:0.23948918467251906 by:0.1743425303564942 to:0.08546039348607902 :0.0604092404556132 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.5432224938228664 it:0.20549070221055443 she:0.13499245504023247 there:0.07687270333584406 :0.0394216455905027 +cent:0.5433192780457132 cent,:0.2849524494048981 acre:0.07553968816306565 acre,:0.056498248250948076 :0.03969033613537484 +dear:0.3584296103574732 an:0.24222522786254702 the:0.2019861859471496 good:0.10255529575392441 :0.09480368007890573 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.34935844722640685 based:0.1980949535718719 and:0.17021421017169708 made:0.16701201565932852 :0.11532037337069577 +and:0.4579683528729015 so:0.2473753878093173 as:0.14795967123594655 but:0.07911930357170344 :0.0675772845101312 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +same:0.5688691995997147 State:0.11622412912140526 court:0.11360395807372128 Board:0.10643338582183512 :0.09486932738332357 +done.:0.3595045532875417 made.:0.3351834662592732 used.:0.15099459983471136 so.:0.08228405791884845 :0.07203332269962533 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.4203348917929265 been:0.3371599399720088 in:0.10272864670502378 all:0.08265988272952915 :0.05711663880051194 +did:0.2748933283018144 are:0.2299630139720583 could:0.21931520844996785 do:0.15225201193571505 :0.12357643734044439 +in:0.3414783076631058 of:0.2811535149464247 and:0.2036155415852208 last:0.0994106573236452 :0.07434197848160341 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +but:0.39259448562684607 and:0.3338134447130968 or:0.17263123449454845 however,:0.05808395205424334 :0.042876883111265196 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8745552150885637 this:0.051637188414458746 tho:0.030649276837279138 a:0.022362558075969236 :0.020795761583729262 +bill:0.3130192209026884 result:0.207745711953939 bride:0.1790661194044228 man:0.1504124945085327 :0.14975645323041717 +the:0.7559049446360045 this:0.12450718353307108 that:0.05012889322854839 a:0.040844584861910414 :0.0286143937404655 +a:0.5387868653774766 the:0.21678495821206697 of:0.15481774175184923 and:0.05475397459691357 :0.03485646006169363 +the:0.7800238478547973 a:0.13126616919654255 this:0.034475463843325144 complete:0.029595896519629676 :0.024638622585705282 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +strictly:0.3652737970681104 The:0.1952688697606444 a:0.15479031873212953 or:0.14716598488938243 :0.13750102954973326 +make:0.2806802102732218 do:0.22304136220252757 take:0.22266513946270058 of:0.1568509671714885 :0.11676232089006154 +Long:0.33781648054041147 Young:0.3271450336851469 I:0.16123448671036375 had:0.11100474428039507 :0.06279925478368283 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +8,:0.5384606284332261 8:0.2063821483204047 township:0.11038859758365796 block:0.07914809615072071 :0.06562052951199067 +hard:0.5729780077883858 slow:0.1825555655050471 to:0.11500533553828317 than:0.07888326130334014 :0.050577829864943864 +of:0.9239439247591216 from:0.029060927030739418 ot:0.02626865634789293 that:0.011699822598323386 :0.009026669263922713 +all:0.5372553141014668 went:0.14947982388886316 turned:0.13615469868191765 it:0.09834377868219196 :0.07876638464556045 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +con:0.2605471759492543 com:0.2427620274902293 re:0.20454855386311607 pro:0.1463396349729638 :0.14580260772443665 +to:0.8872868980724133 would:0.04773946996316585 will:0.03858548192536854 they:0.015337446054291293 :0.01105070398476096 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +dollars:0.24807875783260766 ten:0.24456113467699467 six:0.19874383274995844 the:0.15771210253068021 :0.15090417220975896 +east:0.54192778772095 west:0.3289558715967639 and:0.05937124116590051 East:0.04684596257653883 :0.022899136939846645 +hundred:0.9757941172136148 per:0.013835940228528644 teen:0.005395018840565925 five:0.0029546572522540096 :0.0020202664650367207 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +Mr.:0.3469301874896487 the:0.3215782077949857 said:0.21458094710962397 Mrs.:0.07359307982566018 :0.04331757778008142 +!:0.299346637381734 paper:0.28112973282735926 prayer:0.14045670148475461 says::0.14002898138184955 :0.13903794692430255 +six:0.26147641627409246 two:0.2053290574372677 four:0.1912442373917171 three:0.19062161628454904 :0.15132867261237376 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.5212847390129304 out:0.15294187241192392 composed:0.1327814462586652 made:0.11838493255350334 :0.07460700976297718 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +money:0.5081846204561211 them:0.13760274404447645 up:0.13671535738524845 funds:0.12230408773494539 :0.09519319037920843 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5438333315800146 his:0.22417386900518194 their:0.12347922408586305 our:0.0626341956761404 :0.045879379652800076 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.21785297167577372 he:0.2169574859986235 I:0.21133393198481698 there:0.19945122449926947 :0.1544043858415165 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7797344754095714 those:0.10796030010889249 its:0.0437838733634992 tho:0.039219113857205286 :0.029302237260831705 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +purpose:0.20719197122450905 State:0.20592744932833862 day:0.19613414923494918 people:0.19556251276437905 :0.19518391744782418 +city:0.22369456742961225 amount:0.20773323631999405 day:0.2060255143945402 part:0.18175789781806492 :0.18078878403778864 +all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 +little:0.27960233713924465 hands,:0.21283003264381584 own,:0.20478819677124624 heads:0.16264291613699777 :0.14013651730869542 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.46165561570061503 they:0.22259237521197597 soon:0.12534293039924846 may:0.1201308324509084 :0.07027824623725214 +spite:0.25937599619441193 favor:0.24856633178795834 view:0.18836076534936974 one:0.15714766874062056 :0.14654923792763935 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.4210591363932454 that:0.1911666436118778 which:0.1600370211918627 and:0.11672228855150803 :0.11101491025150613 +and:0.5303890582097475 or:0.14536737606998745 matters:0.1328763671829937 condition,:0.12366732482955331 :0.06769987370771813 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +up,:0.29776090099080876 self:0.24783023772295332 came:0.1663776579489912 it:0.14900146242987486 :0.13902974090737188 +and:0.5046136865495877 to:0.15673655104597012 in:0.15458438340398312 on:0.11505529821246993 :0.06901008078798908 +way:0.28124888579286567 back:0.22986057283811506 coming:0.1753029458753974 same:0.17170800196620306 :0.14187959352741877 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.24335648632809345 them,:0.22859449796018552 them:0.21031036888836724 land:0.1634742371934418 :0.15426440962991192 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +years:0.8851052501843443 months:0.07075355161926064 year:0.015234906381215706 weeks:0.015150737899518568 :0.013755553915660959 +a:0.633470234878558 to:0.15392664156641994 the:0.14263887170125863 may:0.04549085437343472 :0.024473397480328625 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8735784797508618 tho:0.0659292933120426 his:0.03027731975756196 their:0.015739644227057165 :0.014475262952476718 +good:0.5569687244572511 little:0.14975777966967252 very:0.10622920923497856 great:0.10468681286265966 :0.08235747377543817 +wife:0.3569221489717507 father:0.22857873359589856 wife,:0.19546441698666933 life:0.11723956735982981 :0.10179513308585146 +two:0.2672355438288352 law:0.21730257568369798 city:0.182407130093737 person:0.18157610707596214 :0.15147864331776772 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7844353725315011 a:0.06334662887462861 their:0.0583690304549873 his:0.057660594584796984 :0.03618837355408591 +went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +at:0.7951328941787296 about:0.07333077985321648 of:0.04985943399795464 after:0.04783596122761532 :0.03384093074248403 +De:0.28130470639665467 the:0.2580167915581302 turned:0.19329049115440672 .:0.17192601465709403 :0.09546199623371446 +to:0.4439130350833303 a:0.220756627287455 easily:0.14066533945362208 would:0.10515684196998273 :0.08950815620560983 +same:0.2935278292913103 country:0.22080209841519935 people:0.17171950052431817 world:0.16721745287663906 :0.1467331188925329 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +years,:0.34609881941467635 or:0.24651870106854287 years:0.20611428105260357 hours,:0.1176972686254373 :0.08357092983873994 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +in:0.3874534483747249 to:0.19879621566410682 on:0.17440802911663345 at:0.15220287747568603 :0.08713942936884883 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +with:0.38456224945123907 is:0.19610388702897114 of:0.16660169873734637 was:0.13586541230951585 :0.11686675247292769 +this:0.2673790075723193 the:0.23913592670253167 an:0.1868061640187922 most:0.1677833144850935 :0.13889558722126336 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.47632707298325605 away.:0.29255416447081195 from:0.1118364149979445 off.:0.07003674299604486 :0.04924560455194265 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.3335813397721137 in:0.18910714128048944 day,:0.1652063271474253 to:0.15842708680565806 :0.15367810499431347 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.31900210988456856 sale:0.23968257479751517 land:0.20620760882781722 interest:0.13039512917043658 :0.10471257731966242 +the:0.7970721737598354 this:0.0912894663595471 which:0.048054054226533596 that:0.03667538810277539 :0.0269089175513085 +the:0.6447579128905973 a:0.262823075373254 their:0.03436275905720854 tho:0.03300706269993356 :0.025049189979006615 +the:0.3440270405574617 all:0.29718243600730293 to:0.1701064836387148 and:0.09790459931739261 :0.09077944047912807 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +go:0.409634576180319 come:0.1820413690832247 him:0.15491679222342905 try:0.12769469573402084 :0.12571256677900647 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.6435170137795153 never:0.13701617351193376 probably:0.0950480329999832 ever:0.07576793634864694 :0.04865084335992091 +primary:0.9275326171796828 the:0.03649437720712617 annual:0.027241489698357563 an:0.004499072026087964 :0.004232443888745559 +of:0.4860578577807202 to:0.14716363427752882 that:0.14054142052057028 in:0.1344897430274412 :0.09174734439373938 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +work:0.26243221478401885 name:0.20498239200942472 action:0.18909506593088465 way:0.1824621429042351 :0.1610281843714367 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.9295343348405692 bo:0.04051886402428783 have:0.014652968660167149 he:0.011027882687422299 :0.004265949787553628 +was:0.6809599675314586 is:0.14400605767736335 road:0.06307815006107852 steps:0.05714820478773993 :0.05480761994235973 +much:0.2671333698183584 no:0.22705393131215398 be:0.2157563008859743 not:0.16662633690414685 :0.12343006107936651 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +old:0.22730943270693013 new:0.21485563133906532 solid:0.19678393987701032 greatest:0.18823736168553248 :0.1728136343914617 +and:0.36568615966380424 employed:0.2037224746361292 was:0.18152202615315383 officer:0.14261127293355358 :0.10645806661335913 +to:0.3034415178255685 of:0.22715732891480034 can:0.21879147112862748 in:0.14484126834061387 :0.10576841379038987 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.36116429189647836 in:0.19222718335719152 to:0.18480426666810834 as:0.13324811211622656 :0.12855614596199513 +an:0.7366975388717764 the:0.10069736362106202 ample:0.09082455325115045 no:0.038784890585020756 :0.03299565367099047 +was:0.4213957096478734 and:0.22343590100459695 is:0.1629555187213358 be:0.10562977509944085 :0.08658309552675302 +work:0.272643924610897 friends:0.26613010593887104 opinion:0.17967238697371757 lives:0.14427873799009353 :0.13727484448642094 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +charged:0.2512996352109228 covered:0.23101454300042823 connected:0.2121225109797124 filled:0.2047917280668185 :0.10077158274211816 +is:0.4317109564267614 are:0.22067932389966047 was:0.143331377354553 does:0.11104147891047116 :0.09323686340855394 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3021282096895856 steamer:0.24736712300015634 government.:0.21262626466948442 ship:0.12784544304182363 :0.11003295959895006 +all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.8249053555574554 add:0.05233667440530701 bo:0.04895969367453551 not:0.04213288712623596 :0.03166538923646624 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.37293767728857213 find:0.2066000981953925 see:0.16670293740054568 give:0.15585885339160482 :0.09790043372388488 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.46362634460765656 was:0.21678471601460741 that:0.1142431184991635 has:0.10586928482936012 :0.09947653604921244 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7402073530983121 our:0.09751048500683773 these:0.08256289857884755 he:0.05269683272984352 :0.027022430586159246 +that:0.31217221812033263 in:0.2674446517771789 with:0.14761935616281102 at:0.14393860209577636 :0.12882517184390124 +The:0.9365093210650632 Tho:0.03267490034936835 Tbe:0.022731720311081338 Sunday:0.004784549974271303 :0.0032995083002158297 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.9151293621788904 any:0.03723389372639334 no:0.02028040963354052 this:0.014317103654171711 :0.013039230807003985 +date,:0.3268685187372485 it:0.21437835499714536 all,:0.18563410293800628 him:0.16528295856531944 :0.10783606476228044 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +along:0.4106308369118688 with:0.2669748619374524 in:0.11964937289346426 to:0.11016220309825438 :0.09258272515896016 +and:0.2627128708593829 on:0.24220093643076918 in:0.20401019085810282 at:0.1771615910732133 :0.11391441077853189 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.8908931356003534 of:0.04508578710223039 or:0.02533414379319094 on:0.02314986621837228 :0.015537067285852996 +A.:0.27924514875089407 W.:0.21902242966336255 J.:0.215534298590649 M.:0.14960790356246953 :0.13659021943262492 +C.:0.3564315708586905 G.:0.18370789836979895 W.:0.1652005943634461 J.:0.16428729588489865 :0.1303726405231658 +the:0.6789150138818533 a:0.1583557399360765 our:0.10812585945203965 tho:0.03370271835455623 :0.0209006683754742 +persons:0.28602365967722176 that:0.2393881104805356 interested:0.16822761757981586 times:0.16441630860446338 :0.14194430365796337 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5272559403442969 and:0.29639990507029285 with:0.09770898410268394 An:0.04238342955543394 :0.036251740927292206 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.3142559086876891 any:0.27753924140881475 every:0.2106493590972288 some:0.11551507788719186 :0.08204041291907542 +able:0.3592632806057296 allowed:0.20418202455383563 used:0.1484971377437692 necessary:0.14775269065638058 :0.1403048664402851 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +only:0.4466786291758313 present:0.15571616299493782 time:0.14760864568358734 form:0.14400996960956275 :0.10598659253608061 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +hundred:0.8577904117820284 year,:0.04048115438049983 year:0.03727109210214192 side,:0.03399877949254926 :0.030458562242780485 +necessary:0.25931622031166096 ready:0.20610421314042437 possible:0.20110341172972038 bids:0.1811273759145347 :0.15234877890365964 +that:0.23795482088240447 and:0.2340174999936713 one:0.23060197251796813 limit:0.15549725161557276 :0.1419284549903833 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +said:0.5134116802803824 King:0.2504692177999406 Mr.:0.09375436948534346 Prince:0.0866987615626479 :0.05566597087168572 +the:0.5665927641274823 about:0.1867177982283468 a:0.10708786411738315 every:0.0735786229693728 :0.0660229505574151 +law:0.2415154069083313 bill:0.19478009397581153 amount:0.1929926626018558 country:0.19043831197547426 :0.18027352453852716 +south:0.2457968828404529 north:0.24404247147779493 west:0.21590956572120368 east:0.1925224506476388 :0.10172862931290977 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.34981863397573815 a:0.27238739612280927 to:0.14849105380492447 this:0.13408836729978954 :0.09521454879673866 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.2715866198719692 As:0.2216613766041548 is:0.1986716426594113 and:0.1671356741124771 :0.14094468675198765 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Gold:0.39034105246064177 Tom:0.27903987622045306 Mr.:0.16001894053752133 Joe:0.09412421008628073 :0.07647592069510312 +would:0.4419782475063943 will:0.3091270683107506 can:0.10101748328249009 could:0.07409262498680025 :0.07378457591356463 +it:0.41827966359254964 one:0.17919135218275806 Mr.:0.1498450113413683 there:0.13106869970348767 :0.12161527317983611 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +two:0.41405401051618107 three:0.2079415357090614 four:0.1816978376638786 five:0.1075827879109516 :0.08872382819992722 +the:0.8501983392446171 his:0.056303620878828654 tho:0.033454450206802586 keep:0.03234550634287053 :0.027698083326881274 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +States:0.9926596826417137 States,:0.0053123008354880605 State:0.001014582005734679 district:0.0005826281135466213 :0.0004308064035170354 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +about:0.47702921625519373 and:0.2207458658427862 containing:0.17949124575542913 over:0.07129310276649026 :0.05144056938010069 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5186873675969768 a:0.17987098101253138 by:0.1218240672984579 at:0.09162751439967391 :0.08799006969236006 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7162897065424283 along:0.10697349126031337 from:0.08839645168858384 to:0.05534710714597227 :0.03299324336270213 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +only:0.650368602020232 exceeding:0.17048158202333683 be:0.08889579336770809 exceed:0.05244874443828801 :0.037805278150435 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.40659642308314364 of:0.36736853787921947 that:0.0887140261460807 on:0.07079034168562036 :0.06653067120593592 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Some:0.37515469970815746 One:0.23873653499498604 Most:0.1696014589781311 All:0.1241430189635748 :0.09236428735515058 +the:0.7196806068040005 their:0.08684155818628836 all:0.08494980756720391 these:0.07184579409084513 :0.036682233351662104 +way:0.34212704084197454 necessary:0.19995134463355824 thing:0.1771505284272098 one:0.15710832647964076 :0.12366275961761668 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.703654888077665 in:0.10178769064301207 to:0.0956703691832007 on:0.049562377586779685 :0.049324674509342546 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +on:0.24634352760202752 born:0.24025647251395602 dated:0.221083422732512 in:0.2030366209814277 :0.08927995617007665 +possession:0.24934089490618588 head:0.2229970747130314 name:0.19757809656835887 proud:0.1651067942976489 :0.16497713951477497 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.5340216431228111 men:0.13854308742444435 I:0.12562795294032067 country:0.10898129682762674 :0.09282601968479713 +into:0.32401410082501686 on:0.2567460347412252 from:0.1709386631397564 in:0.14940416819318025 :0.09889703310082122 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.34123386168573483 tended:0.1818055676314314 terest:0.16910750712574027 duced:0.15690198264601002 :0.15095108091108347 +had:0.25487938660346593 went:0.2505466441599175 was:0.19684330087856647 is:0.15975910861351597 :0.13797155974453398 +him,:0.27380728172181573 be:0.19649795736085857 him:0.19098230879313408 me,:0.17372011034931062 :0.1649923417748811 +year,:0.24519854055243612 claim:0.22812092683001128 bond:0.17765620093739168 furnish:0.17546381695035826 :0.17356051472980266 +der:0.5816856856951357 the:0.20200979758488835 usual:0.10291321058305043 ¬:0.060022232186047554 :0.05336907395087786 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +notice:0.7345173060034909 sale:0.15009365016833948 record:0.040836326984742224 service:0.03813951952821836 :0.03641319731520913 +the:0.49467357174155646 a:0.25219787468071253 no:0.1289382030545447 even:0.06249673579970307 :0.06169361472348327 +take:0.2757694441752828 this:0.19337833596809348 the:0.1928061636462718 its:0.1884151681721608 :0.14963088803819108 +of:0.6002650613305852 that:0.3192095929399396 in:0.042626712742168865 is:0.01964176337750474 :0.018256869609801676 +which:0.395559094690584 that:0.340979525530136 what:0.10194376202285553 whence:0.08442839730635626 :0.07708922045006823 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Said:0.5271359308067257 A:0.20265604026085665 All:0.10442692822812556 The:0.09706245432519052 :0.06871864637910167 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +published:0.24282578822983217 is:0.22649977848176978 and:0.2159544516469289 kept:0.17701734573024624 :0.1377026359112229 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +debt:0.5666344804453574 and:0.27314740826416656 will:0.05934915742987421 bonds,:0.055193657200545074 :0.045675296660056645 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +desire:0.39669949854602615 effort:0.20701379666679331 enough:0.14900655473326932 endeavor:0.14168322983784715 :0.10559692021606405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +National:0.9878355802986762 State:0.010655537809905236 Ward:0.0008446343923203083 the:0.00041272563629392875 :0.000251521862804173 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +think:0.2862033024477591 yet:0.20917107377509456 known.:0.2041327938691424 make:0.15581931625678977 :0.14467351365121417 +it,:0.430092226986272 him:0.20806782062805212 them:0.19338799718357677 any:0.09283744104601706 :0.07561451415608217 +that:0.4935048273151913 of:0.2835806059046921 to:0.11199642606114175 in:0.08290581188169388 :0.028012328837280994 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.3607600365235615 would:0.2397506929100848 may:0.1954534490063931 should:0.10820782251068554 :0.09582799904927516 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +more:0.5679288700342078 so,:0.14437590399432199 it,:0.11308190161102913 not:0.09244919422495419 :0.08216413013548707 +fair:0.30319023406105045 low:0.21170738566138 rough:0.17307579228995423 careful:0.170360590686318 :0.14166599730129745 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +District:0.23452632221947214 sum:0.23145625031291558 part:0.18341136673546907 Secretary:0.17637545725864193 :0.17423060347350142 +interests:0.5407253379974847 part:0.15839372288497572 method:0.10647533058676745 way:0.09838637812762033 :0.09601923040315168 +is:0.5807890936789079 was:0.21006058120304183 are:0.09204524663349903 Is:0.0696594134221988 :0.04744566506235239 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.7681054914625095 not:0.12978545344313522 bo:0.05699753147409612 hardly:0.02780076476332631 :0.017310758856932694 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +opportunity:0.28890486657815 order:0.2249940295307912 attempt:0.21037774289510267 effort:0.1777913698834426 :0.09793199111251345 +scribed:0.6934440477860147 crease:0.1567437093588171 voted:0.05726909616467996 mand:0.054396460147122565 :0.03814668654336574 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.3962248791403346 given:0.16330583264340004 followed:0.15945010195568401 taken:0.1560638116651507 :0.1249553745954307 +country:0.22490094227516813 time:0.22217724088881652 city:0.2192616749754143 fact:0.21920962490012869 :0.11445051696047236 +the:0.43767194054926134 a:0.25755612965326036 his:0.13123488632236882 by:0.11086181015419151 :0.062675233320918 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +large:0.3382615025081735 great:0.23347587546820261 slight:0.18661053554781964 general:0.12751544225946568 :0.11413664421633844 +be:0.4945048386391967 go:0.18742217251434012 stand:0.11134876512579833 carry:0.10386234462471756 :0.10286187909594728 +those:0.8161362038660727 all:0.06501191503098204 one:0.05071879349686124 know:0.03784165817386493 :0.030291429432219092 +place.:0.25393642850097936 own.:0.2184110536117229 action.:0.1849541414679408 effect.:0.17349772539533506 :0.16920065102402185 +other:0.4395693644964293 Republican:0.18202058653779038 one:0.1473504595042153 political:0.12932753804486907 :0.10173205141669607 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8176331660792981 on:0.060320051931120104 for:0.05218617091430157 ot:0.03678070590435006 :0.03307990517093026 +is:0.6246313903400704 a:0.14662391074749745 seems:0.13593557943776294 was:0.06320274211041368 :0.02960637736425541 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.6064079774696728 will:0.19528155091600338 would:0.10004283354170604 could:0.05911246527162929 :0.039155172800988465 +of:0.703980361610275 in:0.13038331510644643 and:0.08591007805417215 for:0.04147741802038505 :0.038248827208721414 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +States.:0.715373946004085 question.:0.0971494251856928 world.:0.06762747835014161 war.:0.0605833527989521 :0.05926579766112839 +did:0.2549690564273372 could:0.25449679385014523 am:0.2123431675213303 do:0.1743770641072077 :0.10381391809397955 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +able:0.40678286427927557 allowed:0.16837189371372713 made:0.16004441386181978 used:0.13387521084376586 :0.13092561730141164 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +She:0.4119302767634022 Mr.:0.32604154665806573 He:0.09432402586988158 It:0.09187088396853046 :0.07583326674011998 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +States:0.8723920034291169 States,:0.1179505687326222 states:0.00407336820183364 State:0.0036469876550286042 :0.0019370719813986898 +same:0.27905913715653313 present:0.2491606791809853 State:0.1605905937171786 beginning:0.15878575393041286 :0.15240383601488994 +success.:0.36039684536108685 work.:0.25705178680185503 value.:0.140445077028373 good.:0.12303927332898618 :0.11906701747969882 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +country,:0.21541228459830133 way:0.21353368723433439 country:0.21054990963555595 way,:0.18870620382353784 :0.17179791470827047 +and:0.49108083013788784 but:0.18139391219836834 with:0.17093157060240904 in:0.07992181299985968 :0.07667187406147528 +by:0.42026236526667404 to:0.31569358338945847 that:0.15016784981869713 himself:0.05703017865779713 :0.05684602286737316 +to:0.8661171009557068 not:0.11805905474854685 lo:0.00843949202759917 never:0.005723046555840684 :0.0016613057123064684 +by:0.5085385600747797 and:0.17418276412903053 be:0.17418216292641697 the:0.07459271273753154 :0.06850380013224124 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +letter:0.25614025702378934 mile:0.24453732906499095 distance:0.2388177775648556 free:0.1632228982651789 :0.09728173808118526 +people:0.31521229998409783 readers:0.19670962216388432 citizens:0.19408794176961583 members:0.16668303074129934 :0.12730710534110273 +on:0.9646228028398763 ward:0.02013537882908458 hold:0.006338721488050623 ou:0.005197241238808129 :0.0037058556041803577 +certain:0.3677359514687681 sure:0.2646887370095844 social:0.2348776760464091 the:0.07659327643876844 :0.05610435903646999 +not:0.2599808858374498 likely:0.2159692321298194 going:0.19629134542596766 expected:0.17417924748384706 :0.15357928912291605 +say:0.3779922642102331 believe:0.2089265073674118 see:0.17420485918915704 understand:0.13310528071562908 :0.105771088517569 +long:0.2803729031443349 wife,:0.2124693809751383 life:0.19124521560949168 way:0.16145361248325554 :0.15445888778777964 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8715431330156252 its:0.04022526695430419 tho:0.038125022044270276 these:0.029631906112494888 :0.020474671873305407 +time:0.4698129620581315 shall:0.15002503097577854 was:0.14172298447573295 is:0.13651931343555793 :0.10191970905479915 +of:0.3543308703587281 that:0.23435551030303547 to:0.1742227160336633 and:0.15200124946792853 :0.08508965383664457 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +years:0.3925284022194942 days:0.19044719159361806 months:0.16588553013135193 miles:0.13632552175258714 :0.11481335430294858 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.31193080599670475 in:0.24766051126330121 for:0.16882936320537606 from:0.14401186640650512 :0.12756745312811285 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.6696542362564777 and:0.12184047638585109 with:0.11538567874463042 of:0.052334222070345604 :0.04078538654269511 +to:0.6003543515634543 for:0.3793585655768048 with:0.008365668220914958 lor:0.007436025177386987 :0.0044853894614389185 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.4114180446142976 shall:0.21895614135959776 to:0.14641891733277881 may:0.11548864896175115 :0.10771824773157476 +in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 +which:0.35296312408720415 it:0.2794070160046456 this:0.2246432250704566 what:0.07854804354576883 :0.06443859129192485 +the:0.272542629233529 which:0.2426317292726945 that:0.22568101955903805 whom:0.14193277316888264 :0.11721184876585579 +the:0.5431434956410964 such:0.14973357814393404 and:0.12779749364721782 any:0.09533678354195188 :0.08398864902579985 +in:0.4216172739950505 of:0.2250333508296883 and:0.1558323852342598 from:0.1072667537529028 :0.09025023618809848 +the:0.5443694439971554 be:0.17130976042688062 satisfy:0.1463313011747931 pay:0.09513711399201712 :0.04285238040915378 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.4201408477383329 would:0.21485036708721983 must:0.15835432627995463 can:0.1065899495285469 :0.10006450936594573 +medical:0.8439105455713698 and:0.06460040732212287 of:0.04840509405876353 known:0.030214524273347983 :0.012869428774395734 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.4849429980994014 with:0.24354615295510537 for:0.12128446979509507 by:0.07989761446016692 :0.0703287646902312 +on:0.636599180612559 last:0.14664843294219862 and:0.12145338393893262 next:0.05262259488468901 :0.04267640762162073 +Beginning:0.984880295310059 beginning:0.007892376227865308 All:0.003855635550667995 A:0.00235028173349893 :0.0010214111779087312 +own:0.5366381531999522 way:0.29549802737594505 former:0.06578951039026988 old:0.05192259883526667 :0.050151710198566166 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +work.:0.4590871275860211 of:0.21662491392676797 here.:0.21649555831502496 there.:0.0714603136148062 :0.03633208655737981 +would:0.44112951017513724 looked:0.22532464777315772 looks:0.1233377690595832 was:0.11026689046908718 :0.0999411825230347 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +any:0.30376720859294687 and:0.22575272819796477 all:0.20002010436331386 in:0.1449442840917995 :0.12551567475397496 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 +we:0.22740756431201908 it:0.2263187718030482 he:0.20721104431196474 they:0.2018653480331116 :0.13719727153985653 +wit::0.441290785688549 him.:0.16732007306904415 them.:0.15317125461279243 it.:0.13901798675634935 :0.09919989987326508 +his:0.49617148771867814 a:0.1777493991475601 and:0.16387982795394362 my:0.11744065425325619 :0.04475863092656194 +and:0.23969622254336737 for:0.2170162127309281 in:0.1966709027175485 are:0.18913670048775993 :0.15747996152039617 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.31017310686940436 delivered:0.29198371001032525 secured:0.16689980006029553 designated:0.11674181474599904 :0.11420156831397581 +the:0.6994721015403477 an:0.18390259774734533 his:0.06199368862880837 tho:0.03238984587647088 :0.022241766207027766 +so:0.3596111341229555 now:0.22627260470958618 expected:0.14592993436470666 aware:0.13766647400937432 :0.13051985279337724 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 +of:0.38471827192998426 in:0.34359038814452475 to:0.12771008718768656 at:0.07428967503741526 :0.06969157770038928 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +per:0.9993885064967879 par:0.0003732347809282709 ner:0.00010777675699026226 per­:6.592607473517084e-05 :6.455589055839216e-05 +not:0.3384602267801811 to:0.19199160969304524 in:0.17116545906553907 made:0.15218083549556083 :0.1462018689656738 +sold:0.24862578072136718 that:0.21513141153038395 was:0.184605036265421 looked:0.17723720109551294 :0.17440057038731496 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +saw:0.2919274461637207 think:0.22886158096961204 told:0.18000463275870882 was:0.15258459674777816 :0.1466217433601803 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +have:0.5085375917474592 having:0.20127302719126722 has:0.1596698258897672 be:0.06661494248414858 :0.06390461268735789 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +few:0.29485573901863515 man's:0.22980129690149514 little:0.20715675039003123 full:0.1383118950641686 :0.12987431862566987 +favor:0.4286606174776465 front:0.16663700046522184 spite:0.14436924942848997 one:0.14085741126542772 :0.11947572136321394 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +two:0.2891922931559792 more:0.2799196147589272 three:0.23013105020136385 four:0.11431411200452968 :0.08644292987920005 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.29651588707390975 and:0.2952809564338824 as:0.2680284012209759 than:0.08269584762793125 :0.0574789076433008 +Mr.:0.24335648632809345 them,:0.22859449796018552 them:0.21031036888836724 land:0.1634742371934418 :0.15426440962991192 +of:0.2498071723332316 on:0.21843958344851025 upon:0.19106279959091338 to:0.1782322678289256 :0.16245817679841928 +of:0.6592443802860887 in:0.15389027333183594 to:0.09953614961199787 from:0.0456708061718477 :0.04165839059822982 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5327950315261255 for:0.22538103571551568 in:0.13719695218654063 and:0.06309143350894346 :0.04153554706287482 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.27865075866174754 only:0.21125749353733433 sufficient:0.18440562914980016 and:0.16730004311911548 :0.15838607553200254 +was:0.33850162491178387 is:0.27822913843371516 are:0.165497784197013 it:0.10929095799746512 :0.10848049446002297 +of:0.7154907114595026 with:0.08356723283111903 to:0.08070680215306193 and:0.07209438020428942 :0.048140873352026985 +the:0.4580092305554178 a:0.40347365088695325 no:0.05707583961872898 this:0.05488232873756609 :0.026558950201333847 +them,:0.28415966754556465 it,:0.2592280766720697 sale,:0.1604793807466042 land:0.15336635786327832 :0.14276651717248295 +way:0.8139257723340503 journey:0.07176831780929398 country:0.03974408775748872 trip:0.038275423436307535 :0.03628639866285953 +the:0.8811688589838704 tho:0.05208913201250518 this:0.03298358546651323 a:0.02072017339528856 :0.013038250141822399 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.30490781655432797 saw:0.22782992418841644 had:0.20841498951715276 havo:0.14208435901643543 :0.11676291072366728 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.402218282367193 on:0.3131663493226501 upon:0.1193908882540143 at:0.08427278436224071 :0.08095169569390201 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +therefore,:0.7268861780621301 if:0.09062702442812734 however,:0.06667408477346205 it:0.06289687254628348 :0.0529158401899971 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.3565561424242406 it:0.20552115262270468 who:0.16111377220028889 that:0.14605752470052674 :0.13075140805223917 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.5597520061846998 one:0.25456714281823856 every:0.09738002638881739 re­:0.04728553212831848 :0.04101529247992577 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.8567579360634797 be:0.048285880020147914 tho:0.03792289925179272 his:0.029281636781416088 :0.027751647883163467 +the:0.8380165979724976 a:0.07894314804954446 our:0.032928436865809534 tho:0.031776897942060116 :0.018334919170088202 +of:0.6128675768557197 at:0.16516032118453727 corner:0.10385654663368961 on:0.06083537199903758 :0.05728018332701598 +and:0.39375544169168536 as:0.2572484855893916 that:0.17430602839853143 or:0.118776045053019 :0.05591399926737256 +to:0.8875734220081059 of:0.0792466518411315 can:0.011515730477609676 and:0.011415265600238934 :0.010248930072913947 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.9822240665359705 in:0.0066791747920642375 lo:0.004631683300288913 In:0.0032649170480108223 :0.0032001583236654493 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +cities:0.47147056577138197 towns:0.17516910735079 cities,:0.15229094670621862 size:0.11995896987298599 :0.08111041029862331 +time:0.34472216159548424 same:0.2589322781996963 property:0.18823418391648952 place:0.11105082747525832 :0.09706054881307169 +law.:0.3919218043093153 them.:0.20032385974368588 him.:0.1945470541002171 it.:0.13876161593788242 :0.07444566590889933 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +way:0.36078251315549553 efforts:0.22345790231741575 power:0.15163705361247626 attention:0.14487069028986366 :0.11925184062474875 +of:0.3202436509927885 in:0.26580093505039276 or:0.18840278734212623 at:0.130344731728569 :0.09520789488612354 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +any:0.7866823964769032 the:0.08994990536148592 some:0.04688755024922257 two:0.041317149783405095 :0.03516299812898317 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +come:0.2354928863074445 been:0.23340556937970203 not:0.19197402515201092 gone:0.1718898962518852 :0.16723762290895738 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.9185686629452271 to:0.029771570051668462 if:0.02567045960819722 when:0.01614981077840346 :0.009839496616503702 +those:0.7211154233551041 men:0.12412846917238905 all:0.06904661178572712 one:0.0478192844083785 :0.0378902112784012 +as:0.27382156317341944 whereas,:0.19405401956743107 although:0.18844954492385257 though:0.1785322296863343 :0.16514264264896253 +the:0.6479403585046566 a:0.14116396622528848 his:0.1361627979379681 my:0.038273817060719834 :0.036459060271366965 +be:0.5981491458573046 have:0.23285215634339504 make:0.06737252818895816 not:0.05740202894870641 :0.04422414066163587 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +bill:0.30049145344957995 committee:0.26783528665790807 report:0.15419256265460723 speaker:0.15218173425266845 :0.12529896298523627 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +suppose:0.433923041653141 it:0.15888670565957663 so:0.14690107634592922 in:0.14374058108918186 :0.11654859525217137 +to:0.327231987403563 by:0.2755054803868193 that:0.1504525632607434 with:0.1350530590875102 :0.11175690986136412 +Survey:0.5449352995169655 survey:0.15238413368030568 Cor.:0.13731838862428197 corner:0.10119747998016908 :0.06416469819827772 +tained:0.5841911467433384 gress:0.153434891812764 dition:0.12458861102617395 sented:0.07711616948342598 :0.06066918093429768 +that:0.3740662660910656 then:0.22990731258917083 so:0.14838407721261707 as:0.1474667796197226 :0.1001755644874239 +were:0.34060072305995404 was:0.23884775599687097 and:0.19794568790902814 are:0.13406850709166115 :0.08853732594248553 +in:0.2455254501290779 of:0.23605447364484153 on:0.19176035274050987 and:0.1670591517495538 :0.15960057173601683 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be-:0.4793767473881991 ¬:0.2504086768366219 follow:0.1476385833237405 com:0.06458982076946518 :0.057986171681973425 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4598084852432613 in:0.28566435596724404 and:0.09628496029398492 is:0.07941089351290766 :0.07883130498260213 +city,:0.27663691276075814 may:0.22690279495806287 will:0.17789996596578614 t:0.1778367067695674 :0.14072361954582543 +friends:0.24315984506966093 wife:0.22326805543291645 work:0.19094495531470868 life:0.18771399846261602 :0.15491314572009796 +the:0.5293430123488854 a:0.39775493590607397 his:0.02647240471782158 her:0.025741101843692295 :0.020688545183526787 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.42328222428655016 bill:0.18444159166613774 resolution:0.15328290999881405 copy:0.12346674550844153 :0.11552652854005656 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9197148959400677 ot:0.027547772264666297 in:0.022823405070998105 ol:0.018945419770339977 :0.010968506953927797 +be:0.8448664814866796 have:0.06518043816529201 bo:0.0645718451733313 easily:0.015036735449484138 :0.010344499725212808 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +or:0.4745413577873418 feet:0.22234066027429764 thousand:0.17094368299669746 hundred:0.07707080660959116 :0.05510349233207206 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +committee:0.4248764714362521 Committee:0.19100538861541452 work:0.14060621029007359 report:0.1347662591635079 :0.10874567049475187 +good:0.37937607300081105 big:0.22022639568724295 little:0.14952918089947045 small:0.1405315509906256 :0.11033679942184997 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +his:0.27982956643446794 the:0.27061374094386165 six:0.16312873346764453 ten:0.15814239137595457 :0.12828556777807126 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.3858819723873984 and:0.2524481832863447 de:0.1588875597954226 there:0.11651648752589662 :0.0862657970049377 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.7302498564402831 the:0.15558675455326335 a:0.07881685803378596 this:0.01966439138928329 :0.015682139583384245 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +right:0.27971880101861707 little:0.22315625189172855 other:0.1772369170271202 same:0.16417923954897087 :0.15570879051356334 +his:0.6114473244966706 her:0.13942861123629735 to:0.10275855079225854 after:0.08792065985550593 :0.058444853619267524 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +to:0.7987207870968174 and:0.08653345116175226 will:0.0660726440269701 would:0.02483103335486783 :0.023842084359592536 +official:0.3822398302618324 political:0.17317479770869232 brilliant:0.15342307149543244 past:0.14980784822257728 :0.14135445231146562 +time:0.4827282498215172 time,:0.29196400374922415 one:0.0882865248328127 years:0.0813860115574876 :0.05563521003895835 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +opportunity:0.23867927288573768 enough:0.23073299361060898 and:0.19228833156627295 as:0.18121067350671863 :0.15708872843066168 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.7590443688684791 after:0.10283862594458922 be:0.058252476896529716 became:0.05156707550695695 :0.028297452783444872 +man:0.4220590851478427 deposit:0.3258596046161753 case:0.09452769257337082 .:0.08380719875213814 :0.07374641891047301 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +most:0.6840015741329771 very:0.1580172508657777 same:0.08756274464561113 more:0.0486486202025911 :0.02176981015304285 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4193782061079141 or:0.16563750264362873 people,:0.14589620745108045 body,:0.13991196327600866 :0.12917612052136815 +to:0.39476326964958663 been:0.35664755091737677 in:0.12167785459164707 all:0.06899769485434601 :0.057913629987043344 +has:0.649142092577638 have:0.2276899651470764 had:0.08746168145353116 lias:0.02127378129007018 :0.014432479531684316 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6585573348751366 a:0.10672449425384126 of:0.09779341594006036 selling:0.06956491011000648 :0.06735984482095533 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +before:0.28790232471769794 later:0.24784487860498422 after:0.23513359027009312 when:0.16313901317410232 :0.06598019323312242 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.6558901395757217 become:0.12114970399126435 made:0.09561007558001602 not:0.08605697387173054 :0.04129310698126725 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.3371348132971996 Mrs.:0.20733769340965935 Mr.:0.16483416040317328 Dr.:0.15590243722930053 :0.13479089566066718 +the:0.7937692948300049 this:0.12286460964238438 tho:0.039846096250757336 said:0.024607376415745938 :0.01891262286110735 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.2972646134065058 have:0.19911275235120854 go:0.19350236918450808 be:0.18954478695836346 :0.1205754780994141 +let:0.31491302521177145 with:0.20075985906748814 for:0.19121866176899965 to:0.1865964026487897 :0.106512051302951 +the:0.9288217140506269 tho:0.039611926857934694 tbe:0.014965926496049088 our:0.010102714675579888 :0.006497717919809338 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.4160142260522199 effort:0.22726536104008568 body:0.1308309349008555 one:0.1253859267938227 :0.10050355121301628 +may:0.5081714838975924 will:0.17166090459710942 should:0.1211100257276954 would:0.11068165953887592 :0.08837592623872695 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.587539898631176 in:0.16923498927202069 an:0.13038979904687015 stock:0.058394747561360684 :0.054440565488572616 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.7576307576588981 and:0.16436572067253366 lie:0.029103435760744475 bo:0.026991174788632864 :0.021908911119190924 +world.:0.2959333774787962 country.:0.2631394959292402 people.:0.16889520728466936 city.:0.1622569898380489 :0.10977492946924519 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.706793814666687 a:0.21340973198410038 tho:0.03164914442947554 this:0.025718268200907734 :0.022429040718829146 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8006521972501571 is:0.07862921560522279 and:0.07546078022344607 that:0.027017048851666066 :0.01824075806950788 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +part:0.6052874064406949 day:0.10606026043057953 history:0.10479169317515884 hour:0.09896549557063117 :0.08489514438293567 +amount:0.299864503817939 country:0.18732705574621494 person:0.18392956246067046 people:0.17840187147175235 :0.15047700650342322 +of:0.40710271231335965 in:0.1930307256187383 to:0.17946422743833776 off:0.11657216771862021 :0.10383016691094414 +him.:0.24241106321922087 them.:0.2156808001623417 wit::0.2134886139138113 it.:0.19453246799107993 :0.13388705471354623 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 +an:0.4046513197569861 the:0.37999360387421416 every:0.10743521930321195 no:0.05853077599038354 :0.049389081075204226 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.5620336842401474 was:0.3018200746512986 Is:0.0675599603975823 are:0.04307090633462361 :0.02551537437634794 +and:0.3565276303471182 but:0.28362034044820283 has:0.1687051466049069 I:0.1033868388364893 :0.0877600437632828 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4701119327442418 that:0.2305571067893752 for:0.10711253883639758 at:0.10005780507669568 :0.09216061655328969 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.49673194736598164 the:0.21681848183778066 no:0.10963741937679189 seen:0.09620181129307566 :0.08061034012637014 +pleased:0.7544043149113827 connected:0.09973814677857729 charged:0.07145301453924119 favored:0.04066426348410639 :0.03374026028669244 +of:0.4790648555277752 and:0.25662958332890506 to:0.14136931591549193 in:0.07823723368547783 :0.04469901154234978 +based:0.2532432249512503 now:0.24734231725841554 due:0.19979024393299577 going:0.1845074910435667 :0.11511672281377178 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +,:0.22967600630560991 000:0.22115413949855595 e:0.21506379522594973 r:0.174055868017898 :0.16005019095198653 +of:0.8476342677552812 in:0.07355855573704914 on:0.031588936168682955 among:0.024996432762691735 :0.02222180757629508 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +well:0.35161983167554833 swept:0.21311864688463195 turned:0.19024346574521636 and:0.13908151513527228 :0.10593654055933115 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.299013870359158 or:0.24774543314045083 was:0.22201700626742013 at:0.12025863202834627 :0.11096505820462477 +to:0.6915670004658772 not:0.17761782214879324 now:0.055446049461517925 only:0.0419682264561951 :0.03340090146761654 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +able:0.44802814229809645 unable:0.21164269676986636 made:0.1676014600435054 used:0.0954585464733015 :0.07726915441523023 +law:0.2415154069083313 bill:0.19478009397581153 amount:0.1929926626018558 country:0.19043831197547426 :0.18027352453852716 +to:0.8289881447943817 and:0.09154732143281974 are:0.030214530368119028 were:0.024964771153257823 :0.024285232251421804 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.2882392032524201 farm:0.2235394735881895 is:0.1725968430678353 tract:0.16535183604011552 :0.15027264405143967 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.31956123596302205 that:0.24562922725583497 in:0.16247797620830112 which:0.14011324524419969 :0.13221831532864214 +depend:0.28669575806710884 call:0.2702741048817314 look:0.1894276375491184 be:0.15596981525979 :0.09763268424225134 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +points:0.33944325296533134 parts:0.2732550659710119 kinds:0.14514652552444993 lines:0.13166402806257552 :0.11049112747663117 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city,:0.28227115034459654 country:0.20120402776837767 country,:0.19269461797700246 city:0.1700581071514082 :0.15377209675861508 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4773104065162571 placed:0.17216165599978386 called:0.12511410567331843 be:0.12139857458132404 :0.10401525722931643 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +notified:0.415520264087964 ordered:0.2562873947286048 fact:0.12743262966638033 stated:0.1270407925849673 :0.07371891893208364 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.8353934518759746 the:0.12071202641403322 bo:0.026450059679651125 such:0.012273367675398777 :0.005171094354942218 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.44238629893356546 county:0.2505792513058401 chief:0.21014544439642788 town:0.06929717624284593 :0.027591829121320632 +him,:0.2880239519030564 them,:0.19793263682460835 interest:0.1766953373878456 him:0.1756541515384352 :0.16169392234605437 +me:0.4344106935806502 him:0.37929864839109667 them:0.1214702458419975 as:0.035542164320929194 :0.029278247865326533 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.44405429239465805 but:0.3298657633744557 as:0.0917022374061561 that:0.07684424983945304 :0.057533456985277225 +of:0.6388937749330299 any:0.1683813891173944 all:0.06927958748829999 for:0.06641356302242092 :0.05703168543885484 +electric:0.5286643957008363 same:0.18166939704256707 new:0.11313951754878339 very:0.10741953158948413 :0.06910715811832929 +a:0.4527939413000898 very:0.18357781579686833 most:0.17307259988766527 more:0.14582029988113693 :0.04473534313423959 +and:0.2874140892689149 would:0.2433228072545865 shall:0.19642570550046962 to:0.15028412169381594 :0.122553276282213 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.32994647011478273 sold:0.218656907657526 held:0.20364359097326354 placed:0.13224951416359437 :0.11550351709083344 +his:0.27982956643446794 the:0.27061374094386165 six:0.16312873346764453 ten:0.15814239137595457 :0.12828556777807126 +of:0.7643224165732446 in:0.12972185744863837 and:0.04458110941953684 for:0.043436251130297636 :0.01793836542828247 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +coat:0.352393749499828 inside:0.34500966950484974 small:0.10873541652244191 side:0.10614479038744709 :0.08771637408543323 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.5415905184764669 of:0.1257371680314652 take:0.12232832826596939 make:0.11590789982152223 :0.09443608540457618 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5003220444213231 many:0.15544626408970347 very:0.12605277148268706 those:0.11465329674628792 :0.1035256232599986 +it:0.43561896354422575 what:0.18686447707036705 who:0.12829722730654972 which:0.12538190964153992 :0.12383742243731753 +he:0.4933712574132095 they:0.20215271095926396 she:0.12719290863787405 I:0.10730693630690151 :0.06997618668275105 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +efforts:0.24386865839056204 and:0.24368680388475877 effort:0.22296253673176084 for:0.1541053451930456 :0.13537665579987268 +they:0.713120009342333 we:0.1633766384448023 there:0.06937230986701691 it:0.028499567324829504 :0.025631475021018327 +speaker:0.43396197558493615 amount:0.18445855744561154 question:0.1574801723841787 bill:0.12313611569830558 :0.10096317888696811 +much:0.4241789998321079 far:0.16986977292033606 arranged:0.14827152491498824 as:0.14705921514239365 :0.1106204871901743 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +feet:0.48702187985569123 miles:0.4339169128459335 feet,:0.04138031246451976 yards:0.019023959526878315 :0.018656935306977186 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +reached:0.3064105255683562 to:0.27550960413812237 in:0.1796605164684989 got:0.1266103236479699 :0.11180903017705267 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.8027968404947202 in:0.15623342549868463 In:0.02610537608337026 ar-:0.007807434387623023 :0.007056923535602032 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +carried:0.44334876266910606 started:0.23892496265931829 set:0.12619253369903655 broke:0.12158233446734579 :0.06995140650519321 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.8936386974956839 the:0.06543721825438067 now:0.02167603238897772 known:0.01011517629233015 :0.009132875568627491 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +other:0.5537546262586723 of:0.16627944802665867 important:0.14734367070036378 great:0.08674176166785269 :0.04588049334645247 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.534988153236185 extent:0.12912102238037554 time,:0.11894069264692138 amount:0.10878577747170334 :0.10816435426481484 +.:0.24507610530262408 ,:0.22946998138399513 ill:0.19433842731191617 here:0.16735066221883071 :0.16376482378263382 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +right:0.33186327356150264 once:0.22786896431569958 least:0.1505182441308813 the:0.149573848905875 :0.14017566908604143 +protection:0.3121467925150426 them:0.18624082780492382 damages:0.17402693670282257 war:0.16883690301654375 :0.15874853996066712 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.8429329472507102 not:0.07813513949882542 bo:0.06362677479611681 now:0.009868381305827009 :0.005436757148520638 +order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 +not:0.24687313598349933 order:0.20553513077663835 likely:0.19499406101357805 regard:0.19468133007724328 :0.15791634214904102 +eyes:0.29979639133941005 friends:0.2504236906669986 parents:0.17981191279726932 children:0.1407807233647736 :0.12918728183154832 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.36253771865111534 Gen.:0.2460967173082417 General:0.13293706039786068 Andrew:0.1325089081525568 :0.12591959549022544 +in:0.3482093675491882 of:0.24404544122635835 on:0.14948087978077193 at:0.14249717647796314 :0.11576713496571835 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +only:0.4661102592764041 even:0.18516843291580912 know:0.1545959006125481 come:0.10202292255708707 :0.0921024846381517 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.6357548641977411 of:0.1176466119048608 about:0.09505819197044213 unto:0.08002367882559203 :0.07151665310136388 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.2940873214542713 be:0.23502883919920592 decide:0.18161448997799376 be,:0.1654506500205029 :0.12381869934802611 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +parts:0.5811587612638888 kinds:0.2558900962260675 sections:0.06966388404385453 portions:0.057338255685099475 :0.03594900278108986 +silver:0.3192950206726209 one:0.3014573168416868 last:0.158754906093758 gold:0.11942731396257175 :0.10106544242936258 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8839655180035743 but:0.05360305885232518 in:0.032240324283965 that:0.016646847904197196 :0.013544250955938336 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +don't:0.25100981020709 could:0.24811169662493426 would:0.19496977374840727 didn't:0.15548746142945472 :0.15042125799011385 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +second:0.24377291707611579 whole:0.24086579083923074 same:0.18907280206220486 upper:0.18767686234108305 :0.13861162768136553 +of:0.8646224830566652 in:0.0637495450879736 when:0.024988660860891767 for:0.023377461753642394 :0.023261849240827227 +said:0.7533779434790043 that:0.11067808246739973 which:0.10997478377572617 and:0.016150741618679854 :0.009818448659189983 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +force:0.3509716786757402 forces:0.29440468553231486 men:0.23385049021933368 bands:0.07592456730906787 :0.044848578263543395 +tended:0.491977446969195 terest:0.19612100844782568 tend:0.11798492895460129 come:0.10624537584885095 :0.08767123977952705 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5046509914529542 in:0.23671636604614382 and:0.10836282391825158 for:0.07633143507245041 :0.07393838351019982 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +few:0.8806693937066395 dozen:0.041333668510432 long:0.0281147248689992 hundred:0.02703181029105851 :0.02285040262287063 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.3833963522849818 very:0.25263139297704035 in:0.17385934781033627 made:0.1084902697849597 :0.08162263714268189 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +and:0.3469139067791819 he:0.25678252755276987 which:0.1917397882091782 it:0.1315466913783745 :0.0730170860804956 +against:0.7442350862002522 that:0.12584482331542504 of:0.07290776493327164 is:0.028694001333749143 :0.028318324217302092 +the:0.48420096832915377 a:0.41008978571811333 much:0.04131618367379337 no:0.036429608019756185 :0.027963454259183267 +not:0.5129498170849175 to:0.3783552485302477 now:0.04116063196982422 also:0.04053618180577985 :0.026998120609230715 +had:0.3734551000085247 was:0.27792348314270776 is:0.14335566593738905 has:0.11372584359863012 :0.0915399073127484 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +had:0.25487938660346593 went:0.2505466441599175 was:0.19684330087856647 is:0.15975910861351597 :0.13797155974453398 +which:0.28842789914351497 that:0.2752444906379823 said:0.2088548594944842 whom:0.1446050227172672 :0.0828677280067514 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.31125235356606107 this:0.29606544131356655 his:0.2756885669706407 my:0.0809828078067538 :0.036010830342977855 +the:0.6390449437154518 any:0.21677097476497023 all:0.06580303576578764 each:0.04634724339755558 :0.0320338023562347 +from:0.26308153121234523 in:0.22123424586037013 of:0.2062792729429546 to:0.15678391190816468 :0.15262103807616534 +fact:0.47937756232303064 truth:0.24405748633628765 question:0.1675741304918259 result:0.07457368294067179 :0.034417137908184035 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +day.:0.3739052735628483 year.:0.22293686933798418 morning.:0.21724448591791598 ::0.11788238795040465 :0.06803098323084664 +of:0.7700063283603824 that:0.16684833052123765 in:0.029274783494599315 to:0.01701344690143788 :0.01685711072234279 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.3962248791403346 given:0.16330583264340004 followed:0.15945010195568401 taken:0.1560638116651507 :0.1249553745954307 +and:0.4128286113784578 according:0.22533992801194166 as:0.18567040732634976 but:0.10835697730000463 :0.06780407598324625 +and:0.6284827589521187 road:0.11461219896800087 land:0.09690016848465792 principle:0.08360478491452439 :0.07640008868069807 +time:0.33737323863282304 use:0.2109083100396215 said:0.17561093752822596 fact:0.14936583813304144 :0.1267416756662879 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4254760163773637 in:0.31189408510478406 to:0.13647961632116876 for:0.0645088520077003 :0.06164143018898304 +it:0.3140669146222644 they:0.24102134242915607 there:0.16187409967810254 he:0.15288449132689638 :0.1301531519435807 +man:0.4327071377170766 men:0.31743949322071563 people:0.09020972155132867 lady:0.08294825229593629 :0.0766953952149428 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.49176562644659544 in:0.2800173092613267 for:0.08359226562685541 on:0.07430918954661359 :0.07031560911860865 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.5014979596287077 he:0.238332971802412 there:0.12393385393775638 It:0.09053231539009109 :0.045702899241032935 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3065111723869965 as:0.28823979729734567 that:0.24982436195846497 when:0.08632122822772095 :0.06910344012947203 +morning:0.25274222204905383 morning,:0.2161348878887625 night,:0.17941717923254497 night:0.1777607757892352 :0.1739449350404034 +the:0.6690343336345751 any:0.13415472486874877 each:0.1095000809749585 all:0.047839264648700294 :0.039471595873017316 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +country.:0.27334071716296704 world.:0.22912587011828003 city.:0.2021827356717738 ground.:0.15643474226847018 :0.13891593477850905 +to:0.5942359605181223 will:0.1502046283840186 who:0.10543621069811712 would:0.07907236660520861 :0.07105083379453325 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.261367797143463 effects:0.23968901149292704 members:0.19460432084923962 readers:0.19015293559620197 :0.11418593491816832 +We:0.7032849984409723 I:0.15614400929988578 They:0.08528197399993323 Wo:0.03039723286504277 :0.024891785394165988 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6733768556861959 his:0.19914720588494647 her:0.07035618791332252 my:0.032153041756607055 :0.024966708758928015 +sentence:0.2542115291825829 delivery:0.23248264877911795 door:0.2299979312248443 instead:0.16695336788040885 :0.11635452293304593 +to:0.3372417848210229 and:0.3001923396027693 which:0.13789948990278422 will:0.1298352399128196 :0.0948311457606039 +which:0.3654822874710086 that:0.20055658393236428 and:0.18810451215871193 he:0.17206095446848413 :0.07379566196943091 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.44475001663694036 said:0.19405472206085375 him:0.14038912173915952 it:0.1161142886326729 :0.10469185093037346 +to:0.2621218234660518 by:0.2578751540963282 at:0.2431768911377731 as:0.1276864326924444 :0.10913969860740248 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.44811055400245614 this:0.20822226420798487 life:0.13927682331786545 land:0.10701573775380176 :0.09737462071789188 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +states:0.36389805782526374 and:0.24300228513328653 counties:0.15368598490356472 part:0.13762661182086264 :0.1017870603170224 +it:0.26895456018279773 not:0.19518545136978682 the:0.18665276095134797 there:0.1853532301587136 :0.1638539973373538 +where:0.5498781375114393 and:0.18021245928689916 as:0.10501790189267045 that:0.08262588577848545 :0.0822656155305057 +the:0.4596507440099344 this:0.23382015194526806 a:0.21049762371690317 his:0.05013407092766647 :0.045897409400227754 +most:0.48099353918644 said:0.1987416887560092 distance:0.13024266556466516 general:0.10954450690454835 :0.08047759958833742 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5925768855416239 other:0.12736494941480467 that:0.10369427373118892 many:0.09959440940081865 :0.07676948191156376 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +country:0.39831247012481164 notice:0.22279739989546754 city:0.14628541826487682 notice,:0.11928455627914739 :0.11332015543569662 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +people:0.3458642656909462 country:0.3266687910599301 farmers:0.11344087518734816 citizens:0.10892389191276339 :0.10510217614901228 +to:0.7344862997521718 that:0.1626622190503734 they:0.06248380877816188 would:0.03016960460260861 :0.010198067816684394 +man:0.49723869660182746 home:0.1392742104074921 and:0.13051813246033045 lady:0.12941857003937007 :0.10355039049097998 +made:0.27137558134731876 ready:0.2103724447459214 called:0.18729522836454612 impossible:0.16657172850812213 :0.16438501703409164 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.3820645871731955 service:0.17497566139434811 world:0.15976846882274434 government:0.1478720295586193 :0.13531925305109269 +m:0.6106316636388914 m.:0.1501178468069324 m.,:0.14196229375085204 d:0.05507116938383255 :0.04221702641949151 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.42463367840287586 America.:0.19476572265509684 them.:0.14396443577860119 Washington.:0.13397389655015335 :0.10266226661327278 +the:0.7320036975754367 an:0.09162394021926991 its:0.07381489082934828 this:0.05590541013588938 :0.04665206124005559 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.3977442968515334 was:0.2027620582011754 to:0.16900208136486805 in:0.1386371658455847 :0.09185439773683832 +not:0.3095612136009847 going:0.20915196287686183 all:0.19541359788436805 turned:0.15723878889939727 :0.12863443673838823 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.35652843383901023 be:0.3319927755103968 give:0.10608353801276137 take:0.10407661924883956 :0.10131863338899204 +last:0.47516381173745614 present:0.2183322589096248 fiscal:0.11046101039276361 next:0.10813568635111037 :0.0879072326090451 +would:0.25469281664574445 will:0.20534717681433198 did:0.18740085773340015 had:0.1866781830800381 :0.16588096572648525 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.5663646025807562 human:0.17778117439670002 little:0.10087692382141576 book:0.08905579036755204 :0.06592150883357584 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.25657226089260626 in:0.21134884844986462 to:0.20198025707421258 for:0.18466397663152379 :0.14543465695179283 +day,:0.24351055564066762 be:0.2248228446985271 ward:0.1947844026267268 bo:0.17466329961298188 :0.16221889742109674 +favor:0.4286606174776465 front:0.16663700046522184 spite:0.14436924942848997 one:0.14085741126542772 :0.11947572136321394 +manner,:0.2529417408456482 it,:0.24479564607586113 this,:0.17806701292270974 manner:0.17432820445992347 :0.1498673956958575 +city:0.2981920396520641 country:0.20186257968601773 country,:0.18879666668555872 time:0.15604954213173194 :0.15509917184462757 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.37477340032946577 of:0.2155194418599649 at:0.1426859344793809 made:0.13527271366039648 :0.13174850967079207 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +mortgage:0.3531514082796797 that:0.22589903703437209 he:0.22247983202608812 it:0.11248333258804194 :0.08598639007181813 +but:0.43099907838530527 and:0.3339280315252293 as:0.08781271527934177 that:0.08060364878001025 :0.06665652603011324 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +proceeding:0.5685423330286405 even:0.1515450015820258 interest:0.10513628148626193 sell:0.10132853324123596 :0.07344785066183583 +they:0.2830958296934554 it:0.21955851947595298 he:0.18732015559306697 It:0.16166316581220783 :0.14836232942531696 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.3184121471652384 I:0.19226495166876903 they:0.18825545313152633 he:0.18727242421827195 :0.11379502381619427 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.5297829744750973 no:0.23432187349203099 just:0.11011976261938362 any:0.06454849703728464 :0.06122689237620345 +old:0.46139167620527793 engine:0.2807145442870201 order:0.10673346174805168 ordinary:0.08039382197060706 :0.07076649578904315 +country.:0.2518035582879237 city.:0.2100814167243172 bill.:0.2064195343748215 ground.:0.17296307703516228 :0.1587324135777752 +piece:0.4717774756559915 success:0.2237780285834291 man:0.10208292471325547 cure:0.10126141527654019 :0.10110015577078388 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +She:0.602367441831997 I:0.13771733563774072 He:0.13673555717495942 and:0.06818732343016229 :0.054992341925140645 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6216887027778625 for:0.1812755544436692 to:0.11196937439442595 and:0.05042091671818993 :0.034645451665852534 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +out,:0.35058740642005193 out:0.2584266526886526 on,:0.1567474148759513 away:0.12946596426252246 :0.10477256175282182 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not.:0.626320534441325 more.:0.19019151183561167 another.:0.06794338910104089 so.:0.06276867150561558 :0.052775893116406805 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4468483673625859 that:0.14351858652798133 with:0.1391572887948387 to:0.13678077056415583 :0.1336949867504382 +went:0.3049720589023029 as:0.21437350446466963 it:0.19424464088589635 pursuant:0.14674939257250327 :0.13966040317462794 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.26571650983403255 th:0.22136304436461668 ti:0.193696525559978 tl:0.16878492600747344 :0.15043899423389934 +that:0.39796139548994236 as:0.20225622767367657 when:0.15083805884340912 if:0.1429527590779283 :0.1059915589150438 +any:0.5553228480400179 having:0.15398219970033167 remedy:0.1323626804708189 it:0.08720495175238982 :0.07112732003644193 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.6857443357431796 that:0.11575565247816953 of:0.09705576246568234 case:0.0654467153110503 :0.035997534001918116 +man:0.34949593670651014 story:0.26685889070123553 and:0.16848798387495556 lady:0.12066897425667213 :0.0944882144606266 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.34027519543644114 in:0.19818040735973394 that:0.1675115356480368 of:0.1487881935270823 :0.1452446680287057 +route:0.5139156839251422 joy:0.13394111730104988 courage:0.12448157199152489 tered:0.12103415135430898 :0.1066274754279741 +the:0.4047543548644102 to:0.20785662335698396 an:0.1906031286765863 was:0.11632311395497148 :0.08046277914704801 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +necessary:0.24096588207560182 impossible:0.22199192684643873 not:0.20049942933006623 ready:0.17027816810835814 :0.16626459363953505 +will:0.41576236060794586 can:0.21319783834040085 may:0.18944013599022116 would:0.0938757546562084 :0.08772391040522372 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5220731046847669 other:0.19833891322306482 these:0.1270243168976473 political:0.11486703410618236 :0.03769663108833861 +of:0.5443896644103128 the:0.19031838206244722 for:0.12020452729848419 a:0.11183668595659803 :0.033250740272157624 +was:0.4034003574492826 had:0.243143355175947 is:0.20933228350494443 has:0.10109724189284679 :0.043026761976979196 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9367111769446279 that:0.01937098726267392 ol:0.017348415426538734 his:0.014572026508664501 :0.011997393857494898 +those:0.7211154233551041 men:0.12412846917238905 all:0.06904661178572712 one:0.0478192844083785 :0.0378902112784012 +amount:0.33367574802765154 name:0.18299013168488598 view:0.17360884438446778 knowledge:0.15768545770780476 :0.15203981819518986 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +think:0.28950464046626023 say:0.23616517411070068 be,:0.21497488047937263 be:0.13478310466833632 :0.12457220027533018 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3392720554108909 bill:0.2545677721789828 he:0.16208856948311037 I:0.12360428327853917 :0.12046731964847676 +covered:0.3051919207925188 acquainted:0.23637994777814642 loaded:0.20889173917652282 der:0.127689757313509 :0.1218466349393029 +has:0.6248241270309384 have:0.1707971940612109 had:0.1502273252967978 having:0.03997262436382744 :0.01417872924722551 +way:0.25616833753844265 life:0.20734398515965913 time:0.1829072594050752 wife:0.18211749180588563 :0.17146292609093727 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7517813446787136 for:0.08092451498563362 which:0.06711060487785722 that:0.056656075406869365 :0.04352746005092612 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.9136036618805775 million:0.0560929235589484 hundred:0.0175368689608558 of:0.00757555775809507 :0.0051909878415231335 +;:0.6040236945226491 ,:0.1351531586070293 together,:0.08948416951633924 of:0.08699161537118816 :0.08434736198279422 +came:0.26293117870201627 arrived:0.1944424352773351 was:0.18330813567085802 brought:0.1818672839656912 :0.17745096638409927 +of:0.6288623758726599 for:0.3031003232618207 to:0.030250735726846865 in:0.027362045114904646 :0.010424520023767935 +they:0.4536352416530488 there:0.3577015293473146 we:0.15870016912352522 you:0.02156335350007757 :0.008399706376033721 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +rest:0.6495470273519278 engaged:0.10949537740128178 range:0.10924323211705027 resting:0.07699659415088754 :0.05471776897885257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.22614761638177275 provides:0.21624484021658102 it:0.21556615352858488 time:0.18376722346925736 :0.1582741664038041 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +no:0.35452788302145727 some:0.24053792466804333 a:0.1881460570240681 nothing:0.11759784130074555 :0.09919029398568582 +in:0.2965100839422805 by:0.2723853047509809 at:0.2634614059368455 on:0.093816911856227 :0.0738262935136659 +benefits:0.8269419729838449 benefit:0.05798453566635306 damages:0.04673216370075862 sympathy:0.04140932398577321 :0.02693200366327029 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.31671172252071206 to:0.2611716597265462 in:0.20483177970102973 of:0.12425884480995004 :0.0930259932417619 +and:0.4362921399088217 in:0.22877200546319926 of:0.19074594773276082 at:0.09261045464834199 :0.051579452246876156 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.7346175560130708 In:0.148449737858552 and:0.05709805489062073 de-:0.03469233610889228 :0.025142315128864178 +have:0.5064467746985962 to:0.14391954867540357 are:0.14095960435664234 get:0.10513236738651426 :0.10354170488284355 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +here:0.28829627930305923 ;:0.25022806489289573 in:0.24047526810005193 here,:0.11277123448807125 :0.10822915321592184 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4732909763389904 a:0.2448978351901381 per:0.14741373315920667 hen:0.07024583854825212 :0.06415161676341279 +will:0.26672847811568123 can:0.24104085422160734 would:0.1902025168388782 may:0.18004059218145915 :0.12198755864237412 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +6,:0.8682114455271852 block:0.04942463504156825 Township:0.037406846745487124 Lots:0.02522249270930136 :0.01973457997645801 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.28754326047819656 them.:0.2438481221691161 him.:0.22506222457686448 the:0.15641567514188384 :0.0871307176339391 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.463584795535765 has:0.19138717114331963 have:0.11871881592120205 was:0.11385807718029423 :0.11245114021941909 +and:0.42517695689501556 wonder:0.1759702072353485 but:0.1497810728134893 amount:0.1281039673984617 :0.12096779565768495 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +The:0.7699628877442182 At:0.12056602204585334 His:0.04213379395995613 Tho:0.03720859685596195 :0.03012869939401049 +are:0.25769823862973273 favor:0.20428919561009995 lives:0.2021503592351086 use:0.18621412472967797 :0.14964808179538056 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.34572464825696064 we:0.18529626280914316 I:0.15950251080198566 he:0.15497357720449137 :0.15450300092741914 +time:0.5308707433004629 day:0.1285301701120309 man:0.11423369756370641 sun:0.11385489130069014 :0.11251049772310973 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +years:0.305083867160107 feet:0.21296002912116505 miles:0.16369986161006522 inches:0.161444690384843 :0.15681155172381975 +and:0.4465520995972749 or:0.21504293990392548 of:0.18386158559287946 stated:0.08128432333959187 :0.07325905156632839 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7985250241988578 its:0.09201152477278711 a:0.070007453635878 tho:0.022158466830838837 :0.017297530561638234 +and:0.286773058070101 of:0.22885786724310483 in:0.19821236940218992 at:0.14480513091655123 :0.14135157436805298 +of:0.9456333276699839 in:0.01886053195381601 over:0.018104024455825516 ot:0.012750847490194556 :0.004651268430179956 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.2454678174653443 to:0.23659770714032122 shall:0.23587353307283515 should:0.18362527581994456 :0.09843566650155479 +bill:0.22854372602624481 matter:0.2148341238044498 point:0.2077273839953866 letter:0.18602441115280235 :0.1628703550211165 +had:0.4917066619881819 has:0.4742270222487543 bad:0.015347401839742052 lias:0.009414120582384432 :0.009304793340937272 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.48761387040598236 from:0.2763250259431814 in:0.131201590275028 for:0.05382999852044517 :0.05102951485536296 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +who:0.5867981214766436 would:0.17384981164877963 to:0.09048603116056264 will:0.08647956130596277 :0.062386474408051465 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.30764906931053704 in:0.24998809773794406 are:0.17048928383391274 doing:0.15519657852630936 :0.11667697059129668 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +And:0.2641082119632158 I:0.2181933442868673 ":0.20703106079828332 The:0.1723269259735707 :0.138340456978063 +miles:0.46665261667185276 went:0.1816257470351335 or:0.1301435773963043 and:0.11692021489659171 :0.10465784400011761 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8479629722083247 to:0.05912333373678164 in:0.053100731394877074 for:0.024297373430898175 :0.015515589229118488 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.343844762439813 it:0.32315748699662805 the:0.17939349186768722 she:0.12730693864084763 :0.026297320055023953 +property:0.2755966266891484 are:0.2667035820802384 is:0.251948874789391 being:0.11731695444744583 :0.08843396199377629 +own:0.7341370835151909 private:0.10248304153833596 home:0.06613226764620968 farm:0.05564752856821226 :0.04160007873205124 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Pennsylvania:0.34384949570734297 the:0.23923395870968062 Fifth:0.15425691732718322 said:0.14363917484444133 :0.1190204534113519 +amount:0.29042026134426796 length:0.1946776953821619 price:0.19347375742561665 sum:0.16681393096303104 :0.1546143548849226 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +same:0.6127182710121508 long:0.10376742499231306 well:0.09710558662472232 manner:0.09324468605195613 :0.09316403131885768 +were:0.35011939427174965 are:0.2935692529803561 who:0.17173631032475034 and:0.09671756934860595 :0.08785747307453788 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +than:0.9487768158299539 like:0.014828449431780537 or:0.013796055268535794 and:0.012409086099380021 :0.010189593370349859 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +sell:0.30280226671861676 be:0.2451117382724518 look:0.22976687892390676 meet:0.12830192880382135 :0.09401718728120333 +the:0.5931365895584416 and:0.23095610984492687 a:0.10522829728343872 in:0.0375766237010864 :0.03310237961210633 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.9133844327569619 recently:0.028649378576453093 never:0.020994558820892354 heretofore:0.02035265972702516 :0.016618970118667385 +nearly:0.5252411818271869 that:0.15495772481914089 almost:0.11383419341115944 which:0.1031601093651562 :0.10280679057735642 +as:0.2903022649469853 that:0.2514891458439669 when:0.1883105770901353 was:0.14007900998661035 :0.12981900213230213 +the:0.6735605154422155 gross:0.11191146293128951 total:0.07513672241016983 heavy:0.06997958964937173 :0.06941170956695342 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +other:0.33828350297067583 two:0.26333804069029193 naval:0.18654567082274262 the:0.11559452618592905 :0.09623825933036055 +same:0.28100852377992835 country:0.21997135574273222 world:0.1860091939743425 city:0.1574309443129809 :0.155579982190016 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +year:0.21546182702044728 man:0.20981994444069357 o'clock:0.20017726471332978 or:0.1884817826615052 :0.18605918116402415 +amount:0.623534384550812 time:0.17257226748836121 duties:0.07920539008176694 sum:0.07017070941047326 :0.054517248468586625 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +believe:0.3326620470530974 think:0.2187964988646363 know:0.21195335049583128 say:0.12965166041819415 :0.10693644316824089 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been:0.3455685203031283 done:0.21772965814843726 filled:0.17488871639927317 met:0.14672457907656644 :0.11508852607259487 +done.:0.3501851115995026 made.:0.2482438570886003 come.:0.23491627370725388 been:0.08833909506744916 :0.07831566253719399 +would:0.33231963426292266 will:0.24807106555580624 could:0.1604297790340768 can:0.14328779484944704 :0.11589172629774724 +thereof:0.31074625472259243 surprised:0.2953101946842726 interest:0.1858494996885791 more:0.1357713216143676 :0.0723227292901882 +he:0.5388017165870324 I:0.2714486748577953 she:0.09800795434888324 they:0.05943356444907145 :0.03230808975721748 +a:0.7353862979047157 about:0.09885680608271342 one:0.06390754410346396 over:0.05984991842044573 :0.04199943348866099 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3230082884649547 any:0.2051126183788757 in:0.20209211166674776 every:0.14287296447480152 :0.12691401701462024 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +years:0.40050650813795996 and:0.1819867482473631 years,:0.16290274674417962 weeks:0.13371502605670568 :0.12088897081379157 +forth:0.5949136395347948 up:0.17597163718058578 out:0.1059515171058636 apart:0.07160407224288012 :0.051559133935875585 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.2666286282986222 they:0.19895105521328707 we:0.19557755689842282 is:0.18849458827948384 :0.150348171310184 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9034002677719514 tho:0.03852351993289738 said:0.02457207617052492 tbe:0.01742000267302582 :0.016084133451600386 +a:0.47966165228413526 its:0.23117939463998036 his:0.1310056611878361 their:0.11391826271780553 :0.04423502917024276 +people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 +people:0.338977489378783 country:0.1842754949465732 world:0.1791043788994479 city:0.15640817023308612 :0.1412344665421097 +the:0.4632646492321176 Rock:0.41888821912629803 Long:0.0756231368124205 tho:0.02876634716826393 :0.013457647660900109 +the:0.7257948841130267 a:0.12416776986166841 his:0.060434421136672266 your:0.05182578518558566 :0.0377771397030468 +is:0.34970831562675553 was:0.332774521336319 the:0.13164325761319345 and:0.12164363549275901 :0.06423026993097308 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all.:0.37285237991566766 home.:0.2502807599126407 once.:0.19438867972154455 present.:0.10327879584372163 :0.07919938460642556 +mill:0.30458520130471617 country:0.23210069178985207 and:0.17328750163415085 country,:0.15139743446710882 :0.1386291708041721 +all:0.38941534705924935 which:0.28478787961326796 that:0.2273636400657995 and:0.05117516591115688 :0.0472579673505265 +became:0.7910454567295739 made:0.10776982434271369 become:0.040364667422356254 becomes:0.03254358536285349 :0.02827646614250269 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +right:0.3208352012749181 time:0.21880433256544968 subject:0.1733127523850333 power:0.1439544087506823 :0.14309330502391662 +people:0.31554231043708736 same:0.21332547551137776 country:0.16027869436190653 city:0.15585135602884304 :0.15500216366078537 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +some:0.3384366440973999 one:0.23789490740669034 copies:0.15312276188629256 evidence:0.1526118006471375 :0.11793388596247964 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.35591390801031375 Deeds:0.23898128743073002 land:0.16427108330298018 interest:0.12632544005277482 :0.11450828120320115 +suffering:0.28440504671545525 removed:0.2328055004513573 taken:0.20823606674147851 escaped:0.143118163774961 :0.13143522231674806 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +he:0.42861671686253106 lie:0.2164682855717324 be:0.16873343544715974 was:0.1072948113116434 :0.07888675080693336 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +put:0.2595306196083462 placed:0.19096377299855247 bounded:0.18549797734665052 carried:0.1841342007496199 :0.1798734292968309 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +out:0.2826313090371434 all:0.2283869012648755 made:0.1790871153335739 some:0.15679160790580315 :0.15310306645860397 +who:0.3035510284014243 and:0.23649773472479105 mills:0.16373419173398604 they:0.14980822268703495 :0.1464088224527637 +the:0.8484205130751464 his:0.06717438929921102 tho:0.02956413999432679 this:0.02876798582097929 :0.026072971810336527 +time:0.37995559668932255 day:0.19388787733254714 shortly:0.1630587952124126 it:0.1616849688333784 :0.10141276193233932 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +or:0.2689740323678009 to:0.20536947251215018 without:0.19435578249344426 in:0.1735288146656916 :0.15777189796091307 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.34909311073949156 all:0.18004324113867423 sale:0.17415866967489554 those:0.15068587496883507 :0.14601910347810348 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +forced:0.45129245602250595 rich:0.21599461552383012 able:0.2036182011788625 nn:0.06549278471754322 :0.06360194255725828 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +satisfied:0.4698726738442581 charged:0.1817125826654389 connected:0.1294105455477004 covered:0.11586855394619895 :0.10313564399640363 +the:0.6719684820261256 this:0.12231951295491496 any:0.08217212620966398 some:0.06626450797819104 :0.057275370831104344 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.43994357419853863 to:0.24690496136752615 should:0.10865133403589174 shall:0.10325237258927622 :0.10124775780876734 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.29092419624374166 age:0.23735525161447554 friend:0.1944863461100729 line:0.16382740345988786 :0.11340680257182204 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +few:0.8806693937066395 dozen:0.041333668510432 long:0.0281147248689992 hundred:0.02703181029105851 :0.02285040262287063 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +check:0.9692289451459556 copy:0.011088659481505897 and:0.0109293626372067 statement:0.005535141255758269 :0.0032178914795736157 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +other:0.30633695113637266 same:0.28858193412287547 said:0.231497083675891 show:0.09936685688578119 :0.0742171741790798 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8236271938492313 their:0.08102493952910637 his:0.038714270124839176 tho:0.03383297695596657 :0.022800619540856607 +country.:0.30358131116066545 city.:0.19686190383223698 world.:0.18431214711882327 house.:0.18205644332917983 :0.13318819455909445 +made:0.32994647011478273 sold:0.218656907657526 held:0.20364359097326354 placed:0.13224951416359437 :0.11550351709083344 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.3527803659853331 for:0.3317826874878852 on:0.14171946608819802 in:0.11091408129316963 :0.0628033991454141 +made:0.31399841047393817 guilty:0.2201494996189815 one:0.20595811432072125 out:0.15239324206574084 :0.10750073352061827 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +secured:0.6574435898782581 paid:0.14562188092408415 received:0.07795901049170834 and:0.0627722102504369 :0.056203308455512496 +year:0.28465516211493064 week:0.25329711873435595 night:0.19952503638571392 resort:0.16630641129705145 :0.09621627146794808 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +such:0.5164336160152043 of:0.3670182492283677 time:0.045163675054072074 on:0.03591492229177724 :0.03546953741057857 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +few:0.44995488771998915 man:0.20054862747920435 good:0.1426971065497411 time,:0.11398773281629654 :0.09281164543476884 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.655193474805364 as:0.10931804545579846 whom:0.10364871624996273 that:0.07524249117437593 :0.05659727231449884 +the:0.41922549131801995 a:0.251519433785423 our:0.14231385365924124 tho:0.10035991114119285 :0.08658131009612298 +said:0.9124902811147684 parties:0.030823875438464557 party:0.023659865335357032 same:0.01934417985079353 :0.013681798260616497 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.9836356735527889 lo:0.007021735971028442 the:0.006347960367958032 to.:0.00229802268142749 :0.0006966074267972395 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +known:0.6282076030385634 known,:0.19024668121402705 dressed:0.06703827479288851 together,:0.06012358589228924 :0.05438385506223179 +home.:0.7677802673372145 together.:0.1449870474762656 right.:0.03441980120912579 town.:0.0314972947438124 :0.021315589233581688 +the:0.7583074495193186 a:0.10012544559249936 his:0.05156389691674885 this:0.04618977224774311 :0.04381343572368997 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +going:0.25764174126496203 unable:0.2096599122249072 not:0.20500623635875526 able:0.1814447163183151 :0.14624739383306046 +went:0.45540857966935094 got:0.1608453316698705 entered:0.16053066552781217 came:0.13877352327870382 :0.08444189985426255 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5112134109980959 sale,:0.24741880027819857 that:0.08426780335230409 them:0.08408697558225235 :0.07301300978914904 +hun-:0.9998652521737065 men:7.304961696611275e-05 j:2.669929471304951e-05 |:2.2170287766071564e-05 :1.2828626848256734e-05 +A:0.6018777104561257 .:0.1647602787310704 a:0.16233309527206655 of:0.04245096238398884 :0.02857795315674846 +way.:0.2647285279384198 country.:0.2330982819877707 hands.:0.18234172537754934 people.:0.1728729559398621 :0.14695850875639815 +in:0.3455934992385719 on:0.24609468600077528 at:0.206018175782062 and:0.12145276351881552 :0.08084087545977534 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +little:0.3796081584811348 good:0.2321701387980767 piece:0.17281879330775693 well:0.1275950516082963 :0.0878078578047355 +the:0.4133982369686772 a:0.2713290352242838 about:0.11779948495389456 lot:0.10013111339287852 :0.09734212946026582 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3015778968267442 but:0.22789900086165443 not:0.19854343755076187 was:0.14126502819415046 :0.13071463656668908 +by:0.23728574659672244 if:0.23326250912133772 and:0.22900141505896604 of:0.15545093806692792 :0.14499939115604601 +person:0.3933722165461801 day:0.18892153141931553 state:0.17206272693644595 whole:0.125325198624538 :0.12031832647352056 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6463206542598894 with:0.16837223541404286 in:0.11061474003567699 to:0.0426380973419861 :0.03205427294840472 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.32040168297440197 government:0.2076175258439789 same:0.16874312876381944 city:0.15630119621138694 :0.14693646620641276 +the:0.51911534826585 a:0.27806185707831826 this:0.15886277965132525 any:0.0231402597148244 :0.020819755289682072 +two:0.30471309294792015 one:0.2150562575277827 lot:0.17580782623893582 three:0.1570911360890157 :0.14733168719634568 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7045787386837231 a:0.1067720059304925 and:0.06751948193681583 he:0.06379281115269553 :0.057336962296273046 +to:0.9131081411255957 not:0.07576610004512906 never:0.0063371610289933 lo:0.0035188388964730744 :0.0012697589038088903 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.32983048707157403 has:0.2886913630736535 had:0.21866661451201497 are:0.11801934879024029 :0.044792186552517044 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4656396985874198 in:0.20985504571096375 to:0.12851694888021117 from:0.12770647169150418 :0.06828183512990109 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.46481055136566984 in:0.3278309197303958 to:0.10083281445336968 from:0.06225437089085027 :0.044271343559714495 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Liber:0.4331674208540019 said:0.24907864400136895 the:0.18839683139870558 and:0.07478429661138233 :0.054572807134541074 +to:0.3835088959898232 and:0.2710321199900716 will:0.19090541833956176 would:0.11971346975867538 :0.03484009592186804 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5309561720656704 in:0.30971011208677063 to:0.06782357668881908 from:0.06227642204129182 :0.02923371711744811 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4395086013851834 at:0.15925481678819597 on:0.1557756660046468 for:0.13793650255460668 :0.1075244132673671 +a:0.549943795343836 the:0.37699576327206236 our:0.026452650020558643 his:0.024513874854463182 :0.022093916509079936 +well:0.507440036807576 soon:0.22371580522050646 far:0.1680701560236044 much:0.06808586124717403 :0.03268814070113902 +upon:0.364377086412337 at:0.32194764945885673 for:0.13291176786991898 on:0.09416720487291168 :0.08659629138597545 +thousands:0.3054683844896468 knowledge:0.28060254387408134 power:0.16951507658413284 grace:0.13601263260545568 :0.10840136244668326 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4431750583572373 for:0.18336980836183225 to:0.15637534910724998 before:0.11442976339605128 :0.10265002077762912 +a:0.5107393936774739 the:0.40452937368938563 its:0.03808209421630868 very:0.025192469749861106 :0.021456668666970546 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +able:0.3592632806057296 allowed:0.20418202455383563 used:0.1484971377437692 necessary:0.14775269065638058 :0.1403048664402851 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.30650847202244086 a:0.25860674337377515 no:0.21684808857312196 that:0.12924861724002393 :0.08878807879063794 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +feet:0.45105246983636144 @:0.27736623522354154 degrees:0.12094691081337722 deg.:0.09005721519801109 :0.06057716892870871 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +life:0.4326727620047838 very:0.3648739340854056 rooms:0.09616870583933437 is:0.057685531294714924 :0.04859906677576127 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +The:0.49152505416999154 A:0.19229295353418271 &:0.11171226926091929 at:0.10389689654902286 :0.10057282648588373 +to:0.25372136017712854 for:0.19914088124056376 into:0.19727717888063995 from:0.17845097800696436 :0.1714096016947034 +way.:0.2965998200687732 side.:0.25768801564473925 day.:0.16373612444108054 States.:0.15014643507796305 :0.13182960476744393 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +new:0.5101380006112574 particular:0.1540588792991618 an:0.12969021168781295 simple:0.12125461175028515 :0.08485829665148284 +a:0.7756708205345296 of:0.09104499290836579 for:0.05440583611446578 any:0.046699262763181225 :0.03217908767945752 +feet:0.5144358559229022 years:0.18760550144516983 days:0.14850580589924497 miles:0.08512397732525995 :0.0643288594074229 +and:0.6365491001363763 to:0.12616909136280946 from:0.089040583736609 in:0.07853976124549818 :0.06970146351870711 +will:0.36388420921439624 would:0.1838385363797403 may:0.18088962505809225 can:0.14291700862641105 :0.12847062072136012 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9381609123977712 tho:0.024657671673000037 this:0.019406289532033546 tbe:0.014045084059503587 :0.0037300423376915416 +American:0.4177556185458607 young:0.17255214427380125 whole:0.16193392033864812 colored:0.13093731231274836 :0.11682100452894165 +with:0.9904549952791027 With:0.00276586898819467 to:0.0023736696470519486 with,:0.0022516611402439847 :0.0021538049454067707 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.43823475926152705 will:0.24819699596754466 and:0.14336424049266705 would:0.1057946786653957 :0.06440932561286561 +the:0.7679374843640024 any:0.07783842565584026 all:0.07584874989994632 much:0.04831408965950787 :0.030061250420703147 +war.:0.7434912517518255 service.:0.10494275124972754 life.:0.0718129164902863 action.:0.05260182321747872 :0.02715125729068183 +seen:0.24382716668605736 given:0.224497468664085 to:0.2108523925333124 told:0.16332992246045247 :0.15749304965609265 +be:0.4648992926917519 put:0.18622300172743123 assist:0.1250201765404788 him:0.11290369569300782 :0.11095383334733018 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +East:0.4978520168704518 Range:0.19134406924881428 and:0.16781144224277242 of:0.0796977309725365 :0.06329474066542513 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +door:0.4497994660547542 the:0.23632682660502333 and:0.14053497062731937 steps:0.0924724963267546 :0.08086624038614847 +it:0.4286712238116598 there:0.2473554882434682 he:0.1726225121840287 It:0.09684429713284241 :0.05450647862800084 +world.:0.25698006603114154 country.:0.2508299912276878 city.:0.19363078658058938 other.:0.15559313346223075 :0.14296602269835051 +husband:0.2898271923218615 long:0.22850097215558657 husband,:0.1791647303456977 life:0.15389754907163786 :0.14860955610521653 +once:0.2380514406421126 home:0.2146735646385676 once,:0.1907674175470125 all,:0.1807387754136073 :0.17576880175869988 +fact,:0.4624791011270637 short,:0.1947895185573626 all:0.1623454053560217 this,:0.10328928363606771 :0.07709669132348422 +who:0.9836546940351831 men:0.005726044400093623 people:0.004135964634762072 I:0.0032838823155111555 :0.003199414614450119 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +who:0.7927642213346489 have:0.10361555459510771 had:0.06927070543566956 having:0.018563939184355133 :0.01578557945021879 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8176687629737899 to:0.07786931419829671 for:0.041883030425720544 gave:0.03277379759377465 :0.029805094808418253 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +States:0.8723920034291169 States,:0.1179505687326222 states:0.00407336820183364 State:0.0036469876550286042 :0.0019370719813986898 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.3122713221804009 disease:0.18638810440484724 people,:0.17898662617896727 country,:0.16389733278908997 :0.15845661444669465 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +at:0.640869867862213 of:0.12142927138993344 for:0.11313297368954048 from:0.07743546025048555 :0.047132426807827664 +to:0.2982167684337614 in:0.29527030263439025 by:0.15089926286176325 at:0.13636691127547776 :0.11924675479460724 +to:0.3453241715000359 in:0.29078010471106375 that:0.14516943181503786 of:0.13060794956887573 :0.08811834240498681 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +York,:0.44752639254847615 York:0.3756099606370586 England:0.07875187475591436 Orleans:0.059297668149223395 :0.03881410390932757 +people:0.31739505936069684 water:0.2559009868656214 men:0.15820609929354223 crowd:0.15668161901148353 :0.11181623546865609 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +committee:0.2895964643256264 work:0.2057180801513136 Committee:0.20503680541207173 city:0.1636414949199141 :0.13600715519107417 +of:0.42060106805586006 in:0.3934226902979597 In:0.0855597410346846 for:0.06401834430744796 :0.03639815630404779 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +any:0.6159676688919575 the:0.2509487747961118 each:0.059616928845897414 an-:0.05004610017767899 :0.023420527288354285 +those:0.7147612443780683 one:0.11151134992752237 found:0.07638417486879641 men:0.05176895297897656 :0.04557427784663626 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +spread:0.7762815933424791 papers:0.14202833325063494 agents:0.02909176443669561 that:0.02647316717758154 :0.02612514179260878 +to:0.6460202459917107 for:0.13904889631473202 of:0.13648020203165065 that:0.04160248176504195 :0.03684817389686467 +opinion:0.27682391664669714 belief:0.20081297244598786 people:0.1932137072855023 country:0.16933549888631896 :0.15981390473549378 +have:0.5761620023980643 had:0.2073334971038811 were:0.1954345046899386 havo:0.01232413546414352 :0.008745860343972423 +and:0.37768188290298615 coin:0.21512407560774863 enough:0.17028026528290074 is:0.14386255724708097 :0.0930512189592835 +quarter:0.4981703161325264 large:0.19120621633491033 second:0.1416264700008862 third:0.0891174836842985 :0.07987951384737844 +and:0.27238778824214965 the:0.22050085866924893 to:0.20473251873251783 said:0.15403091425051818 :0.1483479201055655 +claim:0.528850718555405 bonds:0.22347886162580877 claims:0.12480279839163748 parties:0.07496007211487157 :0.04790754931227707 +well:0.5227890070999469 not:0.18260097014627935 made:0.15561232505856454 never:0.07044160833790666 :0.06855608935730251 +be:0.368832395574956 have:0.27825319416729416 run:0.1371449941628323 leave:0.10790022734228949 :0.10786918875262812 +told:0.3123197626877837 let:0.19522485301720835 gave:0.18411170486955275 asked:0.1743258495115557 :0.13401782991389943 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +subject:0.3712369671150671 as:0.26750586018267075 up:0.12789634883040865 them:0.11815063922752768 :0.11521018464432597 +the:0.5341587066692838 a:0.2069996958877777 in:0.14324800269263516 this:0.0814223907234114 :0.03417120402689204 +he:0.4168079935533805 they:0.2588381049939056 I:0.1361148655021447 she:0.10026565551235606 :0.08797338043821316 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +.:0.41167385509355114 of:0.3081973419351046 .,:0.10986615702345194 in:0.1007584834229332 :0.06950416252495911 +failed:0.23285022364306351 come:0.22033299427397599 been:0.19791801323131356 gone:0.1950553578571899 :0.15384341099445706 +the:0.40722678734336587 some:0.22794454733087705 all:0.14243228664643767 evidence:0.11176172493017159 :0.11063465374914788 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +only:0.3260092199094921 be:0.2660264344498853 been:0.1766507721159509 believe:0.12663038187897666 :0.1046831916456951 +the:0.5735864110373473 other:0.1312382208658239 a:0.12485756270174814 his:0.1080608860175467 :0.06225691937753396 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.3324860808106962 he:0.29169601225922326 they:0.27209117228700025 she:0.05200712209728972 :0.05171961254579061 +which:0.35683231267661364 that:0.32837800744284434 whom:0.13465697680923552 what:0.12323667008342479 :0.05689603298788172 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.7239152699809678 were:0.17915364261478448 is:0.036088453134751806 he:0.03408343625061003 :0.026759198018886116 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.22301674829480514 made:0.21237075197177005 again:0.21037064693316584 born:0.18766178464956798 :0.16658006815069112 +go:0.36080905261796875 get:0.21572081582449512 the:0.19245800982018244 come:0.1390059287436487 :0.092006192993705 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5762839628562443 a:0.15798428348979815 his:0.12053691013646431 no:0.08079612662000529 :0.0643987168974879 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6912842284475148 in:0.09229515683986991 on:0.0809488774124658 that:0.0781770223304557 :0.05729471496969379 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +condition.:0.2634345202799238 time.:0.2181600644546511 order.:0.18192000628603167 work.:0.17112819698314244 :0.16535721199625109 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4818568421178558 on:0.1827966303447281 at:0.16724703678617975 with:0.08810170571265268 :0.07999778503858372 +feet:0.5339931864514194 poles:0.16863617029752853 chains:0.1579532068704376 rods:0.0737521866318941 :0.06566524974872041 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.30858723382651665 in:0.2160359561279969 with:0.2024878176874675 to:0.1434560877840233 :0.1294329045739957 +him:0.32005438373500866 me:0.19875667078372647 them:0.18021708850101162 want:0.1660327450372307 :0.13493911194302252 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.3304759042270243 men:0.19938921258336556 these:0.18551470984389812 them:0.18129380047004448 :0.10332637287566761 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.23560493465926508 did,:0.20834128437541183 are,:0.19555850716485704 have,:0.18038086530424008 :0.180114408496226 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4111138402974882 in:0.26717485268612534 to:0.1230368689227103 and:0.0999391741119655 :0.09873526398171074 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.281551529157646 Mr.:0.2605036072853707 .:0.21134406110443293 to:0.1264851453597035 :0.12011565709284701 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +thereon:0.8831242708764482 thereon,:0.04093645868203029 and:0.029536497577360377 due:0.025236683163399214 :0.02116608970076188 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.2795121817920691 likely:0.1955066928538332 going:0.18913954902219285 necessary:0.17840335755718467 :0.15743821877472008 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +der:0.4892867969361078 known:0.2904602445664339 fortunate:0.08354336991916077 expected:0.07712769182092265 :0.05958189675737484 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +said:0.5765783233828752 all:0.18173173597835926 fact:0.08830429772946394 them:0.08778662429412723 :0.06559901861517435 +men:0.29962032479125456 oak:0.20744377095440245 man:0.19036198410636326 field:0.1553114876543773 :0.14726243249360238 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +much:0.8633186458573788 that:0.0654570538109982 little:0.026313228461375064 the:0.024786071713860852 :0.0201250001563871 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +filled:0.3046100094272481 charged:0.197043674196014 done:0.18490123726853452 supplied:0.15911673389378053 :0.1543283452144229 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.6516534981255296 every:0.21326246887047917 within:0.057538359378029404 exactly:0.04702710360903465 :0.030518570016927152 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8011733078787625 by:0.08320776493308672 with:0.0586168342745012 and:0.03095994788202804 :0.02604214503162161 +husband,:0.39265335319967615 mother,:0.19829649522901535 father,:0.1795173635371477 husband:0.11973260371265766 :0.10980018432150304 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +court,:0.7545476908485297 court:0.18101888982104924 and:0.02405433163934561 as:0.02096313052034607 :0.019415957170729414 +go:0.409634576180319 come:0.1820413690832247 him:0.15491679222342905 try:0.12769469573402084 :0.12571256677900647 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.454632215650409 with:0.15528936722656758 for:0.14599431868284202 that:0.1260958857859508 :0.11798821265423048 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +out:0.2936992933859154 use:0.24847183978040718 one:0.17462100932774596 some:0.1427018692725002 :0.14050598823343127 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +far:0.730960988393792 obtained:0.11691807944297751 derived:0.053654983661425945 taken:0.05207564088156633 :0.046390307620238234 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +committee:0.2895964643256264 work:0.2057180801513136 Committee:0.20503680541207173 city:0.1636414949199141 :0.13600715519107417 +are:0.521739852394557 have:0.14087184400376432 were:0.12667043089548513 who:0.11053936562541888 :0.1001785070807747 +be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.29362447849316853 on:0.2202937299118658 at:0.2181316542020122 in:0.15744288068113257 :0.11050725671182081 +virtue:0.49027458314010086 deed:0.14907298603540964 means:0.1484581059307114 one:0.12436968669233539 :0.08782463820144273 +hundred:0.8577904117820284 year,:0.04048115438049983 year:0.03727109210214192 side,:0.03399877949254926 :0.030458562242780485 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.22369456742961225 amount:0.20773323631999405 day:0.2060255143945402 part:0.18175789781806492 :0.18078878403778864 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.42631707372735045 that:0.29616691984368587 which:0.16591060530521354 said:0.05952404864265098 :0.052081352481099234 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +large:0.267152493049856 the:0.26416251159800125 human:0.17475273216953238 his:0.1653040302062714 :0.12862823297633905 +be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 +the:0.4027037188456693 his:0.19580381536091818 to:0.16970675241710215 our:0.14205356539927638 :0.08973214797703409 +says:0.2662737914841601 and:0.2503575424543195 Roosevelt:0.21380039918060398 ordered:0.17196114252957923 :0.09760712435133721 +they:0.3649212788320134 there:0.28469943665017333 we:0.2039858898488088 who:0.08687015936496226 :0.05952323530404228 +any-:0.5494665819204938 some-:0.3371550406765957 any:0.07181523780437225 good:0.02423298506363853 :0.01733015453489974 +people:0.42304013980678334 purchaser:0.18556837850156158 only:0.18190335985835265 last:0.11881039366251105 :0.09067772817079137 +man:0.28298532721353603 resolution:0.20586527447122968 decree:0.18314749900199542 friend:0.16585738145701745 :0.16214451785622133 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +work:0.28080346390357824 property:0.1992730759274149 former:0.1763020820745387 efforts:0.17304491830509328 :0.17057645978937494 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +same:0.26599772048056336 people:0.2310542976196447 property:0.18416594896627966 house:0.1679604033745812 :0.15082162955893103 +a:0.45399370408352474 the:0.3556313942158909 one:0.07418338319850064 this:0.06448929291828534 :0.051702225583798146 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +The:0.3548846712884742 and:0.19764487354718768 It:0.18990499549524878 But:0.12927237801655034 :0.128293081652539 +to:0.9460620354603578 and:0.018386932990849328 will:0.01687409374690741 shall:0.011754436880453944 :0.0069225009214314605 +Smith,:0.5130376489988017 Jones,:0.18043470094505026 Johnson,:0.12150192490264186 Miller,:0.0993624251736675 :0.08566329997983865 +to:0.636627351217431 for:0.22039763436139326 with:0.07404501136577239 toward:0.04020317318705755 :0.02872682986834584 +to:0.5999583443401628 and:0.21760455377675625 will:0.07749822349826972 can:0.05580874963180492 :0.049130128753006305 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +other:0.5334820628668748 the:0.26313255556388326 all:0.10224184248516348 many:0.05338121947382653 :0.047762319610251854 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7250312864969556 their:0.09492065235624796 our:0.07264766884353907 these:0.06676872812979227 :0.04063166417346519 +be:0.3498340287272969 have:0.2932450170672016 take:0.17006410086849494 bo:0.1071984463746075 :0.07965840696239908 +acres:0.2538663025875314 feet:0.22887118938545342 years:0.2186631363915433 pounds:0.19169970698984543 :0.10689966464562643 +then:0.2892890469115505 thought:0.21243967521843737 did:0.1856184481504107 said:0.15947559060421268 :0.15317723911538877 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.6652774463697706 for:0.21820715054730933 in:0.059335622765545194 on:0.030702576039925447 :0.02647720427744947 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +net:0.3803917980255062 average:0.22123907495277131 aggregate:0.18424668856793575 total:0.12066145688600187 :0.09346098156778482 +tained:0.47978923547552754 gress:0.19744915971699137 dition:0.14235288023248566 tracts:0.09171185428969976 :0.08869687028529577 +and:0.5049471699120814 in:0.14126882025688406 have:0.13723216871226987 was:0.11177169471045693 :0.10478014640830766 +to:0.8121641995019081 and:0.13985318218782897 will:0.023581590730555713 must:0.012388914949262345 :0.012012112630444605 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ties:0.7016749156276948 ty:0.17749307741709314 ty,:0.08418671787145442 lor:0.024770737417158323 :0.011874551666599212 +and:0.27444110375450653 who:0.25544667152216327 which:0.25169033001206825 he:0.1211806794023976 :0.09724121530886438 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 +was:0.3051466391794173 has:0.2177055936642293 be:0.1676661556663166 had:0.15562057595843146 :0.1538610355316052 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +did:0.354796743149662 could:0.2218289274794014 was:0.15394835531848963 does:0.13863198479968464 :0.13079398925276234 +all:0.5696338424888692 those:0.16182500674208602 more:0.12013513272543425 persons:0.09717970758341991 :0.051226310460190584 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +us:0.3964965206541392 you:0.2967653784735107 them:0.21488322341201618 him:0.05048194505126558 :0.041372932409068246 +in:0.4728154766892772 that:0.19272734411269457 by:0.13412057641488281 on:0.105580045606954 :0.09475655717619144 +of:0.8491198416297993 in:0.07808401143632764 from:0.027871543255951824 for:0.024917046537677453 :0.020007557140243788 +for:0.5332934046329924 the:0.21537262106978253 that:0.19555627653210175 by:0.02972827819351069 :0.026049419571612668 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +result:0.2348976511795785 following:0.21883624409225189 question:0.21288170737869797 fact:0.17837350394983845 :0.1550108933996331 +s:0.32716298125064236 North:0.2062840168759776 a:0.1871603570992554 with:0.15802188846783405 :0.1213707563062906 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9171355344869113 tho:0.038146241234326736 said:0.019788496987485343 tbe:0.016557861885443136 :0.008371865405833423 +showing:0.3622180796836837 see:0.18998505304581056 to:0.18428456027055076 doing:0.1583921887699754 :0.10512011822997959 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.6131084540716396 he:0.11322386681086069 but:0.11270705783038874 I:0.09420212386348054 :0.06675849742363026 +only:0.3388733268787293 said:0.184066391876209 cost:0.17336515453697054 truth:0.151944597452788 :0.15175052925530327 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.360342811027477 being:0.241824978126149 the:0.18483431524348476 it:0.11142762674511617 :0.10157026885777307 +to:0.4305219102379963 will:0.2804039341756623 would:0.16807992856902826 asked:0.06700007731912538 :0.053994149698187756 +that:0.495726442086679 it:0.16405858954700633 any:0.13845583109575596 there:0.12454600181242366 :0.07721313545813513 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +wit::0.3021939301188946 them.:0.20649221786076075 him.:0.20124812714149273 it.:0.17824690288787012 :0.11181882199098189 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +amount:0.299864503817939 country:0.18732705574621494 person:0.18392956246067046 people:0.17840187147175235 :0.15047700650342322 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +standard:0.6326507357408286 coin:0.26801813246500683 and:0.06681276622540358 bearing:0.019348543915805122 :0.013169821652955823 +the:0.6244074330062508 rural:0.10380447563280236 school:0.09792576388302526 those:0.08715006533492563 :0.08671226214299621 +well:0.3675750893465405 aforesaid,:0.19756651670137643 possible,:0.180439332216918 it:0.13993261169144527 :0.1144864500437199 +In:0.8532589515852386 Its:0.05314007834637563 If:0.03498195791770077 It:0.031914240079850886 :0.026704772070834177 +proceeding:0.5685423330286405 even:0.1515450015820258 interest:0.10513628148626193 sell:0.10132853324123596 :0.07344785066183583 +of:0.961934885340569 ot:0.014745413787457307 ol:0.010655242858316255 to:0.009739392737447143 :0.0029250652762102653 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +2:0.6344209251514648 3:0.17367201528169543 1,:0.0906008263528011 1:0.058563831350871856 :0.04274240186316693 +I:0.30630451533870556 you:0.24230439669180598 to:0.19156421705824142 ter:0.13864383326890026 :0.1211830376423467 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +system:0.3010461160015716 it:0.27910734265140685 which:0.18629368866338167 and:0.14778110135096062 :0.0857717513326792 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +corporation:0.4309337334438539 parcel:0.16027818825115464 otherwise,:0.15037797315719612 who:0.14098343376015993 :0.11742667138763543 +the:0.577559063671812 his:0.19195844387620192 a:0.1761252833542547 my:0.03238148045218752 :0.021975728645543948 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +than:0.33495146026813755 adapted:0.21648456539524902 able:0.21014737953546864 known:0.11969890059422557 :0.11871769420691929 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4148243358792873 any:0.20843853781094426 tho:0.1712667534783428 a:0.11212077205647977 :0.09334960077494599 +come:0.26721080324424784 gone:0.25288761293903966 not:0.18052936896212757 failed:0.16236324396165827 :0.13700897089292655 +well:0.3675750893465405 aforesaid,:0.19756651670137643 possible,:0.180439332216918 it:0.13993261169144527 :0.1144864500437199 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.32776030215086915 be:0.2335746316868677 is:0.2264908677653107 had:0.11322439857446467 :0.09894979982248768 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.6596745460461467 will:0.11777560392225636 shall:0.09291357458422472 they:0.06799670160084097 :0.06163957384653129 +first:0.550148556751419 second:0.20502826298803745 slightest:0.12713778810010323 third:0.06422144675362707 :0.05346394540681316 +of:0.678354928610069 in:0.1397243215258386 for:0.0788765093180987 to:0.05427304923385939 :0.04877119131213438 +more:0.33277374906451396 period:0.23369499781264458 taxes:0.20275323311834634 events:0.12981299429807763 :0.10096502570641748 +they:0.30704978239311403 it:0.25161728489132673 he:0.23007606134778166 there:0.12750160756287154 :0.08375526380490604 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +little:0.38180766209169165 own:0.23851614968294857 a:0.22136545534988264 right:0.0957525627430948 :0.06255817013238228 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.2661730628832822 one:0.2297354587683611 order:0.17744579994179316 those:0.170617225275888 :0.15602845313067554 +time:0.48110766474368916 world.:0.13632204793128486 country.:0.13336293299084215 first:0.13281926250208542 :0.11638809183209846 +time:0.2957730108081622 time,:0.2721187144499509 condition:0.17358054111864654 system:0.14110264557200786 :0.11742508805123246 +the:0.6854451919402971 a:0.15565145710752393 this:0.06599914328316857 on:0.054772834326702775 :0.038131373342307796 +and:0.5424192165935046 at:0.17152606802120207 o'clock:0.1623979997109849 provides:0.06432365986228843 :0.059333055812020044 +sight:0.24476198750803857 care:0.2313408165099427 front:0.18854266427043823 use:0.18349335872353834 :0.15186117298804225 +the:0.6398413665112554 The:0.15215619815277895 of:0.13189036266074203 was:0.03982507084723554 :0.03628700182798814 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.5635359944525244 that:0.13016789836265774 of:0.11060352079975978 next:0.10324507844775717 :0.09244750793730082 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.865410914435271 a:0.06111879716462412 tho:0.04400506749137229 tbe:0.019613366837119665 :0.009851854071613212 +been:0.9428060908560031 had:0.03360560160401301 ever:0.010693688185690673 not:0.006554316870038463 :0.006340302484254758 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +did:0.3925822858754601 does:0.21287743862052322 is:0.21007721394429874 was:0.11822232897976435 :0.06624073257995353 +in:0.29372597196822003 thus:0.24965445721758311 the:0.20377550453845186 are:0.13574078730707695 :0.11710327896866808 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.833478826340426 in:0.06842321426691275 how:0.06508546519394058 to:0.017528407318953654 :0.015484086879767215 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.3308209022881326 is:0.28228842016941214 was:0.170815175870395 has:0.13468197430139667 :0.08139352737066373 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +last:0.5208810677918766 past:0.1980313857899292 next:0.12753726861225395 first:0.09665353889593373 :0.05689673891000671 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.38161701791368025 by:0.24091225628745613 up:0.15622177716778538 with:0.1294754189070057 :0.09177352972407271 +the:0.8864438033883647 tho:0.03607026940529051 his:0.033406255484705126 their:0.025031829942013743 :0.019047841779625846 +hundred:0.2502767045823328 large:0.21688536435617353 man:0.20733062651268858 good:0.18723035529853752 :0.13827694925026754 +latter:0.3626798200870765 most:0.1776349183053321 upper:0.1766224355229399 first:0.14602062870319607 :0.1370421973814554 +do:0.2515763858006961 be:0.24225826664325933 meet:0.19235028093637174 agree:0.16219014831695833 :0.15162491830271452 +with:0.3063362030971031 caused:0.26332433790627185 to:0.2284234375983594 for:0.10641598491032064 :0.0955000364879451 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.3345674602170162 he:0.24172186022518574 there:0.21661592776084573 I:0.13110951189674333 :0.07598523990020899 +the:0.43000162100977174 extra:0.20277893842558808 an:0.1527675245966058 West:0.15124999760833815 :0.06320191835969599 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +between:0.4323384107690971 in:0.27756303454481 of:0.21360811761842838 In:0.04278526265942455 :0.03370517440824001 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +New:0.6489594105870582 which:0.12108387199469409 the:0.09647099233676593 all:0.07107238150513864 :0.06241334357634311 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +dollars:0.3759494643440699 them,:0.2062293019395367 it,:0.19463627228439087 dollars,:0.11180390852680083 :0.11138105290520167 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +let:0.3894075280395848 with:0.3201596397422493 to:0.12478425108693933 for:0.0961797391621581 :0.06946884196906847 +building:0.2441800167499346 house:0.21813371644349838 is:0.19618968879064191 barn:0.1890785888280605 :0.15241798918786462 +the:0.25369655406143227 and:0.2446371080382442 civil:0.2077177605130572 naval:0.15535164790215658 :0.13859692948510963 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.3599367770172513 tho:0.18676963599904525 hard:0.15938168556527646 at:0.1516612530058869 :0.14225064841254006 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.29185978134679186 to:0.26578527797711055 of:0.1701383880145238 all:0.14939837217718638 :0.12281818048438752 +rights:0.2949414279041262 liberty:0.24407340498524105 freedom:0.1580735835286099 cases,:0.1538540763966292 :0.1490575071853937 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.31017310686940436 delivered:0.29198371001032525 secured:0.16689980006029553 designated:0.11674181474599904 :0.11420156831397581 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.3509676566703466 God:0.18678756054179693 law:0.1637121087466557 them,:0.15987718063860804 :0.13865549340259276 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.5306128495975732 the:0.3178257159915286 this:0.07113670769547421 any:0.04446062722978658 :0.03596409948563737 +all:0.3416119316805803 that:0.2770965023025837 which:0.24114041110127982 and:0.09790441813596261 :0.042246736779593744 +is:0.38764439864417644 was:0.28440079072280955 of:0.19463372654488847 thing:0.06836399734263916 :0.06495708674548638 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ques-:0.46983825114782896 elec-:0.20628433207355923 na-:0.16387999537258324 sec-:0.10979303648564792 :0.050204384920380686 +a:0.6075707756442028 the:0.17712149746486855 his:0.08246395753724778 her:0.07234944807505862 :0.060494321278622205 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +.:0.9041743918397069 W.:0.045918351415347156 H.:0.016841255623634203 J.:0.016571315109507496 :0.016494686011804132 +noon:0.4861746885653024 home:0.2743646330328929 public:0.14606760158687557 prices:0.048713869749601714 :0.044679207065327624 +it,:0.28732793109763616 them,:0.27887578485896525 course,:0.19139267831219164 life,:0.1264002559654954 :0.11600334976571142 +people:0.4033682026200842 men:0.27777211748644065 present:0.11619392827570985 children:0.10365867661698541 :0.09900707500077982 +he:0.5581305243299671 it:0.23961595070687036 she:0.11926486601601063 It:0.05392636240661699 :0.02906229654053496 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +up,:0.713423638621371 ting:0.10493762787287288 sit:0.08992367204044097 close:0.046646743198667406 :0.045068318266647624 +all:0.464293247877736 by:0.3807711190757165 the:0.06170185877737797 or:0.046783535934282174 :0.046450238334887414 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +two:0.3457124798725366 small:0.19323113408862208 other:0.1586262864350011 several:0.15346625907958494 :0.14896384052425535 +Jones,:0.6076120017986499 Smith,:0.1575363841174222 and:0.11973433227909969 Brown,:0.061815060567787225 :0.05330222123704087 +mortgage:0.37222054759223683 mortgage,:0.3668598300329682 lot:0.10059747927498155 piece:0.09940761333334588 :0.06091452976646764 +agree:0.24577768301251487 satisfied:0.2281064105653718 only:0.2027282920447116 do:0.16335569843877118 :0.16003191593863048 +all,:0.2544317711370932 named:0.2375868050128932 described,:0.20755032277430066 mentioned:0.1742363945450018 :0.12619470653071113 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +past:0.5181719962336802 said:0.17309641010480548 last:0.1178734855785957 city:0.10043658231009525 :0.09042152577282352 +let:0.5804271865232818 give:0.1265489458503707 to:0.11409842803942234 told:0.09064136303376173 :0.08828407655316331 +out:0.2420811422542122 up:0.23841635123119329 down:0.23731866696536766 him:0.15196808987314583 :0.13021574967608104 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +best:0.47859237456122555 latest:0.1508195130870333 other:0.15057705322039744 following:0.12240593259503514 :0.09760512653630861 +I:0.2983915653301816 he:0.29022548950715066 she:0.14301777287142917 they:0.13626111202774366 :0.1321040602634949 +order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 +and:0.31353902627609065 county,:0.26441698579024275 street,:0.1579784228517093 City,:0.15756136961785017 :0.1065041954641073 +to:0.5512054150376674 in:0.1534262293746178 and:0.10194839551395223 by:0.10141916521029491 :0.09200079486346768 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +com-:0.43443734026526437 com­:0.20055967724415186 judge:0.19399963988761496 -:0.09326591422831079 :0.07773742837465801 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +country.:0.26803284903240115 world.:0.2291145910069688 city.:0.21879424978954234 people.:0.15398937800370113 :0.13006893216738652 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +State:0.2888449817530109 people:0.21976385579517707 city:0.16897620189430154 stock:0.16226177562442923 :0.16015318493308128 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7611719953286011 a:0.12564895558518516 his:0.04669857728472907 tho:0.03722793075649269 :0.029252541044991944 +bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 +that:0.327272472566214 as:0.3227024998506 and:0.15839396453744317 when:0.10204139571260452 :0.0895896673331384 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.45403032740345467 if:0.18953733533818778 when:0.16657015543950082 as:0.11176096867417942 :0.07810121314467741 +large:0.5207518450709158 small:0.1463040626963172 certain:0.12190102432201719 total:0.12178955622346574 :0.08925351168728406 +not:0.36116429189647836 in:0.19222718335719152 to:0.18480426666810834 as:0.13324811211622656 :0.12855614596199513 +they:0.3364834850170355 it:0.3125753064128827 he:0.15942274587787134 you:0.10642066372577104 :0.08509779896643936 +other.:0.32410154526574464 room.:0.18336223184445624 earth.:0.17567075298642504 people.:0.1683157564364924 :0.14854971346688176 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +or:0.2689740323678009 to:0.20536947251215018 without:0.19435578249344426 in:0.1735288146656916 :0.15777189796091307 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.6696542362564777 and:0.12184047638585109 with:0.11538567874463042 of:0.052334222070345604 :0.04078538654269511 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +give:0.540121957088857 make:0.18610670001460478 have:0.10241613089139814 let:0.09531601438406731 :0.07603919762107286 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.468658745048621 but:0.2682942206682957 is:0.1125213896320406 that:0.09635880554918706 :0.054166839101855664 +tent:0.7246701299155669 lar:0.08157050537107156 tion:0.06995233378072395 ice:0.06700996951459828 :0.056797061418039405 +the:0.3156355873258667 any:0.3045374688723408 a:0.24729435830172908 being:0.08121380649379081 :0.051318779006272554 +J:0.27738589653537904 C:0.19815778246736848 W:0.18954299970325744 B:0.17292983382284835 :0.1619834874711466 +r:0.3798230810193567 one:0.19723046625050694 resident:0.16294587219526113 out:0.14904454131580297 :0.11095603921907222 +as:0.27935704426109065 that:0.23845597018017975 and:0.21480808432362386 which:0.1747831795212046 :0.09259572171390115 +of:0.7224585327093833 to:0.09127669032250756 in:0.06905666396805717 on:0.0626649608575338 :0.054543152142518064 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.23938138541240508 held:0.23031708610711968 found:0.20705012666367806 used:0.17758149660284384 :0.1456699052139533 +as:0.6579776821435981 enough:0.17703520255551422 back:0.08059114267304231 superior:0.0538634450846079 :0.03053252754323744 +they:0.38108089502889236 we:0.1964965124576129 one:0.16628935031300074 it:0.13194475220768248 :0.1241884899928116 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +2.:0.31772372074890837 I:0.21747621651691051 others.:0.18439855790256268 will:0.1457097682806519 :0.13469173655096647 +who:0.7683122222400145 would:0.08598855571260913 should:0.06685621622024607 to:0.04666842318713804 :0.032174582639992184 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6273522765866758 in:0.13762524428843692 and:0.09597596745062598 with:0.0701049525549083 :0.06894155911935296 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +year:0.22236284663100492 man:0.2216963917815124 certified:0.20105767903898927 fixed:0.18762249760489025 :0.1672605849436031 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.31193080599670475 in:0.24766051126330121 for:0.16882936320537606 from:0.14401186640650512 :0.12756745312811285 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.6092006375402592 no:0.1691833813538581 the:0.10648872465278673 very:0.06028850552803811 :0.05483875092505782 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +only:0.4354934839296862 a:0.3904121074861939 one:0.10261342672273316 exceeding:0.038886914130411114 :0.03259406773097571 +any:0.36976541108122085 and:0.21968632977884867 no:0.17910428602648518 only:0.12659409494638846 :0.10484987816705668 +a:0.3327547161949255 this:0.31359307520772806 the:0.2728138130934273 every:0.04144263402483088 :0.039395761479088326 +in:0.23403823572829116 and:0.221180499143935 with:0.22013634501701562 to:0.17636819760248465 :0.14827672250827342 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.6580781678622455 now:0.11062960108839069 doing:0.0844386122236465 quite:0.08079790846829538 :0.066055710357422 +mind:0.35209230212251397 ideas:0.18967727677996066 arms:0.1762833683056126 opinion:0.16914301802141582 :0.11280403477049698 +new:0.28555225410016716 peace:0.2853605915732939 present:0.21744962919065092 canal:0.11054397577486277 :0.10109354936102531 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8091542181793221 their:0.07938798671463893 tho:0.038580729116924554 his:0.03774437668945894 :0.03513268929965558 +of:0.6142313788154962 in:0.18792334683532355 on:0.07812970424913936 for:0.06469592880454803 :0.055019641295492736 +United:0.9823903122384878 Southern:0.008335323756619861 Confederate:0.003652086607621244 other:0.0034789154161813493 :0.002143361981089876 +occupied:0.3013858796728984 owned:0.2935024326886055 made:0.1541550021602174 purchased:0.12732015733120403 :0.12363652814707456 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4730193252305811 in:0.1830209082538783 and:0.14877624994268376 on:0.10951953812362644 :0.08566397844923039 +be:0.5572695471898356 see:0.23170016990268932 show:0.13641027222927501 bo:0.04095964895352245 :0.03366036172467754 +which:0.2910303268738953 that:0.27271541499979146 said:0.2041969063627642 whom:0.1477033927097292 :0.08435395905381984 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +other.:0.6172422920599787 year.:0.15763305681927953 day.:0.1458938353778805 month.:0.048827824366886256 :0.030402991375974943 +said:0.40978557905863605 my:0.34959862742283726 his:0.10056412768679414 their:0.08843915815739946 :0.051612507674333175 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7257044760185918 a:0.14897377240473778 this:0.06366804082533772 tho:0.04006457394658578 :0.021589136804746924 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +at:0.35345336927402937 the:0.24703592516797007 of:0.20581660565595755 a:0.10477695353853402 :0.08891714636350906 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +cows:0.3919568857318498 products:0.3147178570775789 cattle:0.1434594846227436 farmers:0.08092842602709921 :0.06893734654072846 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.35884434906640844 as:0.2842267039798616 in:0.15307280466483866 that:0.14003429088057912 :0.06382185140831226 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.35521071629696976 foreclosed:0.24398410990080924 done:0.14244664034900092 paid:0.14139776831955897 :0.11696076513366108 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +way:0.2501637392820881 coming:0.2188359812720262 back:0.21196423514768567 fall:0.1727115515396201 :0.14632449275857995 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.338977489378783 country:0.1842754949465732 world:0.1791043788994479 city:0.15640817023308612 :0.1412344665421097 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Adams:0.2648480864650115 the:0.20218667228463882 Main:0.18906444773502754 May:0.17289050155551536 :0.1710102919598066 +man:0.2745651810264176 time:0.19222317488609308 one:0.18701099191501802 there:0.18339190808650546 :0.16280874408596577 +of:0.8774900718916167 in:0.06111101494263524 to:0.02277480734954802 at:0.020430452896929283 :0.01819365291927085 +.:0.26642914243584953 j:0.260911673067711 |:0.2154221874608992 by:0.14407482465290214 :0.1131621723826383 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +secretary:0.3450397383674135 sale:0.20735792525245358 citizen:0.1665198011579054 property:0.15429606696024273 :0.12678646826198467 +important:0.2620077795049094 money:0.20643055559641854 effective:0.18644314495602088 rapidly:0.17713521709650543 :0.16798330284614582 +and:0.745624913160398 near:0.11256905433941396 of:0.08255538783941212 were:0.03499551650691449 :0.02425512815386144 +getting:0.46718838208856545 her:0.1720699701166649 itself:0.1257867384787591 bringing:0.1182934657613172 :0.11666144355469314 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.338977489378783 country:0.1842754949465732 world:0.1791043788994479 city:0.15640817023308612 :0.1412344665421097 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +as:0.45312323055696313 that:0.28302909837556167 many:0.13736092890957624 much:0.06674857564967565 :0.05973816650822336 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +into:0.4469053386689673 for:0.18969006533151722 of:0.16389267883524214 in:0.10258057953850908 :0.09693133762576413 +William:0.23966658944829564 John:0.22607987373748262 James:0.20032051322330993 Charles:0.17218875192282848 :0.16174427166808333 +to:0.39610123010941367 for:0.30284045274417587 of:0.21489357292814043 and:0.05922659844151001 :0.02693814577676005 +that:0.26938246869781546 hat:0.2415476615615519 and:0.1970473169617916 which:0.15038317357021386 :0.14163937920862726 +in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +tied:0.3104405419713267 live:0.23141782139529601 die:0.18846930713447338 o:0.14032210367751796 :0.12935022582138614 +of:0.2840747126245008 or:0.2729446146262182 and:0.1669336740360221 thousand:0.15187949892938082 :0.12416749978387812 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.2390646999452482 in:0.21956363421132438 of:0.20474307552468665 In:0.1919522570622825 :0.1446763332564582 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.31799270619423115 real:0.2138008810639713 only:0.19516636226623735 a:0.18932965259866139 :0.08371039787689881 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.3781982561317804 at:0.3357947051421796 on:0.12407550729348882 to:0.10879928136530607 :0.05313225006724506 +the:0.8473511785844805 said:0.0567279401611449 tho:0.049039468833554874 tbe:0.023530270304487573 :0.023351142116332317 +the:0.8741784887448942 a:0.053079899510374784 tho:0.04126430892636956 our:0.01813467803510773 :0.013342624783253739 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.33132830401348223 council:0.20990255725438375 clerk:0.20729109447841187 mills:0.13777491129793923 :0.1137031329557831 +the:0.7546411635735251 several:0.0761491266845296 various:0.07185640429430167 other:0.05380041193946655 :0.04355289350817716 +has:0.5444986879851371 had:0.23003908530779077 have:0.12167224653235528 having:0.08122302413022471 :0.02256695604449222 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.2678751282504178 place:0.18910919892162628 house:0.18660479937108573 time:0.18495719921396467 :0.17145367424290542 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.4540861895922527 could:0.19245320101181734 can:0.19078922141032414 and:0.09199719330012464 :0.07067419468548107 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +year.:0.3297496846293709 man:0.24101471810156205 part:0.1791527864822918 point:0.13129677440001622 :0.11878603638675908 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.29618276869446397 this:0.1972683963530672 in:0.17524557374552285 running:0.1752440663977757 :0.15605919480917013 +to:0.6333208878942317 under:0.11709453017259322 and:0.1134509067314325 will:0.08423289493358829 :0.05190078026815432 +be:0.45856897201271624 have:0.24462175771370687 make:0.15052145331346825 see:0.08642372453167914 :0.05986409242842929 +government:0.32816086984516035 Government:0.23363977043819453 subject:0.18561919076401306 troops:0.12947786649010015 :0.12310230246253197 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.5393445584056685 this:0.19172556426780882 a:0.14867597265720414 every:0.07872176569152378 :0.04153213897779465 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25893617488399556 give:0.20291323854444404 see:0.20031327429918658 take:0.18289739772996536 :0.1549399145424084 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him:0.29954315579055807 them:0.234032497325881 law:0.1989588797359699 those:0.14317201773033747 :0.12429344941725347 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +with:0.6884467268319573 up:0.13074894433974654 in:0.10784995594867232 at:0.048436136389012945 :0.024518236490610825 +of:0.24359681287405305 1.:0.24170168227285316 1:0.234801682365355 and:0.1422517872435192 :0.1376480352442197 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +home:0.26286055368536093 friends:0.2322107141819424 life:0.20389665008456553 hand:0.15553758543332877 :0.14549449661480246 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.3125128301983535 on:0.2851671563274733 of:0.14259571656165074 within:0.13999023170552077 :0.11973406520700174 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9110844038791525 tho:0.03397786086252092 its:0.027168659798980893 tbe:0.015115883544734013 :0.012653191914611719 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.2964521837751925 to:0.2402091353543849 at:0.22777691361254712 by,:0.13405046546142976 :0.10151130179644571 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +::0.38522921233411195 made.:0.32582777533118595 alike:0.10922085512398676 here.:0.09367498387453567 :0.0860471733361798 +country,:0.255714336521947 world,:0.24966444254928408 people,:0.18397271953541283 time,:0.15542103659202702 :0.15522746480132904 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5143919205336279 are:0.1382514709653817 time:0.12865646934778513 were:0.11709313655648687 :0.10160700259671843 +the:0.4741767315172348 a:0.20131362183854806 make:0.14508652445155412 be:0.14129013434041962 :0.0381329878522435 +the:0.5917588111081749 at:0.22104649966609785 to:0.06555580244259834 a:0.06425812066688066 :0.05738076611624827 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +said:0.869967515582271 Democratic:0.03980171415438008 District:0.03576311272091193 District,:0.027911624110143068 :0.026556033432293773 +of:0.8455079451298888 in:0.058021497762959416 to:0.04350099470391134 and:0.028136814854024597 :0.02483274754921572 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +•:0.2688454367043203 s:0.26024166276464994 *:0.2168897535189886 it:0.15812574530203202 :0.09589740171000909 +so:0.2613475267801222 now:0.22782013509150073 sure:0.18209768682016428 aware:0.17602634462506325 :0.1527083066831494 +in:0.8964489303828808 In:0.06081553146684094 to:0.019425468758714245 iu:0.012075326770275393 :0.011234742621288714 +we:0.41851162656481544 I:0.2968444009169367 the:0.12670491557145394 they:0.11374621191596145 :0.04419284503083235 +difference:0.651250207301985 terest:0.17547122067928034 formed:0.09084629719108359 crease:0.0682466475464107 :0.014185627281240343 +-:0.31988009016487673 •:0.22549595392095742 r:0.2064292183853117 thu:0.15915887623479866 :0.08903586129405555 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.547614833293185 a:0.2178820360229446 him:0.1195683569161856 that:0.05902531543756725 :0.05590945833011754 +made:0.2779901826267672 arrested:0.19980263295671252 born:0.1868817776721978 made,:0.17161346003385894 :0.16371194671046363 +wife:0.4369006917939258 wife,:0.1525418985079288 life:0.1515419042429613 head:0.13521155646257982 :0.1238039489926044 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.2992371820317246 we:0.2128879800149998 which:0.18404485806707363 they:0.1548956855390326 :0.14893429434716943 +one:0.3847203537933439 day:0.2722940194206343 date:0.1514943363126427 all:0.09631390718136446 :0.09517738329201458 +way:0.2491231754921462 straight:0.21700691100115818 deep:0.20673272931679262 man:0.17083775952785168 :0.15629942466205127 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.347003996182018 a:0.21628768006963633 entire:0.1721053548483423 additional:0.1597005992088408 :0.10490236969116269 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5469470607282613 this:0.15291095361012622 any:0.13287716350475326 present:0.09001949409318984 :0.07724532806366959 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.370110651469863 and:0.2521766138095122 is:0.13972609436339462 has:0.1200503285880972 :0.11793631176913297 +the:0.4023533405744373 a:0.20349210637741638 and:0.158909174939737 in:0.15281259566253838 :0.08243278244587082 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.27373181542128633 that:0.20864543739718006 say:0.1920316293263952 whom:0.18661564805931516 :0.13897546979582326 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5548939880856164 is:0.15702375126590132 can:0.11525187021658008 he:0.08753793470267508 :0.08529245572922713 +that:0.5703739976765094 as:0.15513010010958408 to:0.1091456817176342 in:0.09006868148296422 :0.0752815390133082 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +part:0.454613411254845 one:0.26371512194733043 kind:0.12169999297098999 portion:0.10910391434629338 :0.05086755948054118 +the:0.7141112213083551 a:0.1904490770829621 his:0.04778730048563264 every:0.030766771786540123 :0.01688562933650994 +which:0.4824471223799693 that:0.19655440656726736 it:0.15362211565014303 as:0.08709869984620454 :0.08027765555641588 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4724799695201598 to:0.17182770066857248 en-:0.12738617294329763 a:0.12466986003764201 :0.10363629683032798 +now:0.3884163732654954 there:0.3330485788090122 hereby:0.10834240239099173 here:0.09160630942140595 :0.07858633611309483 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4983196971590616 a:0.38357491257094517 no:0.0587114754917366 of:0.030962525640751186 :0.02843138913750533 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.30444998494770814 that:0.269330656087492 by:0.23865131675883902 in:0.11356305811180584 :0.07400498409415493 +that:0.3845379215567691 and:0.252031809984556 when:0.13330291903637476 as:0.12007195741074002 :0.11005539201156009 +been:0.5647553182275784 never:0.24289572555801622 ever:0.09335910957229276 not:0.06893029302541442 :0.030059553616698036 +the:0.7278484992709283 his:0.09835338961501441 their:0.0793390776240207 its:0.061355179580951325 :0.033103853909085094 +said:0.40785917986697134 the:0.28853883237842104 this:0.18147920682172106 Lake:0.07781585254243581 :0.04430692839045105 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.45443743193321195 o:0.2024628015074792 of:0.150006841769812 <:0.09732583945830246 :0.09576708533119431 +made:0.3329805218831581 taken:0.24479312277689416 put:0.17651637928573538 built:0.12835540915392704 :0.11735456690028538 +easterly:0.22475202130079436 westerly:0.2019633634683971 southerly:0.2013213352267667 northerly:0.19326395839022983 :0.178699321613812 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5493868840877709 his:0.23922814623569166 her:0.08509601767215984 my:0.07328885607743169 :0.05300009592694565 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +who:0.6733268045544393 he:0.13076223236185547 and:0.09024293646471801 woman:0.07341675361179323 :0.03225127300719407 +of:0.5210296674028433 that:0.23731403168495205 between:0.11609271015029816 with:0.08473310975040102 :0.040830481011505465 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.41800004231412 them.:0.23795150443972227 of:0.22215996398362442 as:0.06519675273769852 :0.05669173652483477 +in:0.30392566380195185 and:0.25578792847257836 at:0.1938850112322027 of:0.14768676668960012 :0.09871462980366692 +C:0.2760196920526406 W:0.19147491521512677 M:0.1819509935530578 S:0.17554370608885986 :0.17501069309031517 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +has:0.48903864608552594 had:0.2792755011122126 was:0.14531597601588958 lived:0.04531616640764583 :0.04105371037872608 +beginning,:0.296544243909688 human:0.21219154367094 this:0.19293328318988984 them:0.15976401534510598 :0.13856691388437625 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.29912866345865513 of:0.19680687780510017 believe:0.19650739072428697 say:0.1581252572048741 :0.1494318108070835 +been:0.5009502473113999 seen:0.13765824456167317 gone:0.13601920486781582 made:0.11921069003233738 :0.10616161322677378 +of:0.890118952579766 ot:0.03174611082135225 by:0.031014860262709793 and:0.025823896761300577 :0.0212961795748715 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.5773165624430431 reason:0.17595641688082814 excuse:0.09111279616560516 way:0.07927571720603267 :0.07633850730449103 +side:0.36512043952883544 day:0.31394079956770965 end:0.13581817229506907 part:0.10001497355056445 :0.08510561505782134 +in:0.633861954447368 In:0.12127298856772677 hereby:0.09016752316414782 the:0.08863608124822647 :0.06606145257253078 +in:0.3555376612880513 of:0.27108030598882527 on:0.18771261160038766 at:0.11475888180086136 :0.07091053932187427 +ready:0.25901070113596497 going:0.1984609996187763 not:0.19532618562606505 likely:0.17882635437966565 :0.1683757592395281 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.5261854846617042 and:0.31300905126194434 will:0.06978527514491342 them:0.048636158421205326 :0.04238403051023262 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9221142607696489 tho:0.02555696415978437 tbe:0.022369200036832702 his:0.015107521650545344 :0.014852053383188712 +their:0.302409556748665 his:0.26292678655803475 the:0.18367668870634626 and:0.15813593522928862 :0.09285103275766528 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3844326581074033 will:0.31860302899072973 can:0.10617109309282674 should:0.10152376265059432 :0.08926945715844596 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +2.:0.28184895029877405 1.:0.2585829331769319 3.:0.16160174154619905 4.:0.1604800881967652 :0.1374862867813297 +recently:0.4882328702493719 frequently:0.2104306854211232 previously:0.16016900109940146 lately:0.07334791071298218 :0.0678195325171212 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +paid:0.577331141168358 asked:0.1488500458802321 and:0.13821018458517476 are:0.0686412853701034 :0.06696734299613172 +box:0.30783643037770886 lot:0.2744209244955253 ,:0.1653599333642011 piece:0.12980459115198406 :0.12257812061058056 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ture:0.2729460130669568 tional:0.22797623036842796 tions:0.18264980512251194 tion,:0.17420412725102935 :0.14222382419107382 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +been,:0.37563662046810975 done:0.25223242766000076 been:0.15066493460806935 done,:0.13452448833924033 :0.0869415289245798 +results:0.34020163558750843 letter:0.23769587295643999 character:0.14653870696756105 way:0.14561090748014135 :0.1299528770083492 +of:0.7386147421814668 in:0.10182876308908535 the:0.08990403421132595 that:0.04067326237391221 :0.028979198144209514 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 +meeting:0.5131636637567835 report:0.2678516149255785 salary:0.08100878600378504 session:0.07323050346484905 :0.06474543184900396 +fact:0.4570022760301214 in:0.2129410371177454 and:0.12997058502460962 conviction:0.12007903438361445 :0.08000706744390922 +County:0.25238105257050786 deed:0.24715346637445168 county:0.17341080776496423 Board:0.16569919638178154 :0.16135547690829463 +from:0.29369345668332925 to:0.21248557882706343 year.:0.21189823931494062 when:0.15823033722846155 :0.12369238794620521 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.25474368733427766 to:0.20858020383792142 with:0.19065153051432587 that:0.17627535069184216 :0.169749227621633 +not:0.2458099955423775 well:0.21930018403594653 a:0.1806932935370732 usually:0.17984058648458692 :0.17435594040001595 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.3094051313129183 the:0.29195286937547793 do:0.13530332926987781 go:0.13245230508424338 :0.13088636495748251 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.5573183786312482 or:0.27729624661076 within:0.06205417766554061 for:0.051961613186707514 :0.05136958390574362 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.8274330630122914 of:0.10876676357481892 in:0.029457387349588693 is:0.019290474162063136 :0.015052311901237838 +many:0.7476833986997439 American:0.0888785544677321 old:0.05877770616446957 working:0.0565353601260908 :0.04812498054196372 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sec-:0.7413904998602087 na-:0.21662904980584985 op-:0.027927146246607654 -:0.010552011693985671 :0.003501292393348051 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3731408529708806 of:0.17540776816127193 Smith,:0.17210275633224956 Hall,:0.14990763109617264 :0.12944099143942517 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +nothing:0.3501495045242801 time,:0.24593001479632265 day,:0.16280333792172794 is:0.13148700351391812 :0.10963013924375109 +so:0.34458202558020484 found:0.2171190151842803 given:0.19073618721471572 suggested:0.1276956811315772 :0.11986709088922202 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7408921911568755 and:0.12011618839188495 time:0.05996035985775073 in:0.04542575514682333 :0.033605505446665594 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +men:0.3067366132616776 things:0.24223945917791095 people:0.2265463871188521 lands:0.12897554715139256 :0.09550199329016672 +which:0.4169091073934834 trouble:0.22342393510779465 smoke:0.14449246114177425 discussion:0.11073018411120936 :0.10444431224573845 +he:0.38599933766009403 she:0.208392325789077 I:0.17970351070041185 they:0.1309186655914118 :0.09498616025900533 +would:0.5009743112301059 might:0.17406231211753273 may:0.1363940963514474 will:0.1194423509393418 :0.06912692936157211 +Mr.:0.35226637650220205 Gen.:0.20721510797479836 the:0.15660575670608037 President:0.1451463132489666 :0.1387664455679526 +in:0.30448115328131403 that:0.24013840648517648 to:0.17681522912544465 for:0.1434113443221828 :0.13515386678588198 +it:0.2731905881172946 such:0.26544741930620214 in:0.20636560354666175 you:0.12756099886241332 :0.12743539016742816 +held:0.2413972363206686 placed:0.24053160270689386 made:0.18780208327570927 due:0.1713522810500942 :0.158916796646634 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +his:0.3486457300655126 their:0.2626512406747352 our:0.21967212302525618 its:0.09379913913052267 :0.07523176710397358 +that:0.6497356619659624 it:0.13338065439943717 there:0.08828470237318589 he:0.07222389160127571 :0.05637508966013869 +a:0.5414998858149273 to:0.28000313199506693 in:0.09731697905051184 the:0.0455485607487328 :0.03563144239076111 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.69860202158146 in:0.17410755602728106 and:0.05102239628371365 toward:0.042477089202746364 :0.03379093690479906 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.2455173815927154 city:0.21862132776476306 county:0.1882611855521948 people:0.17628356050102054 :0.17131654458930623 +wear:0.22847505361841264 carry:0.22816628589501467 shut:0.2074858138491707 went:0.1718685318344906 :0.16400431480291142 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +suddenly:0.27375083209242085 then:0.2549289102386579 also:0.16664001163745631 immediately:0.15546592461437103 :0.14921432141709398 +fact:0.6811856975996785 said:0.129424747603616 ground:0.0668337494128204 belief:0.06258864438599437 :0.05996716099789066 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4939240415683883 to:0.2053567412096026 in:0.167034780555648 for:0.07083546748917881 :0.06284896917718227 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +line:0.9506948607758667 lino:0.037005267670832155 lines:0.0054774919678048425 board:0.0037227442587954344 :0.0030996353267007085 +who:0.8209610446282987 he:0.06076464029639635 and:0.05427050541258577 there:0.0339494596625462 :0.030054350000172904 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5803360674224338 the:0.16207335441691015 law:0.11927571263203685 district:0.0836840698175354 :0.05463079571108382 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9009939144634487 on:0.04171625326609539 to:0.02676332215116651 ot:0.01697521096868034 :0.013551299150608972 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.2788042534688078 country:0.19545941946755727 world:0.1930913123452917 city:0.1704606403572238 :0.1621843743611195 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.5151178829684255 of:0.20127635579980102 how:0.12547841499495035 whether:0.08045239678119318 :0.07767494945562992 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9220090277425222 tho:0.031046433886193457 that:0.022204617861076806 and:0.014590318711395779 :0.010149601798811806 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +members:0.28697623092247804 line:0.22049608048208588 system:0.19626309695502045 method:0.16433291694990163 :0.13193167469051406 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9078091203008025 tho:0.04123588232844596 a:0.020343208434999312 tbe:0.020228986317300718 :0.010382802618451417 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +relating:0.30721194026212467 as:0.1891505785495765 is:0.1879803368038034 and:0.16265694372917372 :0.15300020065532163 +as:0.4836429270936195 in:0.24350159585971368 a:0.13127086872434193 the:0.07440042733422693 :0.0671841809880978 +ports:0.2956904883828332 ported:0.23254199205376058 port:0.17465630894891104 a:0.15181058965250555 :0.1453006209619897 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +more:0.5200872275914584 fact:0.16437791629934292 most:0.15935115670296265 care:0.08254134545262785 :0.07364235395360795 +are:0.33465354684222387 did:0.2459594534360311 do:0.1557007932054442 were:0.14765790000934043 :0.11602830650696039 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.3022152996808585 tain:0.2861195264282406 !:0.14220535879145133 t:0.14178987533106352 :0.12766993976838598 +that:0.3575553260554414 much:0.33209544749747183 far:0.13765906435989972 as:0.08710974826161941 :0.08558041382556766 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.8687996122228396 only:0.08044998011197459 help:0.026509754025421398 receive:0.012895358537980173 :0.011345295101784213 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5020427669107871 a:0.32886140676658837 as:0.06785903711894506 all:0.058275709934557364 :0.042961079269122016 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +claim:0.309586451162503 mine:0.24619473569450934 de:0.17069662529023327 aad:0.1556018586747384 :0.11792032917801602 +civil:0.48136075353696706 late:0.16040658810875907 present:0.13844832695089956 world:0.12593301613387953 :0.09385131526949476 +held:0.24584933786189606 made:0.24188173958470283 found:0.19584052041634242 placed:0.16600940393893399 :0.15041899819812476 +tered:0.531136974157663 tire:0.13792570855445907 force:0.1338774320073863 joy:0.10294068503321752 :0.09411920024727422 +is:0.5145091884522207 was:0.24980331045118834 are:0.1277860204686298 has:0.05654701427855017 :0.0513544663494109 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Miller,:0.27743500921310316 Smith,:0.26526704946024926 Williams,:0.17929456678713798 Jones,:0.1483414463137047 :0.12966192822580486 +and:0.5796147326620005 who:0.15606462450108102 was:0.12144431963486396 were:0.08767534979228457 :0.055200973409770135 +as:0.5423266732709874 which:0.16710706429184263 and:0.11853618124387073 there:0.0886122254837213 :0.08341785570957816 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +un-:0.4780555840611123 or-:0.25079543314168556 un­:0.1218487286958343 un¬:0.11740330545039498 :0.03189694865097276 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +piece:0.2886838718812382 little:0.1935834481521195 man:0.1837121383300525 person:0.16826751622582306 :0.16575302541076672 +is:0.3807673094299777 could:0.25323651879165515 does:0.16518438665083907 has:0.10195590136962408 :0.09885588375790405 +the:0.562363948044362 an:0.2847694209065546 every:0.07148990896941924 early:0.04588899987230486 :0.03548772220735923 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +recognized:0.4538139150999593 be:0.20647516939596475 and:0.13910511847928392 described:0.10405895085147471 :0.0965468461733174 +the:0.870038144477316 tho:0.041154427849807246 a:0.040711885602578546 this:0.03407968606705724 :0.014015856003241213 +the:0.8106249321535038 a:0.09564063269660189 tho:0.04370077472703774 this:0.03180143333766522 :0.01823222708519119 +be:0.4648992926917519 put:0.18622300172743123 assist:0.1250201765404788 him:0.11290369569300782 :0.11095383334733018 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7608798684649742 in:0.07133885232717116 to:0.06277278877376864 and:0.060655483155753136 :0.044353007278332926 +and:0.4521080501963427 but:0.1581407676900149 in:0.15198190144025353 for:0.12716359301104735 :0.11060568766234148 +the:0.9293963517345689 tho:0.04064636115310506 tbe:0.019764705874701208 this:0.005247230105721756 :0.004945351131903065 +order:0.34814287764321605 regard:0.2797335529399235 addition:0.19045135933542082 relation:0.10603264685782259 :0.07563956322361706 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.3634879144300244 good:0.30966395562214727 man:0.17139748528980608 men:0.10104159561554775 :0.054409049042474456 +could:0.3779243238043719 don't:0.2767489445499742 would:0.1818000487366052 I:0.08661209908709856 :0.07691458382195006 +others.:0.4021272406355896 children.:0.17700551140968465 wife.:0.16179531225908292 night.:0.13250235032308277 :0.12656958537256005 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.2795121817920691 likely:0.1955066928538332 going:0.18913954902219285 necessary:0.17840335755718467 :0.15743821877472008 +Main:0.6047423111456897 Third:0.1432866653007422 Second:0.09682922310000239 Fifth:0.09356798489215445 :0.061573815561411394 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.2788042534688078 country:0.19545941946755727 world:0.1930913123452917 city:0.1704606403572238 :0.1621843743611195 +who:0.7927642213346489 have:0.10361555459510771 had:0.06927070543566956 having:0.018563939184355133 :0.01578557945021879 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.6032625592253907 Miller,:0.20493297697239096 Smith:0.08967223820500095 Johnson:0.05417365789893044 :0.04795856769828695 +carefully:0.3881964544520598 well:0.21779685112841202 not:0.1640996982503788 so:0.11835253113219407 :0.11155446503695528 +it:0.334968749667274 a:0.30260138693704847 to:0.18024058723799768 j:0.11716436551788849 :0.06502491063979132 +them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 +Smith:0.2691060623642617 Cleveland:0.20503122640097637 Roosevelt:0.1936709511508493 H:0.16880368541973512 :0.16338807466417746 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him:0.27538398139566567 record:0.253327882894937 them:0.23597652483301557 it:0.11870854353010851 :0.11660306734627318 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +son:0.31804235838184447 and:0.21234687137905148 causes:0.15952055250621347 way:0.1553912826057058 :0.15469893512718477 +the:0.8415523403002025 any:0.06358511697012248 tho:0.04217782163858601 a:0.030047604102117785 :0.022637116988971293 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sup-:0.45964015534544644 pro-:0.2635707500227403 com-:0.11375264152059984 im-:0.0914126464943975 :0.07162380661681597 +considerable:0.43882615027276567 reasonable:0.2970779751365986 great:0.12310598176956492 one:0.07458750405453791 :0.06640238876653284 +world.:0.25570111589052535 country.:0.2478724246294853 water.:0.1733327394687571 city.:0.1650164952799333 :0.1580772247312989 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ten:0.31378307162216945 fifteen:0.21941698892806424 twenty:0.19979011488152248 thirty:0.18206536167824539 :0.08494446288999852 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Mr.:0.2291743546373719 them,:0.20783165455555888 land:0.19160498507807067 Columbia,:0.18697608753672604 :0.18441291819227262 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.652939353182606 into:0.15173898829075338 by:0.09996885208585823 and:0.04827139238719609 :0.047081414053586394 +Judicial:0.9968847134656892 School:0.0020789431874501186 judicial:0.0005451877289421391 of:0.0003193530736811239 :0.0001718025442373645 +easterly:0.22475202130079436 westerly:0.2019633634683971 southerly:0.2013213352267667 northerly:0.19326395839022983 :0.178699321613812 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.3348274613733447 in:0.23710316696737255 of:0.1806311660505151 along:0.12680030523224609 :0.12063790037652163 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5957796450533461 at:0.2206189602413261 in:0.09727476476860157 made:0.04532549210882733 :0.04100113782789889 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5569545890357793 a:0.3287634905002705 so:0.04642714331789444 the:0.03682789485834736 :0.03102688228770827 +the:0.5054786513770179 tho:0.22378076381598191 other:0.16053730709286948 mineral:0.06425147529836836 :0.045951802415762355 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.4770830202141194 of:0.22268859196692287 In:0.1586008714535465 the:0.1117692060974248 :0.02985831026798629 +went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 +of:0.5146770992104123 and:0.1586349688644518 in:0.1367383204428224 to:0.09528541618766753 :0.09466419529464583 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +real:0.9097314052823648 large:0.039716949134731484 personal:0.02594316063888138 vast:0.014165498316477638 :0.010442986627544506 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +country.:0.26803284903240115 world.:0.2291145910069688 city.:0.21879424978954234 people.:0.15398937800370113 :0.13006893216738652 +charged:0.28447468010918575 filled:0.21161528182676687 connected:0.2029665291940817 covered:0.18638704729946215 :0.11455646157050348 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +fixed:0.49097819553670086 required:0.25288576820498554 and:0.0972430620466426 established:0.08860436049012133 :0.0702886137215497 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.35592266086034474 point:0.24130479517609796 change:0.14696324754392406 part:0.1304589583290741 :0.125350338090559 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.4398365230115333 is:0.3065747604773251 in:0.15346355173111056 now:0.05258079458318048 :0.04754437019685063 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.6696542362564777 and:0.12184047638585109 with:0.11538567874463042 of:0.052334222070345604 :0.04078538654269511 +the:0.2510696500227175 Mr.:0.22279352809304298 her:0.20694398259308697 this:0.17356783490954075 :0.14562500438161174 +the:0.891014588173277 his:0.038587551535390376 tho:0.030282738385897 their:0.020549087743881204 :0.0195660341615545 +to:0.3949866486287141 that:0.20337432628928745 they:0.1826444507783497 I:0.1546092252838405 :0.06438534901980836 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.44216749425552027 in:0.222673168934443 some:0.11764351267850402 the:0.11406049330418963 :0.10345533082734305 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +has:0.5413648139410977 have:0.23813829070455397 had:0.19882814980727118 lias:0.01477099914420752 :0.006897746402869612 +he:0.3126514628443462 I:0.2795910576113839 it:0.15111653259260338 they:0.1501502974833131 :0.10649064946835342 +directly:0.3634751695678491 side:0.3341562872877761 personally:0.10467769834073286 one:0.09936494127169813 :0.09832590353194381 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.8401474357190448 A:0.12335830223136597 Jones,:0.015657068346172507 aud:0.013765862447687708 :0.007071331255729012 +in:0.3431115071583359 from:0.21728357871580836 of:0.18045152073123202 to:0.17621194979671145 :0.08294144359791226 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +turned:0.3046250826414652 spread:0.1800727027085132 with-:0.17726079711771825 brought:0.17008364340536025 :0.16795777412694307 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.705852769788973 or:0.264652833007949 of:0.011240891381665254 courage:0.009296809268729686 :0.008956696552682985 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8109737182189743 future:0.06797453723758992 a:0.056347601995320004 tho:0.034889925924714286 :0.02981421662340129 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +morning.:0.34123564460887046 afternoon.:0.20083080813991955 evening.:0.18376929726353086 night.:0.16210734040492236 :0.11205690958275676 +the:0.4635775983609416 an:0.24556670540873626 his:0.2017373868082575 any:0.050192888516642456 :0.038925420905422066 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.31709036776466276 and:0.28490729911205065 in:0.16371239338209392 to:0.15831486148225968 :0.07597507825893289 +went:0.26052615730031653 carried:0.2103491086630619 came:0.20205044931662372 broke:0.18699900669260355 :0.14007527802739436 +of:0.8071351556531744 in:0.09411442405842035 ol:0.035881726833453406 with:0.032299126085001 :0.03056956736995096 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +passing:0.3070310810880984 turning:0.22991645010817632 taking:0.1985513742656137 going:0.1554562877436518 :0.10904480679445978 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.32378109654888937 the:0.3086559597221125 that:0.19559264883751484 them,:0.08943797116227893 :0.08253232372920422 +other:0.4567021023432377 foreign:0.19587412093368237 two:0.1340776180325904 European:0.12502523411521355 :0.08832092457527585 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +tell:0.3508177250467423 give:0.2530171921237043 do:0.2207731296506232 make:0.10631782769977638 :0.06907412547915392 +the:0.816805611692034 a:0.07702225398613055 this:0.06712161261137804 tho:0.0198302849215047 :0.019220236788952665 +and:0.35134143831708375 as:0.34173957585343434 that:0.15581442123498568 for:0.0811466473571714 :0.06995791723732482 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.3495949220692509 the:0.185788317315961 for:0.17707609351666476 and:0.1682070368979891 :0.11933363020013413 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.23532520669498327 is:0.226963362838455 was:0.20057528162963223 are:0.18386514933230236 :0.1532709995046271 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +post:0.4344202654628039 wife:0.17147607893798694 lot:0.15944340816933633 book:0.12476161592988406 :0.10989863149998871 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.6967588573648104 went:0.10287062086635117 came:0.0702259944057034 was:0.06886338245421926 :0.061281144908915904 +being:0.566212026253132 be:0.23950480886315018 been:0.08957460299814832 have:0.05249153927674426 :0.05221702260882525 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5827984201199012 a:0.3167425172245791 this:0.05031336906957065 tho:0.027424773909992917 :0.022720919675956148 +in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +prominent:0.3613752369576707 popular:0.30907794033861263 common:0.23082442181689877 eminent:0.05397771559279258 :0.04474468529402543 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.3159013970218059 60:0.21548271865216245 12.:0.20841572544299294 10:0.13475105443139626 :0.12544910445164248 +years:0.2435807232950333 times:0.2190137687531349 days:0.21320601424982896 weeks:0.20844398450292728 :0.11575550919907558 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.6131541432388514 had:0.2051125715603649 havo:0.16727556680711658 bad:0.008603250896396396 :0.005854467497270684 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7654415711460215 a:0.1470256838696467 his:0.03759906274703654 tho:0.02535327167046294 :0.024580410566832297 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +see:0.3630267179337288 know:0.31672443555825147 do:0.16375532428382614 say:0.08300529544119116 :0.07348822678300254 +he:0.4072742098278404 I:0.20439683335847683 they:0.18223022330783156 she:0.13306305338963392 :0.07303568011621744 +be:0.4620979596771678 never:0.21957491473036023 meet:0.13145105450619027 not:0.10086137264577605 :0.08601469844050566 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.7130468424936073 no:0.13049384767849934 been:0.06071173668286011 the:0.05194930984596353 :0.043798263299069676 +made:0.35521071629696976 foreclosed:0.24398410990080924 done:0.14244664034900092 paid:0.14139776831955897 :0.11696076513366108 +candidate:0.39789734701993856 good:0.1680462666624389 vote:0.16550426145230196 week:0.16030475784400067 :0.10824736702131987 +way.:0.2989236372913733 country.:0.19148995984241968 hand.:0.18853414349639924 life.:0.16275543431905296 :0.15829682505075474 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +r:0.28072353415881307 an:0.19063870618390882 i:0.177918379143676 very:0.17536870974451538 :0.17535067076908675 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +several:0.2455744367940875 two:0.23102198295678572 the:0.2298336637070102 three:0.16841683308794578 :0.1251530834541709 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5481932238898704 his:0.28435781710132996 her:0.07042531904475724 my:0.05657826933802872 :0.04044537062601381 +time:0.38372316710678994 best:0.1792130012443636 way:0.1535109271866731 said:0.14962321006019672 :0.13392969440197655 +short,:0.2779275668882542 nearly:0.21475359094301447 the:0.19692056448706358 that:0.15581342975051166 :0.15458484793115615 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +such:0.42834759415103146 him:0.22788911923175517 them:0.18332905396268173 it,:0.08551144372618166 :0.07492278892834996 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5816349682677409 these:0.173445752516568 such:0.12318342135628012 other:0.06118137708034374 :0.060554480779067256 +given:0.2298939905386076 seen:0.2151068503053136 been:0.1942994923665737 learned:0.18415671855596097 :0.1765429482335441 +told:0.34086191694979123 gave:0.21356215633995956 saw:0.21303905808111526 asked:0.11784858107354881 :0.11468828755558519 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.39063410068494947 of:0.20581329486763902 on:0.15750342005953472 from:0.1438135277942235 :0.10223565659365337 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +very:0.4209169247234857 most:0.2442420243554527 mighty:0.11301036297564188 is:0.11116553195619067 :0.11066515598922916 +of:0.8215788770771186 to:0.061363134247494275 forms:0.04053524843939382 places:0.040505701280077834 :0.03601703895591553 +d:0.3200565595436928 ed:0.18740818642419457 able:0.18071079110106808 ing:0.17284911370076075 :0.13897534923028393 +that:0.7250318637058687 to:0.11822242702079831 in:0.07212414286189565 of:0.05188059061023428 :0.032740975801203144 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5411883611842189 be:0.19910719607673547 a:0.16030767021051354 hear:0.05166277741502722 :0.04773399511350499 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +received:0.3192634138363171 no:0.2233940382098337 the:0.18258959003395858 written:0.15231853780505902 :0.12243442011483165 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +world.:0.3368948314036124 country.:0.22883219402006835 people.:0.1796339288043776 other.:0.12971074828403506 :0.12492829748790647 +of:0.4164433958810076 was:0.17882267437767832 had:0.15596113244772808 or:0.13987108564917922 :0.10890171164440668 +a:0.48037934236186963 the:0.4010489980030343 large:0.06832826317908716 their:0.02760868672927288 :0.02263470972673596 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +men:0.39296137620220095 is:0.18178538827361287 as:0.15868983580748267 man:0.14235789232288235 :0.12420550739382119 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +to:0.586708315669653 will:0.1696611443412205 and:0.12245284916343505 they:0.06101878830398138 :0.06015890252171006 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.4088624645188363 if:0.21120999707094362 when:0.20627534183771346 as:0.09779327976818523 :0.07585891680432144 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +fifty:0.3647554315096358 twenty:0.18381557475014926 two:0.15822744582404305 his:0.1494259574542895 :0.14377559046188237 +the:0.27883898739928464 going:0.25420245686067255 brought:0.22066807783574396 reported:0.14748376582501416 :0.09880671207928482 +the:0.7072493371597826 a:0.08275909545069067 and:0.08111071208007041 this:0.0735216220946261 :0.055359233214830064 +to:0.6839600138038039 stock:0.16599541689609978 and:0.10392125738561227 years:0.02462774168847448 :0.021495570226009744 +der:0.5143382896821789 til:0.22804650545930502 to:0.12194147618205331 necessarily:0.08184871678420087 :0.05382501189226196 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +any:0.4724039485689615 the:0.2236784154218287 Main:0.19391678732975123 Third:0.07350108774036591 :0.036499760939092664 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +order:0.32241064761752447 opinion:0.30208636031609504 idea:0.14393405739352175 extent:0.13315868561015853 :0.09841024906270031 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.45207424522237716 them:0.16867561285507604 I:0.1375902464389175 men:0.12552646601833867 :0.11613342946529055 +not:0.2599808858374498 likely:0.2159692321298194 going:0.19629134542596766 expected:0.17417924748384706 :0.15357928912291605 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.2779901826267672 arrested:0.19980263295671252 born:0.1868817776721978 made,:0.17161346003385894 :0.16371194671046363 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.34027519543644114 in:0.19818040735973394 that:0.1675115356480368 of:0.1487881935270823 :0.1452446680287057 +in:0.2710110912139912 of:0.2119126291648612 on:0.20488327874874002 at:0.185461695928756 :0.1267313049436515 +D.:0.4626064005148804 V.:0.21280639118865463 B.:0.14847246164116515 C.:0.09324539867191778 :0.08286934798338212 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +will:0.5014696427255748 to:0.3626970054868484 may:0.05541058162364035 can:0.05218824611004485 :0.02823452405389139 +the:0.45152142835388565 a:0.4151012691982451 so:0.056223443363718394 with:0.03987777895732396 :0.037276080126826726 +with:0.9464174332916683 between:0.020676434537755223 of:0.013177982618900175 and:0.011189440576169272 :0.008538708975506841 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +law:0.2415154069083313 bill:0.19478009397581153 amount:0.1929926626018558 country:0.19043831197547426 :0.18027352453852716 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.5484767361135727 in:0.24437348289501462 In:0.07425960940288838 during:0.07218336656841301 :0.060706805020111096 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +at:0.43638473152498025 of:0.39367098437158987 and:0.08389612622175381 to:0.043570488246520066 :0.04247766963515609 +times:0.30290649347413595 advantages:0.25737140997893687 of:0.2541919645738276 years:0.09562360028944843 :0.08990653168365113 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.46374625951115556 he:0.3097151224976876 she:0.09752685058406169 It:0.08333951146212899 :0.0456722559449661 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.841629674741639 his:0.06698818326246442 tho:0.03916723269301645 her:0.02653087993043361 :0.025684029372446484 +of:0.5019105391657338 in:0.16187008800725142 at:0.14581944531795885 for:0.13480228484113804 :0.05559764266791788 +hold:0.4767203531476238 beside:0.15701722285764158 of:0.15149437560824586 down:0.12997506308657591 :0.08479298529991293 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +both:0.7001232665630458 the:0.23069837366167512 all:0.04592500161557084 their:0.012001735800536976 :0.011251622359171265 +thorough:0.2252155960347672 I:0.21938088852485296 frequent:0.20472341533560812 prompt:0.17652170347250706 :0.1741583966322646 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +order:0.35540716928630206 it,:0.18792307735313238 front:0.1844139243106818 this:0.14874343488772426 :0.12351239416215958 +that:0.40852914382329003 road.:0.18122342273610803 to:0.1401552169534198 bill.:0.13662939339945054 :0.1334628230877315 +by:0.7550520743319699 to:0.08404490031251967 me:0.06359176301951201 in:0.058215595778966844 :0.039095666557031436 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +York.:0.9438356858879908 York:0.03505108049258921 Orleans:0.010842111168976412 England:0.005243809376348539 :0.005027313074094971 +a:0.2779344474881576 the:0.2642106402750193 his:0.21247031002885705 her:0.13584679593231488 :0.10953780627565109 +power:0.286989513238067 history:0.24525008927407455 rights:0.21800666473487662 party:0.13517132504378934 :0.11458240770919238 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.33444820172843154 found:0.21170761208553315 were:0.20073621025966945 believe:0.1304605071963004 :0.12264746873006542 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +letter:0.30159513809248795 year:0.2313321736021945 gentleman:0.18276003429136206 man:0.17906512603351563 :0.10524752798043986 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.3252474265811691 not:0.2463556324312746 the:0.1929139522706371 to:0.12702132192481871 :0.10846166679210041 +six:0.2483252029747698 ten:0.24008759078165387 dollars:0.21749007544658971 five:0.15161605695794092 :0.14248107383904562 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +No:0.40050246928473515 When:0.24231929532324878 But:0.13221454148003275 If:0.11368347843549377 :0.11128021547648957 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +party.:0.7113791844729788 party,:0.1746299238816341 party:0.0504098874921844 and:0.04245452456135664 :0.021126479591846162 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +by:0.6547690549475711 of:0.13637625642541187 in:0.08076183446992144 without:0.07446777823346573 :0.053625075923629806 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sup-:0.5445553413063818 ap-:0.19885037588156607 com-:0.12404481897384255 re-:0.09066434120775026 :0.0418851226304594 +made:0.5724820533685476 done:0.13493670522284365 given:0.11859696023873191 taken:0.08936843723916216 :0.08461584393071463 +the:0.6178806761682288 his:0.20075859889447323 my:0.06928587311277494 their:0.06015701005577907 :0.05191784176874415 +said:0.315857531532917 is:0.2697514239051926 came:0.16399267198254025 or:0.1275464472864777 :0.12285192529287227 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.35949020986371705 can:0.3449980009829114 could:0.1996738818798882 would:0.06060381209119826 :0.03523409518228507 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.8698320280296964 (:0.05511761376783435 II:0.04007136741871656 The:0.02004253937529818 :0.014936451408454437 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.5756190212291602 more:0.16130050856366307 very:0.10113210773949138 the:0.09477590517433662 :0.0671724572933488 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +years.:0.38008731462804185 months.:0.25384918993565037 days.:0.1990273487013591 times.:0.08745397872459486 :0.07958216801035378 +him:0.33374902458677863 him,:0.21725250005381833 and:0.16511471453729676 them:0.15216765133425708 :0.1317161094878492 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +attitude:0.3619580665609182 way:0.23725163572058083 progress:0.14852258165562407 tendency:0.13018657318286014 :0.12208114288001663 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.28344923600063066 in:0.24010497426443178 by:0.2206470692085024 for:0.1368317130557564 :0.11896700747067888 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7348062260121231 a:0.2014489754695809 tho:0.030117752632883684 appoint:0.01770395955631447 :0.015923086329097953 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.2991561184529399 that:0.26467315047868867 them.:0.18450330662767478 which:0.13967645746236024 :0.11199096697833655 +sold:0.365421687722988 valued:0.31657994561234837 and:0.13356718318086466 situated:0.09513599798365556 :0.08929518550014333 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.4909531975455462 of:0.19817450969817654 was:0.11908679690496983 Is:0.10730731988212233 :0.08447817596918505 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +people:0.344590370213163 man:0.28270613457884597 men:0.24749205800916033 person:0.07206840613674627 :0.05314303106208454 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7902070964417879 for:0.05920886861465393 on:0.05812436222657748 with:0.04771655396846992 :0.04474311874851092 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.3053698661979 found:0.23189326647167086 born:0.1784440409715849 still:0.1710480082372108 :0.11324481812163349 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.5658711008566274 composed:0.1633654695627263 capable:0.10694179288348933 worth:0.09088855266136625 :0.07293308403579081 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one,:0.25044985680042364 character:0.216897200936638 diseases:0.19021714888305935 condition,:0.17198905494810388 :0.17044673843177524 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.4901073094744936 and:0.21658119831336214 as:0.1494947239747617 number:0.09489108773483469 :0.048925680502547836 +court.:0.32810705962848136 deceased:0.2313167101666643 county.:0.19649029524457298 ::0.15152946967758607 :0.09255646528269519 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.4602215907829585 man:0.21465850812270174 longer:0.17599686936802453 more:0.08430299098434857 :0.06482004074196664 +days.:0.40787931370535596 men.:0.2527735940185616 people.:0.14667608506235358 years.:0.11965554616006899 :0.07301546105365982 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.9238608542293851 of:0.03332686801279915 tho:0.017967401368875386 tbe:0.013612943625269248 :0.011231932763671019 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.3773029740671307 when:0.20790068263995676 if:0.17634074932211877 then:0.14950657496808928 :0.08894901900270459 +up.:0.312598018251061 others.:0.18802357214890394 hand.:0.18323474499611736 to.:0.17950575658258966 :0.13663790802132814 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7725102977546663 an:0.07875936939324835 this:0.06221710689516597 its:0.046548814665312035 :0.0399644112916073 +that:0.8189604840039685 but:0.06342234912742659 times:0.047934611126059616 whom:0.03560183872207046 :0.03408071702047477 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +with:0.48510074886488586 of:0.16591188758811928 in:0.13511236957498293 against:0.11056198677742042 :0.10331300719459147 +the:0.39965587169876654 a:0.2509255185168236 elected:0.17255236535414012 first:0.12497063761181854 :0.051895606818451116 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +owned:0.3251052920299133 and:0.28801899849811685 authorized:0.1492625180279503 prescribed:0.1200148976883008 :0.1175982937557186 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +income:0.29651635176019303 said:0.2106610602569344 annual:0.19157769434954416 state:0.1640096252005193 :0.1372352684328091 +moral:0.28491365559464843 his:0.2634117276730464 its:0.1947169488499602 the:0.12938601223288076 :0.12757165564946438 +of:0.37222819900174764 in:0.27421066801457084 all:0.13434439594704725 on:0.11729145192866643 :0.10192528510796796 +not:0.34040999569640956 it:0.2540472109030129 there-:0.19249549445400702 him:0.10722697161451498 :0.10582032733205549 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +water.:0.377719708882025 and:0.3758246681023705 that:0.08738577791929278 where:0.08240820933813016 :0.07666163575818165 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +came:0.3078911000110205 come:0.20454167040124577 are:0.20193654768573135 were:0.16313089969071307 :0.12249978221128925 +j:0.31706974639695823 all:0.22741960217305196 ail:0.21071272111502812 i:0.1517523425893753 :0.09304558772558631 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.81072940900009 from:0.0692915529710769 as:0.05729249771009968 before:0.034132867808714204 :0.02855367251001914 +the:0.5122466383165941 take:0.3971231068036058 give:0.042538488941652346 its:0.02595295060299376 :0.022138815335153966 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +w:0.8032068699009737 here:0.0875318690799052 v:0.050912638652190374 away:0.04269697282393872 :0.015651649542992026 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +I:0.39273158630524135 he:0.26501367283654365 ever:0.12859065944418696 they:0.1231357523913432 :0.09052832902268472 +site:0.5878060541959359 capable:0.15642103288552775 privilege:0.1346316306316825 tary:0.07223617512120811 :0.04890510716564569 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +person:0.2788355556417797 things:0.22859693773500167 persons:0.17898011169203376 man:0.17897275170473212 :0.13461464322645272 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +young:0.6000523284288618 little:0.14151246820269558 man,:0.09779041184721082 poor:0.08168964374292845 :0.07895514777830341 +to:0.7151638089086017 and:0.19449725382898175 of:0.05386537389040953 from:0.018777307641221864 :0.01769625573078521 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.2488435997730817 are:0.21592951197601076 as:0.1881842093660891 went:0.18577207390003822 :0.16127060498478016 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.5083990124128202 to:0.186536576366623 we:0.11737612094482569 I:0.09559915934018336 :0.09208913093554785 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +F:0.24251828772102937 P:0.2018702059101336 W:0.1925137342760147 C:0.1880455452195538 :0.17505222687326855 +a:0.6199504755112496 the:0.31319663071238163 some:0.02570628767955399 my:0.020699492187808904 :0.020447113909005867 +he:0.3727927129434615 I:0.3208886133939345 then:0.12859151954673778 who:0.09384357172433973 :0.08388358239152639 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +they:0.3324549043363979 which:0.3279676072006401 we:0.17431945284808315 that:0.11084890090518404 :0.054409134709694836 +he:0.3775582575303948 it:0.27820313971650956 there:0.17708783376580198 she:0.09767003058746972 :0.069480738399824 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.4716773394780415 the:0.3679759885428747 not:0.09794501138969001 is:0.038770865820738507 :0.023630794768655226 +a:0.6591178504311336 by:0.14173351565111625 the:0.0890748778798916 that:0.06349703258879268 :0.04657672344906586 +them:0.35591390801031375 Deeds:0.23898128743073002 land:0.16427108330298018 interest:0.12632544005277482 :0.11450828120320115 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +south:0.40882952898886704 north:0.34767943560313397 N.:0.10810167591210125 west:0.06966826074431125 :0.06572109875158638 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +New:0.9897835317848163 Now:0.007137233855695771 the:0.0027566767197133323 Cape:0.00017402278503038986 :0.00014853485474428858 +interest:0.2359968702647495 rate:0.2293190719381872 bonds:0.19448278913881348 piece:0.17834233577641825 :0.16185893288183156 +favor:0.4286606174776465 front:0.16663700046522184 spite:0.14436924942848997 one:0.14085741126542772 :0.11947572136321394 +for:0.5826602610725893 of:0.1682578518475047 and:0.13833408301927366 to:0.0734141034549503 :0.037333700605682 +south:0.2457968828404529 north:0.24404247147779493 west:0.21590956572120368 east:0.1925224506476388 :0.10172862931290977 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7882267809335224 enough:0.08366941010305495 a:0.046286305080250445 tho:0.042536626836221225 :0.03928087704695102 +was:0.27045829894758294 is:0.2437987123610919 and:0.21612303804781557 with:0.15020149123337612 :0.11941845941013333 +of:0.8373505785236375 the:0.0890383951728996 and:0.026070090961560925 ot:0.02443973295912247 :0.023101202382779476 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Bryan:0.260637491250766 Smith:0.20915036898394299 John:0.1883434814932501 Wilson:0.17341523257164684 :0.168453425700394 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +same:0.28586806082776356 i:0.23634852373329435 first:0.17703357609335907 time:0.1552430478850999 :0.14550679146048312 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it.:0.3178759751755856 them.:0.2392308177037045 sale.:0.21537010795225692 life.:0.12698993345535597 :0.10053316571309702 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them,:0.4461209595799576 them:0.170804005826803 France:0.14732742489457237 him:0.12150097706355635 :0.11424663263511083 +can:0.295063165451754 to:0.19505646026359622 will:0.17856839544165704 may:0.16808026705975096 :0.16323171178324178 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +year.:0.4235994330416361 week.:0.258982551280206 night.:0.2125252505440073 evening.:0.07847636920730394 :0.026416395926846845 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +York:0.5151755842622492 York,:0.2911600699500978 England:0.08211070929716095 Orleans:0.07421192553860616 :0.037341710951885966 +patient:0.24918441185151471 frequently:0.20756810942154613 eminent:0.20490465723662316 violent:0.18735528127129242 :0.15098754021902352 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.30235719829083657 which:0.2900380190130406 be:0.17551582396222834 was:0.1313794258348546 :0.10070953289903994 +went:0.24180135872504743 pursuant:0.21037293585650013 as:0.19787326882558928 it:0.17568616777303872 :0.17426626881982443 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +had:0.5427234899546127 has:0.41879737414251744 bad:0.017289422257262006 never:0.010661092119536036 :0.010528621526071837 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.296797084184698 been:0.24727381931096204 lost:0.17007442496962744 made:0.1475190603543833 :0.13833561118032928 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.7247400203664297 have:0.12279040855387191 not:0.10461981664251112 bo:0.0353545221867012 :0.012495232250486129 +legal:0.6569723904815161 a:0.12100561709600002 of:0.11553404197692366 and:0.06344616238576986 :0.043041788059790254 +a:0.5040657624216491 for:0.2891273255597321 the:0.14651304766534798 in:0.030922722586051558 :0.02937114176721914 +of:0.4174212499646284 in:0.2639328783769599 to:0.12180026082840596 and:0.10822705954088109 :0.08861855128912463 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5699659115709992 down:0.1390825897547074 of:0.12159391464222849 in:0.11423289449169845 :0.05512468954036646 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5631821458393818 a:0.18143934084825578 those:0.14819687943043722 all:0.06703866612333428 :0.0401429677585909 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.46106698434085996 an:0.34084749407259696 being:0.07477766967545736 rest:0.07342310624144602 :0.04988474566963988 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +more:0.5957392130653612 else:0.17524406432382422 less:0.1175594150725518 better:0.0648325181454669 :0.046624789392795934 +above:0.2753984828752391 time:0.25208737667378567 of:0.200334354233471 following:0.1645277099062733 :0.1076520763112309 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +evident:0.3112073145630317 slow:0.23981468954082083 near:0.19627509347477926 on:0.14786229954397354 :0.1048406028773946 +on:0.26620188567559505 in:0.21046539501628453 for:0.2051649074562417 to:0.16915793630975995 :0.1490098755421188 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +did.:0.5144438009124339 dead.:0.22690805430193148 well.:0.11283245691911373 as:0.08767289217764354 :0.058142795688877535 +they:0.48611948609714917 you:0.19160696428617788 we:0.1633065389464768 there:0.15199195518481964 :0.006975055485376456 +going:0.25764174126496203 unable:0.2096599122249072 not:0.20500623635875526 able:0.1814447163183151 :0.14624739383306046 +cloth:0.2445981472560843 ;:0.23366490916482108 land:0.20447485095524018 use,:0.16596636123348144 :0.15129573139037306 +the:0.7307942718431304 a:0.14261493464296102 his:0.05595686975944599 tho:0.036305098377939486 :0.034328825376523084 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.48325399839217054 when:0.1945264642391009 if:0.1428140596161618 then:0.09271063691665343 :0.08669484083591343 +that:0.3811175699668259 and:0.23609441801231298 up:0.1427956458400728 out:0.1256093838537381 :0.11438298232705027 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.3248128359856036 time:0.2909860502270994 extent:0.13861675581851035 idea:0.1243772292300299 :0.1212071287387566 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +City:0.7203491052144771 Town:0.14051915902339698 National:0.05882157142213592 Supreme:0.04074615558133199 :0.03956400875865811 +time:0.38372316710678994 best:0.1792130012443636 way:0.1535109271866731 said:0.14962321006019672 :0.13392969440197655 +failed:0.23285022364306351 come:0.22033299427397599 been:0.19791801323131356 gone:0.1950553578571899 :0.15384341099445706 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +cold:0.4289182285751177 hot:0.21361068648191434 city:0.1314454782881831 warm:0.11418038083782953 :0.11184522581695536 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +made:0.38681822499651847 in:0.26507581884575754 sold:0.12450775979023426 of:0.12222083450665726 :0.10137736186083264 +purely:0.8421984924946501 a:0.06856213079442787 the:0.06250960970667424 of:0.014098613027140496 :0.012631153977107349 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +are:0.24799937535434116 ought:0.20902340071840889 have:0.19125085665302058 want:0.17740701519992233 :0.17431935207430696 +funds:0.5619990082492743 and:0.16738128101313723 teeth:0.13150118599095464 fund:0.09748923747179895 :0.04162928727483498 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +of:0.3684644027430867 years,:0.19385900969974273 things:0.1824453656022294 or:0.12945147973499224 :0.12577974221994886 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.36164849670537336 would:0.19592253959386732 will:0.19045533569683057 and:0.15777375435421273 :0.09419987364971599 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.29490332796135565 them:0.2165083055706645 water,:0.16768759952195023 that:0.16269657764537343 :0.15820418930065616 +many:0.3750982134518175 two:0.2286204202287301 some:0.14171715335135013 the:0.13418402280828487 :0.12038019015981744 +even:0.2540628439574588 either:0.20944225621158338 made:0.19985912497512084 destroyed:0.1911585323888773 :0.14547724246695967 +of:0.8725575797424706 in:0.036624410886640174 at:0.03489026509344945 and:0.029448731563901542 :0.02647901271353819 +city.:0.27085210176396385 country.:0.2498519584612936 world.:0.17629029949358893 standard:0.16596955906103505 :0.13703608122011862 +the:0.7375733130041899 his:0.09002981028322002 their:0.078307167781518 this:0.05389806241618999 :0.04019164651488198 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7520194889506856 upon:0.07860716020417757 in:0.05835020142983637 as:0.05684942492940697 :0.05417372448589346 +at:0.7788887895125448 the:0.15336419392218834 not:0.04974949948826543 a:0.010274086401527039 :0.007723430675474553 +the:0.5744167983940197 th.:0.19260774292266222 a:0.11943695383690418 the-:0.06415781434564026 :0.04938069050077377 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.34909311073949156 all:0.18004324113867423 sale:0.17415866967489554 those:0.15068587496883507 :0.14601910347810348 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them.:0.4828563666314067 it.:0.25450866209638895 life.:0.09986113657446609 men.:0.09259081797876241 :0.07018301671897588 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +other:0.5176673757388811 the:0.3380652381873244 in:0.055111502588575445 two:0.04650895104061024 :0.04264693244460885 +which:0.34380707028351015 it:0.25291330827271824 that:0.17548060309688765 and:0.1497334495102008 :0.07806556883668324 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.30550999195409057 and:0.2505453268037132 with.:0.1642810150795072 Is:0.1508306799279016 :0.12883298623478737 +able:0.3592632806057296 allowed:0.20418202455383563 used:0.1484971377437692 necessary:0.14775269065638058 :0.1403048664402851 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4065620175959557 for:0.3891384550168734 to:0.10660804366422609 in:0.07319763041052951 :0.024493853312415482 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +to:0.6787407369576682 and:0.24435800949049175 will:0.0311844467050272 would:0.027645754695059716 :0.018071052151753114 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.4371342039000377 in:0.2078650818835069 to:0.1512495213594356 and:0.13396963377512763 :0.06978155908189228 +contract:0.3523631255488404 cover:0.2439835873487507 date:0.17630100139798724 him:0.1291872079067483 :0.09816507779767344 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.44597917787287134 the:0.26258530594487417 no:0.1932113521176095 tried:0.051599634413624515 :0.04662452965102045 +office:0.30415755602034067 time:0.26768201526389296 date:0.17005313916874165 same:0.1320309962537506 :0.1260762932932741 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.5350004227585059 it:0.1533125390728228 one:0.13301179572864957 there:0.0922168781443435 :0.08645836429567834 +much:0.35971269716478754 aa:0.34779582560838423 far:0.1301914520994095 as:0.0816798704539404 :0.08062015467347838 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.8283670509293931 only:0.11906969063483232 always:0.019536662580604325 even:0.0172476287359225 :0.01577896711924768 +point:0.5727526296742094 man:0.12452119159785986 set:0.12251966671207759 single:0.09272451404985389 :0.08748199796599927 +people:0.30513295615361996 country:0.22022943020736244 world:0.1724977370948758 north:0.16049601577858913 :0.14164386076555288 +of:0.7534081198353995 for:0.09736264241539358 in:0.06251356209582208 and:0.04854460531741548 :0.038171070335969524 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.5774027810357788 Wall:0.22574761354386372 said:0.0974320870914062 a:0.05998491890971079 :0.03943259941924041 +it:0.44809171643072104 there:0.2605723890180332 he:0.15481368637776266 It:0.10290163380554197 :0.033620574367941095 +of:0.24449068031831714 providing:0.2288158133927352 the:0.19256087570360955 for:0.19224417881093728 :0.1418884517744009 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +south:0.2457968828404529 north:0.24404247147779493 west:0.21590956572120368 east:0.1925224506476388 :0.10172862931290977 +half:0.24750611822843946 of:0.2134578389978743 time:0.18319074465509116 while:0.17847455948790394 :0.1773707386306912 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.766549747344146 and:0.07568116959634617 in:0.06896575920244262 to:0.053590501991121815 :0.035212821865943246 +either:0.3676227920346606 or:0.19932658312300428 account:0.15402117196158951 him:0.14713966729852526 :0.13188978558222048 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.8735839610564056 not:0.07518044779321463 havo:0.024023791018127905 never:0.02060838842860202 :0.006603411703649845 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +In:0.42684966596049145 The:0.3680342298500516 We:0.09416715769887497 This:0.062429934568709725 :0.04851901192187217 +believe:0.36700070844767313 know:0.22910435214543887 think:0.1377333697167037 find:0.13728624258470626 :0.1288753271054782 +ball:0.4218204668497299 day's:0.19197393660505274 practice:0.14335520482587255 good:0.12180797131214982 :0.12104242040719507 +mortgage:0.22414985382270447 to:0.22009571409562512 amount:0.2009295592553044 deed:0.1880253143192911 :0.16679955850707498 +;:0.3279359690583672 enough,:0.3204017543378399 pleasure:0.12841883003671728 paper,:0.1151594505356354 :0.10808399603144016 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +which:0.5765382953214864 men:0.11779107449536677 these:0.11086200240745007 lands:0.0988844470927413 :0.09592418068295543 +have:0.6852147246970205 yet:0.12233178546935386 having:0.09334949466584878 had:0.05314428404152801 :0.045959711126248734 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +also:0.4655515556816751 now:0.15798670041342944 already:0.1430431572991441 further:0.1176213856364641 :0.11579720096928746 +is:0.3215167532289873 was:0.20706149933049853 were:0.18333722644861994 and:0.16509775267116444 :0.12298676832072994 +be:0.36039592967561834 deem:0.2286671314701771 make:0.2016013648371564 have:0.12548206127690703 :0.0838535127401411 +I:0.4700337021770686 It:0.2217636656441149 The:0.10995941443526944 n:0.10802859865331006 :0.09021461909023681 +it:0.28529175574731447 of:0.23755506738099488 that:0.18004304855045636 if:0.15578434509723502 :0.14132578322399916 +interested:0.43796123792398794 interest:0.1743624842448833 as:0.1594827082406362 money:0.1147008331771675 :0.1134927364133252 +work:0.33764433469082095 hands:0.2749188130026612 wife,:0.16736213972414118 legs:0.11786420618401837 :0.10221050639835838 +seed:0.862752313173409 and:0.03911274459735178 grow:0.038666436006457666 growing:0.030342544003723302 :0.0291259622190583 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.27352552479722336 W.:0.21066194222547582 county.:0.19291766387333778 L.:0.16250459480742607 :0.16039027429653682 +one:0.538989902693338 ono:0.14239387783202007 all:0.13856401097356344 found:0.12101646261865538 :0.0590357458824232 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +no:0.32367282360910893 the:0.21273001634078853 is:0.16395501922554104 any:0.15747103150632635 :0.14217110931823515 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.43677403305201795 of:0.24530438344099217 into:0.11349895888633911 on:0.10477302401381679 :0.09964960060683394 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +may:0.3339014487078322 shall:0.32519437512697785 will:0.15599181413376237 would:0.12212520222770401 :0.06278715980372344 +dozen:0.25936520654057327 dollar:0.21611470826536414 little:0.18341467882783782 pound:0.17533231152232795 :0.16577309484389682 +If:0.40541734830748055 But:0.29967862122746436 That:0.12830356759761447 And:0.09276743661517305 :0.07383302625226758 +the:0.724322720265166 this:0.1523097366905969 a:0.08437129549991695 every:0.019721671659859448 :0.019274575884460746 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.43510090002424734 a:0.29558219902157595 give:0.11744302787257013 said:0.07733452015724379 :0.07453935292436292 +it:0.36781759198836894 time:0.24044878415731985 is:0.20405961623003602 there:0.09545025770667208 :0.09222374991760313 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6224294201909462 a:0.16052092789028302 which:0.126253827874195 this:0.049381557109279696 :0.04141426693529617 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +husband:0.4354982879070691 father:0.23858682746305376 mother:0.13690848014260973 she:0.10435024680664298 :0.08465615768062444 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +rules:0.5956308206734706 pure:0.14236613038464882 freedom:0.1266352492909603 it:0.07782735692752965 :0.05754044272339055 +which:0.3764283682384076 these:0.27501419042506775 them:0.15117436227444098 men:0.12068109191433858 :0.07670198714774516 +H:0.298948060650745 It:0.25634700935941673 Va.,:0.1867753723903205 II:0.1593234082273465 :0.09860614937217119 +made:0.3962248791403346 given:0.16330583264340004 followed:0.15945010195568401 taken:0.1560638116651507 :0.1249553745954307 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Justice:0.7270351927439171 Clerk:0.20764816372630374 Secretary:0.026006187480840735 Executive:0.02443330250609321 :0.014877153542845169 +soon:0.4514247535801595 he:0.19285874987698406 I:0.14968748930066506 they:0.12572068349118057 :0.08030832375101087 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +but:0.3540878780745587 and:0.2942387093339079 along:0.1655794113589019 moving:0.10739811076463805 :0.07869589046799333 +covered:0.3443192483843316 entirely:0.21376653257488654 parallel:0.1924638709330457 filled:0.16645806342411817 :0.08299228468361791 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +doubt:0.6981983191959295 reason:0.12153073573936983 means:0.0683483264137575 hope:0.05664250678662709 :0.055280111864316216 +or:0.4281957765198507 often:0.1984346728604148 I:0.16195374431407153 frequently:0.1421654442937799 :0.06925036201188312 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.9373319211137218 from:0.027064518242290614 ot:0.013479137604465296 that:0.011968357512317758 :0.01015606552720453 +the:0.9326428407036597 tho:0.043786587626083145 tbe:0.015033337724739516 these:0.0045858493488774585 :0.003951384596640375 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +I:0.834033810196416 1:0.10698081455722468 and:0.03219980825025608 to:0.017633688743639405 :0.00915187825246375 +own:0.44042818513281434 foreign:0.1838247710327426 national:0.17132084915519732 legal:0.10766419808615794 :0.09676199659308773 +persons:0.38129517621833514 those:0.3378133792859042 times.:0.13896862248795308 men:0.07236432848716488 :0.0695584935206425 +river:0.24536278488071236 water:0.2305402004276602 south:0.20342962055295907 entire:0.16597178584688788 :0.15469560829178058 +ten:0.2868575572101253 thousands:0.1996948378460887 fence:0.19942494418811516 one:0.1633420582129096 :0.15068060254276117 +on.:0.23482064222102483 away.:0.2254749762322314 down.:0.19084508241219228 out.:0.17806764365807223 :0.17079165547647915 +appear:0.2245982095485874 never:0.2202858460932765 then:0.19197527999928776 that:0.18271818549072202 :0.18042247886812635 +ao:0.2940296178279569 keeping:0.22434291941229978 ba:0.17584778133657974 covered:0.16096005506391226 :0.1448196263592513 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.6657751893399018 the:0.30322619942738055 this:0.01211417779860319 his:0.01006741260126259 :0.008817020832851671 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +council:0.32887423345396877 mills:0.2574418943142909 hall:0.15207430766262525 engineer:0.1373078135575735 :0.12430175101154148 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6346715610662375 this:0.13761013921044132 a:0.12949348464377172 his:0.061686875779220225 :0.036537939300329295 +any:0.32732520698000195 of:0.2891451078894896 the:0.18705786042221467 and:0.09877886249843154 :0.09769296220986232 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +mortgage:0.34292648780196966 that:0.22134016466980921 petition:0.15182642168669083 county:0.14562874252475172 :0.13827818331677863 +of:0.27513169742895643 time:0.2617688442077998 place,:0.1831579514034128 and:0.15405003569100048 :0.12589147126883055 +ball:0.2850973710072572 first:0.2438595191992393 storm:0.17810072477249553 engine:0.16338837460522812 :0.12955401041577982 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +even:0.4812332222057497 as:0.25341037201620925 al-:0.15139041059772781 that,:0.05729394351517629 :0.05667205166513694 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.822014936869061 a:0.10262124929887673 tho:0.0336032615260449 his:0.022755187258991956 :0.01900536504702546 +life:0.2507061495488411 nature:0.22392529594181002 life,:0.2107758243023567 nature,:0.19793437456972773 :0.11665835563726458 +no:0.4421581865856702 a:0.18816993051491 the:0.1687277272466864 to:0.11163609566039925 :0.08930805999233396 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +after:0.3183433487270414 in:0.30356204417699395 of:0.1587803576577141 to:0.12147557512432051 :0.09783867431393001 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.50358099557816 bill:0.14069757878087052 .:0.12415960648028497 woman:0.11949460000540986 :0.1120672191552746 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +can:0.21932137629341547 placed:0.21610320729000387 brought:0.2146647684522465 carried:0.18357748185642483 :0.1663331661079094 +same:0.27905913715653313 present:0.2491606791809853 State:0.1605905937171786 beginning:0.15878575393041286 :0.15240383601488994 +of:0.37222819900174764 in:0.27421066801457084 all:0.13434439594704725 on:0.11729145192866643 :0.10192528510796796 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2912526585777318 his:0.272225564652271 her:0.19176121753370842 a:0.13006510564218776 :0.11469545359410094 +of:0.31413478055255495 in:0.2248260220658447 to:0.21604096083420934 for:0.14049899991715611 :0.10449923663023485 +and:0.44761091228270117 that:0.2860225486493992 as:0.1812920284755771 when:0.05054635295801973 :0.03452815763430279 +is:0.5672309148090748 was:0.13274977982079766 are:0.11159937701372355 will:0.09742963116063177 :0.09099029719577212 +the:0.846790361418788 any:0.0543505052289754 tho:0.03586692295018153 all:0.03242874727264267 :0.030563463129412227 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is:0.4104012322221649 was:0.2098285355508763 Is:0.20177547784763933 la:0.12978629132820232 :0.048208463051117145 +made:0.35521071629696976 foreclosed:0.24398410990080924 done:0.14244664034900092 paid:0.14139776831955897 :0.11696076513366108 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Smith,:0.27660142178506575 M.,:0.2748380059523341 Johnson,:0.16627273361253747 Brown,:0.1446163649491916 :0.13767147370087116 +and:0.398785246716047 government:0.17897495396922564 is:0.16498151700420557 are:0.1577636314988106 :0.09949465081171112 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6731443517514578 in:0.0991939263123484 from:0.0877831975891721 for:0.08579760727568873 :0.05408091707133316 +how:0.31541079490890506 that:0.2829763983285347 as:0.1980698087117358 and:0.13653837126016352 :0.06700462679066095 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.6558196862194915 the:0.23133248126534448 large:0.05324402163704388 that:0.032664497236922246 :0.026939313641197914 +which:0.33502272671978967 it:0.2265632863011718 he:0.1732412864803406 and:0.15503553916481444 :0.11013716133388349 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +man:0.3983715495011018 men:0.2462217686403003 person:0.1961817946286448 people:0.0876295727420552 :0.07159531448789781 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5020623262010073 the:0.17472772886358273 for:0.1474599673637022 or:0.09003102386184597 :0.08571895370986184 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +time:0.48110766474368916 world.:0.13632204793128486 country.:0.13336293299084215 first:0.13281926250208542 :0.11638809183209846 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +back:0.32614441169482167 up:0.3106315915817159 down:0.20973973924755787 out:0.10061404093830932 :0.05287021653759518 +same:0.28100852377992835 country:0.21997135574273222 world:0.1860091939743425 city:0.1574309443129809 :0.155579982190016 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.4477649432096982 a:0.36075774767085206 any:0.0902308081872682 ex-:0.050839094722724895 :0.05040740620945679 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them:0.4254401776191517 said:0.3076554555397977 her:0.10901803444256081 money:0.09168851383725565 :0.0661978185612342 +entering:0.3383144622801467 doubt:0.1978434185235164 that:0.16793078043357387 giving:0.15657220603912997 :0.1393391327236331 +own:0.967699097681523 good:0.010299051678478744 full:0.009733829196309355 first:0.006216798416696571 :0.006051223026992421 +friends:0.2825433314633782 children:0.21055167079438852 men:0.1983776069874169 fellow:0.15809926978735417 :0.15042812096746214 +they:0.2966119938226556 he:0.2592143606482234 it:0.19231185851548444 we:0.17169955681633603 :0.08016223019730044 +who:0.7907526987840475 man:0.061706055018968926 which:0.0557271309701884 ho:0.04627355502994484 :0.04554056019685041 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +at:0.7041149774257286 about:0.08811014553940247 by:0.08044697556334783 to:0.06770337150467737 :0.0596245299668437 +of:0.9659036866398186 ot:0.01240929917218547 times:0.008877616272088308 ol:0.00662026665127728 :0.006189131264630453 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +an:0.47548101308565965 the:0.2533647395076946 no:0.21182086339227962 carried:0.03700194358545279 :0.022331440428913316 +them:0.31900210988456856 sale:0.23968257479751517 land:0.20620760882781722 interest:0.13039512917043658 :0.10471257731966242 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.46832501346030536 that:0.20561617146317518 here:0.12517221224318992 again:0.12057696610025796 :0.08030963673307157 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +only:0.3388733268787293 said:0.184066391876209 cost:0.17336515453697054 truth:0.151944597452788 :0.15175052925530327 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +see:0.38905332324285885 know:0.2555479876830978 do:0.12781879387362108 do.:0.11382136297037661 :0.1137585322300457 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +according:0.41108357662055944 as:0.35782174185884985 owing:0.09414849177896828 going:0.06913369643895066 :0.06781249330267178 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.5853642595873358 the:0.20109960081997552 at:0.0736609309376165 no:0.07121950284475 :0.06865570581032206 +being:0.39801780171575185 even:0.1876290359364259 authority:0.1465699746780905 suffering:0.13492763523756052 :0.1328555524321712 +who:0.6309997077376965 and:0.11490703211373725 we:0.11194928615704548 which:0.07538705057253975 :0.06675692341898096 +is:0.31433419315171085 would:0.17908913850833375 will:0.17698546973015722 are:0.16757235963961076 :0.16201883897018732 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.7647330144988959 any:0.186008315223733 the:0.023554508421247303 some:0.013673787687919627 :0.012030374168204211 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +was:0.38972116080290875 has:0.22078654027010808 is:0.17408626283080716 had:0.11774167435900448 :0.09766436173717147 +th:0.2816085788775218 tin:0.2523453132019838 the:0.2085216734640199 a:0.15219141354152377 :0.10533302091495077 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +them-:0.7805196606795728 them:0.1601182146740051 our:0.039691718137904425 them.:0.012037258617802835 :0.0076331478907148975 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +an:0.5786836004768678 as:0.1746031450217041 the:0.15955020111276108 died:0.0457836880231725 :0.04137936536549444 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +residing:0.297716136573568 was:0.2812131501969239 who:0.1432165883640203 looked:0.1407952177218089 :0.13705890714367885 +more:0.38548991200561983 other:0.18928124612525798 less:0.15513440124002945 lower:0.13878075681970636 :0.1313136838093864 +two:0.2649076645784752 many:0.23968044379369563 of:0.22352258862624055 these:0.14169726548615996 :0.13019203751542877 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +above:0.2753984828752391 time:0.25208737667378567 of:0.200334354233471 following:0.1645277099062733 :0.1076520763112309 +away:0.34448467021103474 and:0.20232710240758114 for:0.1723202014411687 up:0.14885077919493528 :0.13201724674528006 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +other:0.33828350297067583 two:0.26333804069029193 naval:0.18654567082274262 the:0.11559452618592905 :0.09623825933036055 +was:0.25957201323382534 had:0.2425918218108652 must:0.18772424950308045 would:0.1618634462611172 :0.14824846919111181 +they:0.34089955302069336 it:0.20395028388751246 something:0.1650937108384145 he:0.14599156445721173 :0.14406488779616783 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.44884218462401404 almost:0.18109554808920758 done:0.15349115100289779 absolutely:0.12070448068685888 :0.09586663559702184 +last:0.5208810677918766 past:0.1980313857899292 next:0.12753726861225395 first:0.09665353889593373 :0.05689673891000671 +the:0.8966572963884817 carry:0.028597025516053164 make:0.0261337397301885 Western:0.02518181484810609 :0.023430123517170463 +was:0.5393649306955631 is:0.2734312010787783 had:0.11137055920139152 saw:0.04148631360641442 :0.03434699541785257 +city:0.2981920396520641 country:0.20186257968601773 country,:0.18879666668555872 time:0.15604954213173194 :0.15509917184462757 +of:0.6645664513607823 and:0.09763030703094223 are:0.09644232673382491 the:0.08377518891575668 :0.057585725958693906 +made:0.3624254557152501 taken:0.32822368122643014 put:0.11410295367037189 given:0.09982786710736899 :0.0954200422805788 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.29005331735657947 by:0.19354775773209987 or:0.18142948112654422 in:0.17464636185395976 :0.16032308193081665 +which:0.2899634638951496 whom:0.27852767780482074 that:0.2523307140568253 what:0.10376554938001441 :0.07541259486319007 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +o'clock:0.5127452042592033 feet:0.14632114829066412 cents:0.12883262397290218 and:0.10927306475566681 :0.10282795872156354 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +a:0.531616637109386 one:0.15503145264573204 other:0.12863916407155562 west:0.09715273412335082 :0.0875600120499754 +they:0.27222576306654345 you:0.25135187123709096 not:0.2289542764787786 we:0.1581184332220328 :0.08934965599555414 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +for:0.662008785119479 the:0.19509415397203234 in:0.06081963258306135 of:0.05998716149209164 :0.02209026683333544 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.7445784073211016 these:0.1568036968486573 tho:0.03873169250914285 about:0.03349255983003158 :0.026393643491066793 +not:0.27388538794750583 made:0.27149605404774746 in:0.2522741374294984 to:0.10478429931461893 :0.09756012126062918 +country.:0.2686339952833047 world.:0.24427474717546402 other.:0.19351222612132074 city.:0.1541019264854576 :0.13947710493445292 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.8117658274374107 is:0.07551792404838373 with:0.06363669711588306 an:0.027525832690182734 :0.021553718708139852 +that:0.793027208734345 in:0.058447887862984445 what:0.056228974461227745 how:0.048661838157502274 :0.04363409078394057 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.4096628457091822 there:0.20613529896728033 that:0.1467496776644971 now:0.12495303200871617 :0.11249914565032404 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +giving:0.3856771660078562 enable:0.21599839928397913 making:0.13756127421847664 placing:0.13695231526047547 :0.12381084522921255 +own:0.6365362300308094 at:0.12995147930791676 way:0.09163804185193045 husband:0.07265577736617637 :0.06921847144316715 +to:0.3453241715000359 in:0.29078010471106375 that:0.14516943181503786 of:0.13060794956887573 :0.08811834240498681 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6061181813861899 his:0.24662739685516766 a:0.06000473000299445 her:0.053273579986084105 :0.033976111769564096 +such:0.5696352099172389 manner:0.1679887633655239 thing:0.09877492194573584 time:0.09530994390569826 :0.068291160865803 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sum:0.21651168868278436 amount:0.2110435894553611 city:0.1917925984217494 State:0.19078906848749108 :0.18986305495261405 +Mr.:0.2507041416681069 it:0.22583424596027493 time:0.20887970652465848 day,:0.16934891304830973 :0.14523299279864987 +to:0.45255007491554683 into:0.20994040893857785 on:0.1952575329884051 through:0.07398488710955141 :0.06826709604791875 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +back:0.296089872350764 down:0.28557382844650586 up:0.21711137549060744 out:0.13796610606783974 :0.06325881764428287 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +acres:0.504168242686028 feet:0.1938737846011344 years:0.11370181164330705 bushels:0.10700129028876153 :0.08125487078076894 +up:0.6408768668975008 up,:0.16879703416782643 together:0.067255688883863 together,:0.06180458641131719 :0.061265823639492685 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +same:0.6127182710121508 long:0.10376742499231306 well:0.09710558662472232 manner:0.09324468605195613 :0.09316403131885768 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +that:0.34725217007138803 as:0.2896507538214102 it:0.16235522042215664 and:0.12612530874354896 :0.07461654694149629 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +or:0.9168577251581581 nor:0.026723245704426687 than:0.024780192211006396 un-:0.017373965541408853 :0.014264871385000022 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.4137655967930071 of:0.2555113455140213 is:0.15141599150428506 to:0.09822390270840088 :0.0810831634802858 +the:0.8407898493597752 a:0.09747869873270282 tho:0.04019994712865367 tbe:0.015893982604906595 :0.0056375221739617155 +o'clock:0.5568396319558094 p.:0.24761787797533905 a.:0.12396098318789502 o’clock:0.06100319143725997 :0.01057831544369662 +is:0.4773500940865333 was:0.19273263998638485 so:0.13563687554263343 as:0.127282585947781 :0.06699780443666736 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +life.:0.2693511389022844 and:0.2409243683102225 as:0.1810416968780733 matter.:0.16324654871744712 :0.1454362471919727 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him:0.5577883427649754 me:0.17189429808257103 hard:0.12618687242089896 right:0.07417617405374897 :0.06995431267780552 +date:0.2702999049608445 consideration:0.26499195290359406 one:0.1817196279996263 command:0.15775323472605174 :0.1252352794098834 +of:0.7008633538045403 that:0.1218387512187609 which:0.07576253572948705 in:0.05920266336034325 :0.04233269588686855 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +be:0.34148394640679613 make:0.3410332061640286 get:0.11170636311637373 take:0.10834348371763237 :0.09743300059516904 +life:0.23512842363147496 friends:0.21824324651235766 home:0.2067773070575742 way:0.18210469720397518 :0.15774632559461804 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +make:0.25890457868754607 be:0.2546706062321322 take:0.1658249171359854 pay:0.1651201224117231 :0.15547977553261322 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.44809171643072104 there:0.2605723890180332 he:0.15481368637776266 It:0.10290163380554197 :0.033620574367941095 +the:0.5407702959127273 his:0.29351665327880905 her:0.08416378601760297 my:0.05029965789416094 :0.0312496068966997 +rapid:0.28261495599711267 great:0.21124808543082296 to:0.1884598512767871 in:0.16451729360012515 :0.15315981369515203 +power:0.3450281099505447 is:0.21218645426053506 enough:0.16266678965761786 and:0.1543433197128816 :0.12577532641842093 +was:0.4312650496752483 for:0.22485070312279287 hereby:0.14222612104203758 has:0.12634008560869348 :0.07531804055122769 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.6068611048922161 it:0.1407155612435526 he:0.08966387632050364 was:0.08224558487077875 :0.0805138726729489 +is:0.569364483877002 was:0.17874646007525502 are:0.13127685720556198 Is:0.06821883032997914 :0.05239336851220174 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +ago,:0.4230219727023989 ago:0.28012778774408015 old,:0.20507459911029957 past,:0.05051941439515471 :0.041256226048066696 +him,:0.2880239519030564 them,:0.19793263682460835 interest:0.1766953373878456 him:0.1756541515384352 :0.16169392234605437 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.8127858468781031 this:0.07087465872970376 a:0.05761331512233317 tho:0.0416770842221787 :0.0170490950476813 +?:0.29663050874933283 do:0.22817683457823704 did:0.18955733507712919 should:0.14575033939710352 :0.13988498219819742 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.3448219238390545 much:0.25584411764652265 many:0.18600385985317255 part:0.13599459947076745 :0.07733549919048274 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +short:0.6788316106960061 long:0.16834718093477496 good:0.06398142473412512 little:0.05932619847032106 :0.029513585164772826 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.2586205350422438 for:0.22449790330662428 in:0.2169992318579945 or:0.1789909904456178 :0.12089133934751962 +been:0.6161541220589666 made:0.11108168541517788 seen:0.09628501419537151 done:0.08829569456407718 :0.08818348376640678 +it.:0.3189127463896981 them.:0.2295293489523522 water.:0.1919825812603396 life.:0.14363421723797526 :0.11594110615963492 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +is.:0.23644507012379104 up.:0.1959474292367784 is:0.19231333909111323 Is:0.18777960794766102 :0.18751455360065622 +have:0.3068407897604979 was:0.26446371473580094 saw:0.1999439853594232 had:0.12822860893463942 :0.1005229012096385 +in:0.25701676468586504 with:0.19009988325673263 as:0.18635017289502576 for:0.18560139427016756 :0.18093178489220918 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +all:0.37073502417106347 which:0.18134194796167646 taking:0.15340583321799964 that:0.15074658391400803 :0.1437706107352525 +the:0.4483401489678438 said:0.1918054187470656 a:0.15840327251092265 to:0.1219282020727579 :0.07952295770140992 +an:0.40050157999721037 not:0.19855166646190184 the:0.19772558297824352 no:0.11476298060443936 :0.0884581899582048 +he:0.3155906064471423 I:0.28988595198439876 they:0.24792513254505644 man:0.07452789831234805 :0.07207041071105448 +and:0.4796849337224291 that:0.14310939916972518 of:0.13483164582685336 at:0.12625904756079434 :0.11611497372019794 +well:0.680432546279653 better:0.11948429271528346 little:0.10395165856143855 remedy:0.0503925291318238 :0.04573897331180128 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6872667607139674 a:0.11359415013383839 every:0.07605499890621185 this:0.06576259800471683 :0.05732149224126545 +is:0.47918128136361055 was:0.13829448303439104 the:0.13813053060221436 in:0.12454932851825098 :0.11984437648153307 +the:0.6224294201909462 a:0.16052092789028302 which:0.126253827874195 this:0.049381557109279696 :0.04141426693529617 +the:0.45475011156484335 a:0.39777465085557956 large:0.08001180862634724 this:0.03531031691323943 :0.03215311203999039 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +plat:0.5080872502403533 survey:0.12438725897535685 position,:0.12420108077950218 field:0.12291682849804843 :0.12040758150673914 +of:0.8907847233293718 to:0.0374497254679566 for:0.03016256667152968 in:0.027415548936132666 :0.014187435595009387 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +two:0.3110045826614671 three:0.2855834201043814 four:0.21429203354929993 five:0.10117951691930185 :0.08794044676554974 +City.:0.7258824790700193 and:0.11879678662615263 corporation,:0.0724278405356603 girl.:0.06234037488551607 :0.02055251888265165 +told:0.500293794680646 to:0.22838771808437694 with:0.11586172242940998 gave:0.109628319500428 :0.045828445305139 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6869397802703684 an:0.13896816586450636 special:0.09003510172133929 said:0.05426848002217963 :0.029788472121606183 +that:0.7906861907488603 this:0.0635317063282942 last:0.05130457444747055 times:0.050420006522238534 :0.04405752195313653 +which:0.3764283682384076 these:0.27501419042506775 them:0.15117436227444098 men:0.12068109191433858 :0.07670198714774516 +public:0.6804186418210091 human:0.11626167528905575 body,:0.0767525660454246 popular:0.06517495974240366 :0.06139215710210697 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +do:0.2729916684675656 make:0.21512045825787968 pay:0.21098326230020453 be:0.1560823147028857 :0.1448222962714646 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +Is:0.39519887835036166 was:0.3318724175407831 is:0.22164355971176825 appears:0.030042040216496025 :0.02124310418059091 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +one:0.36412280948373854 State:0.19833941379546416 all:0.17594233676020613 some:0.14169428166699916 :0.11990115829359216 +for:0.3481644947973641 to:0.271455250608287 of:0.14486092350039878 in:0.11935350750497536 :0.1161658235889747 +well.:0.438586856837531 well:0.19364154255067756 good.:0.18251095601734907 close:0.09382146639825159 :0.09143917819619068 +to:0.6304895113906349 will:0.12430944221314849 would:0.09043725098970817 should:0.08037904147000974 :0.07438475393649857 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +have:0.3724428610610058 uses:0.20660668935702467 know:0.15015326052375258 for:0.14129209409531412 :0.1295050949629027 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +to:0.39476326964958663 been:0.35664755091737677 in:0.12167785459164707 all:0.06899769485434601 :0.057913629987043344 +country:0.2427935439329404 people,:0.24223197999781168 country,:0.20520338646130334 people:0.17221602781851827 :0.13755506178942625 +they:0.30306598863129697 we:0.2704953382051539 he:0.1710215634278359 it:0.14247245999769934 :0.11294464973801385 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +said:0.37060584631663096 same:0.3636187218236657 agricultural:0.12106333310706481 purchase:0.07816917458370685 :0.06654292416893169 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +when:0.2875862881526645 far:0.22452731306912452 if:0.1933053521394271 it:0.15423143201255907 :0.14034961462622492 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.6347180105825632 this:0.12279981928017146 that:0.10017229272031455 in:0.0939441518595962 :0.04836572555735454 +lots:0.27241268606625546 than:0.24862608038518735 sections:0.23669592445269216 hand,:0.12372085434590437 :0.11854445474996071 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +in:0.3247520521496308 that:0.22117999781496467 for:0.16417075548217291 to:0.15331087086920925 :0.1365863236840223 +The:0.6319415834853158 the:0.23700315391858842 This:0.049818219541315475 Tho:0.043621823955927654 :0.03761521909885258 +only:0.30383596833148724 be:0.24555575265535334 been:0.17691094733510773 appear:0.15527799587139068 :0.11841933580666103 +river.:0.36178114740552375 county.:0.3025234790105975 street.:0.17118121715552215 way.:0.09959873861219641 :0.06491541781616014 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.7596017640664618 that:0.09826129551546176 for:0.08796280005645599 upon:0.02933541293096717 :0.024838727430653303 +bill:0.23946383114500702 case:0.208760098801264 body:0.19819646793474766 result:0.17694077183650167 :0.1766388302824796 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +shall:0.5506033382024231 will:0.18575256208064295 to:0.15220507572494396 may:0.06359980516979341 :0.047839218822196466 +men:0.3303187003341637 people:0.21342769962909822 things:0.2016774632909797 we:0.13484890679565742 :0.11972722995010086 +and:0.3402442781967734 to:0.20441707137548418 as:0.1765912616991914 that:0.15584471461064214 :0.12290267411790878 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.6543635816032917 a:0.24306053137862246 tho:0.043947173403229504 stone:0.02961381056893709 :0.029014903045919496 +economy:0.4564004596181837 party:0.30534382352972295 orders:0.08298470796492617 and:0.08274247295405134 :0.07252853593311583 +not:0.4330839249593841 hardly:0.21873718854790833 never:0.13647763492064838 possibly:0.11097895204113652 :0.1007222995309228 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +of:0.5681448725854734 to:0.263430183602866 in:0.09523961734604333 and:0.03838657264727326 :0.03479875381834401 +and:0.35092421615842967 that:0.28405935947184424 .:0.1459726273443134 ,:0.11555958316393228 :0.10348421386148038 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him:0.28740025326020185 that:0.27951176004438216 me:0.19269090126908528 them:0.14329231057174166 :0.09710477485458884 +the:0.6685065640312422 a:0.2450277792422118 tho:0.03618152736997034 his:0.032971367631048035 :0.017312761725527565 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +and:0.2796588105643762 building.:0.26171332088257615 that:0.22056314062122506 work.:0.12109128819851837 :0.11697343973330429 +life.:0.22485432613847578 wife.:0.2178099823680614 head.:0.20251409893357594 death.:0.18728454379336884 :0.16753704876651807 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +one:0.3387217207952333 favor:0.32815818093785515 capable:0.15337163979163357 order:0.09859425751722999 :0.08115420095804811 +made:0.3295125953084014 told:0.273304969339393 given:0.16192927816369365 relieved:0.11925799677282586 :0.11599516041568599 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him,:0.27380728172181573 be:0.19649795736085857 him:0.19098230879313408 me,:0.17372011034931062 :0.1649923417748811 +failed:0.465609417318709 unable:0.31088901098081956 due:0.08616423791080577 devoted:0.076198469664749 :0.06113886412491675 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +thereon,:0.2928964265574511 strength:0.2739570475387903 place:0.19002397564876555 places:0.12263984110571192 :0.12048270914928101 +the:0.5961005460028177 his:0.14968455062042774 all:0.0974448552815043 these:0.09535230268156336 :0.06141774541368672 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +out:0.566781749535485 rid:0.23186671868638278 some:0.07306528870457354 possession:0.06897131766194271 :0.05931492541161586 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +feet:0.500379012812502 years:0.1400751236023685 inches:0.1287229034000128 miles:0.12175291205516575 :0.1090700481299511 +that:0.5362989314846027 the:0.1996282544141886 to:0.11182615721410245 of:0.10868816603898573 :0.04355849084812058 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +number:0.34125055654384334 part:0.20325456502892866 member:0.19309616400071639 copy:0.13649827488716304 :0.1259004395393486 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +told:0.2664421918179324 gave:0.2305962501060547 saw:0.19804776741315386 had:0.16474155948731456 :0.14017223117554461 +satisfactory:0.241270000732351 interesting:0.23419033474676806 effective:0.21976850231781364 efficient:0.1638040584722076 :0.14096710373085966 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +him,:0.27380728172181573 be:0.19649795736085857 him:0.19098230879313408 me,:0.17372011034931062 :0.1649923417748811 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +work.:0.28598842692176546 own.:0.22802586419444237 country.:0.17965874098780063 hands.:0.1710009238888301 :0.1353260440071616 +to:0.33311149770190107 depends:0.31587566234528097 and:0.17480311785479943 are:0.09390832061805349 :0.08230140147996505 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +sides:0.4983165262084478 houses:0.20167127432571452 men:0.1181908541201773 parties:0.09478815999553453 :0.0870331853501259 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +over:0.5491760603247119 over,:0.22015615598032384 it,:0.12968852545523693 himself:0.05280447802646795 :0.04817478021325932 +from:0.7406754737192176 when:0.16485939928205826 and:0.03756053336444791 about:0.034428294779872644 :0.0224762988544036 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +demand:0.3161025670595171 reason:0.236995538646501 bill:0.17502591222495167 market:0.14025820626842792 :0.1316177758006024 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +not:0.6287606036288236 seldom:0.11177443289785333 fortunate:0.092795960523438 hard:0.08958856552279051 :0.07708043742709463 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +on:0.924904841370861 lifted:0.031504923266500555 hold:0.017757409327038582 turned:0.013558974046289944 :0.01227385198931003 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +.:0.3519557251297213 w:0.1992400220301267 man:0.1977739781344192 moment:0.1462154644783221 :0.10481481022741071 +have:0.24343219724458923 was:0.21495696395091146 know,:0.18155936252297028 had:0.18096738177576968 :0.17908409450575932 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +it:0.249303386203214 he:0.2013523784366888 so:0.20069899425075907 president:0.18316976491390438 :0.1654754761954337 +is:0.7116655545167789 Is:0.16403936585615217 was:0.09184092755118671 has:0.01908818356735239 :0.013365968508529811 +one:0.2894769930500117 those:0.24955814275057386 that:0.19744105012466667 under:0.16827810600062393 :0.09524570807412404 +back:0.296089872350764 down:0.28557382844650586 up:0.21711137549060744 out:0.13796610606783974 :0.06325881764428287 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +city:0.2911145489642656 time:0.20578912196485763 country:0.17674877223009627 country,:0.1672883997987379 :0.15905915704204257 +they:0.30704978239311403 it:0.25161728489132673 he:0.23007606134778166 there:0.12750160756287154 :0.08375526380490604 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +the:0.2 of:0.2 and:0.2 to:0.2 :0.2 +.:0.8949245258402183 .,:0.045671257892843466 M.,:0.021851710192736414 street.:0.020848709171934078 :0.016703796902267816