diff --git a/Makefile b/Makefile index a3892bd..de0f60c 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ CC = g++ CFLAGS = -fopenmp -Wall -O3 LDFLAGS = -lm -all: seq omp +all: seq omp hybrid seq: sequential.cpp $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) @@ -10,5 +10,8 @@ seq: sequential.cpp omp: omp.cpp $(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) +hybrid: + mpicc $(CFLAGS) -o $@ $< $(LDFLAGS) + clean: - rm -f seq omp *.txt + rm -f seq omp hybrid *.txt diff --git a/hybrid b/hybrid new file mode 100755 index 0000000..96eed09 Binary files /dev/null and b/hybrid differ diff --git a/hybrid.cpp b/hybrid.cpp new file mode 100644 index 0000000..6288be7 --- /dev/null +++ b/hybrid.cpp @@ -0,0 +1,474 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +using namespace std; + +vector readers_q; +vector>> send_buffers; +vector>> reducer_queues; +unordered_map global_counts; + +size_t total_words; +size_t files_remain; +int num_reducers; +int num_readers; +int readers_avail; +int total_ranks; +int num_mappers; + +omp_lock_t readers_lock; +vector mappers_locks; +vector reducer_locks; +omp_lock_t global_counts_lock; + +void process_word(string &w) { + // Remove punctuation and non-ascii chars at beginning + while (!w.empty()) { + signed char c = w.front(); + if (c < 0 || ispunct(c)) { + w.erase(0, 1); + continue; + } + break; + } + // Remove punctuation and non-ascii chars at end + while (!w.empty()) { + signed char c = w.back(); + if (c < 0 || ispunct(c)) { + w.pop_back(); + continue; + } + break; + } + // Convert all letters to lowercase + for (char &ch : w) { + unsigned char c = static_cast(ch); + if (isupper(c)) { + ch = tolower(c); + } + } +} + +void read_file (char* fname) { + #pragma omp atomic + readers_avail--; + + size_t wc = 0; + ifstream fin(fname); + if (!fin) { + fprintf(stderr, "error: unable to open input file: %s\n", fname); + exit(1); + } + + // Process words in chunks to reduce locking + const int chunk_size = 1024; // select the best chunk size + vector words; + words.reserve(chunk_size); + + string word; + while (fin >> word) { + process_word(word); + if (!word.empty()) { // avoid pushing empty strings + wc++; + words.push_back(word); + } + } + omp_set_lock(&readers_lock); + readers_q.insert(readers_q.end(), make_move_iterator(words.begin()), make_move_iterator(words.end())); + omp_unset_lock(&readers_lock); + + #pragma omp atomic + total_words += wc; + + #pragma omp atomic + files_remain--; + + #pragma omp atomic + readers_avail++; +} + +int hash_str(string s, int R) { + int sum = 0; + for (unsigned char c : s) { + sum += c; + } + return sum % R; +} + +void mapping_step() { + unordered_map buckets; + + // Grab elemnts from the work q in chunks + const int chunk_size = 1024; // find which chunk size works the best + vector working_batch; + working_batch.reserve(chunk_size); + + while (true) { + working_batch.clear(); + + // Lock and grab new chunk of elements if queue is not empty + omp_set_lock(&readers_lock); + for (size_t i = 0; i < chunk_size && !readers_q.empty(); ++i) { + working_batch.push_back(readers_q.back()); + readers_q.pop_back(); + } + omp_unset_lock(&readers_lock); + + if (!working_batch.empty()) { + // Queue not empty -- process new elements + for (size_t i = 0; i < working_batch.size(); ++i) { + buckets[working_batch[i]]++; + } + } + else { + int remaining; + // Shared global variable -- must be read atomically + #pragma omp atomic read + remaining = files_remain; + + if (remaining == 0) { + // Queue empty and all files are processed + break; + } + // Mappers are ahead of readers + #pragma omp taskyield + } + } + + // Push thread's results into the reducer queues + for (auto el : buckets) { + int dst_rank = hash_str(el.first, total_ranks); + + omp_set_lock(&mappers_locks[dst_rank]); + send_buffers[dst_rank].push_back(el); + omp_unset_lock(&mappers_locks[dst_rank]); + } +} + +void exchange_data(int my_rank) { + for (int i = 0; i < total_ranks; ++i) { + // Skip sending to yourself, send to reducer queues + if (i == my_rank) { + for (auto &el : send_buffers[i]) { + int ind = hash_str(el.first, num_reducers); + reducer_queues[ind].push_back(el); + } + } + else { + // Send total number of elements first + int send_N = send_buffers[i].size(); + int rec_N; + + MPI_Sendrecv(&send_N, 1, MPI_INT, i, 0, + &rec_N, 1, MPI_INT, i, 0, + MPI_COMM_WORLD, MPI_STATUS_IGNORE); + + for (int j = 0; j < max(send_N, rec_N); ++j) { + int send_len = 0; + int send_count = 0; + string *send_word = nullptr; + + if (j < send_N) { + send_word = &send_buffers[i][j].first; + send_len = send_word->length(); + send_count = send_buffers[i][j].second; + } + + int recv_len = 0; + int recv_count = 0; + string recv_word; + + // Exchange lengths + MPI_Sendrecv( + &send_len, 1, MPI_INT, i, 0, + &recv_len, 1, MPI_INT, i, 0, + MPI_COMM_WORLD, MPI_STATUS_IGNORE + ); + recv_word.resize(recv_len); + + // Exchange words + MPI_Sendrecv( + send_len ? send_word->data() : nullptr, send_len, MPI_CHAR, i, 0, + recv_len ? &recv_word[0] : nullptr, recv_len, MPI_CHAR, i, 0, + MPI_COMM_WORLD, MPI_STATUS_IGNORE + ); + + // Exchange counts + MPI_Sendrecv( + &send_count, 1, MPI_INT, i, 0, + &recv_count, 1, MPI_INT, i, 0, + MPI_COMM_WORLD, MPI_STATUS_IGNORE + ); + + // Store received element + if (recv_len > 0) { + int idx = hash_str(recv_word, num_reducers); + reducer_queues[idx].push_back({recv_word, recv_count}); + } + } + } + } +} + +void reduce_step(int id) { + // Use local hash table for partial results + unordered_map local_result; + for (auto &cur_entry : reducer_queues[id]) { + local_result[cur_entry.first] += cur_entry.second; + } + // Merge partial results into global results + omp_set_lock(&global_counts_lock); + for (auto &el : local_result) { + global_counts[el.first] += el.second; + } + omp_unset_lock(&global_counts_lock); +} + +void gather_results(int my_rank) { + if (my_rank == 0) { + for (int i = 1; i < total_ranks; ++i) { + int N; + MPI_Recv(&N, 1, MPI_INT, i, 0, MPI_COMM_WORLD, MPI_STATUS_IGNORE); + + for (int j = 0; j < N; ++j) { + int len; + MPI_Recv(&len, 1, MPI_INT, i, 0, MPI_COMM_WORLD, MPI_STATUS_IGNORE); + string w; + w.resize(len); + MPI_Recv(&w[0], len, MPI_CHAR, i, 0, MPI_COMM_WORLD, MPI_STATUS_IGNORE); + int count; + MPI_Recv(&count, 1, MPI_INT, i, 0, MPI_COMM_WORLD, MPI_STATUS_IGNORE); + global_counts[w] += count; + } + } + } + else { + int N = global_counts.size(); + MPI_Send(&N, 1, MPI_INT, 0, 0, MPI_COMM_WORLD); + + for (auto &el : global_counts) { + string w = el.first; + int len = w.length(); + int count = el.second; + + MPI_Send(&len, 1, MPI_INT, 0, 0, MPI_COMM_WORLD); + MPI_Send(w.data(), len, MPI_CHAR, 0, 0, MPI_COMM_WORLD); + MPI_Send(&count, 1, MPI_INT, 0, 0, MPI_COMM_WORLD); + } + } +} + +int main(int argc, char* argv[]) { + int provided; + MPI_Init_thread(&argc, &argv, MPI_THREAD_FUNNELED, &provided); + + int rank, size; + MPI_Comm_rank(MPI_COMM_WORLD, &rank); + MPI_Comm_size(MPI_COMM_WORLD, &size); + + if (provided < MPI_THREAD_FUNNELED) { + printf("Error: MPI_THREAD_FUNNELED is not supported.\n"); + MPI_Abort(MPI_COMM_WORLD, 1); + } + + if (argc < 2) { + fprintf(stderr, "usage: %s \n", argv[0]); + MPI_Abort(MPI_COMM_WORLD, 1); + } + + int n_threads = omp_get_max_threads(); + num_reducers = n_threads * 2; // Works best on my laptop -- test on ISAAC + files_remain = 0; + + num_readers = n_threads; + num_mappers = n_threads; + readers_avail = num_readers; + total_ranks = size; + + if (rank == 0) { + cerr << "Testing " << n_threads << " thread(s), " << size << " processes\n"; + } + + omp_init_lock(&readers_lock); + omp_init_lock(&global_counts_lock); + reducer_locks.resize(num_reducers); + for (int i = 0; i < num_reducers; ++i) { + omp_init_lock(&reducer_locks[i]); + } + mappers_locks.resize(total_ranks); + for (int i = 0; i < total_ranks; ++i) { + omp_init_lock(&mappers_locks[i]); + } + reducer_queues.resize(num_reducers); + send_buffers.resize(total_ranks); + + double start, end, start_c, start_r, start_p; + start = MPI_Wtime(); + + #pragma omp parallel + { + #pragma omp master + { + // File reading step + if (rank == 0) { + int f_count = 1; + size_t active_ranks = size - 1; + bool done = false; + MPI_Status stat; + int tmp; + int flag; + int local_avail; + + while (active_ranks > 0 || !done) { + // Check if any ranks sent a pending request + MPI_Iprobe(MPI_ANY_SOURCE, 1, MPI_COMM_WORLD, &flag, &stat); + + // If not, generate tasks for master rank theads + #pragma omp atomic read + local_avail = readers_avail; + + if (!done && !flag && local_avail > 0) { + if (f_count < argc) { + #pragma omp atomic + files_remain++; + + #pragma omp task + { + read_file(argv[f_count]); + } + f_count++; + } + else { + done = true; + } + } + else if (size > 1) { + // Use tag = 1 for requests + MPI_Recv(&tmp, 1, MPI_INT, MPI_ANY_SOURCE, 1, MPI_COMM_WORLD, &stat); + int requesting_rank = stat.MPI_SOURCE; + + int send_buff = -1; + if (f_count < argc) { + send_buff = f_count; + f_count++; + } + else { + // This rank receives -1 for "work done" + active_ranks--; + } + // Use tag = 2 for responds + MPI_Send(&send_buff, 1, MPI_INT, requesting_rank, 2, MPI_COMM_WORLD); + } + } + } + else { + int local_avail; + int rec_buff = 0; + while (true) { + #pragma omp atomic read + local_avail = readers_avail; + if (local_avail > 0) { + // Send request + MPI_Send(&rec_buff, 1, MPI_INT, 0, 1, MPI_COMM_WORLD); + // Receive file number or -1 for "work done" + MPI_Recv(&rec_buff, 1, MPI_INT, 0, 2, MPI_COMM_WORLD, MPI_STATUS_IGNORE); + + if (rec_buff == -1) { + break; + } + + #pragma omp atomic + files_remain++; + + #pragma omp task + { + read_file(argv[rec_buff]); + } + } + } + } + + // Mapping step + for (int i = 0; i < num_mappers; ++i) { + #pragma omp task + { + mapping_step(); + } + } + } + } + start_c = MPI_Wtime(); + + exchange_data(rank); + + start_r = MPI_Wtime(); + // Reducing step + #pragma omp parallel for + for (int i = 0; i < num_reducers; ++i) { + reduce_step(i); + } + + // Nothing to gather for single rank + if (total_ranks > 1) { + gather_results(rank); + } + + size_t global_total_words = 0; + MPI_Reduce(&total_words, &global_total_words, 1, + MPI_UNSIGNED_LONG_LONG, MPI_SUM, 0, MPI_COMM_WORLD); + + if (rank == 0) { + total_words = global_total_words; + } + + start_p = MPI_Wtime(); + vector> counts; + for (auto &el : global_counts) { + counts.emplace_back(el.first, el.second); + } + + // Sort in alphabetical order + sort(counts.begin(), counts.end(), + [](const auto &a, const auto &b) { + return a.first < b.first; + }); + + // Print step + if (rank == 0) { + ofstream out("hybrid_out.txt"); + out << "Filename: " << argv[1] << ", total words: " << global_total_words << "\n"; + // ISAAC is having issues printing too much output, only print the number of unique words + // Error: srun: error: eio_handle_mainloop: Abandoning IO 60 secs after job shutdown initiated + out << "Unique words found: " << counts.size() << "\n"; + for (size_t i = 0; i < counts.size(); ++i) { + out << "[" << i << "] " << counts[i].first << ": " << counts[i].second << "\n"; + }; + } + + end = MPI_Wtime(); + if (rank == 0) { + // Use cerr to always print in terminal + cerr << "Hybrid time: " << (end - start) * 1000 << " ms\n"; + cerr << " File read & Map time: " << (start_c - start) * 1000 << " ms\n"; + cerr << " Communication time: " << (start_r - start_c) * 1000 << " ms\n"; + cerr << " Reducing time: " << (start_p - start_r) * 1000 << " ms\n"; + cerr << " Sort & Print time: " << (end - start_p) * 1000 << " ms\n"; + } + + omp_destroy_lock(&readers_lock); + omp_destroy_lock(&global_counts_lock); + for (int i = 0; i < num_reducers; ++i) { + omp_destroy_lock(&reducer_locks[i]); + } + + MPI_Finalize(); + return 0; +} diff --git a/hybrid.o4688882 b/hybrid.o4688882 new file mode 100644 index 0000000..a9752e0 --- /dev/null +++ b/hybrid.o4688882 @@ -0,0 +1,39 @@ +Testing 4 thread(s), 8 processes +rank 0 starts reading raw_text_input/1399.txt.utf-8.txt +read 352661character +rank 0 starts reading raw_text_input/2554.txt.utf-8.txt +read 559162character +rank 0 starts reading raw_text_input/39288.txt.utf-8.txt +rank 1 starts reading a file +rank 2 starts reading a file +rank 3 starts reading a file +rank 5 starts reading a file +rank 7 starts reading a file +rank 6 starts reading a file +rank 4 starts reading a file +read 620719character +rank 0 starts reading raw_text_input/39290-0.txt +read 641566character +rank 0 starts reading raw_text_input/39294.txt.utf-8.txt +rank 5 starts reading a file +read 768871character +rank 3 starts reading a file +rank 6 starts reading a file +rank 7 starts reading a file +rank 0 starts reading raw_text_input/600.txt.utf-8.txt +read 815848character +rank 0 starts reading raw_text_input/Text1.txt +rank 1 starts reading a file +rank 4 starts reading a file +rank 5 starts reading a file +read 828907character +rank 0 starts reading raw_text_input/Text3.txt +rank 7 starts reading a file +read 847101character +rank 0 starts reading raw_text_input/Text5.txt +rank 3 starts reading a file +read 847117character +rank 1 starts reading a file +rank 2 starts reading a file +rank 5 starts reading a file +rank 6 starts reading a file diff --git a/hybrid_run.sh b/hybrid_run.sh new file mode 100644 index 0000000..c6aa882 --- /dev/null +++ b/hybrid_run.sh @@ -0,0 +1,24 @@ +#!/bin/bash +#SBATCH -J final-hybrid #Job name +#SBATCH -A acf-utk0011 #Write your project account associated to utia condo +#SBATCH -p short +#SBATCH --nodes=1 +#SBATCH --ntasks-per-node=8 #--ntasks-per-node is used when we want to define the number of processes per node +#SBATCH --cpus-per-task=4 +#SBATCH --time=00:20:00 +#SBATCH -o hybrid.o%j +#SBATCH --qos=short + +TEST_DIR="raw_text_input" + +args=() + +for file in "$TEST_DIR"/*; do + args+=("$file") +done + +export OMP_NUM_THREADS=$SLURM_CPUS_PER_TASK + +module load openmpi/4.1.5-gcc + +srun -n 8 ./hybrid "${args[@]}" > hybrid_out.txt diff --git a/omp b/omp new file mode 100755 index 0000000..e9cc162 Binary files /dev/null and b/omp differ diff --git a/omp.cpp b/omp.cpp index c1e9798..4fc66e7 100644 --- a/omp.cpp +++ b/omp.cpp @@ -11,7 +11,7 @@ using namespace std; vector readers_q; -vector>> reducer_queues; +vector>> reducer_queues; unordered_map global_counts; size_t total_words; @@ -23,13 +23,23 @@ vector reducer_locks; omp_lock_t global_counts_lock; void process_word(string &w) { - // Remove punctuation at beginning - while (!w.empty() && ispunct(w[0])) { - w.erase(0, 1); - } - // Remove punctuation at end - while (!w.empty() && ispunct(w[w.size() - 1])) { - w.pop_back(); + // Remove punctuation and non-ascii chars at beginning + while (!w.empty()) { + signed char c = w.front(); + if (c < 0 || ispunct(c)) { + w.erase(0, 1); + continue; + } + break; + } + // Remove punctuation and non-ascii chars at end + while (!w.empty()) { + signed char c = w.back(); + if (c < 0 || ispunct(c)) { + w.pop_back(); + continue; + } + break; } // Convert all letters to lowercase for (size_t i = 0; i < w.length(); ++i) { @@ -125,22 +135,15 @@ void mapping_step() { for (auto el : buckets) { int index = hash_str(el.first, num_reducers); omp_set_lock(&reducer_locks[index]); - reducer_queues[index].push(el); + reducer_queues[index].push_back(el); omp_unset_lock(&reducer_locks[index]); } } void reduce_step(int id) { - // Use local hash table for partial results - unordered_map local_result; - while (!reducer_queues[id].empty()) { - pair cur_entry = reducer_queues[id].front(); - reducer_queues[id].pop(); - local_result[cur_entry.first] += cur_entry.second; - } // Merge partial results into global results omp_set_lock(&global_counts_lock); - for (auto &el : local_result) { + for (auto &el : reducer_queues[id]) { global_counts[el.first] += el.second; } omp_unset_lock(&global_counts_lock); diff --git a/omp.o4689358 b/omp.o4689358 new file mode 100644 index 0000000..71c0fbc --- /dev/null +++ b/omp.o4689358 @@ -0,0 +1,72332 @@ +Sequential time: 17354.7 ms +Testing 4 thread(s) +OpenMP time: 76013.8 ms + File read & Map time: 322.354 ms + Reducing time: 12.7255 ms + Sort & Print time: 75678.7 ms +1,14856c1,57468 +< Filename: raw_text_input/1399.txt.utf-8.txt, total words: 352661 +< [0] 1: 10 +< [1] 1.a: 1 +< [2] 1.b: 1 +< [3] 1.c: 2 +< [4] 1.d: 1 +< [5] 1.e: 2 +< [6] 1.e.1: 5 +< [7] 1.e.2: 1 +< [8] 1.e.3: 1 +< [9] 1.e.4: 1 +< [10] 1.e.5: 1 +< [11] 1.e.6: 1 +< [12] 1.e.7: 3 +< [13] 1.e.8: 4 +< [14] 1.e.9: 3 +< [15] 1.f: 1 +< [16] 1.f.1: 1 +< [17] 1.f.2: 1 +< [18] 1.f.3: 4 +< [19] 1.f.4: 1 +< [20] 1.f.5: 1 +< [21] 1.f.6: 1 +< [22] 10: 9 +< [23] 11: 8 +< [24] 12: 10 +< [25] 13: 9 +< [26] 1399: 1 +< [27] 1399-8.txt: 1 +< [28] 1399-8.zip: 1 +< [29] 14: 8 +< [30] 15: 8 +< [31] 1500: 1 +< [32] 16: 8 +< [33] 17: 8 +< [34] 17,015: 1 +< [35] 17th: 1 +< [36] 18: 9 +< [37] 18,038: 1 +< [38] 1863: 1 +< [39] 1864: 1 +< [40] 19: 8 +< [41] 2: 11 +< [42] 20: 8 +< [43] 2001: 1 +< [44] 2005: 1 +< [45] 2011: 1 +< [46] 21: 7 +< [47] 22: 7 +< [48] 23: 7 +< [49] 24: 6 +< [50] 25: 6 +< [51] 26: 6 +< [52] 27: 6 +< [53] 28: 7 +< [54] 29: 6 +< [55] 2nd: 3 +< [56] 3: 12 +< [57] 30: 7 +< [58] 30th: 1 +< [59] 31: 6 +< [60] 32: 5 +< [61] 33: 3 +< [62] 34: 2 +< [63] 35: 1 +< [64] 36: 1 +< [65] 4: 13 +< [66] 4557: 1 +< [67] 5: 12 +< [68] 5,000: 1 +< [69] 50: 1 +< [70] 501(c)(3: 2 +< [71] 596-1887: 1 +< [72] 6: 10 +< [73] 60: 1 +< [74] 64-6221541: 1 +< [75] 7: 10 +< [76] 8: 9 +< [77] 801: 1 +< [78] 809: 1 +< [79] 84116: 1 +< [80] 9: 9 +< [81] 90: 2 +< [82] 99712: 1 +< [83] a: 6177 +< [84] a--a--a: 2 +< [85] a-oo: 2 +< [86] abandon: 6 +< [87] abandoned: 11 +< [88] abandonment: 1 +< [89] abasement: 1 +< [90] abashed: 3 +< [91] abasing: 1 +< [92] aber: 1 +< [93] aberrations: 1 +< [94] abide: 1 +< [95] abilities: 3 +< [96] ability: 5 +< [97] abject: 1 +< [98] able: 49 +< [99] ablutions: 1 +< [100] abnormally: 1 +< [101] abode: 1 +< [102] abolished: 1 +< [103] abolished--there: 1 +< [104] abolition: 1 +< [105] about: 789 +< [106] above: 67 +< [107] abreast: 1 +< [108] abroad: 62 +< [109] abrupt: 4 +< [110] abruptly: 8 +< [111] abruptness: 1 +< [112] absence: 10 +< [113] absences: 1 +< [114] absent: 3 +< [115] absently: 2 +< [116] absolute: 2 +< [117] absolutely: 31 +< [118] absolution: 3 +< [119] absorb: 1 +< [120] absorbed: 31 +< [121] absorbing: 4 +< [122] abstaining: 2 +< [123] abstract: 2 +< [124] abstractly: 2 +< [125] absurd: 23 +< [126] absurdities: 2 +< [127] absurdity: 2 +< [128] absurdly: 2 +< [129] abundance: 6 +< [130] abundant: 1 +< [131] abuse: 3 +< [132] abused: 1 +< [133] abusing: 2 +< [134] abyss: 2 +< [135] acacia: 1 +< [136] acacias: 3 +< [137] academy: 3 +< [138] accent: 6 +< [139] accentuating: 1 +< [140] accept: 11 +< [141] acceptation: 1 +< [142] accepted: 15 +< [143] accepting: 4 +< [144] accepts: 2 +< [145] access: 10 +< [146] accessed: 1 +< [147] accessibility: 1 +< [148] accessible: 1 +< [149] accident: 5 +< [150] accidental: 1 +< [151] accidentally: 3 +< [152] accompanied: 3 +< [153] accompaniment: 7 +< [154] accompany: 1 +< [155] accompanying: 2 +< [156] accomplice: 1 +< [157] accomplish: 1 +< [158] accomplished: 6 +< [159] accord: 6 +< [160] accordance: 17 +< [161] according: 23 +< [162] accordingly: 1 +< [163] accosted: 2 +< [164] account: 42 +< [165] accounts: 14 +< [166] accumulated: 1 +< [167] accumulating: 1 +< [168] accurate: 1 +< [169] accurately: 1 +< [170] accused: 3 +< [171] accusing: 1 +< [172] accustom: 1 +< [173] accustomed: 5 +< [174] ache: 6 +< [175] ached: 4 +< [176] achievement: 2 +< [177] aching: 5 +< [178] acknowledge: 4 +< [179] acknowledged: 2 +< [180] acknowledging: 2 +< [181] acknowledgment: 1 +< [182] acquaintance: 50 +< [183] acquaintances: 28 +< [184] acquainted: 10 +< [185] acquired: 1 +< [186] acquitted: 1 +< [187] acre: 9 +< [188] acres: 16 +< [189] across: 48 +< [190] act: 48 +< [191] acted: 13 +< [192] acting: 10 +< [193] action: 42 +< [194] actions: 6 +< [195] active: 6 +< [196] actively: 1 +< [197] activity: 12 +< [198] activity--to: 1 +< [199] actors: 2 +< [200] actress: 6 +< [201] actresses: 1 +< [202] acts: 4 +< [203] actual: 12 +< [204] actually: 18 +< [205] acute: 2 +< [206] acutely: 1 +< [207] adam's: 1 +< [208] adapting: 2 +< [209] add: 5 +< [210] added: 126 +< [211] adding: 2 +< [212] addition: 7 +< [213] additional: 4 +< [214] additions: 2 +< [215] additions--was: 1 +< [216] address: 11 +< [217] addressed: 18 +< [218] addresses: 1 +< [219] addressing: 54 +< [220] adept: 1 +< [221] adhered: 4 +< [222] adherence: 1 +< [223] adherent: 3 +< [224] adhering: 1 +< [225] adjoined: 1 +< [226] adjutant: 2 +< [227] adjutant-general: 2 +< [228] adjutant-generals: 1 +< [229] adjutants: 1 +< [230] administration: 1 +< [231] administrative: 3 +< [232] admirable_--everything: 1 +< [233] admirably: 2 +< [234] admiration: 10 +< [235] admire: 3 +< [236] admired: 10 +< [237] admirer: 3 +< [238] admiring: 20 +< [239] admiringly: 2 +< [240] admission: 2 +< [241] admit: 40 +< [242] admittance: 1 +< [243] admitted: 8 +< [244] admitting: 10 +< [245] adopt: 3 +< [246] adopted: 7 +< [247] adopting: 3 +< [248] adoration: 4 +< [249] adored: 1 +< [250] adorers: 2 +< [251] adorn: 1 +< [252] adorned: 4 +< [253] adorning: 1 +< [254] adornments: 1 +< [255] adroit: 2 +< [256] adroitly: 2 +< [257] adultery: 7 +< [258] advance: 7 +< [259] advance-guards: 1 +< [260] advance-money: 1 +< [261] advanced: 6 +< [262] advancement: 2 +< [263] advances: 1 +< [264] advancing: 1 +< [265] advantage: 9 +< [266] advantages: 11 +< [267] adventures: 2 +< [268] adverb: 2 +< [269] adverbs: 1 +< [270] advice: 24 +< [271] advise: 12 +< [272] advised: 11 +< [273] adviser: 1 +< [274] advising: 2 +< [275] advocate: 3 +< [276] advocated: 1 +< [277] advocates: 2 +< [278] advocating: 2 +< [279] afar: 1 +< [280] affability: 1 +< [281] affable: 2 +< [282] affair: 25 +< [283] affairs: 36 +< [284] affect: 10 +< [285] affectation: 3 +< [286] affected: 17 +< [287] affectedly: 3 +< [288] affecting: 5 +< [289] affection: 15 +< [290] affectionate: 8 +< [291] affectionately: 5 +< [292] affects: 2 +< [293] affirmative: 3 +< [294] affirmatively: 1 +< [295] affirming: 1 +< [296] afford: 1 +< [297] afforded: 6 +< [298] affords: 1 +< [299] affront: 1 +< [300] aflame: 1 +< [301] afraid: 109 +< [302] afresh: 3 +< [303] after: 496 +< [304] after--that: 1 +< [305] after-dinner: 1 +< [306] after...you: 1 +< [307] aftermath: 1 +< [308] afternoon: 5 +< [309] afterthought: 1 +< [310] afterwards: 37 +< [311] afterwards--for: 1 +< [312] agafea: 74 +< [313] again: 441 +< [314] again--because: 1 +< [315] again--still: 1 +< [316] against: 112 +< [317] agaric: 1 +< [318] age: 13 +< [319] aged: 1 +< [320] aged-looking: 1 +< [321] agency: 3 +< [322] agent: 1 +< [323] ages: 12 +< [324] aggravated: 1 +< [325] aggravating: 1 +< [326] aggressively: 1 +< [327] agile: 3 +< [328] agitate: 1 +< [329] agitated: 13 +< [330] agitating: 1 +< [331] agitation: 10 +< [332] ago: 51 +< [333] agonies: 6 +< [334] agonized: 1 +< [335] agonizing: 9 +< [336] agonizingly: 3 +< [337] agony: 31 +< [338] agree: 45 +< [339] agreeable: 15 +< [340] agreeably: 4 +< [341] agreed: 33 +< [342] agreeing: 6 +< [343] agreement: 30 +< [344] agrees: 1 +< [345] agricultural: 3 +< [346] agriculture: 27 +< [347] agriculturist: 1 +< [348] ah: 116 +< [349] aha: 4 +< [350] ahead: 11 +< [351] ai: 1 +< [352] aid: 11 +< [353] aide-de-camp: 3 +< [354] aim: 30 +< [355] aim--and: 1 +< [356] aimed: 6 +< [357] aiming: 1 +< [358] aimless: 1 +< [359] aimlessly: 1 +< [360] aims: 2 +< [361] air: 64 +< [362] airs: 2 +< [363] aise: 1 +< [364] ak: 1 +< [365] akimbo: 1 +< [366] akin: 10 +< [367] alabin: 2 +< [368] alarm: 8 +< [369] alarmed: 7 +< [370] alarming: 2 +< [371] alas: 1 +< [372] album: 6 +< [373] albums: 1 +< [374] alder: 3 +< [375] alders: 1 +< [376] alert: 5 +< [377] alertly: 1 +< [378] alertness: 1 +< [379] alexander: 20 +< [380] alexandrovitch: 524 +< [381] alexandrovitch's: 47 +< [382] alexandrovna: 197 +< [383] alexandrovna's: 16 +< [384] alexandrovna's...but: 1 +< [385] alexandrovna,--and: 1 +< [386] alexeitch: 2 +< [387] alexey: 627 +< [388] alexey's: 3 +< [389] alexey--i: 1 +< [390] alexeyevitch: 1 +< [391] alexyevitch: 4 +< [392] alias: 1 +< [393] alien: 2 +< [394] alienation: 2 +< [395] alight: 1 +< [396] alighted: 2 +< [397] alights: 1 +< [398] alike: 10 +< [399] alike--by: 1 +< [400] aline: 3 +< [401] aline-nadine: 1 +< [402] aliosha: 1 +< [403] alioshka: 2 +< [404] alioshka--i: 1 +< [405] alive: 17 +< [406] all: 1926 +< [407] all's: 3 +< [408] all--all: 1 +< [409] all--he: 1 +< [410] all--hideousness: 1 +< [411] all--she: 2 +< [412] all--that's: 1 +< [413] all--the: 1 +< [414] all--twenty: 1 +< [415] all-conquering: 1 +< [416] all-night: 1 +< [417] alleviate: 1 +< [418] alleviated: 1 +< [419] alley: 1 +< [420] allez: 1 +< [421] alliance: 1 +< [422] allons: 1 +< [423] allotted: 2 +< [424] allow: 41 +< [425] allowance: 1 +< [426] allowed: 17 +< [427] allowing: 1 +< [428] allows: 1 +< [429] alloy: 1 +< [430] allude: 2 +< [431] alluded: 2 +< [432] alluding: 1 +< [433] allurements: 1 +< [434] alluring: 1 +< [435] allusion: 9 +< [436] allusions: 3 +< [437] ally: 1 +< [438] almighty: 1 +< [439] almond: 1 +< [440] almond-oil: 3 +< [441] almost: 122 +< [442] aloft: 1 +< [443] alone: 182 +< [444] alone--me: 1 +< [445] alone--without: 1 +< [446] along: 115 +< [447] alongside: 1 +< [448] aloof: 1 +< [449] aloofness: 2 +< [450] aloud: 14 +< [451] alphonse: 1 +< [452] already: 154 +< [453] already...it: 1 +< [454] also: 42 +< [455] also--a: 1 +< [456] altar: 2 +< [457] altar-rails: 2 +< [458] alter: 4 +< [459] alteration: 1 +< [460] altered: 4 +< [461] altering: 5 +< [462] alternate: 2 +< [463] alternately: 3 +< [464] alternative: 2 +< [465] alternatives: 1 +< [466] although: 32 +< [467] altogether: 37 +< [468] always: 341 +< [469] always--you: 1 +< [470] am: 336 +< [471] amalgamated: 2 +< [472] amalgamating: 1 +< [473] amalgamation: 2 +< [474] amassing: 1 +< [475] amateur: 3 +< [476] amateurs: 2 +< [477] amazed: 7 +< [478] amazement: 8 +< [479] amazing: 3 +< [480] ambassador: 3 +< [481] ambassador's: 15 +< [482] amber: 1 +< [483] ambition: 10 +< [484] ambitious: 3 +< [485] amble: 1 +< [486] ambling: 1 +< [487] ambulance: 1 +< [488] amen: 1 +< [489] amenable: 2 +< [490] amend: 2 +< [491] amending: 1 +< [492] amendment: 1 +< [493] america: 1 +< [494] american: 3 +< [495] ami: 3 +< [496] amiability: 2 +< [497] amiable: 8 +< [498] amiably: 1 +< [499] amicable: 1 +< [500] amicably: 1 +< [501] amid: 2 +< [502] amidst: 1 +< [503] amis: 3 +< [504] amiss: 2 +< [505] among: 66 +< [506] amongst: 1 +< [507] amount: 6 +< [508] amounted: 3 +< [509] amounting: 1 +< [510] amounts: 1 +< [511] amour: 1 +< [512] ample: 1 +< [513] amuse: 3 +< [514] amused: 8 +< [515] amusement: 10 +< [516] amusements: 5 +< [517] amuses: 3 +< [518] amusing: 15 +< [519] amusingly: 1 +< [520] an: 792 +< [521] analysis: 1 +< [522] analyze: 1 +< [523] analyzing: 1 +< [524] ancestors: 2 +< [525] anchor: 2 +< [526] ancient: 3 +< [527] and: 12898 +< [528] and'--and: 1 +< [529] and--as: 1 +< [530] and--just: 1 +< [531] and...i: 2 +< [532] and...you: 1 +< [533] andreevna: 5 +< [534] andrey: 4 +< [535] anecdote: 2 +< [536] anecdotes: 1 +< [537] anew: 1 +< [538] angel: 8 +< [539] angels: 1 +< [540] anger: 21 +< [541] angered: 4 +< [542] anglaise: 4 +< [543] angle: 1 +< [544] angles: 1 +< [545] angling: 3 +< [546] angrily: 43 +< [547] angry: 64 +< [548] anguish: 5 +< [549] animal: 8 +< [550] animated: 1 +< [551] animation: 1 +< [552] anita: 2 +< [553] anitchkin: 2 +< [554] ankles: 2 +< [555] anna: 742 +< [556] anna's: 82 +< [557] anna--excuse: 1 +< [558] anna--he: 1 +< [559] anna--who: 1 +< [560] anna...nor: 1 +< [561] annie: 6 +< [562] annihilate: 1 +< [563] annihilated: 3 +< [564] announce: 11 +< [565] announced: 18 +< [566] announcement: 5 +< [567] announces: 1 +< [568] announcing: 2 +< [569] annoy: 3 +< [570] annoyance: 14 +< [571] annoyances: 2 +< [572] annoyed: 16 +< [573] annoying: 5 +< [574] annoys: 2 +< [575] annushka: 22 +< [576] annushka's: 4 +< [577] anomalous: 2 +< [578] another: 228 +< [579] another--filled: 1 +< [580] answer: 146 +< [581] answered: 250 +< [582] answered--"he: 1 +< [583] answering: 21 +< [584] answers: 15 +< [585] antagonism: 5 +< [586] antagonist: 2 +< [587] antagonistic: 3 +< [588] antediluvian: 1 +< [589] anthropology: 1 +< [590] anti-nihilism: 1 +< [591] anti-nihilistic: 1 +< [592] anticipate: 2 +< [593] anticipated: 8 +< [594] anticipating: 1 +< [595] anticipation: 8 +< [596] antidote: 1 +< [597] antiques: 1 +< [598] anxieties: 3 +< [599] anxiety: 15 +< [600] anxious: 40 +< [601] anxiously: 3 +< [602] any: 292 +< [603] anybody: 7 +< [604] anyhow: 2 +< [605] anyone: 109 +< [606] anyone's: 2 +< [607] anyone--but: 1 +< [608] anything: 217 +< [609] anything's: 4 +< [610] anything--he: 1 +< [611] anything--only: 1 +< [612] anyway: 53 +< [613] anywhere: 18 +< [614] anywhere--to: 1 +< [615] apart: 55 +< [616] apartments: 1 +< [617] apathetic: 1 +< [618] apathy: 2 +< [619] ape: 1 +< [620] apologetically: 1 +< [621] apologies: 1 +< [622] apologize: 2 +< [623] apologized: 1 +< [624] apologizing: 2 +< [625] apology: 1 +< [626] apostle: 1 +< [627] apostolic: 1 +< [628] appalled: 4 +< [629] appalling: 1 +< [630] apparent: 11 +< [631] apparently: 19 +< [632] apparently--you: 1 +< [633] apparition: 1 +< [634] appeal: 6 +< [635] appealed: 1 +< [636] appealing: 5 +< [637] appeals: 2 +< [638] appear: 15 +< [639] appearance: 32 +< [640] appearances: 4 +< [641] appeared: 40 +< [642] appearing: 3 +< [643] appears: 5 +< [644] appellation: 1 +< [645] appetite: 6 +< [646] appetites: 2 +< [647] appetizer: 1 +< [648] appetizers: 1 +< [649] applauding: 1 +< [650] applause: 2 +< [651] appliances: 1 +< [652] applicability: 1 +< [653] applicable: 4 +< [654] applicants: 1 +< [655] application: 4 +< [656] applications: 1 +< [657] applied: 2 +< [658] applies: 1 +< [659] apply: 10 +< [660] appointed: 6 +< [661] appointment: 17 +< [662] appointments: 4 +< [663] apporte: 1 +< [664] apportionment: 1 +< [665] appreciate: 15 +< [666] appreciated: 10 +< [667] appreciates: 1 +< [668] appreciation: 3 +< [669] apprehend: 1 +< [670] apprehending: 1 +< [671] apprehension: 5 +< [672] apprehensively: 1 +< [673] approach: 13 +< [674] approached: 14 +< [675] approaches: 1 +< [676] approaching: 25 +< [677] appropriately: 2 +< [678] approval: 7 +< [679] approve: 7 +< [680] approved: 6 +< [681] approving: 4 +< [682] approvingly: 3 +< [683] appurtenances: 2 +< [684] appétit--bonne: 1 +< [685] apraksina: 1 +< [686] apraksina's: 1 +< [687] april: 1 +< [688] apron: 4 +< [689] apron-strings: 1 +< [690] aprons: 1 +< [691] apt: 2 +< [692] aptitude: 2 +< [693] apuhtin: 1 +< [694] arable: 3 +< [695] arbaty: 1 +< [696] arbeitskur: 1 +< [697] arbitration: 1 +< [698] arbitrator: 2 +< [699] arbor: 2 +< [700] arcade: 3 +< [701] arcades: 1 +< [702] arch: 1 +< [703] archdeacon: 1 +< [704] arched: 1 +< [705] arching: 1 +< [706] architect: 11 +< [707] architecture: 3 +< [708] archive: 13 +< [709] arcturus: 1 +< [710] ardent: 5 +< [711] ardently: 1 +< [712] ardor: 2 +< [713] are: 638 +< [714] are...i've: 1 +< [715] aren't: 20 +< [716] argue: 6 +< [717] argued: 3 +< [718] argues: 1 +< [719] arguing: 2 +< [720] argument: 12 +< [721] argumentative: 2 +< [722] arguments: 19 +< [723] arhip: 2 +< [724] arise: 5 +< [725] arisen: 10 +< [726] arises: 4 +< [727] arising: 5 +< [728] aristocracy: 3 +< [729] aristocrat: 3 +< [730] aristocratic: 4 +< [731] aristocrats: 1 +< [732] arithmetic: 1 +< [733] arithmetical: 2 +< [734] arkadyevitch: 510 +< [735] arkadyevitch's: 37 +< [736] arkadyevitch--all: 1 +< [737] arkadyevna: 53 +< [738] arkadyevna's: 3 +< [739] arkadyevna--she: 1 +< [740] arm: 69 +< [741] arm's: 1 +< [742] arm--till: 1 +< [743] arm-chair: 1 +< [744] armchair: 10 +< [745] armchairs: 1 +< [746] armfuls: 1 +< [747] armies: 1 +< [748] armor: 2 +< [749] armory: 1 +< [750] arms: 57 +< [751] arms--but: 1 +< [752] army: 10 +< [753] aromatic: 1 +< [754] arose: 13 +< [755] around: 13 +< [756] arouse: 5 +< [757] aroused: 20 +< [758] arrange: 26 +< [759] arranged: 23 +< [760] arrangement: 11 +< [761] arrangements: 8 +< [762] arranges: 1 +< [763] arranging: 12 +< [764] array: 2 +< [765] arrears: 1 +< [766] arrest: 1 +< [767] arresting: 1 +< [768] arrival: 29 +< [769] arrival--that: 1 +< [770] arrive: 8 +< [771] arrived: 36 +< [772] arrivee: 1 +< [773] arriving: 7 +< [774] arrow: 1 +< [775] arsenal: 1 +< [776] arseny: 5 +< [777] arseny's: 1 +< [778] art: 31 +< [779] art--people: 1 +< [780] artful: 2 +< [781] article: 25 +< [782] article's: 1 +< [783] articles: 2 +< [784] articulate: 2 +< [785] articulated: 7 +< [786] articulating: 2 +< [787] articulation: 1 +< [788] artificial: 7 +< [789] artificiality: 1 +< [790] artillery: 4 +< [791] artilleryman: 1 +< [792] artilleryman's: 1 +< [793] artillerymen: 1 +< [794] artist: 22 +< [795] artist's: 3 +< [796] artistic: 1 +< [797] artists: 2 +< [798] artless--or: 1 +< [799] artless-looking: 1 +< [800] artlessness: 1 +< [801] arts: 1 +< [802] as: 2440 +< [803] as--not: 1 +< [804] as-is: 1 +< [805] ascended: 2 +< [806] ascending: 1 +< [807] ascertained: 7 +< [808] ascertaining: 1 +< [809] ascii: 2 +< [810] ascribe: 1 +< [811] ascribed: 1 +< [812] ash: 3 +< [813] ashamed: 58 +< [814] ashes: 2 +< [815] ashtray: 1 +< [816] asia: 1 +< [817] aside: 11 +< [818] ask: 119 +< [819] askance: 2 +< [820] asked: 320 +< [821] askew: 1 +< [822] asking: 47 +< [823] asking--what: 1 +< [824] asks: 5 +< [825] aslant: 1 +< [826] asleep: 50 +< [827] asparagus: 3 +< [828] aspect: 7 +< [829] aspects: 6 +< [830] aspen: 9 +< [831] aspens: 3 +< [832] assaulting: 1 +< [833] assembled: 2 +< [834] assemblies: 2 +< [835] assembly: 3 +< [836] assent: 4 +< [837] assented: 14 +< [838] assert: 2 +< [839] asserted: 2 +< [840] asserting: 1 +< [841] assertion: 1 +< [842] assertions: 1 +< [843] asserts: 2 +< [844] asseverations: 1 +< [845] assez: 1 +< [846] assiduity: 1 +< [847] assiduously: 9 +< [848] assiette: 1 +< [849] assigned: 2 +< [850] assigning: 1 +< [851] assimilates: 1 +< [852] assist: 5 +< [853] assistance: 11 +< [854] assistant: 5 +< [855] assistant's: 1 +< [856] assisted: 3 +< [857] assisting: 3 +< [858] associate: 1 +< [859] associated: 19 +< [860] association: 9 +< [861] associations: 1 +< [862] assume: 5 +< [863] assumed: 9 +< [864] assuming: 2 +< [865] assumption: 3 +< [866] assurance: 1 +< [867] assurances: 1 +< [868] assure: 4 +< [869] assured: 4 +< [870] assures: 1 +< [871] assuring: 5 +< [872] astafieva: 1 +< [873] asthma: 1 +< [874] astir: 1 +< [875] astonished: 8 +< [876] astonishing: 2 +< [877] astonishment: 5 +< [878] astounded: 3 +< [879] astounding: 1 +< [880] astoundingly: 1 +< [881] astrachan: 1 +< [882] astride: 1 +< [883] astronomers: 2 +< [884] astronomy: 1 +< [885] astute: 1 +< [886] asunder: 1 +< [887] asylum: 1 +< [888] at: 2927 +< [889] ate: 7 +< [890] atelier: 1 +< [891] atheism: 1 +< [892] athenian: 1 +< [893] atlas: 1 +< [894] atmosphere: 9 +< [895] atone: 4 +< [896] atoned: 1 +< [897] atonement: 1 +< [898] atones: 1 +< [899] atrocities: 2 +< [900] attach: 7 +< [901] attache: 2 +< [902] attached: 9 +< [903] attaches: 1 +< [904] attaching: 5 +< [905] attachment: 2 +< [906] attachments: 1 +< [907] attaché: 2 +< [908] attack: 10 +< [909] attacked: 8 +< [910] attacking: 8 +< [911] attacks: 3 +< [912] attain: 3 +< [913] attained: 11 +< [914] attaining: 1 +< [915] attainment: 2 +< [916] attempt: 14 +< [917] attempted: 9 +< [918] attempting: 3 +< [919] attempts: 4 +< [920] attend: 5 +< [921] attendant: 2 +< [922] attendants: 3 +< [923] attended: 1 +< [924] attending: 2 +< [925] attention: 65 +< [926] attentions--that: 1 +< [927] attentive: 3 +< [928] attentively: 19 +< [929] attic: 1 +< [930] attire: 11 +< [931] attired: 3 +< [932] attitude: 47 +< [933] attract: 3 +< [934] attracted: 12 +< [935] attracting: 5 +< [936] attraction: 11 +< [937] attraction--this: 1 +< [938] attractive: 16 +< [939] attractiveness: 2 +< [940] attributed: 1 +< [941] au: 5 +< [942] auch: 2 +< [943] auction: 1 +< [944] audacity: 1 +< [945] audible: 6 +< [946] audibly: 1 +< [947] audience: 2 +< [948] auditing: 2 +< [949] august: 3 +< [950] aunt: 17 +< [951] aunt--i: 1 +< [952] auntie: 1 +< [953] aunts: 1 +< [954] aunts--stiva: 1 +< [955] ausgerechnet: 1 +< [956] ausrechnen: 1 +< [957] austrian: 1 +< [958] author: 9 +< [959] authoress?--not: 1 +< [960] authorities: 8 +< [961] authority: 11 +< [962] authors: 1 +< [963] automedon: 1 +< [964] autumn: 10 +< [965] available: 3 +< [966] avenge: 2 +< [967] avenieva...and: 1 +< [968] avenue: 13 +< [969] averse: 1 +< [970] aversion: 9 +< [971] averting: 1 +< [972] avoid: 39 +< [973] avoided: 20 +< [974] avoiding: 9 +< [975] avowal: 2 +< [976] await: 2 +< [977] awaited: 6 +< [978] awaiting: 10 +< [979] awaits: 3 +< [980] awake: 8 +< [981] awaken: 1 +< [982] awakened: 2 +< [983] aware: 83 +< [984] away: 428 +< [985] away--seemed: 1 +< [986] away--you: 1 +< [987] awe: 3 +< [988] awe-inspiring: 1 +< [989] awe-stricken: 1 +< [990] awful: 78 +< [991] awfully: 30 +< [992] awfulness: 3 +< [993] awkward: 20 +< [994] awkwardly: 6 +< [995] awkwardness: 10 +< [996] awoke: 2 +< [997] axes: 1 +< [998] axles: 1 +< [999] ay: 1 +< [1000] aïe: 3 +< [1001] b: 3 +< [1002] babe: 2 +< [1003] babes: 3 +< [1004] baby: 77 +< [1005] baby's: 10 +< [1006] babylon: 3 +< [1007] bach: 1 +< [1008] bachelor: 10 +< [1009] back: 356 +< [1010] background: 7 +< [1011] backs: 3 +< [1012] backwards: 3 +< [1013] backwater: 2 +< [1014] bacon: 2 +< [1015] bad: 71 +< [1016] baden: 2 +< [1017] badges: 1 +< [1018] badly: 15 +< [1019] baffled: 1 +< [1020] bag: 23 +< [1021] baggage: 3 +< [1022] baggy: 1 +< [1023] bags: 2 +< [1024] bailiff: 34 +< [1025] bailiff's: 5 +< [1026] bailiffs: 1 +< [1027] baker's: 2 +< [1028] bakers: 1 +< [1029] balance: 6 +< [1030] balancing: 1 +< [1031] balcony: 11 +< [1032] bald: 13 +< [1033] baldly: 1 +< [1034] ball: 45 +< [1035] ballet: 7 +< [1036] ballot: 6 +< [1037] balloted: 2 +< [1038] ballroom: 9 +< [1039] balls: 20 +< [1040] baltic: 1 +< [1041] balustrade: 3 +< [1042] band: 6 +< [1043] bandaged: 3 +< [1044] bandages: 1 +< [1045] bands: 2 +< [1046] bang: 2 +< [1047] banging: 1 +< [1048] bank: 12 +< [1049] banker: 1 +< [1050] bankers...they've: 1 +< [1051] banking: 5 +< [1052] banks: 4 +< [1053] banner: 1 +< [1054] banners: 1 +< [1055] banquet: 1 +< [1056] banter: 1 +< [1057] bantering: 3 +< [1058] bar: 4 +< [1059] barbarism: 3 +< [1060] barbarity: 1 +< [1061] barbarous: 2 +< [1062] barber: 4 +< [1063] bare: 32 +< [1064] bare-legged: 1 +< [1065] bared: 1 +< [1066] barely: 1 +< [1067] bargain: 1 +< [1068] bargaining: 1 +< [1069] bargeman: 1 +< [1070] baritone: 1 +< [1071] bark: 5 +< [1072] bark's: 1 +< [1073] barking: 1 +< [1074] barn: 10 +< [1075] barns: 2 +< [1076] baroness: 12 +< [1077] baroness's: 2 +< [1078] baronetcy: 1 +< [1079] barrel: 4 +< [1080] barricade: 3 +< [1081] barrier: 15 +< [1082] barriers: 1 +< [1083] bars: 3 +< [1084] barters: 1 +< [1085] bartnyansky: 5 +< [1086] bartnyansky's: 1 +< [1087] base: 12 +< [1088] based: 6 +< [1089] baseless: 1 +< [1090] basement: 1 +< [1091] baseness: 5 +< [1092] basest: 2 +< [1093] bashful: 1 +< [1094] bashfulness: 1 +< [1095] basin: 1 +< [1096] basing: 1 +< [1097] basis: 4 +< [1098] basked: 1 +< [1099] basket: 4 +< [1100] basketful: 1 +< [1101] baskets: 1 +< [1102] basking: 1 +< [1103] bass: 7 +< [1104] bast: 4 +< [1105] bat's: 1 +< [1106] bateau: 1 +< [1107] bath: 13 +< [1108] bathe: 3 +< [1109] bathed: 2 +< [1110] bathing: 8 +< [1111] bathing-place: 3 +< [1112] bathing-shed: 2 +< [1113] bathroom: 2 +< [1114] baths: 2 +< [1115] batiste: 2 +< [1116] battering: 1 +< [1117] battle: 4 +< [1118] battre: 1 +< [1119] bay: 4 +< [1120] be: 1794 +< [1121] be--you: 1 +< [1122] be...forgive: 1 +< [1123] be...i: 1 +< [1124] beadle: 2 +< [1125] beak: 1 +< [1126] beam: 1 +< [1127] beamed: 9 +< [1128] beaming: 19 +< [1129] beams: 3 +< [1130] beans: 1 +< [1131] bear: 40 +< [1132] bear-hunting: 1 +< [1133] bear-hunts: 1 +< [1134] beard: 17 +< [1135] bearded: 1 +< [1136] beardless: 2 +< [1137] bearing: 6 +< [1138] bearings: 1 +< [1139] bears: 7 +< [1140] bearskin: 1 +< [1141] beast: 10 +< [1142] beastly: 2 +< [1143] beasts: 9 +< [1144] beat: 8 +< [1145] beaten: 9 +< [1146] beating: 10 +< [1147] beats: 1 +< [1148] beau-frère: 2 +< [1149] beaufrère: 1 +< [1150] beaufrère's: 1 +< [1151] beaumarchais: 1 +< [1152] beautiful: 25 +< [1153] beautifully: 1 +< [1154] beautify: 1 +< [1155] beauty: 43 +< [1156] beaux-frères: 1 +< [1157] beaver: 1 +< [1158] became: 55 +< [1159] because: 249 +< [1160] because--excuse: 1 +< [1161] because...proud: 1 +< [1162] beckoned: 5 +< [1163] beckoning: 2 +< [1164] become: 72 +< [1165] becomes: 2 +< [1166] becoming: 17 +< [1167] bed: 61 +< [1168] bedchamber: 8 +< [1169] bedroom: 36 +< [1170] beds: 6 +< [1171] bedside: 6 +< [1172] bedsores: 2 +< [1173] bedstead: 2 +< [1174] bedtime: 1 +< [1175] bee: 12 +< [1176] bee-garden: 1 +< [1177] bee-house: 2 +< [1178] bee-keeper: 2 +< [1179] bee-keeping: 2 +< [1180] beef: 4 +< [1181] beef's: 1 +< [1182] beefsteak: 3 +< [1183] beehives: 2 +< [1184] been: 1061 +< [1185] been...not: 1 +< [1186] beer: 1 +< [1187] beer-drinking: 1 +< [1188] bees: 10 +< [1189] beethoven: 1 +< [1190] beetle: 4 +< [1191] beetle's: 1 +< [1192] befall: 1 +< [1193] befallen: 1 +< [1194] befell: 1 +< [1195] before: 506 +< [1196] before--now: 1 +< [1197] before--that: 1 +< [1198] beforehand: 20 +< [1199] beg: 42 +< [1200] began: 365 +< [1201] beggar: 4 +< [1202] beggars: 1 +< [1203] begged: 25 +< [1204] begging: 7 +< [1205] begier: 1 +< [1206] begin: 48 +< [1207] beginning: 101 +< [1208] begins: 9 +< [1209] begot: 1 +< [1210] begs: 1 +< [1211] begun: 48 +< [1212] behalf: 2 +< [1213] behave: 5 +< [1214] behaved: 9 +< [1215] behaving: 7 +< [1216] behavior: 12 +< [1217] beheld: 3 +< [1218] behind: 106 +< [1219] behold: 3 +< [1220] behold--anticipation: 1 +< [1221] beholders: 1 +< [1222] being: 256 +< [1223] being--he's: 1 +< [1224] beings: 4 +< [1225] beist: 1 +< [1226] belated: 1 +< [1227] belief: 3 +< [1228] beliefs: 7 +< [1229] beliefs--he: 1 +< [1230] believe: 149 +< [1231] believed: 46 +< [1232] believer: 7 +< [1233] believers: 3 +< [1234] believes: 1 +< [1235] believing: 7 +< [1236] bell: 28 +< [1237] belle: 2 +< [1238] belle-soeur: 5 +< [1239] bellies: 1 +< [1240] bellowed: 1 +< [1241] bells: 5 +< [1242] belly: 4 +< [1243] belong: 6 +< [1244] belonged: 14 +< [1245] belonging: 8 +< [1246] belongings: 2 +< [1247] beloved: 5 +< [1248] below: 32 +< [1249] belt: 10 +< [1250] belted: 1 +< [1251] belts: 1 +< [1252] bench: 8 +< [1253] benches: 1 +< [1254] bend: 3 +< [1255] bending: 25 +< [1256] bends: 1 +< [1257] beneath: 1 +< [1258] benediction: 5 +< [1259] benefit: 15 +< [1260] benevolent: 1 +< [1261] bent: 43 +< [1262] bentham: 1 +< [1263] benumbing: 1 +< [1264] berkoot: 2 +< [1265] berkoshov: 1 +< [1266] berry: 1 +< [1267] bertenev's: 1 +< [1268] berth: 2 +< [1269] berthe: 4 +< [1270] berthe's: 1 +< [1271] berths: 1 +< [1272] beseech: 7 +< [1273] beseeches: 1 +< [1274] beseeching: 2 +< [1275] beside: 86 +< [1276] besides: 68 +< [1277] besought: 4 +< [1278] best: 100 +< [1279] best--she: 1 +< [1280] bestow: 2 +< [1281] bestowed: 4 +< [1282] bestowing: 2 +< [1283] bet: 5 +< [1284] betaken: 1 +< [1285] bethinking: 2 +< [1286] bethought: 1 +< [1287] betray: 2 +< [1288] betrayal: 1 +< [1289] betrayed: 14 +< [1290] betraying: 2 +< [1291] betrothal: 1 +< [1292] betrothed: 6 +< [1293] bets: 1 +< [1294] betsy: 97 +< [1295] betsy's: 13 +< [1296] better: 226 +< [1297] better--she: 1 +< [1298] better...where: 1 +< [1299] better?--leave: 1 +< [1300] between: 138 +< [1301] bewildered: 5 +< [1302] bewilderment: 4 +< [1303] bewitched: 2 +< [1304] bewitching: 1 +< [1305] beyond: 37 +< [1306] bezique: 1 +< [1307] bezwungen: 1 +< [1308] bezzubov: 5 +< [1309] bezzubova: 2 +< [1310] bibish--is: 1 +< [1311] bible: 2 +< [1312] biceps: 1 +< [1313] bid: 1 +< [1314] bidden: 1 +< [1315] bidding: 2 +< [1316] bien: 1 +< [1317] big: 73 +< [1318] bigger: 5 +< [1319] bijou: 1 +< [1320] bill: 12 +< [1321] bill:--"_soupe: 1 +< [1322] billiard: 7 +< [1323] billiards: 1 +< [1324] billows: 1 +< [1325] bills: 2 +< [1326] binary: 1 +< [1327] bind: 3 +< [1328] binding: 3 +< [1329] binds: 1 +< [1330] biography: 2 +< [1331] biological: 2 +< [1332] biology: 1 +< [1333] birch: 22 +< [1334] birch-buds: 1 +< [1335] birch-tree: 1 +< [1336] birches: 3 +< [1337] bird: 22 +< [1338] birds: 14 +< [1339] birth: 12 +< [1340] birthday: 9 +< [1341] birthdays: 1 +< [1342] biryuzovsky: 1 +< [1343] bit: 41 +< [1344] bitch: 1 +< [1345] bitch's: 1 +< [1346] bite: 5 +< [1347] biting: 2 +< [1348] bits: 6 +< [1349] bitter: 7 +< [1350] bitterer: 1 +< [1351] bitterest: 5 +< [1352] bitterly: 4 +< [1353] bitterness: 10 +< [1354] black: 65 +< [1355] black-gloved: 1 +< [1356] black-haired: 1 +< [1357] blackened: 3 +< [1358] blackguard: 1 +< [1359] blackish: 1 +< [1360] blade: 8 +< [1361] blades: 3 +< [1362] blague: 1 +< [1363] blame: 69 +< [1364] blamed: 9 +< [1365] blaming: 4 +< [1366] blanc: 1 +< [1367] blanche: 3 +< [1368] blanks: 1 +< [1369] blaring: 1 +< [1370] bleating: 1 +< [1371] blended: 3 +< [1372] bless: 8 +< [1373] blessed: 7 +< [1374] blessing: 5 +< [1375] blessings: 5 +< [1376] blew: 2 +< [1377] blind: 6 +< [1378] blinded: 1 +< [1379] blinding: 3 +< [1380] blindly: 1 +< [1381] blinds: 3 +< [1382] blinked: 1 +< [1383] blinking: 2 +< [1384] bliss: 9 +< [1385] blissful: 15 +< [1386] blissfully: 4 +< [1387] block: 3 +< [1388] blockhead: 1 +< [1389] blocking: 2 +< [1390] blonde: 1 +< [1391] blood: 14 +< [1392] blood-colored: 1 +< [1393] bloodless: 3 +< [1394] bloodshot: 1 +< [1395] bloodstained: 2 +< [1396] bloom: 1 +< [1397] blooming: 1 +< [1398] blossoms: 2 +< [1399] blot: 1 +< [1400] blotted: 1 +< [1401] blotting: 1 +< [1402] blotting-book: 1 +< [1403] blotting-case: 1 +< [1404] blotting-paper: 1 +< [1405] blouse: 3 +< [1406] blouses: 1 +< [1407] blow: 7 +< [1408] blowing: 3 +< [1409] blown: 4 +< [1410] blue: 28 +< [1411] bluish: 1 +< [1412] blunder: 2 +< [1413] blunders: 1 +< [1414] blunt: 1 +< [1415] bluntness: 1 +< [1416] blurred: 1 +< [1417] blurs: 2 +< [1418] blurted: 1 +< [1419] blush: 7 +< [1420] blush--she: 1 +< [1421] blushed: 25 +< [1422] blushing: 31 +< [1423] board: 11 +< [1424] boardroom: 3 +< [1425] boards: 5 +< [1426] boast: 3 +< [1427] boasted: 1 +< [1428] boat: 10 +< [1429] bobbing: 1 +< [1430] bobrishtchevs: 1 +< [1431] boded: 1 +< [1432] bodice: 5 +< [1433] bodies: 5 +< [1434] bodily: 3 +< [1435] body: 40 +< [1436] bodyguard: 1 +< [1437] bog: 2 +< [1438] bogdanitch: 2 +< [1439] bohemian: 2 +< [1440] boiled: 3 +< [1441] boiler: 1 +< [1442] boiling: 2 +< [1443] bol: 2 +< [1444] bola: 3 +< [1445] bola's: 1 +< [1446] bold: 4 +< [1447] bolder: 1 +< [1448] boldly: 11 +< [1449] boldness: 5 +< [1450] bologova: 1 +< [1451] bols: 1 +< [1452] bolshaia: 1 +< [1453] bolster: 1 +< [1454] bolted: 1 +< [1455] bon: 2 +< [1456] bond: 3 +< [1457] bondage: 1 +< [1458] bondarenko: 1 +< [1459] bone: 3 +< [1460] bones: 4 +< [1461] bonheur: 1 +< [1462] bonhomie: 1 +< [1463] bonina: 1 +< [1464] bonina's: 1 +< [1465] bonne: 2 +< [1466] bonnets: 1 +< [1467] bony: 7 +< [1468] book: 82 +< [1469] bookcases: 2 +< [1470] booking: 1 +< [1471] booking-office: 1 +< [1472] bookkeeping: 2 +< [1473] books: 25 +< [1474] booksellers: 2 +< [1475] bookshelves: 2 +< [1476] boomed: 1 +< [1477] booms: 1 +< [1478] boot: 3 +< [1479] boots: 26 +< [1480] bordered: 3 +< [1481] borders: 1 +< [1482] bore: 6 +< [1483] bored: 28 +< [1484] boredom: 2 +< [1485] boring: 1 +< [1486] borissovna: 5 +< [1487] borissovna's: 2 +< [1488] born: 10 +< [1489] borne: 2 +< [1490] borozdina: 1 +< [1491] borrow: 3 +< [1492] borrowed: 5 +< [1493] bosom: 8 +< [1494] bosom's: 1 +< [1495] botany: 1 +< [1496] both: 214 +< [1497] both--the: 1 +< [1498] both...i: 1 +< [1499] bother: 2 +< [1500] bothering: 1 +< [1501] bothers: 1 +< [1502] bottes: 2 +< [1503] bottle: 21 +< [1504] bottles: 4 +< [1505] bottom: 23 +< [1506] boudoir: 14 +< [1507] bouffé: 2 +< [1508] bought: 26 +< [1509] boulevard: 4 +< [1510] boulevards: 1 +< [1511] bounces: 1 +< [1512] bound: 48 +< [1513] bounded: 3 +< [1514] bounding: 1 +< [1515] bounds: 2 +< [1516] bouquet: 2 +< [1517] bouquets: 4 +< [1518] bouts: 1 +< [1519] bow: 14 +< [1520] bowed: 36 +< [1521] bowing: 17 +< [1522] bowl: 1 +< [1523] bowlegged: 1 +< [1524] bows: 1 +< [1525] box: 44 +< [1526] box-keeper: 1 +< [1527] box-opener: 2 +< [1528] boxes: 10 +< [1529] boy: 67 +< [1530] boy's: 2 +< [1531] boyish: 2 +< [1532] boyishness: 1 +< [1533] boys: 20 +< [1534] braced: 1 +< [1535] bracelet: 2 +< [1536] bracelets: 1 +< [1537] bracing: 1 +< [1538] bragged: 1 +< [1539] braid: 1 +< [1540] braided: 2 +< [1541] brain: 13 +< [1542] brainless: 1 +< [1543] brains: 2 +< [1544] branch: 6 +< [1545] branches: 8 +< [1546] brand: 1 +< [1547] brand-new: 2 +< [1548] brandishing: 1 +< [1549] brandy: 8 +< [1550] brandy!...what: 1 +< [1551] brandy's: 1 +< [1552] brannan: 2 +< [1553] bras: 2 +< [1554] brass: 3 +< [1555] bravo: 5 +< [1556] brayer: 1 +< [1557] breach: 3 +< [1558] bread: 22 +< [1559] bread--he'll: 1 +< [1560] bread--to: 1 +< [1561] bread-and-butter: 2 +< [1562] breadth: 3 +< [1563] break: 32 +< [1564] breakdown: 1 +< [1565] breakfast: 4 +< [1566] breaking: 22 +< [1567] breaks: 1 +< [1568] breast: 13 +< [1569] breasts: 1 +< [1570] breath: 20 +< [1571] breathe: 4 +< [1572] breathed: 5 +< [1573] breathing: 22 +< [1574] breathings: 1 +< [1575] breathless: 7 +< [1576] breathlessly: 1 +< [1577] breaths: 4 +< [1578] bred: 1 +< [1579] breeches: 6 +< [1580] breed: 1 +< [1581] breeder's: 1 +< [1582] breeding: 9 +< [1583] breeds: 1 +< [1584] breeze: 1 +< [1585] brenteln: 1 +< [1586] brethren: 4 +< [1587] bribe: 1 +< [1588] bribes: 1 +< [1589] bricks: 1 +< [1590] bridal: 6 +< [1591] bridal-mother: 1 +< [1592] bride: 14 +< [1593] bride's: 4 +< [1594] bridegroom: 11 +< [1595] bridegroom's: 1 +< [1596] brides: 1 +< [1597] bridge: 13 +< [1598] bridges: 1 +< [1599] bridle: 3 +< [1600] brief: 18 +< [1601] briefly: 2 +< [1602] bright: 40 +< [1603] bright-colored: 1 +< [1604] brightened: 5 +< [1605] brightening: 2 +< [1606] brighter: 2 +< [1607] brightly: 15 +< [1608] brightness: 6 +< [1609] brilliance: 10 +< [1610] brilliant: 28 +< [1611] brilliantine: 1 +< [1612] brilliantly: 2 +< [1613] brim: 2 +< [1614] brimful: 1 +< [1615] brimming: 4 +< [1616] brin: 2 +< [1617] brindle: 1 +< [1618] bring: 54 +< [1619] bringing: 14 +< [1620] bringing-up: 3 +< [1621] brings: 7 +< [1622] brink: 2 +< [1623] brisker: 1 +< [1624] briskly: 2 +< [1625] bristles: 1 +< [1626] brisé: 1 +< [1627] brittle: 1 +< [1628] broad: 21 +< [1629] broad-shouldered: 3 +< [1630] broadcloth: 1 +< [1631] broadened: 2 +< [1632] broadly: 1 +< [1633] broderie: 4 +< [1634] broke: 31 +< [1635] broken: 42 +< [1636] bronze: 5 +< [1637] bronzes: 1 +< [1638] brood: 2 +< [1639] brooded: 5 +< [1640] brook: 1 +< [1641] broom: 1 +< [1642] broth: 3 +< [1643] brother: 234 +< [1644] brother's: 69 +< [1645] brother--seemed: 1 +< [1646] brother-in-law: 20 +< [1647] brother-in-law's: 2 +< [1648] brother-men: 1 +< [1649] brothers: 15 +< [1650] brothers-in-law: 1 +< [1651] brothers.--nikolay: 1 +< [1652] brought: 154 +< [1653] brought-up: 1 +< [1654] brow: 13 +< [1655] brown: 6 +< [1656] browned: 1 +< [1657] brownie: 2 +< [1658] brows: 24 +< [1659] brrr: 1 +< [1660] bruise: 1 +< [1661] bruises: 1 +< [1662] brunette: 2 +< [1663] brush: 2 +< [1664] brushed: 1 +< [1665] brushes: 3 +< [1666] brushing: 3 +< [1667] brushwood: 1 +< [1668] brutal: 8 +< [1669] brute: 1 +< [1670] bryansky: 3 +< [1671] bryansky's: 6 +< [1672] bryantsev: 1 +< [1673] bubble: 2 +< [1674] bubble-organism: 1 +< [1675] bubbling: 3 +< [1676] buck: 1 +< [1677] bucks: 2 +< [1678] buckwheat: 5 +< [1679] buddhists: 1 +< [1680] buddhists--what: 1 +< [1681] buds: 5 +< [1682] buffet: 1 +< [1683] bugs: 1 +< [1684] build: 5 +< [1685] building: 14 +< [1686] buildings: 5 +< [1687] built: 10 +< [1688] bulgarian: 1 +< [1689] bulging: 1 +< [1690] bull: 2 +< [1691] bull-fights: 1 +< [1692] bullet: 1 +< [1693] bumblebee: 1 +< [1694] bump: 1 +< [1695] bumping: 2 +< [1696] bun: 1 +< [1697] bunch: 1 +< [1698] bundle: 2 +< [1699] bundles: 3 +< [1700] bundling: 1 +< [1701] burden: 6 +< [1702] burdened: 1 +< [1703] burdening: 1 +< [1704] burdensome: 1 +< [1705] burdocks: 1 +< [1706] bureau: 3 +< [1707] burgundy: 1 +< [1708] buried: 7 +< [1709] burn: 4 +< [1710] burned: 9 +< [1711] burned-down: 1 +< [1712] burning: 10 +< [1713] burst: 20 +< [1714] bursting: 3 +< [1715] bursts: 1 +< [1716] bury: 7 +< [1717] bush: 10 +< [1718] bushels: 2 +< [1719] bushes: 6 +< [1720] bushy: 1 +< [1721] busied: 2 +< [1722] busiest: 1 +< [1723] busily: 7 +< [1724] business: 81 +< [1725] business@pglaf.org: 1 +< [1726] businesslike: 2 +< [1727] buslaev's: 1 +< [1728] bust: 1 +< [1729] bustle: 5 +< [1730] bustling: 1 +< [1731] busts: 1 +< [1732] busy: 35 +< [1733] but: 3142 +< [1734] but...and: 1 +< [1735] but...but: 1 +< [1736] butler: 6 +< [1737] butter: 7 +< [1738] butterfly: 1 +< [1739] button: 6 +< [1740] buttoned: 3 +< [1741] buttoning: 3 +< [1742] buttons: 8 +< [1743] buy: 21 +< [1744] buying: 5 +< [1745] buys: 1 +< [1746] buzulukov: 1 +< [1747] buzulukov--simply: 1 +< [1748] buzz: 3 +< [1749] buzzed: 2 +< [1750] by: 1106 +< [1751] byzantium: 1 +< [1752] c: 4 +< [1753] c'est: 11 +< [1754] cab: 1 +< [1755] cab-driver: 1 +< [1756] cabbage: 2 +< [1757] cabman: 1 +< [1758] cabs: 2 +< [1759] cachet: 1 +< [1760] cadence: 1 +< [1761] cadet: 1 +< [1762] cafés: 1 +< [1763] cage: 3 +< [1764] caged: 1 +< [1765] cake: 1 +< [1766] cakes: 1 +< [1767] calamities: 1 +< [1768] calamity: 6 +< [1769] calculate: 1 +< [1770] calculated: 3 +< [1771] calculating: 2 +< [1772] calculation: 1 +< [1773] calculations: 4 +< [1774] calculus: 1 +< [1775] calf: 9 +< [1776] call: 69 +< [1777] called: 127 +< [1778] called--is: 1 +< [1779] calling: 25 +< [1780] callous: 4 +< [1781] callousness: 2 +< [1782] calls: 5 +< [1783] calm: 37 +< [1784] calmed: 2 +< [1785] calmer: 8 +< [1786] calming: 2 +< [1787] calmly: 17 +< [1788] calumny: 1 +< [1789] calve: 1 +< [1790] calved: 2 +< [1791] calved,--he: 1 +< [1792] calves: 8 +< [1793] cambric: 2 +< [1794] came: 421 +< [1795] camomile: 1 +< [1796] camp: 3 +< [1797] campaign: 1 +< [1798] campaigns: 1 +< [1799] camps: 1 +< [1800] can: 390 +< [1801] can't: 261 +< [1802] canary: 1 +< [1803] cancan: 1 +< [1804] candid: 3 +< [1805] candidate: 5 +< [1806] candidates: 1 +< [1807] candidly: 2 +< [1808] candle: 20 +< [1809] candle-grease: 1 +< [1810] candles: 15 +< [1811] candlesticks: 1 +< [1812] candor: 1 +< [1813] cane: 1 +< [1814] cannot: 118 +< [1815] cannot...you: 1 +< [1816] canopy: 1 +< [1817] canut: 1 +< [1818] canvas: 1 +< [1819] cap: 36 +< [1820] capable: 18 +< [1821] capacity: 5 +< [1822] cape: 6 +< [1823] capella: 1 +< [1824] capital: 43 +< [1825] capitalist: 1 +< [1826] capitalists: 1 +< [1827] capitally: 8 +< [1828] capitals: 2 +< [1829] capons: 1 +< [1830] caprice: 2 +< [1831] capricious: 1 +< [1832] caps: 3 +< [1833] captain: 6 +< [1834] captain's: 1 +< [1835] captured: 1 +< [1836] capuan: 1 +< [1837] card: 7 +< [1838] cards: 12 +< [1839] cardsharper: 2 +< [1840] care: 110 +< [1841] care--a: 1 +< [1842] care--but: 1 +< [1843] care-worn: 3 +< [1844] cared: 27 +< [1845] career: 19 +< [1846] careers: 2 +< [1847] careful: 15 +< [1848] carefully: 39 +< [1849] careless: 3 +< [1850] carelessly: 6 +< [1851] carelessness: 4 +< [1852] cares: 14 +< [1853] cares...i: 1 +< [1854] caress: 1 +< [1855] caressed: 2 +< [1856] caresses: 5 +< [1857] caressing: 5 +< [1858] careth: 2 +< [1859] caring: 9 +< [1860] carlsbad: 4 +< [1861] carnival: 1 +< [1862] carp: 3 +< [1863] carpenter: 12 +< [1864] carpenters: 2 +< [1865] carpet: 9 +< [1866] carpeted: 2 +< [1867] carriage: 176 +< [1868] carriage--all: 1 +< [1869] carriage--how: 1 +< [1870] carriage-jobbers: 1 +< [1871] carriage-springs: 1 +< [1872] carriages: 22 +< [1873] carriages--all: 1 +< [1874] carried: 44 +< [1875] carries: 3 +< [1876] carry: 19 +< [1877] carrying: 31 +< [1878] cart: 22 +< [1879] cart-horses: 1 +< [1880] carte: 3 +< [1881] carted: 2 +< [1882] cartilage: 1 +< [1883] carting: 3 +< [1884] cartloads: 1 +< [1885] cartridge: 1 +< [1886] cartridge-belt: 1 +< [1887] carts: 5 +< [1888] carved: 6 +< [1889] carving: 2 +< [1890] case: 52 +< [1891] cases: 18 +< [1892] cash: 2 +< [1893] cashier: 2 +< [1894] cassocks: 1 +< [1895] cast: 18 +< [1896] cast-iron: 3 +< [1897] caste: 1 +< [1898] casting: 3 +< [1899] casual: 1 +< [1900] casually: 3 +< [1901] cat: 3 +< [1902] catch: 25 +< [1903] catches: 2 +< [1904] catching: 24 +< [1905] catechism: 2 +< [1906] category: 1 +< [1907] cathedral: 2 +< [1908] catherine: 1 +< [1909] catholic: 3 +< [1910] catkins: 1 +< [1911] cattle: 23 +< [1912] cattle-breeder: 1 +< [1913] cattle-yard: 3 +< [1914] cattle-yard--and: 1 +< [1915] cattleyard: 2 +< [1916] caught: 59 +< [1917] cause: 52 +< [1918] cause--a: 1 +< [1919] caused: 15 +< [1920] causeless: 1 +< [1921] causes: 8 +< [1922] causing: 2 +< [1923] caution: 3 +< [1924] cautiously: 8 +< [1925] cavalry: 8 +< [1926] caviar: 1 +< [1927] cavities: 1 +< [1928] ce: 6 +< [1929] cease: 7 +< [1930] ceased: 34 +< [1931] ceaseless: 1 +< [1932] ceasing: 4 +< [1933] cede: 1 +< [1934] ceded: 1 +< [1935] ceiling: 3 +< [1936] ceilings: 1 +< [1937] cela: 3 +< [1938] celebrated: 27 +< [1939] celebrating: 3 +< [1940] celebrities: 1 +< [1941] celebrity: 1 +< [1942] cellar: 3 +< [1943] celle: 1 +< [1944] cement: 2 +< [1945] cemented: 1 +< [1946] censer: 1 +< [1947] censure: 2 +< [1948] censured: 1 +< [1949] cent: 5 +< [1950] center: 13 +< [1951] centered: 1 +< [1952] centers: 1 +< [1953] central: 2 +< [1954] centralization: 1 +< [1955] centuries: 1 +< [1956] century: 2 +< [1957] ceremonies: 4 +< [1958] ceremonious: 1 +< [1959] ceremony: 9 +< [1960] certain: 89 +< [1961] certainly: 50 +< [1962] certainly--are: 1 +< [1963] certainty: 5 +< [1964] certificate: 2 +< [1965] certitude: 1 +< [1966] ces: 1 +< [1967] cessation: 2 +< [1968] cessez: 1 +< [1969] chablis: 2 +< [1970] chaff: 1 +< [1971] chaffing: 3 +< [1972] chagrin: 1 +< [1973] chain: 12 +< [1974] chained: 1 +< [1975] chains: 4 +< [1976] chair: 63 +< [1977] chairman: 3 +< [1978] chairs: 9 +< [1979] chalk: 9 +< [1980] challenge: 6 +< [1981] challenged: 1 +< [1982] challenging: 2 +< [1983] chamber: 1 +< [1984] chambers: 3 +< [1985] chambres: 1 +< [1986] chamois: 3 +< [1987] champagne: 13 +< [1988] champagne--gagin: 1 +< [1989] champagne--just: 1 +< [1990] championing: 1 +< [1991] chance: 38 +< [1992] chanced: 4 +< [1993] chances: 3 +< [1994] chancing: 1 +< [1995] chandelier: 1 +< [1996] chandeliers: 1 +< [1997] change: 86 +< [1998] changed: 73 +< [1999] changes: 5 +< [2000] changing: 13 +< [2001] channel: 2 +< [2002] chantants: 1 +< [2003] chanted: 1 +< [2004] chanting: 1 +< [2005] chaos: 2 +< [2006] chaperon: 1 +< [2007] chaps: 1 +< [2008] chapter: 241 +< [2009] char-à-banc: 7 +< [2010] character: 34 +< [2011] characteristic: 19 +< [2012] characteristic--her: 1 +< [2013] characteristics: 5 +< [2014] characters: 3 +< [2015] charcoal: 1 +< [2016] charge: 15 +< [2017] charged: 2 +< [2018] charges: 2 +< [2019] charitable: 1 +< [2020] charitably: 1 +< [2021] charities: 1 +< [2022] charity: 1 +< [2023] charles: 1 +< [2024] charles's: 1 +< [2025] charlotte: 1 +< [2026] charm: 21 +< [2027] charmante: 2 +< [2028] charmants: 1 +< [2029] charmed: 3 +< [2030] charming: 37 +< [2031] charms: 1 +< [2032] charred: 1 +< [2033] chase: 2 +< [2034] chased: 1 +< [2035] chasing: 2 +< [2036] chasm: 3 +< [2037] chaste: 1 +< [2038] chastisement: 1 +< [2039] chat: 3 +< [2040] chatted: 2 +< [2041] chatter: 6 +< [2042] chattering: 4 +< [2043] chatting: 6 +< [2044] cheap: 4 +< [2045] cheaper: 3 +< [2046] cheapest: 1 +< [2047] cheaply: 1 +< [2048] cheat: 5 +< [2049] cheated: 1 +< [2050] cheating: 2 +< [2051] check: 12 +< [2052] checked: 4 +< [2053] checkered: 1 +< [2054] checking: 5 +< [2055] checks: 1 +< [2056] cheek: 14 +< [2057] cheeks: 19 +< [2058] cheer: 3 +< [2059] cheerful: 21 +< [2060] cheerfully: 6 +< [2061] cheerily: 1 +< [2062] cheering: 2 +< [2063] cheerless: 1 +< [2064] cheers: 1 +< [2065] cheese: 10 +< [2066] chemical: 1 +< [2067] chemist's: 4 +< [2068] cher: 3 +< [2069] chere: 2 +< [2070] cherished: 4 +< [2071] cherubs: 1 +< [2072] chess: 3 +< [2073] chest: 26 +< [2074] chest...and: 1 +< [2075] chested: 1 +< [2076] chestnut: 10 +< [2077] chests: 1 +< [2078] chewing: 1 +< [2079] chic: 1 +< [2080] chicken: 3 +< [2081] chickens: 3 +< [2082] chief: 69 +< [2083] chiefly: 6 +< [2084] chignon: 4 +< [2085] chignons: 1 +< [2086] child: 119 +< [2087] child's: 13 +< [2088] child--i: 2 +< [2089] child--that's: 1 +< [2090] child--was: 1 +< [2091] childbirth: 1 +< [2092] childhood: 17 +< [2093] childish: 14 +< [2094] childishly: 1 +< [2095] childishness: 3 +< [2096] childless: 1 +< [2097] childlike: 6 +< [2098] children: 227 +< [2099] children's: 15 +< [2100] children--all: 1 +< [2101] children--the: 1 +< [2102] children--they: 1 +< [2103] chill: 7 +< [2104] chilled: 2 +< [2105] chilliness: 1 +< [2106] chilling: 1 +< [2107] chilly: 6 +< [2108] chilly--which: 1 +< [2109] chimed: 7 +< [2110] chimney: 2 +< [2111] chimneys: 2 +< [2112] chin: 11 +< [2113] china: 5 +< [2114] chirping: 1 +< [2115] chirruped: 1 +< [2116] chivalrous: 1 +< [2117] chocolate: 2 +< [2118] choice: 13 +< [2119] choir: 5 +< [2120] choked: 6 +< [2121] choking: 3 +< [2122] choose: 16 +< [2123] chooses: 3 +< [2124] choosing: 4 +< [2125] chopped: 1 +< [2126] chopping: 1 +< [2127] choral: 1 +< [2128] chords: 1 +< [2129] choristers: 2 +< [2130] chorus: 3 +< [2131] chose: 3 +< [2132] chosen: 10 +< [2133] choses: 1 +< [2134] christ: 18 +< [2135] christ's: 5 +< [2136] christening: 2 +< [2137] christian: 24 +< [2138] christian's: 1 +< [2139] christianity: 5 +< [2140] christianity--that: 1 +< [2141] christians: 2 +< [2142] christs: 1 +< [2143] chubby: 2 +< [2144] chucked: 1 +< [2145] chuckle: 1 +< [2146] chuckled: 2 +< [2147] chum: 1 +< [2148] chums: 3 +< [2149] church: 55 +< [2150] church--and: 1 +< [2151] churches: 5 +< [2152] châine: 1 +< [2153] château: 2 +< [2154] chère: 1 +< [2155] cigar: 14 +< [2156] cigar-case: 2 +< [2157] cigarette: 14 +< [2158] cigarettes: 5 +< [2159] cigars: 4 +< [2160] circle: 45 +< [2161] circles: 7 +< [2162] circling: 1 +< [2163] circuit: 1 +< [2164] circular: 1 +< [2165] circumspect: 1 +< [2166] circumspectly: 1 +< [2167] circumstance: 2 +< [2168] circumstanced: 1 +< [2169] circumstances: 12 +< [2170] circus: 1 +< [2171] cited: 1 +< [2172] citizen: 1 +< [2173] citizens: 2 +< [2174] city: 3 +< [2175] civil: 5 +< [2176] civilian: 4 +< [2177] civility: 2 +< [2178] civilization: 3 +< [2179] civilization--to: 1 +< [2180] clacking: 1 +< [2181] clad: 2 +< [2182] claim: 2 +< [2183] claiming: 1 +< [2184] claims: 4 +< [2185] claire: 1 +< [2186] clairvoyant: 1 +< [2187] clamber: 1 +< [2188] clambered: 3 +< [2189] clambering: 2 +< [2190] clamored: 1 +< [2191] clamorous: 1 +< [2192] clang: 1 +< [2193] clanging: 1 +< [2194] clank: 3 +< [2195] clanked: 2 +< [2196] clanking: 1 +< [2197] clapping: 2 +< [2198] clasp: 2 +< [2199] clasped: 5 +< [2200] clasping: 4 +< [2201] clasps: 1 +< [2202] class: 23 +< [2203] class--all: 1 +< [2204] class--eight: 1 +< [2205] class--she: 1 +< [2206] classes: 10 +< [2207] classes...at: 1 +< [2208] classic: 1 +< [2209] classical: 9 +< [2210] classics: 2 +< [2211] classified: 3 +< [2212] clattering: 1 +< [2213] clean: 11 +< [2214] clean-cut: 1 +< [2215] clean-shaven: 2 +< [2216] cleaned: 1 +< [2217] cleaner: 1 +< [2218] cleaning: 1 +< [2219] cleanliness: 1 +< [2220] cleanly: 2 +< [2221] clear: 73 +< [2222] cleared: 10 +< [2223] clearer: 7 +< [2224] clearest: 2 +< [2225] clearing: 5 +< [2226] clearly: 54 +< [2227] clearness: 11 +< [2228] cleave: 1 +< [2229] clenched: 3 +< [2230] clenching: 1 +< [2231] clergy: 2 +< [2232] clerk: 44 +< [2233] clerks: 4 +< [2234] clever: 28 +< [2235] cleverer: 3 +< [2236] cleverest: 2 +< [2237] cleverly: 5 +< [2238] cleverness: 4 +< [2239] click: 1 +< [2240] client: 2 +< [2241] client's: 1 +< [2242] cliff: 1 +< [2243] climate: 3 +< [2244] climbed: 4 +< [2245] climbing: 1 +< [2246] clinging: 11 +< [2247] clipped: 1 +< [2248] cloak: 18 +< [2249] cloaks: 4 +< [2250] clock: 7 +< [2251] clocks: 1 +< [2252] clods: 3 +< [2253] clogging: 1 +< [2254] clogs: 5 +< [2255] close: 62 +< [2256] close-packed: 1 +< [2257] closed: 29 +< [2258] closely: 3 +< [2259] closeness: 2 +< [2260] closer: 16 +< [2261] closest: 3 +< [2262] closing: 13 +< [2263] cloth: 13 +< [2264] cloth-covered: 1 +< [2265] clothe: 1 +< [2266] clothed: 1 +< [2267] clothes: 20 +< [2268] clothing: 1 +< [2269] cloths: 1 +< [2270] cloud: 8 +< [2271] cloud-shell: 1 +< [2272] clouded: 1 +< [2273] cloudless: 1 +< [2274] cloudlets: 2 +< [2275] clouds: 11 +< [2276] clover: 15 +< [2277] club: 29 +< [2278] clubhouse: 1 +< [2279] clubs: 1 +< [2280] clue: 3 +< [2281] clump: 1 +< [2282] clumps: 2 +< [2283] clumsiness: 1 +< [2284] clumsy: 2 +< [2285] clung: 10 +< [2286] clustered: 1 +< [2287] clustering: 1 +< [2288] clutch: 5 +< [2289] clutched: 13 +< [2290] clutching: 15 +< [2291] co-operative: 1 +< [2292] coach: 6 +< [2293] coachman: 57 +< [2294] coachman's: 1 +< [2295] coachmen: 1 +< [2296] coal: 1 +< [2297] coarse: 12 +< [2298] coarseness: 2 +< [2299] coarsest: 1 +< [2300] coat: 68 +< [2301] coat-tails: 2 +< [2302] coats: 17 +< [2303] cob: 6 +< [2304] cobbles: 1 +< [2305] cochon: 1 +< [2306] cock: 1 +< [2307] cockade: 2 +< [2308] cockcrow: 1 +< [2309] cocked: 3 +< [2310] cocking: 2 +< [2311] cocks: 1 +< [2312] cod: 1 +< [2313] code: 5 +< [2314] codes: 1 +< [2315] coeur: 1 +< [2316] coffee: 38 +< [2317] coffee-house: 1 +< [2318] coffeepot: 1 +< [2319] coffin: 3 +< [2320] cognac: 2 +< [2321] coiffer: 1 +< [2322] coiffeur: 1 +< [2323] coiffeur?'_--no: 1 +< [2324] coiffure: 3 +< [2325] coil: 1 +< [2326] coils: 2 +< [2327] coin: 1 +< [2328] coincides: 1 +< [2329] cold: 72 +< [2330] colder: 3 +< [2331] coldest: 1 +< [2332] coldly: 19 +< [2333] coldness: 9 +< [2334] coldness--this: 1 +< [2335] collar: 13 +< [2336] collar-straps: 1 +< [2337] collars: 1 +< [2338] colleague: 2 +< [2339] colleagues: 4 +< [2340] collect: 4 +< [2341] collected: 2 +< [2342] collecting: 13 +< [2343] collection: 5 +< [2344] collector: 1 +< [2345] college: 3 +< [2346] collision: 2 +< [2347] colonel: 48 +< [2348] colonel's: 1 +< [2349] colonize: 1 +< [2350] color: 4 +< [2351] colored: 5 +< [2352] coloring: 2 +< [2353] colors: 2 +< [2354] colossal: 1 +< [2355] colt: 1 +< [2356] colts: 1 +< [2357] column: 1 +< [2358] columns: 2 +< [2359] comb: 2 +< [2360] combating: 1 +< [2361] combed: 6 +< [2362] combinaisons: 1 +< [2363] combined: 1 +< [2364] combing: 3 +< [2365] combining: 2 +< [2366] combs: 1 +< [2367] come: 672 +< [2368] comedy: 1 +< [2369] comely: 2 +< [2370] comers: 1 +< [2371] comes: 38 +< [2372] comes...i: 1 +< [2373] comfort: 23 +< [2374] comfortable: 14 +< [2375] comfortable-looking: 1 +< [2376] comfortably: 6 +< [2377] comforted: 4 +< [2378] comforter: 1 +< [2379] comforting: 3 +< [2380] comforts: 1 +< [2381] comic: 3 +< [2382] comical: 1 +< [2383] comically: 3 +< [2384] coming: 179 +< [2385] coming--laughing: 1 +< [2386] coming--she: 1 +< [2387] command: 5 +< [2388] commander-in-chief: 1 +< [2389] commanding: 1 +< [2390] commands: 2 +< [2391] comme: 2 +< [2392] commemoration: 1 +< [2393] commencement: 2 +< [2394] comment: 2 +< [2395] commented: 2 +< [2396] comments: 4 +< [2397] commercial: 2 +< [2398] commingled: 1 +< [2399] commis: 1 +< [2400] commiseration: 5 +< [2401] commission: 26 +< [2402] commission's: 1 +< [2403] commissionaire: 3 +< [2404] commissioned: 1 +< [2405] commissions: 2 +< [2406] commit: 1 +< [2407] committed: 2 +< [2408] committee: 22 +< [2409] committees: 1 +< [2410] committees--everywhere: 1 +< [2411] committing: 1 +< [2412] commodity: 1 +< [2413] common: 40 +< [2414] commonly: 2 +< [2415] commonplace: 1 +< [2416] commonplaces: 2 +< [2417] commun: 1 +< [2418] communal: 1 +< [2419] commune: 4 +< [2420] communicate: 8 +< [2421] communicated: 3 +< [2422] communicating: 1 +< [2423] communication: 9 +< [2424] communism: 3 +< [2425] communist: 1 +< [2426] communists: 2 +< [2427] community: 1 +< [2428] compact: 1 +< [2429] compagne: 1 +< [2430] companies: 4 +< [2431] companion: 11 +< [2432] companions: 7 +< [2433] companionship: 1 +< [2434] company: 17 +< [2435] comparative: 1 +< [2436] compare: 4 +< [2437] compare...i: 1 +< [2438] compared: 2 +< [2439] comparing: 4 +< [2440] comparison: 12 +< [2441] compartment: 9 +< [2442] compass: 2 +< [2443] compassion: 4 +< [2444] compassionate: 1 +< [2445] compassionately: 2 +< [2446] compatriot: 1 +< [2447] compelled: 1 +< [2448] compensation: 1 +< [2449] competing: 1 +< [2450] competitors: 1 +< [2451] compilation: 1 +< [2452] complacency: 3 +< [2453] complacent: 3 +< [2454] complacently: 1 +< [2455] complain: 4 +< [2456] complained: 5 +< [2457] complaining: 6 +< [2458] complaint: 4 +< [2459] complaints: 6 +< [2460] complete: 45 +< [2461] completed: 2 +< [2462] completely: 67 +< [2463] completing: 1 +< [2464] completion: 2 +< [2465] complex: 12 +< [2466] complexion: 1 +< [2467] complexity: 6 +< [2468] compliance: 7 +< [2469] complicate: 1 +< [2470] complicated: 12 +< [2471] complication: 3 +< [2472] complications: 2 +< [2473] complied: 1 +< [2474] compliment: 1 +< [2475] compliziert: 1 +< [2476] comply: 6 +< [2477] complying: 3 +< [2478] compose: 2 +< [2479] composed: 9 +< [2480] composedly: 1 +< [2481] composer: 1 +< [2482] composing: 3 +< [2483] composite: 1 +< [2484] compost: 1 +< [2485] composure: 19 +< [2486] comprehend: 17 +< [2487] comprehended: 6 +< [2488] comprehending: 2 +< [2489] comprehensible: 5 +< [2490] comprehension: 5 +< [2491] comprehensive: 1 +< [2492] comprenez: 1 +< [2493] compressed: 3 +< [2494] compressibility: 1 +< [2495] compressing: 1 +< [2496] compromettant: 1 +< [2497] compromise: 3 +< [2498] compromised: 1 +< [2499] compromising: 2 +< [2500] compulsory: 1 +< [2501] computation: 1 +< [2502] computer: 2 +< [2503] computers: 2 +< [2504] compôte: 1 +< [2505] comrade: 13 +< [2506] comrade's: 2 +< [2507] comrades: 10 +< [2508] comtesse: 1 +< [2509] conceal: 14 +< [2510] concealed: 9 +< [2511] concealing: 9 +< [2512] concealment: 3 +< [2513] conceited: 2 +< [2514] conceivability: 1 +< [2515] conceive: 15 +< [2516] conceived: 9 +< [2517] conceiving: 1 +< [2518] concentrate: 2 +< [2519] concentrated: 12 +< [2520] concentration: 4 +< [2521] concept: 2 +< [2522] conception: 16 +< [2523] conceptions: 7 +< [2524] concern: 3 +< [2525] concerned: 5 +< [2526] concerning: 5 +< [2527] concerns: 1 +< [2528] concert: 10 +< [2529] concerts: 1 +< [2530] concession: 2 +< [2531] concessions: 2 +< [2532] conciliation: 1 +< [2533] conciliation-board: 1 +< [2534] concise: 1 +< [2535] conclave: 1 +< [2536] conclude: 3 +< [2537] concluded: 10 +< [2538] conclusion: 8 +< [2539] conclusions: 6 +< [2540] conclusive: 2 +< [2541] conclusively: 6 +< [2542] condemn: 1 +< [2543] condemned: 4 +< [2544] condemning: 2 +< [2545] condemns: 1 +< [2546] condescending: 4 +< [2547] condescendingly: 1 +< [2548] condescension: 3 +< [2549] condition: 70 +< [2550] conditions: 34 +< [2551] condolences: 1 +< [2552] conduce: 1 +< [2553] conduct: 16 +< [2554] conducted: 3 +< [2555] conducting: 2 +< [2556] conductor: 8 +< [2557] confabulations: 1 +< [2558] confectioner's: 1 +< [2559] conferred: 1 +< [2560] confess: 11 +< [2561] confessed: 3 +< [2562] confessing: 2 +< [2563] confession: 13 +< [2564] confided: 2 +< [2565] confidence: 19 +< [2566] confidences: 1 +< [2567] confident: 8 +< [2568] confidently: 2 +< [2569] confiding: 3 +< [2570] confine: 3 +< [2571] confined: 5 +< [2572] confinement: 9 +< [2573] confirm: 1 +< [2574] confirmation: 7 +< [2575] confirmed: 14 +< [2576] confirming: 1 +< [2577] conflagration: 1 +< [2578] conflict: 11 +< [2579] conform: 1 +< [2580] conformity: 1 +< [2581] confounded: 2 +< [2582] confounding: 1 +< [2583] confronted: 4 +< [2584] confronting: 2 +< [2585] confucians: 1 +< [2586] confused: 13 +< [2587] confusing: 1 +< [2588] confusion: 21 +< [2589] congenial: 1 +< [2590] congratulate: 7 +< [2591] congratulated: 2 +< [2592] congratulating: 1 +< [2593] congratulation: 1 +< [2594] congratulations: 2 +< [2595] conjecture: 3 +< [2596] conjectures: 1 +< [2597] conjunction: 6 +< [2598] conjured: 1 +< [2599] connect: 2 +< [2600] connected: 17 +< [2601] connecting: 2 +< [2602] connection: 23 +< [2603] connections: 4 +< [2604] connoisseur: 2 +< [2605] connoisseurs: 3 +< [2606] conquered: 7 +< [2607] conquering: 2 +< [2608] conqueror: 2 +< [2609] conquest: 1 +< [2610] conscience: 14 +< [2611] conscience-stricken: 1 +< [2612] conscientious: 6 +< [2613] conscientiously: 4 +< [2614] conscientiousness: 1 +< [2615] conscious: 48 +< [2616] consciously: 3 +< [2617] consciousness: 24 +< [2618] conscription: 1 +< [2619] consecrated: 1 +< [2620] consecutive: 1 +< [2621] consent: 14 +< [2622] consented: 5 +< [2623] consenting: 1 +< [2624] consequence: 31 +< [2625] consequences: 3 +< [2626] consequences--why: 1 +< [2627] consequent: 4 +< [2628] consequential: 2 +< [2629] consequently: 23 +< [2630] conservation: 1 +< [2631] conservative: 4 +< [2632] consider: 47 +< [2633] considerable: 6 +< [2634] considerably: 3 +< [2635] consideration: 16 +< [2636] considerations: 11 +< [2637] considered: 42 +< [2638] considered--tone: 1 +< [2639] considering: 23 +< [2640] considers: 3 +< [2641] consigne: 1 +< [2642] consignment: 1 +< [2643] consist: 3 +< [2644] consisted: 4 +< [2645] consistency: 1 +< [2646] consistent: 2 +< [2647] consisting: 4 +< [2648] consists: 4 +< [2649] consolation: 9 +< [2650] consolatory: 2 +< [2651] console: 5 +< [2652] consoling: 3 +< [2653] conspicuous: 4 +< [2654] conspicuously: 4 +< [2655] constance: 2 +< [2656] constant: 5 +< [2657] constantly: 6 +< [2658] constatation: 1 +< [2659] constitute: 1 +< [2660] constituted: 3 +< [2661] constitutional: 1 +< [2662] constrained: 1 +< [2663] constraint: 4 +< [2664] construct: 2 +< [2665] constructed: 7 +< [2666] constructing: 2 +< [2667] construction: 4 +< [2668] construed: 1 +< [2669] consult: 1 +< [2670] consultation: 6 +< [2671] consultation--whether: 1 +< [2672] consulted: 1 +< [2673] consulting: 3 +< [2674] consumption: 1 +< [2675] consumptive: 3 +< [2676] contact: 7 +< [2677] contain: 3 +< [2678] contained: 1 +< [2679] containing: 1 +< [2680] contemplate: 2 +< [2681] contemplating: 1 +< [2682] contemplation: 1 +< [2683] contemporaries: 2 +< [2684] contemporary: 4 +< [2685] contempt: 21 +< [2686] contemptible: 1 +< [2687] contemptuous: 8 +< [2688] contemptuously: 21 +< [2689] contend: 1 +< [2690] content: 9 +< [2691] contented: 7 +< [2692] contenting: 1 +< [2693] contention: 5 +< [2694] contents: 4 +< [2695] contest: 1 +< [2696] contesting: 1 +< [2697] continence: 1 +< [2698] contingencies: 3 +< [2699] contingency: 1 +< [2700] continual: 11 +< [2701] continually: 58 +< [2702] continue: 2 +< [2703] continued: 13 +< [2704] continuing: 3 +< [2705] continuity: 1 +< [2706] continuous: 1 +< [2707] continuously: 1 +< [2708] contract: 2 +< [2709] contracted: 2 +< [2710] contraction: 1 +< [2711] contractor: 3 +< [2712] contradicted: 1 +< [2713] contradicting: 1 +< [2714] contradiction: 3 +< [2715] contradictions: 1 +< [2716] contradictory: 2 +< [2717] contradistinction: 1 +< [2718] contralto: 1 +< [2719] contrary: 61 +< [2720] contrary...i: 1 +< [2721] contrast: 8 +< [2722] contravention: 1 +< [2723] contribute: 1 +< [2724] contributed: 2 +< [2725] contributions: 2 +< [2726] contrive: 1 +< [2727] contrived: 2 +< [2728] control: 19 +< [2729] controlled: 2 +< [2730] controlling: 3 +< [2731] contumely: 1 +< [2732] convalescence: 1 +< [2733] convalescents: 1 +< [2734] conveniences: 1 +< [2735] convenient: 6 +< [2736] conveniently: 1 +< [2737] conventional: 2 +< [2738] conventional--i: 1 +< [2739] conventionality: 1 +< [2740] conventionally: 1 +< [2741] conversation: 236 +< [2742] conversations: 11 +< [2743] converse: 1 +< [2744] conversed: 1 +< [2745] convert: 1 +< [2746] converted: 2 +< [2747] convey: 1 +< [2748] conveyance: 1 +< [2749] conveyed: 1 +< [2750] convict: 1 +< [2751] convicted: 1 +< [2752] conviction: 20 +< [2753] conviction--that: 1 +< [2754] convictions: 8 +< [2755] convince: 4 +< [2756] convinced: 36 +< [2757] convinces: 1 +< [2758] convincing: 2 +< [2759] convincingly: 1 +< [2760] convulsively: 1 +< [2761] cook: 16 +< [2762] cooked: 1 +< [2763] cookery: 1 +< [2764] cooking: 2 +< [2765] cool: 12 +< [2766] cooled: 1 +< [2767] cooler: 1 +< [2768] cooling: 1 +< [2769] coolly: 2 +< [2770] coolness: 4 +< [2771] cooperate: 1 +< [2772] cooperative: 1 +< [2773] copied: 3 +< [2774] copies: 7 +< [2775] copper: 1 +< [2776] copse: 17 +< [2777] copy: 12 +< [2778] copying: 5 +< [2779] copyists: 1 +< [2780] copyright: 13 +< [2781] coquetry: 1 +< [2782] coquettishness: 1 +< [2783] coral: 1 +< [2784] cord: 13 +< [2785] corday: 1 +< [2786] cordelia: 2 +< [2787] cordelia's: 1 +< [2788] cordial: 8 +< [2789] cordiality: 2 +< [2790] cordially: 2 +< [2791] cords: 1 +< [2792] cork: 2 +< [2793] corn: 8 +< [2794] corn--all: 1 +< [2795] corner: 42 +< [2796] corners: 3 +< [2797] cornice: 2 +< [2798] cornices: 2 +< [2799] corporation: 2 +< [2800] corps: 8 +< [2801] corps,...and: 1 +< [2802] corps--whom: 1 +< [2803] corpse: 3 +< [2804] correct: 15 +< [2805] corrected: 7 +< [2806] correction: 2 +< [2807] corrections: 2 +< [2808] correctly: 2 +< [2809] correctness: 3 +< [2810] correspond: 4 +< [2811] corresponded: 2 +< [2812] correspondence: 3 +< [2813] corresponding: 3 +< [2814] corridor: 17 +< [2815] corridors: 1 +< [2816] corrupt: 7 +< [2817] corset: 1 +< [2818] corso: 1 +< [2819] cossacks: 1 +< [2820] cost: 19 +< [2821] costing: 2 +< [2822] costly: 4 +< [2823] costs: 4 +< [2824] costume: 3 +< [2825] coterie: 3 +< [2826] coteries: 1 +< [2827] cotillion: 1 +< [2828] cottage: 1 +< [2829] cotton: 1 +< [2830] couch: 1 +< [2831] couch-grass: 1 +< [2832] cough: 8 +< [2833] coughed: 4 +< [2834] coughing: 7 +< [2835] coughs: 1 +< [2836] could: 971 +< [2837] could--she: 1 +< [2838] couldn't: 28 +< [2839] council: 20 +< [2840] council--not: 1 +< [2841] council--the: 1 +< [2842] councilman: 1 +< [2843] councilor: 4 +< [2844] councils: 3 +< [2845] counsel: 4 +< [2846] counsels: 1 +< [2847] count: 66 +< [2848] count's: 2 +< [2849] counted: 6 +< [2850] countenance: 3 +< [2851] counter: 4 +< [2852] counterfeit: 1 +< [2853] countess: 163 +< [2854] countess's: 4 +< [2855] countess?--a: 1 +< [2856] counting: 22 +< [2857] counting-house: 5 +< [2858] countinghouse: 1 +< [2859] countries: 1 +< [2860] country: 129 +< [2861] country--music: 1 +< [2862] countryside: 1 +< [2863] coup: 1 +< [2864] couple: 11 +< [2865] couple--a: 1 +< [2866] couples: 5 +< [2867] cour: 5 +< [2868] courage: 13 +< [2869] courage--vronsky: 1 +< [2870] courageously: 1 +< [2871] courier: 5 +< [2872] course: 142 +< [2873] courses: 2 +< [2874] court: 29 +< [2875] courteously: 3 +< [2876] courtesy: 5 +< [2877] courting: 2 +< [2878] courts: 5 +< [2879] courtship--and: 1 +< [2880] courtyard: 4 +< [2881] cousin: 10 +< [2882] cousin's: 1 +< [2883] cousins: 2 +< [2884] couveuse: 1 +< [2885] covenant: 2 +< [2886] cover: 10 +< [2887] covered: 57 +< [2888] covering: 4 +< [2889] coverings: 2 +< [2890] coverlet: 1 +< [2891] covers: 2 +< [2892] coveted: 4 +< [2893] covey: 1 +< [2894] cow: 7 +< [2895] cow-keeping: 1 +< [2896] coward: 1 +< [2897] cowardice: 2 +< [2898] cowherd: 3 +< [2899] cowherd-woman: 1 +< [2900] cowhouse: 3 +< [2901] cowman: 1 +< [2902] cows: 16 +< [2903] cozy: 2 +< [2904] crack: 4 +< [2905] cracked: 8 +< [2906] cracking: 3 +< [2907] crackled: 1 +< [2908] crackling: 1 +< [2909] cracks: 1 +< [2910] cramped: 1 +< [2911] cramps: 1 +< [2912] craned: 1 +< [2913] cranes: 1 +< [2914] craning: 2 +< [2915] crannies: 1 +< [2916] crash: 3 +< [2917] crashing: 2 +< [2918] cravat: 5 +< [2919] cravats: 1 +< [2920] craving: 4 +< [2921] crawled: 2 +< [2922] crawling: 3 +< [2923] crawls: 1 +< [2924] crazy: 4 +< [2925] creak: 5 +< [2926] creaked: 1 +< [2927] creaking: 6 +< [2928] creaky: 1 +< [2929] cream: 8 +< [2930] crease: 1 +< [2931] create: 4 +< [2932] created: 5 +< [2933] creating: 6 +< [2934] creation: 7 +< [2935] creator: 3 +< [2936] creature: 27 +< [2937] creature--that: 1 +< [2938] creatures: 9 +< [2939] credit: 7 +< [2940] creeds: 2 +< [2941] crept: 3 +< [2942] crescent: 2 +< [2943] crescent-shaped: 1 +< [2944] crest: 1 +< [2945] crestfallen: 2 +< [2946] crests: 1 +< [2947] cretonne: 1 +< [2948] crevices: 1 +< [2949] crib: 1 +< [2950] cried: 71 +< [2951] cried--"hideous: 1 +< [2952] cries: 3 +< [2953] crime: 9 +< [2954] crimea: 1 +< [2955] crimean: 1 +< [2956] criminal: 7 +< [2957] criminals: 2 +< [2958] crimson: 11 +< [2959] crimsoned: 7 +< [2960] crimsoning: 2 +< [2961] cringing: 1 +< [2962] crinolines: 1 +< [2963] crisis: 1 +< [2964] critic: 2 +< [2965] critic's: 1 +< [2966] critical: 3 +< [2967] criticism: 4 +< [2968] criticisms: 6 +< [2969] criticize: 3 +< [2970] criticized: 2 +< [2971] criticizing: 2 +< [2972] critics: 1 +< [2973] croak: 1 +< [2974] crochet: 3 +< [2975] crockery: 5 +< [2976] crois: 1 +< [2977] crony: 1 +< [2978] crook: 1 +< [2979] crooked: 1 +< [2980] crooking: 3 +< [2981] crop: 13 +< [2982] crop's: 1 +< [2983] cropped: 4 +< [2984] crops: 4 +< [2985] croquet: 8 +< [2986] croquet-ground: 1 +< [2987] cross: 24 +< [2988] cross-examine: 1 +< [2989] cross-examined: 1 +< [2990] cross-examining: 1 +< [2991] cross-piece: 1 +< [2992] crossed: 25 +< [2993] crosses: 2 +< [2994] crossing: 13 +< [2995] crossly: 2 +< [2996] crossroads: 1 +< [2997] crossway: 2 +< [2998] crouched: 4 +< [2999] croup: 1 +< [3000] crowd: 50 +< [3001] crowded: 5 +< [3002] crowding: 5 +< [3003] crowds: 3 +< [3004] crowing: 1 +< [3005] crown: 5 +< [3006] crowns: 3 +< [3007] crows: 1 +< [3008] crucifix: 1 +< [3009] crude: 1 +< [3010] cruel: 20 +< [3011] cruel--it's: 1 +< [3012] cruelest: 1 +< [3013] cruelly: 3 +< [3014] cruelties: 1 +< [3015] cruelty: 7 +< [3016] crumble: 2 +< [3017] crumbled: 2 +< [3018] crumbling: 1 +< [3019] crumbs: 1 +< [3020] crumpled: 2 +< [3021] crumpling: 1 +< [3022] crunching: 1 +< [3023] crusade: 2 +< [3024] crush: 3 +< [3025] crushed: 19 +< [3026] crust: 2 +< [3027] crusted: 1 +< [3028] cry: 23 +< [3029] cry...i'm: 1 +< [3030] crying: 19 +< [3031] crystal: 1 +< [3032] crystallization: 1 +< [3033] crystallized: 1 +< [3034] crystallizing: 1 +< [3035] cubic: 1 +< [3036] cuckoo: 3 +< [3037] cucumber: 2 +< [3038] cucumbers: 4 +< [3039] cuff: 2 +< [3040] cuffs: 2 +< [3041] culprit: 2 +< [3042] culprits: 1 +< [3043] cultivate: 2 +< [3044] cultivated: 7 +< [3045] cultivating: 2 +< [3046] cultivation: 2 +< [3047] culture: 19 +< [3048] culture--and: 1 +< [3049] culture--the: 1 +< [3050] culture--their: 1 +< [3051] cultured: 1 +< [3052] cunning: 2 +< [3053] cup: 24 +< [3054] cupboard: 1 +< [3055] cupboards: 4 +< [3056] cupola: 1 +< [3057] cups: 4 +< [3058] curb: 3 +< [3059] cure: 4 +< [3060] cured: 7 +< [3061] curieux: 1 +< [3062] curing: 1 +< [3063] curiosity: 7 +< [3064] curious: 4 +< [3065] curl: 2 +< [3066] curled: 3 +< [3067] curling: 4 +< [3068] curls: 10 +< [3069] curly: 13 +< [3070] curly-headed: 3 +< [3071] currant: 1 +< [3072] current: 7 +< [3073] currents: 1 +< [3074] curried: 1 +< [3075] curse: 3 +< [3076] curtain: 3 +< [3077] curtains: 8 +< [3078] curtsey: 4 +< [3079] curtseyed: 1 +< [3080] curvature: 1 +< [3081] curve: 5 +< [3082] curved: 8 +< [3083] curving: 1 +< [3084] cushion: 4 +< [3085] custom: 6 +< [3086] customary: 3 +< [3087] customer's: 1 +< [3088] customs: 1 +< [3089] cut: 74 +< [3090] cut--there'll: 1 +< [3091] cutlet: 2 +< [3092] cuts: 3 +< [3093] cutter: 1 +< [3094] cutting: 12 +< [3095] cutting-out: 1 +< [3096] cuttlefish: 3 +< [3097] cynical: 1 +< [3098] d: 2 +< [3099] d'anne: 1 +< [3100] d'emblée: 1 +< [3101] d'etat: 1 +< [3102] d'un: 1 +< [3103] d'ye: 1 +< [3104] d'être: 1 +< [3105] dad: 1 +< [3106] daily: 2 +< [3107] daintily: 2 +< [3108] dainty: 1 +< [3109] dale: 1 +< [3110] dam: 1 +< [3111] damage: 3 +< [3112] damaged: 1 +< [3113] damages: 4 +< [3114] dame: 2 +< [3115] dammed-up: 2 +< [3116] damn: 6 +< [3117] damnation: 1 +< [3118] damned: 2 +< [3119] damp: 5 +< [3120] damp-courses: 1 +< [3121] dampest: 1 +< [3122] dance: 11 +< [3123] dance--kitty: 1 +< [3124] danced: 8 +< [3125] dancer: 1 +< [3126] dancers: 1 +< [3127] dances: 1 +< [3128] dancing: 10 +< [3129] dancing--he: 1 +< [3130] dancing-girl: 1 +< [3131] dandified: 1 +< [3132] dandled: 1 +< [3133] dandy: 2 +< [3134] danger: 11 +< [3135] dangerous: 12 +< [3136] dangerously: 2 +< [3137] dangers: 1 +< [3138] dans: 2 +< [3139] dare: 15 +< [3140] dared: 10 +< [3141] daring: 5 +< [3142] dark: 41 +< [3143] dark-brown: 1 +< [3144] dark-red: 1 +< [3145] dark-skinned: 1 +< [3146] darkening: 3 +< [3147] darkly: 5 +< [3148] darkness: 15 +< [3149] darling: 35 +< [3150] darmstadt: 3 +< [3151] darned: 1 +< [3152] darns: 1 +< [3153] darted: 14 +< [3154] darting: 1 +< [3155] darts: 1 +< [3156] darya: 209 +< [3157] daryalov: 2 +< [3158] das: 2 +< [3159] dashed: 4 +< [3160] data: 6 +< [3161] date: 8 +< [3162] dates: 1 +< [3163] dating: 1 +< [3164] daudet: 1 +< [3165] daughter: 70 +< [3166] daughter's: 8 +< [3167] daughter--has: 1 +< [3168] daughters: 15 +< [3169] david: 2 +< [3170] dawn: 6 +< [3171] day: 308 +< [3172] day's: 1 +< [3173] day--that: 1 +< [3174] day-laborers: 1 +< [3175] daybreak: 2 +< [3176] daydream: 1 +< [3177] daydreams: 4 +< [3178] daylight: 3 +< [3179] days: 118 +< [3180] days--almost: 1 +< [3181] days--to: 1 +< [3182] daytime: 1 +< [3183] dazed: 1 +< [3184] dazzle: 1 +< [3185] dazzled: 3 +< [3186] dazzling: 6 +< [3187] de: 22 +< [3188] deacon: 12 +< [3189] deacon's: 3 +< [3190] dead: 39 +< [3191] deadly: 1 +< [3192] deaf: 2 +< [3193] deal: 55 +< [3194] dealing: 5 +< [3195] dear: 53 +< [3196] dearer: 5 +< [3197] dearest: 5 +< [3198] dearly: 2 +< [3199] death: 93 +< [3200] death's: 2 +< [3201] death--bear: 1 +< [3202] death--he: 1 +< [3203] death--which: 1 +< [3204] death-like: 1 +< [3205] deathbed: 2 +< [3206] deathlike: 2 +< [3207] debauchery: 1 +< [3208] debt: 8 +< [3209] debts: 14 +< [3210] debts--to: 1 +< [3211] decanter: 4 +< [3212] decanter-women: 1 +< [3213] decanters: 2 +< [3214] decay: 2 +< [3215] decaying: 1 +< [3216] deceit: 15 +< [3217] deceitful: 1 +< [3218] deceitfulness: 2 +< [3219] deceive: 9 +< [3220] deceived: 17 +< [3221] deceiving: 12 +< [3222] december: 2 +< [3223] decembrist: 1 +< [3224] decent: 8 +< [3225] deception: 5 +< [3226] decide: 24 +< [3227] decided: 43 +< [3228] decidedly: 2 +< [3229] deciding: 9 +< [3230] decision: 28 +< [3231] decisive: 6 +< [3232] decisively: 1 +< [3233] decked: 5 +< [3234] declaimed: 2 +< [3235] declaration: 4 +< [3236] declare: 3 +< [3237] declared: 5 +< [3238] declaring: 6 +< [3239] decline: 3 +< [3240] declined: 8 +< [3241] declivity: 1 +< [3242] decorated: 3 +< [3243] decoration: 2 +< [3244] decorum: 8 +< [3245] decrease: 1 +< [3246] decreased: 2 +< [3247] decree: 1 +< [3248] decrees: 1 +< [3249] dedicated: 1 +< [3250] dedicates: 1 +< [3251] deduce: 1 +< [3252] deduced: 2 +< [3253] deducing: 2 +< [3254] deductible: 1 +< [3255] deduction: 1 +< [3256] deductions: 2 +< [3257] deed: 4 +< [3258] deeds: 4 +< [3259] deemed: 1 +< [3260] deep: 25 +< [3261] deep-set: 1 +< [3262] deeper: 2 +< [3263] deepest: 1 +< [3264] deeply: 14 +< [3265] defeat: 2 +< [3266] defeated: 3 +< [3267] defect: 8 +< [3268] defective: 4 +< [3269] defects: 10 +< [3270] defend: 10 +< [3271] defended: 5 +< [3272] defending: 11 +< [3273] defense: 4 +< [3274] defensive: 1 +< [3275] defer: 1 +< [3276] deference: 3 +< [3277] deferential: 3 +< [3278] deferentially: 4 +< [3279] defiant: 2 +< [3280] deficient: 2 +< [3281] deficit: 1 +< [3282] define: 9 +< [3283] defined: 14 +< [3284] defines: 1 +< [3285] definite: 26 +< [3286] definitely: 8 +< [3287] definiteness: 5 +< [3288] definition: 1 +< [3289] definitions: 1 +< [3290] deflections: 1 +< [3291] deft: 2 +< [3292] deftly: 1 +< [3293] degenerated: 2 +< [3294] degenerating: 1 +< [3295] degrading: 5 +< [3296] degrading...don't: 1 +< [3297] degree: 16 +< [3298] degrees: 2 +< [3299] deigned: 1 +< [3300] deigning: 1 +< [3301] deigns: 1 +< [3302] dejected: 3 +< [3303] dejectedly: 2 +< [3304] dejection: 1 +< [3305] delay: 14 +< [3306] delayed: 3 +< [3307] delays: 1 +< [3308] deletions: 1 +< [3309] deliberate: 9 +< [3310] deliberately: 16 +< [3311] deliberating: 3 +< [3312] deliberation: 1 +< [3313] delicacies: 2 +< [3314] delicacy: 9 +< [3315] delicate: 17 +< [3316] delicieux: 1 +< [3317] delicious: 11 +< [3318] deliciously: 1 +< [3319] delight: 48 +< [3320] delighted: 66 +< [3321] delightful: 50 +< [3322] delightfully: 2 +< [3323] delights: 2 +< [3324] delinquent: 1 +< [3325] delirious: 3 +< [3326] delirium: 2 +< [3327] deliver: 2 +< [3328] deliverance: 1 +< [3329] delivered: 3 +< [3330] delivering: 3 +< [3331] delivery: 2 +< [3332] delusion: 1 +< [3333] demain: 1 +< [3334] demand: 6 +< [3335] demande: 1 +< [3336] demanded: 4 +< [3337] demanding: 1 +< [3338] demands: 1 +< [3339] dementat: 1 +< [3340] demi-monde: 2 +< [3341] demin: 1 +< [3342] demitrievitch: 2 +< [3343] demolish: 1 +< [3344] demonstrating: 1 +< [3345] demonstrations: 1 +< [3346] demur: 1 +< [3347] den: 1 +< [3348] denied: 2 +< [3349] denisitch: 2 +< [3350] denoted: 1 +< [3351] dense: 1 +< [3352] densely: 1 +< [3353] density: 1 +< [3354] dental: 1 +< [3355] deny: 7 +< [3356] denying: 4 +< [3357] depart: 2 +< [3358] departed: 6 +< [3359] departing: 1 +< [3360] department: 29 +< [3361] departments: 1 +< [3362] departure: 24 +< [3363] depend: 3 +< [3364] depended: 8 +< [3365] dependence: 4 +< [3366] dependent: 2 +< [3367] depends: 10 +< [3368] depict: 1 +< [3369] deplorable: 2 +< [3370] deportment: 2 +< [3371] depraved: 1 +< [3372] depraveé: 1 +< [3373] deprecating: 2 +< [3374] depressed: 10 +< [3375] depressing: 3 +< [3376] depression: 5 +< [3377] deprive: 3 +< [3378] deprived: 9 +< [3379] depriving: 1 +< [3380] deprè: 1 +< [3381] depth: 7 +< [3382] depths: 6 +< [3383] deputation: 4 +< [3384] deputations: 1 +< [3385] deputed: 1 +< [3386] deputy: 4 +< [3387] der: 1 +< [3388] deranged: 1 +< [3389] derangement: 1 +< [3390] derivative: 3 +< [3391] derive: 1 +< [3392] derived: 8 +< [3393] dernier: 2 +< [3394] derniere: 1 +< [3395] derogatory: 1 +< [3396] des: 5 +< [3397] descend: 3 +< [3398] descendant: 1 +< [3399] descendants: 1 +< [3400] describe: 4 +< [3401] described: 13 +< [3402] describing: 4 +< [3403] descried: 1 +< [3404] description: 3 +< [3405] descriptions: 1 +< [3406] desecrate: 1 +< [3407] desecrating: 1 +< [3408] desert: 2 +< [3409] deserted: 5 +< [3410] desertion: 2 +< [3411] deserve: 5 +< [3412] deserved: 3 +< [3413] deserving: 1 +< [3414] design: 1 +< [3415] designation: 1 +< [3416] designs: 1 +< [3417] desirable: 1 +< [3418] desire: 65 +< [3419] desire--he: 1 +< [3420] desired: 14 +< [3421] desires: 18 +< [3422] desires--_ennui: 1 +< [3423] desires...he: 1 +< [3424] desiring: 2 +< [3425] desirous: 1 +< [3426] desk: 2 +< [3427] desk--"it's: 1 +< [3428] despair: 53 +< [3429] despaired: 1 +< [3430] despairing: 6 +< [3431] despatched: 1 +< [3432] desperate: 10 +< [3433] desperately: 4 +< [3434] desperation: 1 +< [3435] despicable: 1 +< [3436] despise: 11 +< [3437] despised: 10 +< [3438] despises: 5 +< [3439] despising: 4 +< [3440] despite: 1 +< [3441] despondency: 3 +< [3442] despondent: 2 +< [3443] despondently: 1 +< [3444] dessous: 2 +< [3445] destination: 2 +< [3446] destinations: 1 +< [3447] destined: 5 +< [3448] destinies: 2 +< [3449] destiny: 3 +< [3450] destroy: 7 +< [3451] destroyed: 4 +< [3452] destroying: 1 +< [3453] destruction: 1 +< [3454] destructive: 1 +< [3455] detach: 1 +< [3456] detail: 18 +< [3457] detailed: 2 +< [3458] details: 44 +< [3459] detained: 4 +< [3460] detaining: 2 +< [3461] detected: 16 +< [3462] detecting: 3 +< [3463] detection: 5 +< [3464] deteriorating: 1 +< [3465] determination: 9 +< [3466] determine: 3 +< [3467] determined: 12 +< [3468] determining: 2 +< [3469] detest: 2 +< [3470] detestable: 1 +< [3471] detested: 1 +< [3472] detract: 2 +< [3473] detriment: 1 +< [3474] develop: 1 +< [3475] developed: 4 +< [3476] developing: 1 +< [3477] development: 21 +< [3478] developments: 1 +< [3479] devenu: 1 +< [3480] deviation: 1 +< [3481] devices: 1 +< [3482] devil: 13 +< [3483] devilish: 1 +< [3484] devising: 1 +< [3485] devoid: 5 +< [3486] devoir: 1 +< [3487] devote: 3 +< [3488] devoted: 11 +< [3489] devotes: 1 +< [3490] devotion: 8 +< [3491] devouring: 1 +< [3492] devout: 1 +< [3493] devoutly: 1 +< [3494] dew: 5 +< [3495] dewy: 3 +< [3496] dexterous: 1 +< [3497] dexterously: 1 +< [3498] diable: 1 +< [3499] diagonally--prohor: 1 +< [3500] diamond: 1 +< [3501] diamonds: 1 +< [3502] diana: 3 +< [3503] diana's: 1 +< [3504] diary: 3 +< [3505] dickens: 1 +< [3506] dictated: 2 +< [3507] dictates: 1 +< [3508] dictum: 1 +< [3509] did: 938 +< [3510] didactics: 1 +< [3511] didn't: 102 +< [3512] didst: 2 +< [3513] die: 34 +< [3514] die--this: 1 +< [3515] died: 26 +< [3516] dies: 1 +< [3517] diet: 1 +< [3518] differed: 3 +< [3519] difference: 21 +< [3520] differences: 1 +< [3521] different: 83 +< [3522] different-colored: 1 +< [3523] differently: 20 +< [3524] difficult: 54 +< [3525] difficulties: 20 +< [3526] difficulty: 41 +< [3527] diffidently: 1 +< [3528] diffused: 1 +< [3529] diffusing: 1 +< [3530] dig: 1 +< [3531] digested: 1 +< [3532] digestion: 1 +< [3533] digestive: 2 +< [3534] dignified: 5 +< [3535] dignitaries: 1 +< [3536] dignitary: 1 +< [3537] dignity: 19 +< [3538] dignity's: 1 +< [3539] digression: 1 +< [3540] dilapidated: 1 +< [3541] dilated: 2 +< [3542] dilemma: 1 +< [3543] dilettanti: 2 +< [3544] dim: 5 +< [3545] dimensions: 1 +< [3546] dimer-bartnyansky: 1 +< [3547] diminish: 2 +< [3548] diminished: 1 +< [3549] dimly: 2 +< [3550] dimmed: 1 +< [3551] dimples: 2 +< [3552] dine: 14 +< [3553] dined: 9 +< [3554] dines: 1 +< [3555] ding: 1 +< [3556] dining: 44 +< [3557] dining-room: 2 +< [3558] dinner: 145 +< [3559] dinner-hour: 2 +< [3560] dinners: 6 +< [3561] dinnertime: 2 +< [3562] dip: 1 +< [3563] diplomacy: 1 +< [3564] diplomat: 3 +< [3565] diplomatic: 6 +< [3566] dipper: 3 +< [3567] dippers: 2 +< [3568] dipping: 1 +< [3569] direct: 15 +< [3570] directed: 10 +< [3571] directing: 3 +< [3572] direction: 38 +< [3573] directions: 19 +< [3574] directly: 71 +< [3575] directness: 2 +< [3576] director: 10 +< [3577] directors: 2 +< [3578] dirt: 2 +< [3579] dirtiness: 1 +< [3580] dirty: 17 +< [3581] disabilities: 1 +< [3582] disadvantageous: 1 +< [3583] disadvantages: 2 +< [3584] disagreeable: 38 +< [3585] disagreeably: 1 +< [3586] disagreed: 1 +< [3587] disagreement: 3 +< [3588] disagreements: 1 +< [3589] disappear: 5 +< [3590] disappeared: 11 +< [3591] disappearing: 1 +< [3592] disappoint: 1 +< [3593] disappointed: 6 +< [3594] disappointment: 7 +< [3595] disappointments: 1 +< [3596] disapprobation: 3 +< [3597] disapproval: 2 +< [3598] disapprove: 1 +< [3599] disapproved: 2 +< [3600] disapproves: 1 +< [3601] disapproving: 1 +< [3602] disapprovingly: 6 +< [3603] disarranging: 1 +< [3604] disaster: 2 +< [3605] disastrous: 2 +< [3606] disbelief: 4 +< [3607] disbelieve: 2 +< [3608] disbelieved: 1 +< [3609] discarded: 1 +< [3610] discerned: 3 +< [3611] discerning: 1 +< [3612] discipline: 2 +< [3613] disclaim: 1 +< [3614] disclaimer: 3 +< [3615] disclaimers: 1 +< [3616] disclose: 2 +< [3617] disclosed: 1 +< [3618] discomfit: 1 +< [3619] discomfort: 3 +< [3620] discomforting: 2 +< [3621] disconcert: 1 +< [3622] disconcerted: 8 +< [3623] disconcerting: 1 +< [3624] disconnected: 2 +< [3625] disconnectedly: 1 +< [3626] disconnectedness: 1 +< [3627] disconsolately: 1 +< [3628] discontentedly: 3 +< [3629] discontinue: 1 +< [3630] discordant: 1 +< [3631] discount: 1 +< [3632] discourse: 4 +< [3633] discover: 8 +< [3634] discovered: 13 +< [3635] discoveries: 1 +< [3636] discovery: 6 +< [3637] discreet: 4 +< [3638] discreetly: 4 +< [3639] discretion: 1 +< [3640] discuss: 9 +< [3641] discussed: 4 +< [3642] discussing: 6 +< [3643] discussion: 30 +< [3644] discussions: 7 +< [3645] disdain: 2 +< [3646] disdained: 1 +< [3647] diseases: 1 +< [3648] disenchantment: 1 +< [3649] disengaged: 2 +< [3650] disengaging: 1 +< [3651] disent: 1 +< [3652] disentangle: 1 +< [3653] disgrace: 8 +< [3654] disgraced: 5 +< [3655] disgraceful: 7 +< [3656] disgracing: 1 +< [3657] disguise: 1 +< [3658] disguised: 1 +< [3659] disguises: 1 +< [3660] disgust: 8 +< [3661] disgusted: 3 +< [3662] disgusting: 13 +< [3663] dish: 5 +< [3664] dishes: 4 +< [3665] disheveled: 2 +< [3666] dishonest: 11 +< [3667] dishonesty: 1 +< [3668] dishonorable: 7 +< [3669] disillusion: 1 +< [3670] disinclination: 2 +< [3671] disinclined: 5 +< [3672] disjointed: 3 +< [3673] disk: 1 +< [3674] dislike: 19 +< [3675] disliked: 32 +< [3676] dislikes: 1 +< [3677] dismay: 14 +< [3678] dismayed: 5 +< [3679] dismiss: 1 +< [3680] dismissal: 1 +< [3681] dismissals: 1 +< [3682] dismissed: 3 +< [3683] dismissing: 2 +< [3684] dismounted: 1 +< [3685] disobedient: 1 +< [3686] disorder: 3 +< [3687] disorderly: 1 +< [3688] disorganized: 1 +< [3689] disown: 1 +< [3690] disowned: 1 +< [3691] dispel: 3 +< [3692] dispensaries: 2 +< [3693] dispensary: 2 +< [3694] display: 3 +< [3695] displayed: 1 +< [3696] displaying: 4 +< [3697] displeased: 17 +< [3698] displeasure: 6 +< [3699] disposal: 4 +< [3700] dispose: 1 +< [3701] disposed: 10 +< [3702] disposition: 5 +< [3703] disproportionate: 1 +< [3704] disproving: 1 +< [3705] disputants: 1 +< [3706] dispute: 8 +< [3707] disputed: 2 +< [3708] disputes: 6 +< [3709] disputing: 7 +< [3710] disquisition: 1 +< [3711] disquisitions: 2 +< [3712] disregard: 1 +< [3713] disregarded: 2 +< [3714] disreputable: 2 +< [3715] disreputable-looking: 1 +< [3716] disrespectfully: 2 +< [3717] dissatisfaction: 17 +< [3718] dissatisfied: 14 +< [3719] dissension: 1 +< [3720] dissent: 2 +< [3721] dissenting: 1 +< [3722] dissipate: 1 +< [3723] dissipated: 5 +< [3724] dissolute: 2 +< [3725] dissolving: 2 +< [3726] dissuade: 1 +< [3727] distance: 16 +< [3728] distances: 1 +< [3729] distant: 8 +< [3730] distaste: 1 +< [3731] distasteful: 15 +< [3732] distinct: 12 +< [3733] distinction: 6 +< [3734] distinctions: 1 +< [3735] distinctive: 1 +< [3736] distinctly: 33 +< [3737] distinctness: 4 +< [3738] distinguish: 6 +< [3739] distinguished: 9 +< [3740] distinguishing: 1 +< [3741] distort: 2 +< [3742] distorted: 2 +< [3743] distortion: 1 +< [3744] distract: 4 +< [3745] distracted: 4 +< [3746] distracting: 3 +< [3747] distraction: 2 +< [3748] distractions: 2 +< [3749] distracts: 1 +< [3750] distraught: 3 +< [3751] distress: 15 +< [3752] distress--he: 1 +< [3753] distressed: 10 +< [3754] distressing: 1 +< [3755] distribute: 6 +< [3756] distributed: 7 +< [3757] distributing: 8 +< [3758] distribution: 7 +< [3759] distributor: 1 +< [3760] distributors: 1 +< [3761] district: 47 +< [3762] district's: 1 +< [3763] districts: 4 +< [3764] disturb: 6 +< [3765] disturbance: 3 +< [3766] disturbed: 14 +< [3767] disturbing: 3 +< [3768] ditch: 6 +< [3769] ditches: 1 +< [3770] diva: 1 +< [3771] divan: 1 +< [3772] diverging: 1 +< [3773] diverse: 3 +< [3774] diversion: 2 +< [3775] divert: 2 +< [3776] diverted: 2 +< [3777] diverting: 1 +< [3778] divide: 4 +< [3779] divided: 20 +< [3780] dividing: 3 +< [3781] divine: 3 +< [3782] divined: 3 +< [3783] divining: 3 +< [3784] divinity: 5 +< [3785] division: 12 +< [3786] divorce: 88 +< [3787] divorce--another: 1 +< [3788] divorce--at: 1 +< [3789] divorce--yes: 1 +< [3790] divorced: 7 +< [3791] divorces: 2 +< [3792] dix: 1 +< [3793] dmitri: 1 +< [3794] dmitrich: 1 +< [3795] dmitrievitch: 46 +< [3796] dmitrievitch's: 1 +< [3797] dmitrievna: 3 +< [3798] do: 830 +< [3799] do--combed: 1 +< [3800] do--does: 1 +< [3801] do--his: 1 +< [3802] do--only: 1 +< [3803] do--that: 1 +< [3804] do--that's: 1 +< [3805] doch: 1 +< [3806] dochots: 1 +< [3807] dock: 1 +< [3808] doctor: 133 +< [3809] doctor's: 19 +< [3810] doctored: 2 +< [3811] doctoring: 4 +< [3812] doctors: 11 +< [3813] doctors...why: 1 +< [3814] doctrine: 8 +< [3815] doctrines: 3 +< [3816] documents: 3 +< [3817] dodged: 1 +< [3818] does: 113 +< [3819] doesn't: 57 +< [3820] dog: 26 +< [3821] dogcarts: 1 +< [3822] dogged: 2 +< [3823] doggedly: 1 +< [3824] dogmas: 1 +< [3825] dogs: 17 +< [3826] dogs--you: 1 +< [3827] doing: 132 +< [3828] doing--go: 1 +< [3829] doing--that: 1 +< [3830] doings: 3 +< [3831] dolgovushin's: 1 +< [3832] doling: 1 +< [3833] dolinka: 2 +< [3834] doll: 5 +< [3835] dolls: 2 +< [3836] dolly: 279 +< [3837] dolly's: 27 +< [3838] domain: 9 +< [3839] dome: 2 +< [3840] domestic: 10 +< [3841] don: 2 +< [3842] don't: 547 +< [3843] don't--and: 1 +< [3844] don't...yes: 1 +< [3845] donate: 3 +< [3846] donation: 1 +< [3847] donations: 15 +< [3848] done: 211 +< [3849] done--not: 1 +< [3850] done--what: 1 +< [3851] done--you: 1 +< [3852] donnez-lui: 1 +< [3853] donors: 1 +< [3854] door: 184 +< [3855] doorkeeper: 4 +< [3856] doors: 16 +< [3857] doorway: 28 +< [3858] dose: 2 +< [3859] dost: 1 +< [3860] dotted: 2 +< [3861] double: 9 +< [3862] doubled: 1 +< [3863] doubly: 2 +< [3864] doubt: 78 +< [3865] doubt--doubt: 1 +< [3866] doubt--kept: 1 +< [3867] doubt--that: 1 +< [3868] doubted: 7 +< [3869] doubtful: 4 +< [3870] doubtfully: 1 +< [3871] doubting: 1 +< [3872] doubtless: 1 +< [3873] doubts: 21 +< [3874] dough: 2 +< [3875] dove: 2 +< [3876] dovelike: 1 +< [3877] doves: 2 +< [3878] down: 464 +< [3879] down--a: 1 +< [3880] downcast: 3 +< [3881] downhill: 2 +< [3882] downloading: 1 +< [3883] downpour: 2 +< [3884] downstairs: 13 +< [3885] downwards: 1 +< [3886] downy: 2 +< [3887] dowry: 1 +< [3888] doze: 1 +< [3889] dozed: 1 +< [3890] dozen: 3 +< [3891] dozens: 2 +< [3892] dozing: 5 +< [3893] dr: 2 +< [3894] drabanti: 1 +< [3895] drag: 6 +< [3896] dragged: 2 +< [3897] dragging: 5 +< [3898] drags: 1 +< [3899] draht: 1 +< [3900] dram: 2 +< [3901] dram--that: 1 +< [3902] drama: 1 +< [3903] drank: 14 +< [3904] draper's: 1 +< [3905] drauf: 1 +< [3906] draw: 19 +< [3907] drawback: 1 +< [3908] drawbacks: 1 +< [3909] drawer: 3 +< [3910] drawers: 2 +< [3911] drawing: 100 +< [3912] drawing-room: 9 +< [3913] drawling: 3 +< [3914] drawn: 20 +< [3915] drawn-up: 1 +< [3916] dray-horses: 1 +< [3917] dray-horses--they: 1 +< [3918] dread: 14 +< [3919] dreaded: 11 +< [3920] dreadful: 7 +< [3921] dreadful-looking: 1 +< [3922] dreadfully: 8 +< [3923] dreading: 1 +< [3924] dream: 29 +< [3925] dreamed: 10 +< [3926] dreamily: 5 +< [3927] dreaming: 10 +< [3928] dreams: 14 +< [3929] dreamy: 2 +< [3930] dreariest: 1 +< [3931] dreariness: 1 +< [3932] dreary: 7 +< [3933] drenched: 6 +< [3934] drenching: 2 +< [3935] dress: 88 +< [3936] dress--an: 1 +< [3937] dressed: 39 +< [3938] dresser: 1 +< [3939] dresses: 16 +< [3940] dressing: 27 +< [3941] dressing-gown: 5 +< [3942] dressmaker: 2 +< [3943] drew: 64 +< [3944] dried: 4 +< [3945] dried-up: 1 +< [3946] drift: 3 +< [3947] drifted: 1 +< [3948] drifting: 2 +< [3949] drill: 1 +< [3950] drills: 1 +< [3951] drink: 44 +< [3952] drink--delirium: 1 +< [3953] drink...kostya: 1 +< [3954] drinking: 37 +< [3955] drinks: 4 +< [3956] drip: 2 +< [3957] drive: 59 +< [3958] driven: 21 +< [3959] driver: 8 +< [3960] driver's: 1 +< [3961] drivers: 3 +< [3962] drives: 2 +< [3963] driving: 32 +< [3964] droll: 3 +< [3965] drone: 1 +< [3966] drones: 1 +< [3967] droop: 2 +< [3968] drooped: 2 +< [3969] drooping: 3 +< [3970] drop: 17 +< [3971] drop...this: 1 +< [3972] dropped: 52 +< [3973] dropping: 14 +< [3974] drops: 9 +< [3975] drove: 78 +< [3976] drown: 4 +< [3977] drowned: 5 +< [3978] drowning: 1 +< [3979] drowsy: 1 +< [3980] drudgery: 1 +< [3981] drugstores: 1 +< [3982] drum: 1 +< [3983] drunk: 25 +< [3984] drunkard: 2 +< [3985] drunkards--the: 1 +< [3986] drunken: 2 +< [3987] drunken-looking: 1 +< [3988] drunkenness: 2 +< [3989] dry: 16 +< [3990] dry-looking: 1 +< [3991] drying: 5 +< [3992] dryly: 4 +< [3993] dryness: 1 +< [3994] du: 5 +< [3995] dubious: 4 +< [3996] dubois: 1 +< [3997] duc: 1 +< [3998] duchess: 4 +< [3999] duchess's: 1 +< [4000] duck: 1 +< [4001] ducks: 4 +< [4002] due: 16 +< [4003] due--that: 1 +< [4004] duel: 12 +< [4005] duel--inevitable: 1 +< [4006] duel--would: 1 +< [4007] dueling: 2 +< [4008] dues: 1 +< [4009] duets: 1 +< [4010] dull: 36 +< [4011] dullest: 1 +< [4012] dulness: 1 +< [4013] duly: 4 +< [4014] dumb: 1 +< [4015] dumbbells: 2 +< [4016] dung: 5 +< [4017] dung-heaps: 1 +< [4018] dunyasha: 3 +< [4019] duplicity: 1 +< [4020] duration: 2 +< [4021] durchlaucht: 2 +< [4022] during: 85 +< [4023] dusk: 2 +< [4024] dusky: 1 +< [4025] dussot's: 3 +< [4026] dust: 17 +< [4027] dustmen: 1 +< [4028] dusty: 4 +< [4029] dutch: 3 +< [4030] duties: 39 +< [4031] dutiful: 1 +< [4032] duty: 44 +< [4033] duty--so: 1 +< [4034] duty...but: 1 +< [4035] dwelling: 1 +< [4036] dwelt: 2 +< [4037] dyed: 1 +< [4038] dying: 36 +< [4039] dying--yes: 1 +< [4040] e-mail: 1 +< [4041] ea: 1 +< [4042] each: 130 +< [4043] eager: 30 +< [4044] eagerly: 17 +< [4045] eagerly--some: 1 +< [4046] eagerness: 14 +< [4047] eagle: 1 +< [4048] ear: 18 +< [4049] earlier: 12 +< [4050] earliest: 2 +< [4051] early: 53 +< [4052] earn: 1 +< [4053] earnest: 4 +< [4054] earnestly: 3 +< [4055] earnestness: 1 +< [4056] earning: 1 +< [4057] earrings: 1 +< [4058] ears: 32 +< [4059] earth: 21 +< [4060] earthed: 1 +< [4061] earthly: 7 +< [4062] ease: 28 +< [4063] easel: 1 +< [4064] easier: 17 +< [4065] easiest: 2 +< [4066] easiest--instantaneous: 1 +< [4067] easily: 26 +< [4068] east: 4 +< [4069] easter: 3 +< [4070] eastern: 2 +< [4071] eastern--much: 1 +< [4072] easy: 37 +< [4073] easy--as: 1 +< [4074] easy-chair: 1 +< [4075] eat: 24 +< [4076] eaten: 5 +< [4077] eating: 13 +< [4078] eats: 1 +< [4079] ebook: 11 +< [4080] ebooks: 7 +< [4081] eccentric: 1 +< [4082] ecclesiastical: 5 +< [4083] echo: 1 +< [4084] echoed: 1 +< [4085] eclipse: 1 +< [4086] economic: 9 +< [4087] economists: 1 +< [4088] economy: 8 +< [4089] economy--in: 1 +< [4090] ecstasies: 2 +< [4091] ecstasy: 14 +< [4092] ecstatic: 2 +< [4093] ecstatically: 1 +< [4094] edge: 16 +< [4095] edged: 2 +< [4096] edges: 1 +< [4097] edging: 1 +< [4098] edible: 1 +< [4099] edification: 1 +< [4100] edifice: 3 +< [4101] edifices: 1 +< [4102] edition: 1 +< [4103] editions: 4 +< [4104] editor: 1 +< [4105] editors: 2 +< [4106] educate: 6 +< [4107] educated: 10 +< [4108] education: 46 +< [4109] education--the: 1 +< [4110] educational: 3 +< [4111] edwarde: 1 +< [4112] eel: 1 +< [4113] effaced: 1 +< [4114] effect: 28 +< [4115] effective--and: 1 +< [4116] effects: 4 +< [4117] effectual: 1 +< [4118] effeminate: 2 +< [4119] effervescing: 1 +< [4120] efficient: 2 +< [4121] effort: 53 +< [4122] efforts: 29 +< [4123] effrontery: 1 +< [4124] efimovna: 1 +< [4125] eggs: 4 +< [4126] egoism: 2 +< [4127] egoistic: 1 +< [4128] egyptian: 3 +< [4129] eh: 40 +< [4130] eight: 29 +< [4131] eighteen: 2 +< [4132] eighth: 1 +< [4133] eighty: 4 +< [4134] ein: 2 +< [4135] einfaches: 1 +< [4136] either: 86 +< [4137] ejected: 1 +< [4138] ejus: 3 +< [4139] ekaterina: 4 +< [4140] elaborate: 3 +< [4141] elaborated: 1 +< [4142] elastic: 1 +< [4143] elasticity: 1 +< [4144] elation: 1 +< [4145] elbow: 17 +< [4146] elbow-room: 1 +< [4147] elbows: 15 +< [4148] elder: 29 +< [4149] elder's: 1 +< [4150] elder's--hens: 1 +< [4151] elderly: 6 +< [4152] elders: 2 +< [4153] eldest: 5 +< [4154] elect: 5 +< [4155] elected: 5 +< [4156] electing: 1 +< [4157] election: 14 +< [4158] elections: 26 +< [4159] electric: 4 +< [4160] electricity: 5 +< [4161] electronic: 27 +< [4162] electronically: 2 +< [4163] elegance: 9 +< [4164] elegant: 13 +< [4165] elegantly: 1 +< [4166] element: 12 +< [4167] elemental: 1 +< [4168] elements: 4 +< [4169] elephant: 1 +< [4170] eletsky: 1 +< [4171] elevated: 5 +< [4172] elevation: 2 +< [4173] eleven: 9 +< [4174] elicit: 1 +< [4175] eligible: 3 +< [4176] elizaveta: 1 +< [4177] elks: 1 +< [4178] elle: 4 +< [4179] elliot's: 1 +< [4180] ellipse: 1 +< [4181] elm-tree: 1 +< [4182] eloquent: 2 +< [4183] else: 92 +< [4184] else--evolution: 1 +< [4185] else--the: 1 +< [4186] elsewhere: 2 +< [4187] elucidate: 1 +< [4188] eluded: 1 +< [4189] emaciated: 5 +< [4190] emaciation: 4 +< [4191] email: 3 +< [4192] emancipation: 9 +< [4193] embarrassed: 16 +< [4194] embarrassing: 1 +< [4195] embarrassment: 16 +< [4196] embittered: 1 +< [4197] embodied: 2 +< [4198] embodiment: 1 +< [4199] embrace: 1 +< [4200] embraced: 10 +< [4201] embraces: 1 +< [4202] embracing: 6 +< [4203] embroidered: 10 +< [4204] embroidery: 1 +< [4205] emerald: 1 +< [4206] emerge: 1 +< [4207] emerged: 1 +< [4208] emergency: 1 +< [4209] emmets: 1 +< [4210] emotion: 36 +< [4211] emotional: 3 +< [4212] emotionalism: 1 +< [4213] emotions: 6 +< [4214] emperor: 2 +< [4215] emphasis: 7 +< [4216] emphasized: 1 +< [4217] emphasizing: 2 +< [4218] empire: 1 +< [4219] employ: 1 +< [4220] employed: 2 +< [4221] employee: 1 +< [4222] employees: 2 +< [4223] employer: 2 +< [4224] employer's: 1 +< [4225] empowered: 1 +< [4226] emptied: 3 +< [4227] empty: 17 +< [4228] emptying: 1 +< [4229] en: 1 +< [4230] enable: 2 +< [4231] enacted: 1 +< [4232] enchained: 1 +< [4233] enchanted: 3 +< [4234] enchanting: 1 +< [4235] enchantment: 1 +< [4236] enchants: 1 +< [4237] encircle: 1 +< [4238] encircled: 1 +< [4239] enclose: 2 +< [4240] enclosed: 2 +< [4241] encompassed: 1 +< [4242] encompassing: 1 +< [4243] encore: 1 +< [4244] encounters: 1 +< [4245] encourage: 2 +< [4246] encouraged: 3 +< [4247] encouragement: 2 +< [4248] encouraging: 4 +< [4249] encouragingly: 1 +< [4250] encroaching: 1 +< [4251] end: 111 +< [4252] end"--he: 1 +< [4253] end--it's: 1 +< [4254] endeavored: 1 +< [4255] endeavoring: 1 +< [4256] endeavors: 1 +< [4257] ended: 19 +< [4258] ending: 4 +< [4259] endless: 6 +< [4260] endow: 1 +< [4261] endowed: 1 +< [4262] ends: 11 +< [4263] endurance: 2 +< [4264] endure: 10 +< [4265] endured: 1 +< [4266] enduring: 1 +< [4267] enemies: 8 +< [4268] enemy: 15 +< [4269] enemy's: 1 +< [4270] enendons: 1 +< [4271] energetic: 5 +< [4272] energetically: 1 +< [4273] energies: 5 +< [4274] energy: 23 +< [4275] enervated: 1 +< [4276] enfant: 4 +< [4277] enfants: 1 +< [4278] enfers: 1 +< [4279] engage: 2 +< [4280] engaged: 10 +< [4281] engagement: 5 +< [4282] engaging: 1 +< [4283] engine: 3 +< [4284] engine-driver: 1 +< [4285] engineer: 1 +< [4286] engineers: 2 +< [4287] england: 8 +< [4288] english: 66 +< [4289] englishman: 17 +< [4290] englishman's: 2 +< [4291] englishmen: 2 +< [4292] englishwoman: 2 +< [4293] engouement: 1 +< [4294] engouements: 1 +< [4295] engravings: 4 +< [4296] engrossed: 14 +< [4297] engrossing: 1 +< [4298] enigma: 3 +< [4299] enigmatic: 2 +< [4300] enjoined: 1 +< [4301] enjoy: 17 +< [4302] enjoyable: 1 +< [4303] enjoyed: 16 +< [4304] enjoying: 19 +< [4305] enjoyment: 18 +< [4306] enjoys: 4 +< [4307] enlarge: 1 +< [4308] enlarged: 2 +< [4309] enlarging: 2 +< [4310] enlightened: 3 +< [4311] enlightenment: 3 +< [4312] enoch: 5 +< [4313] enoch's: 1 +< [4314] enormous: 3 +< [4315] enormously: 1 +< [4316] enos: 1 +< [4317] enough: 71 +< [4318] enough--that's: 1 +< [4319] enrich: 1 +< [4320] enriched: 1 +< [4321] enrolled: 1 +< [4322] ensuing: 1 +< [4323] ensuring: 1 +< [4324] enter: 22 +< [4325] entered: 24 +< [4326] entering: 16 +< [4327] enterprise: 2 +< [4328] enters: 3 +< [4329] entertain: 2 +< [4330] entertained: 1 +< [4331] entertaining: 1 +< [4332] entertainment: 3 +< [4333] entertainments: 3 +< [4334] enthusiasm: 5 +< [4335] enthusiast: 1 +< [4336] enthusiastic: 8 +< [4337] enthusiastically: 2 +< [4338] enthusiastically--followed: 1 +< [4339] enticing: 1 +< [4340] entirely: 20 +< [4341] entity: 3 +< [4342] entr'acte: 3 +< [4343] entrance: 33 +< [4344] entrance-door: 1 +< [4345] entrancing: 1 +< [4346] entreat: 7 +< [4347] entreaties: 2 +< [4348] entreaty: 2 +< [4349] entrez: 1 +< [4350] entrusted: 1 +< [4351] entry: 7 +< [4352] enumerating: 1 +< [4353] enunciated: 2 +< [4354] envelope: 5 +< [4355] enveloped: 1 +< [4356] envied: 7 +< [4357] envies: 1 +< [4358] envious: 8 +< [4359] enviously: 2 +< [4360] envy: 18 +< [4361] epaulet: 1 +< [4362] epaulets: 4 +< [4363] epigram: 3 +< [4364] epigrammatic: 1 +< [4365] episode: 2 +< [4366] epistle: 3 +< [4367] epoch: 2 +< [4368] equable: 2 +< [4369] equal: 4 +< [4370] equally: 10 +< [4371] equals: 2 +< [4372] equation: 1 +< [4373] equerry's: 1 +< [4374] equipment: 3 +< [4375] equivalent: 1 +< [4376] eradicating: 1 +< [4377] erase: 2 +< [4378] erect: 10 +< [4379] ergushovo: 9 +< [4380] erlaucht: 2 +< [4381] errand: 1 +< [4382] erroneousness: 1 +< [4383] error: 6 +< [4384] errors: 2 +< [4385] es: 2 +< [4386] escape: 23 +< [4387] escaped: 1 +< [4388] escaping: 2 +< [4389] eschewed: 1 +< [4390] escort: 2 +< [4391] escorted: 7 +< [4392] escorting: 3 +< [4393] especial: 2 +< [4394] especially: 110 +< [4395] essence: 1 +< [4396] essential: 23 +< [4397] essentially: 1 +< [4398] est: 9 +< [4399] established: 7 +< [4400] establishing: 1 +< [4401] estate: 25 +< [4402] estates: 2 +< [4403] esteem: 5 +< [4404] esteemed: 1 +< [4405] estimate: 1 +< [4406] estimation: 2 +< [4407] estrange: 1 +< [4408] estrangement: 2 +< [4409] et: 10 +< [4410] etc: 4 +< [4411] eternal: 4 +< [4412] eternity: 1 +< [4413] etext: 2 +< [4414] ethical: 1 +< [4415] ethnographic: 1 +< [4416] ethnographical: 2 +< [4417] etiquette: 2 +< [4418] europe: 18 +< [4419] european: 10 +< [4420] evaded: 1 +< [4421] evading: 1 +< [4422] evasively: 1 +< [4423] eve: 1 +< [4424] even: 351 +< [4425] even--anything: 1 +< [4426] even--as: 1 +< [4427] even-thudding: 1 +< [4428] evening: 127 +< [4429] evening--and: 1 +< [4430] evenings: 3 +< [4431] evenly: 5 +< [4432] event: 16 +< [4433] events: 8 +< [4434] eventualities: 1 +< [4435] ever: 132 +< [4436] ever--not: 1 +< [4437] everlasting: 5 +< [4438] every: 248 +< [4439] every-day: 1 +< [4440] everybody: 9 +< [4441] everyday: 2 +< [4442] everyone: 152 +< [4443] everyone's: 3 +< [4444] everything: 340 +< [4445] everything'll: 1 +< [4446] everything's: 8 +< [4447] everything--a: 1 +< [4448] everything--freedom: 1 +< [4449] everything--i: 1 +< [4450] everything--the: 1 +< [4451] everything...told: 1 +< [4452] everywhere: 18 +< [4453] everywhere...a--a--a: 1 +< [4454] evidence: 7 +< [4455] evident: 18 +< [4456] evidently: 39 +< [4457] evil: 27 +< [4458] evil--the: 1 +< [4459] evils: 1 +< [4460] evoked: 4 +< [4461] evolution: 5 +< [4462] ewig: 1 +< [4463] exact: 10 +< [4464] exacted: 2 +< [4465] exacting: 1 +< [4466] exactly: 36 +< [4467] exaggerate: 1 +< [4468] exaggerated: 8 +< [4469] exaggerating: 2 +< [4470] exaggeration: 4 +< [4471] exalted: 12 +< [4472] exalting: 1 +< [4473] examination: 5 +< [4474] examine: 3 +< [4475] examined: 6 +< [4476] examining: 7 +< [4477] example: 7 +< [4478] examples: 2 +< [4479] exasperate: 1 +< [4480] exasperated: 20 +< [4481] exasperating: 1 +< [4482] exasperation: 7 +< [4483] exceedingly: 16 +< [4484] excellency: 21 +< [4485] excellency's: 2 +< [4486] excellent: 21 +< [4487] except: 39 +< [4488] excepted: 1 +< [4489] exception: 3 +< [4490] exceptional: 9 +< [4491] exceptionally: 9 +< [4492] exceptions: 2 +< [4493] excess: 3 +< [4494] excessive: 2 +< [4495] excessively: 2 +< [4496] excessivement: 1 +< [4497] exchange: 4 +< [4498] exchanged: 7 +< [4499] exchanging: 3 +< [4500] excitability: 1 +< [4501] excite: 5 +< [4502] excited: 32 +< [4503] excitedly: 3 +< [4504] excitement: 50 +< [4505] exciting: 4 +< [4506] exclaimed: 5 +< [4507] exclamations: 1 +< [4508] excludes: 1 +< [4509] excluding: 1 +< [4510] exclusion: 1 +< [4511] exclusively: 1 +< [4512] excursion: 1 +< [4513] excuse: 44 +< [4514] excused: 1 +< [4515] excuses: 1 +< [4516] excusing: 2 +< [4517] execution: 3 +< [4518] executive: 1 +< [4519] exemplary: 1 +< [4520] exempt: 2 +< [4521] exercise: 16 +< [4522] exercised: 1 +< [4523] exercises: 2 +< [4524] exert: 1 +< [4525] exerted: 2 +< [4526] exertion: 3 +< [4527] exhaust: 1 +< [4528] exhausted: 9 +< [4529] exhausting: 1 +< [4530] exhaustion: 1 +< [4531] exhibition: 2 +< [4532] exhibitions: 2 +< [4533] exhilarating: 1 +< [4534] exhortation: 2 +< [4535] exile: 1 +< [4536] exist: 14 +< [4537] existe: 1 +< [4538] existed: 12 +< [4539] existence: 37 +< [4540] existence--and: 2 +< [4541] existing: 9 +< [4542] exists: 4 +< [4543] exonerate: 1 +< [4544] exorcise: 1 +< [4545] expanses: 1 +< [4546] expect: 29 +< [4547] expect...thee: 1 +< [4548] expectation: 7 +< [4549] expectations: 2 +< [4550] expected: 77 +< [4551] expecting: 41 +< [4552] expecting--from: 1 +< [4553] expects: 1 +< [4554] expedition: 8 +< [4555] expelled: 1 +< [4556] expend: 1 +< [4557] expended: 2 +< [4558] expenditure: 6 +< [4559] expenditures: 1 +< [4560] expense: 4 +< [4561] expenses: 12 +< [4562] expensive: 6 +< [4563] experience: 11 +< [4564] experienced: 30 +< [4565] experiences: 3 +< [4566] experiencing: 8 +< [4567] experiment: 5 +< [4568] experiments: 1 +< [4569] expert: 1 +< [4570] expiate: 1 +< [4571] expiated: 1 +< [4572] explain: 51 +< [4573] explained: 21 +< [4574] explaining: 16 +< [4575] explains: 1 +< [4576] explanation: 16 +< [4577] explanations: 3 +< [4578] exploded: 1 +< [4579] exploiting: 1 +< [4580] exploration: 1 +< [4581] exploring: 1 +< [4582] exporting: 1 +< [4583] expose: 1 +< [4584] exposed: 6 +< [4585] exposition: 4 +< [4586] expound: 3 +< [4587] expounded: 2 +< [4588] expounding: 2 +< [4589] express: 32 +< [4590] expressed: 37 +< [4591] expressing: 21 +< [4592] expression: 191 +< [4593] expression--a: 1 +< [4594] expressions: 6 +< [4595] expressive: 4 +< [4596] expressly: 1 +< [4597] exquisite: 37 +< [4598] exquisite--such: 1 +< [4599] extant: 1 +< [4600] extended: 1 +< [4601] extent: 5 +< [4602] exterior: 1 +< [4603] external: 19 +< [4604] externally: 3 +< [4605] extinguish: 1 +< [4606] extinguished: 1 +< [4607] extinguishing: 1 +< [4608] extolling: 1 +< [4609] extra: 3 +< [4610] extract: 1 +< [4611] extracted: 1 +< [4612] extracts: 2 +< [4613] extraneous: 4 +< [4614] extraordinarily: 12 +< [4615] extraordinary: 22 +< [4616] extravagance--that: 1 +< [4617] extreme: 26 +< [4618] extreme--we: 1 +< [4619] extremely: 31 +< [4620] extremes: 3 +< [4621] extremity: 1 +< [4622] extricate: 3 +< [4623] extricated: 2 +< [4624] extricating: 1 +< [4625] eye: 18 +< [4626] eyebrows: 15 +< [4627] eyeing: 2 +< [4628] eyelashes: 4 +< [4629] eyelid: 1 +< [4630] eyelids: 8 +< [4631] eyes: 547 +< [4632] eyes--and: 1 +< [4633] eyewitnesses: 1 +< [4634] f: 2 +< [4635] f3: 1 +< [4636] fable: 2 +< [4637] face: 539 +< [4638] face--always: 1 +< [4639] face--look: 1 +< [4640] face--so: 1 +< [4641] faced: 2 +< [4642] faces: 28 +< [4643] facetious: 1 +< [4644] facilities: 4 +< [4645] facility: 4 +< [4646] facing: 19 +< [4647] fact: 112 +< [4648] fact--informs: 1 +< [4649] fact--that: 1 +< [4650] factor: 1 +< [4651] factories: 1 +< [4652] factory: 3 +< [4653] facts: 14 +< [4654] faculties: 4 +< [4655] faculty: 10 +< [4656] faded: 2 +< [4657] faggot-stack: 1 +< [4658] fagots: 1 +< [4659] fail: 9 +< [4660] failed: 12 +< [4661] failing: 6 +< [4662] failings: 1 +< [4663] failure: 8 +< [4664] failures: 2 +< [4665] faint: 21 +< [4666] fainter: 1 +< [4667] faintest: 3 +< [4668] fainting: 1 +< [4669] faintly: 7 +< [4670] fair: 15 +< [4671] fair-haired: 2 +< [4672] fairbanks: 1 +< [4673] faire: 3 +< [4674] fairly: 7 +< [4675] fairness: 1 +< [4676] fairy: 1 +< [4677] fairyland: 1 +< [4678] fais: 2 +< [4679] fait: 6 +< [4680] faith: 41 +< [4681] faith--i: 1 +< [4682] faith--or: 1 +< [4683] faithful: 3 +< [4684] faithless: 2 +< [4685] fall: 32 +< [4686] fall--i: 1 +< [4687] fall--kuzovlev's: 1 +< [4688] fallen: 26 +< [4689] falling: 16 +< [4690] fallow: 4 +< [4691] fallows: 1 +< [4692] falls: 5 +< [4693] false: 26 +< [4694] falsehood: 12 +< [4695] falsehoods: 1 +< [4696] falsely: 1 +< [4697] falsity: 6 +< [4698] falter: 1 +< [4699] faltering: 1 +< [4700] fameux: 1 +< [4701] familiar: 44 +< [4702] familiarity: 3 +< [4703] families: 8 +< [4704] family: 111 +< [4705] family's: 1 +< [4706] family--her: 1 +< [4707] family--the: 1 +< [4708] famine: 1 +< [4709] famished: 1 +< [4710] famling: 1 +< [4711] famous: 3 +< [4712] fan: 7 +< [4713] fancied: 51 +< [4714] fancied--eyes: 1 +< [4715] fancies: 1 +< [4716] fancy: 50 +< [4717] fancying: 3 +< [4718] fanned: 1 +< [4719] fanning: 1 +< [4720] fanny: 2 +< [4721] fantasia: 6 +< [4722] fantasies: 1 +< [4723] fantastic: 3 +< [4724] far: 109 +< [4725] far--and: 1 +< [4726] far--in: 1 +< [4727] far-away: 2 +< [4728] farce: 2 +< [4729] fardeau: 4 +< [4730] fare: 5 +< [4731] farewell: 5 +< [4732] farinaceous: 1 +< [4733] farm: 12 +< [4734] farmer: 1 +< [4735] farmers: 1 +< [4736] farmhouse: 1 +< [4737] farming: 17 +< [4738] farming--you: 1 +< [4739] farmyard: 3 +< [4740] farther: 9 +< [4741] farthest: 1 +< [4742] farthing: 5 +< [4743] fascinated: 11 +< [4744] fascinating: 11 +< [4745] fascination: 2 +< [4746] fashion: 22 +< [4747] fashion,--most: 1 +< [4748] fashion--of: 1 +< [4749] fashionable: 19 +< [4750] fashionably: 1 +< [4751] fashions: 1 +< [4752] fast: 7 +< [4753] fasten: 1 +< [4754] fastened: 16 +< [4755] fastening: 3 +< [4756] faster: 4 +< [4757] fastidious: 1 +< [4758] fasting: 1 +< [4759] fasts: 3 +< [4760] fat: 29 +< [4761] fatal: 1 +< [4762] fatality: 1 +< [4763] fatally: 2 +< [4764] fate: 14 +< [4765] father: 106 +< [4766] father's: 23 +< [4767] father--yes: 1 +< [4768] father-in-law: 2 +< [4769] fatherland: 1 +< [4770] fatherly: 2 +< [4771] fathers: 5 +< [4772] fatigue: 5 +< [4773] fault: 38 +< [4774] fault--all: 1 +< [4775] faults: 4 +< [4776] faut: 5 +< [4777] favor: 23 +< [4778] favorable: 8 +< [4779] favorably: 2 +< [4780] favorite: 30 +< [4781] favorites: 1 +< [4782] fear: 20 +< [4783] feared: 10 +< [4784] fearful: 26 +< [4785] fearfully: 6 +< [4786] fearing: 7 +< [4787] fears: 4 +< [4788] feasibility: 1 +< [4789] feasts: 1 +< [4790] feather: 2 +< [4791] feather-head: 2 +< [4792] feathers: 1 +< [4793] feathery: 2 +< [4794] feats: 2 +< [4795] feature: 1 +< [4796] features: 5 +< [4797] february: 2 +< [4798] fed: 5 +< [4799] federal: 2 +< [4800] federovna: 1 +< [4801] fedoritch: 1 +< [4802] fedorovitch: 2 +< [4803] fedot: 1 +< [4804] fee: 8 +< [4805] feeble: 4 +< [4806] feebleness: 1 +< [4807] feebler: 1 +< [4808] feebly: 2 +< [4809] feed: 2 +< [4810] feeding: 4 +< [4811] feel: 139 +< [4812] feel--especially: 1 +< [4813] feel--see: 1 +< [4814] feeling: 344 +< [4815] feeling--at: 1 +< [4816] feeling--they: 1 +< [4817] feeling...it's: 1 +< [4818] feelings: 56 +< [4819] feels: 17 +< [4820] fees: 5 +< [4821] feet: 50 +< [4822] feign: 1 +< [4823] feigned: 1 +< [4824] feigning: 1 +< [4825] fell: 85 +< [4826] felling: 1 +< [4827] fellow: 62 +< [4828] fellow's: 2 +< [4829] fellow-christians: 1 +< [4830] fellow-officials: 1 +< [4831] fellow-passengers: 1 +< [4832] fellow-worker: 1 +< [4833] fellow...semyonov: 1 +< [4834] fellows: 6 +< [4835] felt: 553 +< [4836] felt--as: 1 +< [4837] female: 7 +< [4838] feminine: 8 +< [4839] femme: 2 +< [4840] fence: 2 +< [4841] fenced: 1 +< [4842] fenced-in: 1 +< [4843] fences: 3 +< [4844] fer: 1 +< [4845] ferai: 1 +< [4846] ferreting: 1 +< [4847] ferrets: 1 +< [4848] fertinghof: 1 +< [4849] fervently: 1 +< [4850] fervor: 5 +< [4851] festive: 2 +< [4852] festively: 1 +< [4853] festivities: 1 +< [4854] fetch: 21 +< [4855] fetched: 1 +< [4856] fetching: 4 +< [4857] feud: 1 +< [4858] fever: 6 +< [4859] feverish: 3 +< [4860] feverish-looking: 1 +< [4861] few: 78 +< [4862] fewer: 1 +< [4863] fickle: 1 +< [4864] fictitious: 3 +< [4865] fiddles: 1 +< [4866] fidelity: 2 +< [4867] fidgeting: 3 +< [4868] fidgety: 3 +< [4869] field: 7 +< [4870] fields: 25 +< [4871] fiend: 2 +< [4872] fifteen: 11 +< [4873] fifteenth: 1 +< [4874] fifth: 4 +< [4875] fifty: 18 +< [4876] fight: 12 +< [4877] fighting: 2 +< [4878] figure: 85 +< [4879] figured: 1 +< [4880] figures: 16 +< [4881] figurez-vous: 1 +< [4882] filbert-shaped: 1 +< [4883] filch: 1 +< [4884] file: 4 +< [4885] files: 2 +< [4886] filez: 1 +< [4887] filial: 1 +< [4888] filippov: 1 +< [4889] fill: 3 +< [4890] filled: 34 +< [4891] filling: 12 +< [4892] fills: 1 +< [4893] filtered: 1 +< [4894] filth: 1 +< [4895] filthy: 7 +< [4896] fin: 1 +< [4897] final: 9 +< [4898] finally: 11 +< [4899] finance: 1 +< [4900] finances: 3 +< [4901] financial: 4 +< [4902] find: 149 +< [4903] finding: 27 +< [4904] finds: 4 +< [4905] fine: 51 +< [4906] fine--the: 1 +< [4907] fineness: 1 +< [4908] finesses: 1 +< [4909] finest: 1 +< [4910] finger: 28 +< [4911] fingering: 1 +< [4912] fingers: 44 +< [4913] fingers--see: 1 +< [4914] finish: 22 +< [4915] finished: 63 +< [4916] finishes: 1 +< [4917] finishing: 12 +< [4918] finnish: 1 +< [4919] finogen: 1 +< [4920] fire: 15 +< [4921] fired: 5 +< [4922] fireplaces: 1 +< [4923] fires: 2 +< [4924] firing: 1 +< [4925] firm: 16 +< [4926] firmament: 1 +< [4927] firmer: 2 +< [4928] firmest: 1 +< [4929] firmly: 25 +< [4930] firmness: 4 +< [4931] first: 340 +< [4932] first-class: 2 +< [4933] first-rate: 15 +< [4934] fish: 13 +< [4935] fishing: 1 +< [4936] fishmonger: 1 +< [4937] fist: 2 +< [4938] fists: 2 +< [4939] fit: 13 +< [4940] fitness: 1 +< [4941] fits: 4 +< [4942] fitted: 3 +< [4943] fitting: 6 +< [4944] fittingly: 1 +< [4945] fittings: 1 +< [4946] five: 62 +< [4947] five-rouble: 1 +< [4948] fix: 3 +< [4949] fixed: 43 +< [4950] fixedly: 1 +< [4951] fixing: 1 +< [4952] flag: 1 +< [4953] flagged: 1 +< [4954] flagging: 1 +< [4955] flags: 1 +< [4956] flagstones: 1 +< [4957] flame: 1 +< [4958] flaming: 1 +< [4959] flare: 1 +< [4960] flared: 1 +< [4961] flash: 12 +< [4962] flashed: 14 +< [4963] flashes: 2 +< [4964] flashing: 9 +< [4965] flat: 9 +< [4966] flatirons: 1 +< [4967] flatter: 1 +< [4968] flattered: 3 +< [4969] flattering: 5 +< [4970] flattery: 1 +< [4971] flavor: 2 +< [4972] flaxen: 2 +< [4973] flaxen-headed: 2 +< [4974] flay: 2 +< [4975] flecked: 2 +< [4976] fleecy: 2 +< [4977] fleeing: 1 +< [4978] fleeting: 1 +< [4979] flensburg: 2 +< [4980] flerov: 4 +< [4981] flerov's: 3 +< [4982] flesh: 2 +< [4983] fleshless: 1 +< [4984] fleshly: 1 +< [4985] fleshy: 1 +< [4986] fleurs: 2 +< [4987] flew: 32 +< [4988] flickered: 3 +< [4989] flickering: 2 +< [4990] flies: 8 +< [4991] flight: 5 +< [4992] fling: 8 +< [4993] flinging: 12 +< [4994] flints: 1 +< [4995] flippantly: 1 +< [4996] flirtation: 3 +< [4997] flirted: 4 +< [4998] flirting: 2 +< [4999] flitch: 1 +< [5000] flitted: 2 +< [5001] flitting: 1 +< [5002] float: 3 +< [5003] floated: 7 +< [5004] floating: 8 +< [5005] flock: 1 +< [5006] flocked: 1 +< [5007] flog: 1 +< [5008] flood: 3 +< [5009] flooded: 9 +< [5010] floodgates: 1 +< [5011] flooding: 1 +< [5012] floor: 23 +< [5013] floors: 3 +< [5014] floors--all: 1 +< [5015] flounce: 1 +< [5016] flounces: 1 +< [5017] floundering: 1 +< [5018] flour: 2 +< [5019] flourishing: 4 +< [5020] flow: 7 +< [5021] flowed: 2 +< [5022] flower: 10 +< [5023] flowerbeds: 1 +< [5024] flowered: 1 +< [5025] flowering: 3 +< [5026] flowers: 25 +< [5027] flowing: 2 +< [5028] flown: 7 +< [5029] fluent: 2 +< [5030] fluently: 1 +< [5031] flung: 27 +< [5032] flurried: 1 +< [5033] flush: 12 +< [5034] flushed: 29 +< [5035] flushing: 20 +< [5036] fluttered: 4 +< [5037] fluttering: 5 +< [5038] fly: 8 +< [5039] fly-away: 1 +< [5040] flying: 27 +< [5041] foaming: 1 +< [5042] fodder: 1 +< [5043] foe: 1 +< [5044] fog: 6 +< [5045] foisting: 1 +< [5046] fokanitch: 3 +< [5047] fold: 1 +< [5048] folded: 4 +< [5049] folding: 6 +< [5050] folds: 5 +< [5051] foliage: 1 +< [5052] folks: 3 +< [5053] folle: 1 +< [5054] follow: 18 +< [5055] followed: 62 +< [5056] followed--long: 1 +< [5057] followers: 2 +< [5058] following: 30 +< [5059] follows: 7 +< [5060] folly: 1 +< [5061] fomin: 1 +< [5062] fomin's: 3 +< [5063] fomitch: 1 +< [5064] fomitch--start: 1 +< [5065] fond: 42 +< [5066] fondant: 1 +< [5067] food: 16 +< [5068] fool: 17 +< [5069] fool's: 1 +< [5070] fooling: 1 +< [5071] foolish: 5 +< [5072] foolishness: 2 +< [5073] fools: 3 +< [5074] foot: 21 +< [5075] footboard: 1 +< [5076] foothold: 1 +< [5077] footing: 1 +< [5078] footlights: 5 +< [5079] footman: 44 +< [5080] footman's: 1 +< [5081] footmen: 10 +< [5082] footpath: 1 +< [5083] footstep: 1 +< [5084] footsteps: 5 +< [5085] footsteps--his: 1 +< [5086] for: 2729 +< [5087] for--as: 1 +< [5088] for--divorce: 1 +< [5089] for--was: 1 +< [5090] forage: 2 +< [5091] forbade: 1 +< [5092] forbid--it: 1 +< [5093] forbidden: 6 +< [5094] forbidding: 1 +< [5095] force: 64 +< [5096] force--the: 1 +< [5097] forced: 18 +< [5098] forces: 8 +< [5099] forces,--she: 1 +< [5100] forcibly: 1 +< [5101] forcing: 3 +< [5102] forcé: 1 +< [5103] fore-legs: 2 +< [5104] forecasts: 1 +< [5105] forefathers--that: 1 +< [5106] forefinger: 2 +< [5107] forego: 3 +< [5108] foregone: 2 +< [5109] foreground: 1 +< [5110] forehead: 20 +< [5111] foreign: 15 +< [5112] foreigner: 1 +< [5113] foremost: 4 +< [5114] foremost--it: 1 +< [5115] forepart: 1 +< [5116] forepaws: 1 +< [5117] foresaw: 2 +< [5118] foresee: 1 +< [5119] foreseeing: 4 +< [5120] foreseen: 2 +< [5121] foreshortened: 1 +< [5122] forest: 43 +< [5123] forest's: 1 +< [5124] forest--and: 1 +< [5125] forest--that: 1 +< [5126] foretold: 1 +< [5127] forever: 25 +< [5128] forever--not: 1 +< [5129] forfeits: 1 +< [5130] forgave: 9 +< [5131] forget: 57 +< [5132] forget--his: 1 +< [5133] forgetfulness: 2 +< [5134] forgetting: 25 +< [5135] forgive: 73 +< [5136] forgive--have: 1 +< [5137] forgive...remember: 1 +< [5138] forgiven: 10 +< [5139] forgiven--that: 1 +< [5140] forgiveness: 24 +< [5141] forgives: 2 +< [5142] forgiving: 2 +< [5143] forgot: 25 +< [5144] forgotten: 41 +< [5145] forgotten--death: 1 +< [5146] fork: 9 +< [5147] forkfuls: 1 +< [5148] forks: 1 +< [5149] form: 43 +< [5150] formal: 4 +< [5151] formalities: 1 +< [5152] formality: 2 +< [5153] format: 4 +< [5154] formation: 1 +< [5155] formats: 2 +< [5156] formed: 11 +< [5157] former: 37 +< [5158] formerly: 4 +< [5159] formidable: 2 +< [5160] forming: 6 +< [5161] forms: 13 +< [5162] formulate: 1 +< [5163] formulated: 1 +< [5164] forsake: 1 +< [5165] forsaken: 1 +< [5166] forth: 15 +< [5167] forthcoming: 1 +< [5168] fortifying: 1 +< [5169] fortnight: 4 +< [5170] fortnight...and: 1 +< [5171] fortunate: 4 +< [5172] fortunately: 1 +< [5173] fortune: 14 +< [5174] fortune's: 1 +< [5175] fortunes: 1 +< [5176] forty: 13 +< [5177] forty--thirty-seven: 1 +< [5178] forty-five: 3 +< [5179] forty-two: 2 +< [5180] forward: 46 +< [5181] forwards: 2 +< [5182] fought: 2 +< [5183] foul: 4 +< [5184] foulde's: 2 +< [5185] found: 140 +< [5186] found--a: 1 +< [5187] foundation: 30 +< [5188] foundation's: 3 +< [5189] founded: 12 +< [5190] founder: 1 +< [5191] founding: 1 +< [5192] foundling: 1 +< [5193] four: 33 +< [5194] four-in-hand: 2 +< [5195] four-year-old: 1 +< [5196] fourpence: 1 +< [5197] fourteen: 3 +< [5198] fourth: 6 +< [5199] fourthly: 2 +< [5200] fowls: 1 +< [5201] foyer: 1 +< [5202] fraction: 1 +< [5203] fragment: 1 +< [5204] fragmentary: 1 +< [5205] fragrance: 3 +< [5206] fragrant: 10 +< [5207] frame: 27 +< [5208] frames: 1 +< [5209] framework: 2 +< [5210] framing: 1 +< [5211] francais: 1 +< [5212] france: 2 +< [5213] frank: 2 +< [5214] frankfort: 1 +< [5215] franklin: 2 +< [5216] frankly: 3 +< [5217] frankness: 2 +< [5218] frantically: 1 +< [5219] fraud: 2 +< [5220] freaks: 1 +< [5221] free: 47 +< [5222] free-thinker: 1 +< [5223] free-thinkers: 2 +< [5224] free-thinking: 1 +< [5225] free-thought: 1 +< [5226] free-trade: 1 +< [5227] freedom: 36 +< [5228] freely: 14 +< [5229] freezing: 1 +< [5230] french: 80 +< [5231] french--graceful: 1 +< [5232] frenchman: 10 +< [5233] frenchman's: 1 +< [5234] frenchwoman: 9 +< [5235] frenchwoman's: 1 +< [5236] frenzy: 1 +< [5237] frequent: 7 +< [5238] frequently: 9 +< [5239] frescoes: 1 +< [5240] fresh: 63 +< [5241] fresh-baked: 1 +< [5242] freshen: 1 +< [5243] freshened: 1 +< [5244] fresher: 1 +< [5245] freshly: 10 +< [5246] freshness: 8 +< [5247] fret: 6 +< [5248] fretted: 2 +< [5249] fretting: 3 +< [5250] friday: 3 +< [5251] friedrich: 1 +< [5252] friend: 106 +< [5253] friend's: 7 +< [5254] friendliness: 10 +< [5255] friendly: 32 +< [5256] friends: 84 +< [5257] friends--i: 1 +< [5258] friends--to: 1 +< [5259] friendship: 13 +< [5260] friendship's: 1 +< [5261] friendship--if: 1 +< [5262] friendships: 1 +< [5263] fright: 3 +< [5264] frighten: 2 +< [5265] frightened: 30 +< [5266] frightening: 2 +< [5267] frightens: 1 +< [5268] frigid: 10 +< [5269] frigidly: 1 +< [5270] frills: 1 +< [5271] fringed: 2 +< [5272] frippery: 1 +< [5273] frisked: 1 +< [5274] frivolity: 1 +< [5275] frivolous: 6 +< [5276] fro: 5 +< [5277] frock: 8 +< [5278] frock-coats: 1 +< [5279] frockcoats: 1 +< [5280] frocks: 2 +< [5281] frogs: 4 +< [5282] frolicked: 1 +< [5283] from: 1319 +< [5284] front: 51 +< [5285] frost: 9 +< [5286] frosty: 4 +< [5287] frothing: 1 +< [5288] frou-frou: 19 +< [5289] frou-frou's: 3 +< [5290] frown: 4 +< [5291] frowned: 16 +< [5292] frowning: 29 +< [5293] frowning--give: 1 +< [5294] frozen: 7 +< [5295] fruit: 2 +< [5296] fruitful: 3 +< [5297] fruitfulness: 1 +< [5298] fruitless: 2 +< [5299] fruitlessly: 1 +< [5300] fruits: 1 +< [5301] fruits_...etc: 1 +< [5302] fulfilled: 3 +< [5303] fulfilling: 2 +< [5304] fulfillment: 1 +< [5305] full: 113 +< [5306] full-blooded: 1 +< [5307] full-fledged: 1 +< [5308] full-length: 1 +< [5309] full-skirted: 1 +< [5310] fullest: 4 +< [5311] fully: 38 +< [5312] fully-developed: 1 +< [5313] fulness: 2 +< [5314] fumbled: 1 +< [5315] fumbling: 5 +< [5316] fumes: 1 +< [5317] fun: 8 +< [5318] function: 1 +< [5319] functionaries: 4 +< [5320] functionary: 3 +< [5321] functions--the: 1 +< [5322] fundamental: 5 +< [5323] funeral: 5 +< [5324] fungus: 3 +< [5325] funguses: 1 +< [5326] funnel: 1 +< [5327] funny: 5 +< [5328] fur: 17 +< [5329] fur-lined: 1 +< [5330] furious: 10 +< [5331] furnish: 1 +< [5332] furnished: 1 +< [5333] furniture: 6 +< [5334] furrow: 1 +< [5335] furrows: 3 +< [5336] further: 40 +< [5337] furthest: 4 +< [5338] fury: 13 +< [5339] fuss: 5 +< [5340] fussing: 1 +< [5341] futile: 1 +< [5342] future: 44 +< [5343] future--was: 1 +< [5344] future--your: 1 +< [5345] fyodor: 18 +< [5346] fyodor's: 1 +< [5347] fête: 3 +< [5348] fürst: 1 +< [5349] fürstin: 1 +< [5350] gadflies: 1 +< [5351] gagin: 4 +< [5352] gagin's: 1 +< [5353] gaiety: 9 +< [5354] gaily: 21 +< [5355] gain: 7 +< [5356] gained: 17 +< [5357] gaining: 4 +< [5358] gains: 2 +< [5359] gait: 4 +< [5360] gaiters: 4 +< [5361] gallant: 4 +< [5362] gallant-looking: 1 +< [5363] gallantly: 1 +< [5364] gallants: 1 +< [5365] galleries: 3 +< [5366] gallery: 1 +< [5367] gallop: 10 +< [5368] galloped: 8 +< [5369] galloping: 5 +< [5370] galoshes: 5 +< [5371] galtsin: 1 +< [5372] gambetta: 1 +< [5373] gambler: 2 +< [5374] gambling: 1 +< [5375] game: 31 +< [5376] game-bag: 1 +< [5377] gang: 1 +< [5378] gangs: 1 +< [5379] ganz: 1 +< [5380] gap: 1 +< [5381] gaping: 1 +< [5382] garden: 39 +< [5383] garden's: 1 +< [5384] gardener: 4 +< [5385] gardeners: 1 +< [5386] gardens: 10 +< [5387] garment: 4 +< [5388] garments: 1 +< [5389] garnett: 2 +< [5390] garnies: 1 +< [5391] garnish: 1 +< [5392] gas: 4 +< [5393] gasped: 1 +< [5394] gasping: 4 +< [5395] gasps: 1 +< [5396] gate: 7 +< [5397] gatepost: 1 +< [5398] gates: 2 +< [5399] gathered: 18 +< [5400] gathering: 7 +< [5401] gauge: 1 +< [5402] gautier's: 1 +< [5403] gave: 156 +< [5404] gay: 13 +< [5405] gaze: 8 +< [5406] gazed: 45 +< [5407] gazetny: 1 +< [5408] gazetoy: 1 +< [5409] gazette: 1 +< [5410] gazing: 37 +< [5411] gbnewby@pglaf.org: 1 +< [5412] geese: 2 +< [5413] gelding: 1 +< [5414] gelungen: 1 +< [5415] gem: 2 +< [5416] gemahlin: 1 +< [5417] general: 78 +< [5418] generalities: 1 +< [5419] generalization: 1 +< [5420] generally: 12 +< [5421] generally--just: 1 +< [5422] generals: 2 +< [5423] generation: 3 +< [5424] generations: 3 +< [5425] generosity: 12 +< [5426] generous: 8 +< [5427] genial: 2 +< [5428] genially: 4 +< [5429] genre: 2 +< [5430] gentil: 1 +< [5431] gentille: 1 +< [5432] gentle: 7 +< [5433] gentlefolk: 1 +< [5434] gentlefolks: 1 +< [5435] gentleman: 65 +< [5436] gentleman's: 7 +< [5437] gentleman--that: 1 +< [5438] gentlemanly: 1 +< [5439] gentlemen: 27 +< [5440] gentleness: 2 +< [5441] gentlewoman: 1 +< [5442] gently: 13 +< [5443] gentry: 2 +< [5444] gentry's: 1 +< [5445] genuine: 11 +< [5446] genuinely: 6 +< [5447] gerasim: 1 +< [5448] german: 32 +< [5449] germans: 3 +< [5450] germany: 2 +< [5451] gesticulated: 2 +< [5452] gesture: 21 +< [5453] gesture--terrible: 1 +< [5454] gestures: 5 +< [5455] get: 302 +< [5456] get--secretary: 1 +< [5457] get-up: 1 +< [5458] gets: 9 +< [5459] getting: 174 +< [5460] ghost: 1 +< [5461] gi: 1 +< [5462] giddy: 3 +< [5463] gift: 9 +< [5464] gifted: 1 +< [5465] giggle: 1 +< [5466] gilded: 1 +< [5467] gilt: 3 +< [5468] girl: 105 +< [5469] girl's: 7 +< [5470] girl--_his: 1 +< [5471] girl--he'd: 1 +< [5472] girl...i: 1 +< [5473] girlish: 5 +< [5474] girls: 30 +< [5475] give: 196 +< [5476] given: 87 +< [5477] gives: 11 +< [5478] giving: 67 +< [5479] glace: 1 +< [5480] glad: 171 +< [5481] glad--or: 1 +< [5482] glad...i: 1 +< [5483] gladdened: 1 +< [5484] glade: 1 +< [5485] gladiator: 15 +< [5486] gladiator's: 6 +< [5487] gladiators: 1 +< [5488] gladly: 3 +< [5489] gladness: 4 +< [5490] glance: 59 +< [5491] glanced: 78 +< [5492] glances: 12 +< [5493] glancing: 53 +< [5494] glare: 1 +< [5495] glaring: 3 +< [5496] glass: 60 +< [5497] glasses: 9 +< [5498] glassful: 3 +< [5499] gleam: 12 +< [5500] gleamed: 6 +< [5501] gleaming: 2 +< [5502] gleams: 1 +< [5503] glee: 1 +< [5504] gleeful: 2 +< [5505] gleefully: 4 +< [5506] glib: 1 +< [5507] glided: 1 +< [5508] glimpse: 11 +< [5509] glimpses: 2 +< [5510] glistened: 1 +< [5511] glistening: 1 +< [5512] glitter: 1 +< [5513] glittered: 4 +< [5514] glittering: 5 +< [5515] gloomily: 23 +< [5516] gloominess: 2 +< [5517] gloomy: 29 +< [5518] glorified: 1 +< [5519] glory: 9 +< [5520] gloss: 1 +< [5521] glossy: 5 +< [5522] glove: 16 +< [5523] gloves: 7 +< [5524] glow: 8 +< [5525] glowed: 4 +< [5526] glowing: 4 +< [5527] glued: 1 +< [5528] gnarled: 1 +< [5529] gnawing: 4 +< [5530] go: 683 +< [5531] go-carts: 1 +< [5532] goal: 5 +< [5533] goals: 1 +< [5534] goat-weed: 2 +< [5535] goblins: 1 +< [5536] god: 155 +< [5537] god's: 22 +< [5538] god-man: 1 +< [5539] godfather: 2 +< [5540] godly: 1 +< [5541] godmother: 1 +< [5542] godsend: 1 +< [5543] goes: 18 +< [5544] goffered: 1 +< [5545] gogol's: 1 +< [5546] going: 407 +< [5547] going...such: 1 +< [5548] gold: 11 +< [5549] gold-colored: 1 +< [5550] gold-embroidered: 1 +< [5551] golden: 3 +< [5552] golenishtchev: 57 +< [5553] golenishtchev's: 10 +< [5554] golistin: 1 +< [5555] golitzina: 1 +< [5556] golubtsov's: 1 +< [5557] gone: 140 +< [5558] good: 329 +< [5559] good"--again: 1 +< [5560] good--why: 1 +< [5561] good-bye: 50 +< [5562] good-day: 2 +< [5563] good-for-nought: 1 +< [5564] good-hearted: 15 +< [5565] good-humor: 3 +< [5566] good-humored: 35 +< [5567] good-humored-looking: 1 +< [5568] good-humoredly: 14 +< [5569] good-looking: 5 +< [5570] good-morning: 1 +< [5571] good-natured: 25 +< [5572] good-naturedly: 4 +< [5573] good-night: 4 +< [5574] goodbye: 1 +< [5575] goodhumored: 2 +< [5576] goodhumoredly: 1 +< [5577] goodness: 14 +< [5578] goods: 2 +< [5579] goodwill: 2 +< [5580] goose: 3 +< [5581] goose-flesh: 1 +< [5582] gore: 1 +< [5583] gorgeous: 2 +< [5584] gospel: 6 +< [5585] gossip: 7 +< [5586] gossiped: 3 +< [5587] got: 277 +< [5588] govern: 1 +< [5589] governess: 33 +< [5590] governess's: 4 +< [5591] governing: 1 +< [5592] government: 43 +< [5593] government--this: 1 +< [5594] governmental: 1 +< [5595] governor: 10 +< [5596] governor's: 1 +< [5597] governor--with: 1 +< [5598] governor-general: 1 +< [5599] governors: 1 +< [5600] gown: 28 +< [5601] grabovsky: 1 +< [5602] grace: 11 +< [5603] graceful: 9 +< [5604] graces: 1 +< [5605] gracious: 6 +< [5606] graciously: 1 +< [5607] grade: 2 +< [5608] gradually: 6 +< [5609] grafted: 1 +< [5610] grain: 8 +< [5611] grains: 2 +< [5612] grammar: 3 +< [5613] granary: 3 +< [5614] grand: 10 +< [5615] grandchild: 1 +< [5616] grandchildren: 1 +< [5617] granddaughter: 1 +< [5618] grande: 1 +< [5619] grandeur: 6 +< [5620] grandfather: 4 +< [5621] grandfather's: 2 +< [5622] grandmamma's: 1 +< [5623] grandson: 2 +< [5624] granny: 1 +< [5625] grant: 5 +< [5626] granted: 2 +< [5627] granting: 1 +< [5628] grants: 1 +< [5629] grape-shot: 1 +< [5630] grasp: 6 +< [5631] grasped: 6 +< [5632] grasping: 3 +< [5633] grass: 69 +< [5634] grasslands: 1 +< [5635] grassy: 1 +< [5636] grateful: 16 +< [5637] gratefully: 3 +< [5638] gratification: 5 +< [5639] gratify: 1 +< [5640] gratings: 1 +< [5641] gratitude: 3 +< [5642] grave: 5 +< [5643] gravel: 5 +< [5644] gravely: 1 +< [5645] gravity: 13 +< [5646] gray: 37 +< [5647] gray-green: 2 +< [5648] gray-headed: 1 +< [5649] gray-whiskered: 3 +< [5650] grayish: 1 +< [5651] grays: 3 +< [5652] graze: 1 +< [5653] grazed: 2 +< [5654] grazing: 1 +< [5655] greasy: 1 +< [5656] great: 206 +< [5657] great--ideas: 1 +< [5658] great--in: 1 +< [5659] greater: 39 +< [5660] greatest: 13 +< [5661] greatly: 23 +< [5662] greatness: 1 +< [5663] greedily: 3 +< [5664] greediness: 1 +< [5665] greedy: 2 +< [5666] greek: 1 +< [5667] green: 22 +< [5668] greener: 2 +< [5669] greenish: 1 +< [5670] greens: 1 +< [5671] greet: 8 +< [5672] greeted: 19 +< [5673] greeting: 14 +< [5674] greetings: 6 +< [5675] gregory: 1 +< [5676] gretchen: 1 +< [5677] grew: 31 +< [5678] grief: 12 +< [5679] griefs: 1 +< [5680] grievance: 1 +< [5681] grieve: 7 +< [5682] grieving: 1 +< [5683] grim: 1 +< [5684] grimed: 1 +< [5685] grimm's: 1 +< [5686] grin: 1 +< [5687] grinevitch: 5 +< [5688] grinevitch"--and: 1 +< [5689] grinevitch's: 3 +< [5690] grinned: 1 +< [5691] gripped: 1 +< [5692] gripping: 2 +< [5693] grisha: 34 +< [5694] grisha's: 2 +< [5695] gritsky's: 1 +< [5696] grizzled: 2 +< [5697] groaned: 4 +< [5698] groaning: 2 +< [5699] groans: 2 +< [5700] groom: 8 +< [5701] gross: 2 +< [5702] grossest: 1 +< [5703] grotesque: 1 +< [5704] grotesque-looking: 1 +< [5705] ground: 56 +< [5706] grounded: 1 +< [5707] groundless: 3 +< [5708] grounds: 10 +< [5709] group: 16 +< [5710] grouped: 2 +< [5711] groups: 5 +< [5712] groups--those: 1 +< [5713] grouse: 18 +< [5714] grouse-marsh: 1 +< [5715] grow: 12 +< [5716] growing: 34 +< [5717] grown: 39 +< [5718] grown-up: 11 +< [5719] grownup: 1 +< [5720] grows: 1 +< [5721] growth: 2 +< [5722] grudge: 3 +< [5723] grudged: 1 +< [5724] gruff: 1 +< [5725] grumble: 1 +< [5726] guarantee: 4 +< [5727] guarantee?--to: 1 +< [5728] guard: 10 +< [5729] guard's: 1 +< [5730] guarded: 1 +< [5731] guardianship: 2 +< [5732] guards: 6 +< [5733] guelder-rose: 1 +< [5734] guess: 18 +< [5735] guessed: 14 +< [5736] guesses: 1 +< [5737] guessing: 6 +< [5738] guest: 9 +< [5739] guest's: 1 +< [5740] guests: 29 +< [5741] guests--sergey: 1 +< [5742] guidance: 6 +< [5743] guide: 8 +< [5744] guide-book: 1 +< [5745] guidebook: 1 +< [5746] guided: 11 +< [5747] guiding: 3 +< [5748] guile: 1 +< [5749] guileless: 1 +< [5750] guilt: 1 +< [5751] guilty: 24 +< [5752] guipure: 1 +< [5753] gulf: 1 +< [5754] gulp: 1 +< [5755] gulping: 2 +< [5756] gun: 32 +< [5757] guns: 5 +< [5758] guns--the: 1 +< [5759] gurin's: 1 +< [5760] gush: 1 +< [5761] gushed: 1 +< [5762] gussets: 1 +< [5763] gust: 1 +< [5764] gusts: 1 +< [5765] gutenberg: 30 +< [5766] gutenberg-tm: 56 +< [5767] gutenberg-tm's: 1 +< [5768] guttering: 1 +< [5769] guttural: 4 +< [5770] gvozdyov: 4 +< [5771] gymnast: 2 +< [5772] gymnastic: 3 +< [5773] gymnastics: 4 +< [5774] gypsies: 3 +< [5775] gypsy: 1 +< [5776] h: 1 +< [5777] habit: 29 +< [5778] habits: 14 +< [5779] habitual: 16 +< [5780] habitually: 2 +< [5781] hack: 1 +< [5782] hacks: 1 +< [5783] had: 3853 +< [5784] hadn't: 14 +< [5785] hagar: 1 +< [5786] haggle: 2 +< [5787] haggling: 2 +< [5788] hail: 2 +< [5789] hailstones: 1 +< [5790] hair: 91 +< [5791] hair--her: 2 +< [5792] hair-dresser: 1 +< [5793] hair-dressing: 1 +< [5794] hairpins: 3 +< [5795] hairs: 2 +< [5796] hairy: 2 +< [5797] half: 69 +< [5798] half-asleep: 1 +< [5799] half-awake: 1 +< [5800] half-brother: 3 +< [5801] half-burned: 1 +< [5802] half-closing: 3 +< [5803] half-crop: 2 +< [5804] half-dark: 1 +< [5805] half-desperate: 1 +< [5806] half-dozen: 1 +< [5807] half-grown: 1 +< [5808] half-joking: 1 +< [5809] half-light: 1 +< [5810] half-long: 1 +< [5811] half-mirthful: 1 +< [5812] half-mown: 1 +< [5813] half-opened: 1 +< [5814] half-past: 11 +< [5815] half-penny: 1 +< [5816] half-profits: 1 +< [5817] half-shut: 1 +< [5818] half-thawed: 1 +< [5819] half-unbuttoned: 1 +< [5820] half-way: 3 +< [5821] half-witted: 3 +< [5822] halfheartedly: 1 +< [5823] halfpence: 3 +< [5824] halfpenny: 3 +< [5825] halfway: 2 +< [5826] hall: 57 +< [5827] hall-porter: 5 +< [5828] halt: 1 +< [5829] halted: 3 +< [5830] halves: 3 +< [5831] hamburg: 1 +< [5832] hammer: 2 +< [5833] hand: 387 +< [5834] hand--"that: 1 +< [5835] handbag: 2 +< [5836] handed: 27 +< [5837] handfuls: 1 +< [5838] handing: 11 +< [5839] handiwork: 1 +< [5840] handkerchief: 15 +< [5841] handkerchiefs: 1 +< [5842] handle: 2 +< [5843] handle's: 1 +< [5844] handling: 1 +< [5845] hands: 221 +< [5846] hands--she: 1 +< [5847] handsome: 46 +< [5848] handsomely: 2 +< [5849] handsomer: 2 +< [5850] handwriting: 4 +< [5851] hang: 4 +< [5852] hanging: 22 +< [5853] hangings: 2 +< [5854] hannah: 2 +< [5855] hapilovo: 1 +< [5856] happen: 15 +< [5857] happen--that: 1 +< [5858] happened: 87 +< [5859] happening: 9 +< [5860] happens: 11 +< [5861] happens--and: 1 +< [5862] happier: 4 +< [5863] happiest: 9 +< [5864] happily: 7 +< [5865] happiness: 126 +< [5866] happy: 153 +< [5867] happy--and: 1 +< [5868] harassed: 5 +< [5869] harassing: 1 +< [5870] hard: 51 +< [5871] hard-uddered: 1 +< [5872] harder: 6 +< [5873] hardly: 51 +< [5874] hardness: 2 +< [5875] hardships: 1 +< [5876] hare: 1 +< [5877] harem: 1 +< [5878] harkov: 1 +< [5879] harm: 17 +< [5880] harmful: 5 +< [5881] harmless: 2 +< [5882] harmoniously: 1 +< [5883] harmonized: 1 +< [5884] harmony: 9 +< [5885] harness: 5 +< [5886] harnessed: 6 +< [5887] harnessing: 1 +< [5888] harrowing: 2 +< [5889] harrows: 7 +< [5890] harsh: 2 +< [5891] hart: 2 +< [5892] harvest: 3 +< [5893] harvest--every: 1 +< [5894] harvesting: 1 +< [5895] has: 406 +< [5896] hasn't: 10 +< [5897] hast: 4 +< [5898] haste: 53 +< [5899] hastened: 4 +< [5900] hastily: 9 +< [5901] hasty: 5 +< [5902] hat: 83 +< [5903] hat--all: 1 +< [5904] hatching: 1 +< [5905] hate: 23 +< [5906] hated: 9 +< [5907] hateful: 19 +< [5908] hates: 9 +< [5909] hating: 6 +< [5910] hatred: 25 +< [5911] hatred--a: 1 +< [5912] hats: 5 +< [5913] hatstand: 1 +< [5914] hatt: 1 +< [5915] haughtily: 1 +< [5916] haughtiness: 2 +< [5917] haughty: 4 +< [5918] haunch: 1 +< [5919] haunches: 1 +< [5920] haunted: 3 +< [5921] haunting: 1 +< [5922] have: 1274 +< [5923] have!--i: 1 +< [5924] haven't: 39 +< [5925] having: 152 +< [5926] hawk: 3 +< [5927] hawking: 1 +< [5928] hawklike: 1 +< [5929] hawks: 4 +< [5930] hay: 45 +< [5931] hay's: 1 +< [5932] hay--it: 1 +< [5933] hay-barn: 1 +< [5934] hay-making: 1 +< [5935] haycock: 7 +< [5936] haycocks: 5 +< [5937] haycutting: 1 +< [5938] haying: 1 +< [5939] haymakers: 1 +< [5940] haystacks: 1 +< [5941] hazarded: 1 +< [5942] hazards: 1 +< [5943] haze: 1 +< [5944] hazel: 2 +< [5945] he: 7496 +< [5946] he'd: 10 +< [5947] he'll: 32 +< [5948] he's: 251 +< [5949] he--with: 1 +< [5950] he?--no: 1 +< [5951] head: 289 +< [5952] head's: 1 +< [5953] head--one: 1 +< [5954] head-deacon: 1 +< [5955] headache: 4 +< [5956] heads: 12 +< [5957] healed: 2 +< [5958] health: 35 +< [5959] health's: 1 +< [5960] healthy: 15 +< [5961] healthy-looking: 4 +< [5962] heap: 4 +< [5963] heaped: 1 +< [5964] heaping: 1 +< [5965] heaps: 3 +< [5966] hear: 88 +< [5967] hear..._vous: 1 +< [5968] heard: 253 +< [5969] hearing: 60 +< [5970] hears: 1 +< [5971] hearsay: 1 +< [5972] heart: 239 +< [5973] heart's: 2 +< [5974] heart's-ease: 2 +< [5975] heart--that: 1 +< [5976] heart-rending: 1 +< [5977] heartfelt: 1 +< [5978] hearth: 2 +< [5979] heartily: 1 +< [5980] heartless: 3 +< [5981] hearts: 8 +< [5982] hearty: 1 +< [5983] heat: 18 +< [5984] heated: 10 +< [5985] heating: 2 +< [5986] heaved: 1 +< [5987] heaven: 5 +< [5988] heaven's: 2 +< [5989] heavenly: 6 +< [5990] heavenly--as: 1 +< [5991] heavens: 7 +< [5992] heavenwards: 1 +< [5993] heavier: 1 +< [5994] heavily: 17 +< [5995] heaviness: 3 +< [5996] heaving: 2 +< [5997] heavy: 24 +< [5998] hedge: 5 +< [5999] hedges: 5 +< [6000] heed: 2 +< [6001] heedless: 1 +< [6002] heedlessly: 2 +< [6003] heedlessness: 1 +< [6004] heel: 7 +< [6005] heels: 6 +< [6006] hegel: 1 +< [6007] height: 14 +< [6008] heighten: 1 +< [6009] heights: 3 +< [6010] heir: 1 +< [6011] heirs: 2 +< [6012] held: 58 +< [6013] helen: 1 +< [6014] hell: 1 +< [6015] hellebore: 1 +< [6016] helmet: 8 +< [6017] helmets: 3 +< [6018] help: 159 +< [6019] helped: 21 +< [6020] helping: 6 +< [6021] helpless: 8 +< [6022] helplessly: 3 +< [6023] helplessness: 3 +< [6024] helpmeet: 1 +< [6025] helps: 1 +< [6026] helsingfors: 2 +< [6027] hemp: 3 +< [6028] hen: 1 +< [6029] hen-roost: 3 +< [6030] hence: 2 +< [6031] her: 5071 +< [6032] her--a: 2 +< [6033] her--always: 1 +< [6034] her--and: 1 +< [6035] her--by: 1 +< [6036] her--for: 1 +< [6037] her--high: 1 +< [6038] her--to: 1 +< [6039] her--you: 1 +< [6040] her...it's: 1 +< [6041] her_--that: 1 +< [6042] herb: 2 +< [6043] herb-brandy: 1 +< [6044] herbs: 1 +< [6045] herd: 8 +< [6046] herding: 1 +< [6047] herdsman: 3 +< [6048] here: 337 +< [6049] here"--he: 1 +< [6050] here's: 20 +< [6051] here--gentlemen: 1 +< [6052] here--he's: 1 +< [6053] here...i: 2 +< [6054] here...though: 1 +< [6055] heritage: 1 +< [6056] hermitage: 2 +< [6057] hero: 5 +< [6058] heroes: 1 +< [6059] heroic: 2 +< [6060] heroine: 2 +< [6061] heroism: 1 +< [6062] herrings: 1 +< [6063] hers: 16 +< [6064] herself: 313 +< [6065] herself--"stepan: 1 +< [6066] herself--_stranger: 1 +< [6067] herself--how: 1 +< [6068] herzegovina: 1 +< [6069] hesitate: 2 +< [6070] hesitated: 6 +< [6071] hesitating: 5 +< [6072] hesitatingly: 2 +< [6073] hesitation: 14 +< [6074] heures: 1 +< [6075] hey: 2 +< [6076] heyday: 1 +< [6077] hi: 5 +< [6078] hid: 17 +< [6079] hidden: 11 +< [6080] hide: 15 +< [6081] hideous: 13 +< [6082] hideousness: 2 +< [6083] hiding: 12 +< [6084] hierarchy: 1 +< [6085] hieroglyphics: 3 +< [6086] high: 95 +< [6087] high-flown: 2 +< [6088] high-heeled: 1 +< [6089] high-pitched: 1 +< [6090] high-principled: 1 +< [6091] higher: 30 +< [6092] highest: 31 +< [6093] highly: 14 +< [6094] highness: 1 +< [6095] highroad: 8 +< [6096] highroads: 1 +< [6097] hillock: 3 +< [6098] hillocks: 1 +< [6099] hills: 2 +< [6100] hillside: 2 +< [6101] him: 3144 +< [6102] him,--this: 1 +< [6103] him--"what: 1 +< [6104] him--all: 3 +< [6105] him--and: 1 +< [6106] him--for: 1 +< [6107] him--he: 4 +< [6108] him--middle-aged: 1 +< [6109] him--now: 1 +< [6110] him--so: 1 +< [6111] him--what: 1 +< [6112] him--whether: 1 +< [6113] him."--"you're: 1 +< [6114] him...he: 1 +< [6115] himmlisch: 1 +< [6116] himself: 606 +< [6117] himself--"you: 1 +< [6118] himself--a: 1 +< [6119] himself--clutching: 1 +< [6120] himself--in: 1 +< [6121] himself--it: 1 +< [6122] himself--merely: 1 +< [6123] himself--much: 1 +< [6124] himself--to: 1 +< [6125] himself--what: 1 +< [6126] hind: 4 +< [6127] hind-legs: 1 +< [6128] hind-quarters: 6 +< [6129] hinder: 6 +< [6130] hindered: 8 +< [6131] hindering: 1 +< [6132] hindpaw: 1 +< [6133] hindrance: 7 +< [6134] hindrance--that's: 1 +< [6135] hindrances: 2 +< [6136] hint: 11 +< [6137] hinted: 5 +< [6138] hinting: 1 +< [6139] hints: 3 +< [6140] hippopotamus: 1 +< [6141] hips: 3 +< [6142] hire: 6 +< [6143] hired: 20 +< [6144] hiring: 1 +< [6145] his: 5227 +< [6146] his--he: 1 +< [6147] hiss: 3 +< [6148] hissed: 1 +< [6149] historian: 1 +< [6150] historiaris: 1 +< [6151] historical: 5 +< [6152] historically: 1 +< [6153] history: 11 +< [6154] hit: 3 +< [6155] hitch: 1 +< [6156] hitherto: 19 +< [6157] hits: 1 +< [6158] hitting: 1 +< [6159] hive: 1 +< [6160] hived: 1 +< [6161] hives: 3 +< [6162] hliustov: 2 +< [6163] hoarfrost: 1 +< [6164] hoarse: 3 +< [6165] hoarsely: 2 +< [6166] hobbled: 2 +< [6167] hobby: 2 +< [6168] hold: 27 +< [6169] holder: 5 +< [6170] holding: 64 +< [6171] holds: 3 +< [6172] hole: 1 +< [6173] holes: 2 +< [6174] holiday: 9 +< [6175] holidays: 2 +< [6176] holies: 1 +< [6177] hollandka: 1 +< [6178] hollow: 6 +< [6179] hollow-chested: 1 +< [6180] hollowed-out: 1 +< [6181] hollows: 1 +< [6182] holy: 25 +< [6183] home: 216 +< [6184] home--worse: 1 +< [6185] home-brew: 1 +< [6186] home-life: 1 +< [6187] homely: 2 +< [6188] homespun: 1 +< [6189] homeward: 2 +< [6190] homewards: 6 +< [6191] homiakov: 1 +< [6192] homiakov's: 2 +< [6193] homme: 2 +< [6194] honest: 27 +< [6195] honestly: 2 +< [6196] honesty: 4 +< [6197] honey: 5 +< [6198] honeycomb: 1 +< [6199] honeymoon: 1 +< [6200] honeymoon--that: 1 +< [6201] honi: 1 +< [6202] honor: 50 +< [6203] honor's: 2 +< [6204] honorable: 12 +< [6205] honors: 2 +< [6206] hood: 3 +< [6207] hoof: 1 +< [6208] hoofs: 8 +< [6209] hook: 7 +< [6210] hooked: 1 +< [6211] hooking: 1 +< [6212] hooks: 2 +< [6213] hoole: 5 +< [6214] hoop: 2 +< [6215] hooted: 1 +< [6216] hope: 65 +< [6217] hoped: 22 +< [6218] hopeful: 2 +< [6219] hopeless: 10 +< [6220] hopelessly: 4 +< [6221] hopelessness: 4 +< [6222] hopes: 9 +< [6223] hoping: 21 +< [6224] horizon: 2 +< [6225] horns: 1 +< [6226] horrible: 15 +< [6227] horribly: 4 +< [6228] horrid: 8 +< [6229] horrified: 12 +< [6230] horror: 53 +< [6231] horror-stricken: 1 +< [6232] horrors: 2 +< [6233] horse: 75 +< [6234] horse's: 3 +< [6235] horse-box: 7 +< [6236] horse-breeding: 1 +< [6237] horse-guard: 2 +< [6238] horse-guards: 2 +< [6239] horseback: 9 +< [6240] horsecloth: 1 +< [6241] horsecloths: 1 +< [6242] horsemen: 1 +< [6243] horses: 107 +< [6244] horses!--there's: 1 +< [6245] horses--and: 1 +< [6246] hospitable: 2 +< [6247] hospitably: 1 +< [6248] hospital: 14 +< [6249] hospitality: 1 +< [6250] host: 15 +< [6251] host's: 3 +< [6252] hostess: 15 +< [6253] hostile: 16 +< [6254] hostilely: 1 +< [6255] hostility: 12 +< [6256] hosts: 2 +< [6257] hot: 37 +< [6258] hot-looking: 1 +< [6259] hotel: 20 +< [6260] hotel-keeper: 1 +< [6261] hotels: 6 +< [6262] hotly: 9 +< [6263] hotly--a: 1 +< [6264] hounds: 1 +< [6265] hour: 47 +< [6266] hour's: 1 +< [6267] hour--memories: 1 +< [6268] hours: 32 +< [6269] hours...no: 1 +< [6270] house: 208 +< [6271] house--all: 1 +< [6272] houseflies: 1 +< [6273] household: 32 +< [6274] household--although: 1 +< [6275] housekeeper: 6 +< [6276] housekeeping: 4 +< [6277] houses: 9 +< [6278] housewife's: 1 +< [6279] housing: 1 +< [6280] hovering: 5 +< [6281] how: 793 +< [6282] how's: 10 +< [6283] how...i: 1 +< [6284] how...just: 1 +< [6285] however: 56 +< [6286] howls: 1 +< [6287] http://gutenberg.net/license: 1 +< [6288] http://pglaf.org: 2 +< [6289] http://pglaf.org/donate: 1 +< [6290] http://pglaf.org/fundraising: 1 +< [6291] http://www.gutenberg.net: 1 +< [6292] http://www.gutenberg.org/1/3/9/1399: 1 +< [6293] http://www.pglaf.org: 1 +< [6294] huddled: 2 +< [6295] hue: 1 +< [6296] huebsch: 1 +< [6297] hug: 1 +< [6298] huge: 30 +< [6299] hugely: 1 +< [6300] huger: 1 +< [6301] hugging: 4 +< [6302] hum: 3 +< [6303] humaine: 1 +< [6304] human: 14 +< [6305] humanity: 5 +< [6306] humble: 7 +< [6307] humbles: 1 +< [6308] humbly: 3 +< [6309] humbug: 4 +< [6310] humbugging: 1 +< [6311] humiliate: 3 +< [6312] humiliated: 13 +< [6313] humiliating: 16 +< [6314] humiliatingly: 1 +< [6315] humiliation: 27 +< [6316] humiliations: 4 +< [6317] humility: 1 +< [6318] hummed: 2 +< [6319] humming: 2 +< [6320] humor: 25 +< [6321] humored: 5 +< [6322] humorous: 2 +< [6323] humorously: 3 +< [6324] hundred: 52 +< [6325] hundred-pound: 1 +< [6326] hundred-rouble: 2 +< [6327] hundreds: 12 +< [6328] hundredth: 4 +< [6329] hundredths: 1 +< [6330] hung: 14 +< [6331] hunger: 4 +< [6332] hungrily: 1 +< [6333] hungry: 18 +< [6334] hunt: 5 +< [6335] hunted: 2 +< [6336] hunting: 7 +< [6337] hunting,--well: 1 +< [6338] hunts: 1 +< [6339] hurdles: 4 +< [6340] hurrah: 2 +< [6341] hurrah!"--"and: 1 +< [6342] hurried: 7 +< [6343] hurriedly: 44 +< [6344] hurry: 21 +< [6345] hurrying: 6 +< [6346] hurt: 28 +< [6347] hurting: 3 +< [6348] hurts: 1 +< [6349] husband: 287 +< [6350] husband's: 42 +< [6351] husband--all: 1 +< [6352] husband--practically: 1 +< [6353] husband--that: 2 +< [6354] husband:--"after: 1 +< [6355] husbandry: 9 +< [6356] husbands: 11 +< [6357] hush: 5 +< [6358] hushed: 1 +< [6359] hushes: 1 +< [6360] hushing: 2 +< [6361] husks: 1 +< [6362] husky: 1 +< [6363] hussar: 2 +< [6364] hussars: 1 +< [6365] hut: 13 +< [6366] hydra: 2 +< [6367] hygienic: 1 +< [6368] hypertext: 1 +< [6369] hypocrisy: 10 +< [6370] hypocritical: 1 +< [6371] hypocritically: 1 +< [6372] hélène: 1 +< [6373] i: 3584 +< [6374] i'd: 23 +< [6375] i'll: 177 +< [6376] i'm: 424 +< [6377] i've: 183 +< [6378] i--"have: 1 +< [6379] i...i: 2 +< [6380] i...i...didn't: 1 +< [6381] i...i...if: 1 +< [6382] i...quite: 1 +< [6383] i...you: 1 +< [6384] i_"--she: 1 +< [6385] ice: 18 +< [6386] ice--do: 1 +< [6387] ice-covered: 1 +< [6388] iced: 2 +< [6389] ich: 2 +< [6390] id: 1 +< [6391] idea: 103 +< [6392] idea--he: 1 +< [6393] ideal: 7 +< [6394] ideals: 1 +< [6395] ideas: 80 +< [6396] identical: 3 +< [6397] identification: 1 +< [6398] identify: 1 +< [6399] idiocy: 3 +< [6400] idiomatic: 1 +< [6401] idiot: 1 +< [6402] idiotic: 7 +< [6403] idle: 8 +< [6404] idleness: 3 +< [6405] idly: 2 +< [6406] idyllic: 1 +< [6407] if: 651 +< [6408] if--god: 1 +< [6409] if...better: 1 +< [6410] if...if: 1 +< [6411] ignat: 4 +< [6412] ignatitch: 2 +< [6413] ignatov: 1 +< [6414] ignorance: 2 +< [6415] ignorant: 3 +< [6416] ignorant--that: 1 +< [6417] ignore: 2 +< [6418] ignored: 1 +< [6419] ignoring: 1 +< [6420] il: 13 +< [6421] ill: 61 +< [6422] ill-bred: 1 +< [6423] ill-defined: 1 +< [6424] ill-disguised: 1 +< [6425] ill-fame: 1 +< [6426] ill-fated: 1 +< [6427] ill-health: 1 +< [6428] ill-humor: 3 +< [6429] ill-luck: 3 +< [6430] ill-matched: 2 +< [6431] ill-natured: 1 +< [6432] ill-temper: 1 +< [6433] ill-tempered: 3 +< [6434] ill-timed: 1 +< [6435] ill-will: 1 +< [6436] illegitimate: 3 +< [6437] illicit: 1 +< [6438] illiterate: 1 +< [6439] illness: 20 +< [6440] illnesses: 3 +< [6441] illogical: 1 +< [6442] illusion: 1 +< [6443] illustrate: 1 +< [6444] illustration: 1 +< [6445] illustrations: 1 +< [6446] illyitch: 1 +< [6447] ils: 1 +< [6448] image: 5 +< [6449] images: 8 +< [6450] imaginary: 5 +< [6451] imagination: 33 +< [6452] imagine: 49 +< [6453] imagined: 12 +< [6454] imagines: 1 +< [6455] imagining: 3 +< [6456] imaginings: 1 +< [6457] imbecile: 1 +< [6458] imbeciles: 1 +< [6459] imitate: 2 +< [6460] imitated: 2 +< [6461] imitating: 2 +< [6462] imitation: 5 +< [6463] imitations: 1 +< [6464] immaterial: 1 +< [6465] immediate: 5 +< [6466] immediately: 98 +< [6467] immediately--and: 1 +< [6468] immense: 30 +< [6469] immensity: 1 +< [6470] immoral: 6 +< [6471] immorality: 3 +< [6472] immortality: 1 +< [6473] immovably: 2 +< [6474] impalpable: 1 +< [6475] impassable: 1 +< [6476] impassioned: 1 +< [6477] impatience: 7 +< [6478] impatient: 4 +< [6479] impatiently: 7 +< [6480] impelled: 4 +< [6481] impending: 1 +< [6482] impenetrable: 4 +< [6483] imperceptible: 2 +< [6484] imperceptibly: 6 +< [6485] imperial: 10 +< [6486] imperious: 1 +< [6487] impersonal: 1 +< [6488] impertinence: 1 +< [6489] implacable: 1 +< [6490] implanting: 1 +< [6491] implement: 1 +< [6492] implements: 3 +< [6493] implements--all: 1 +< [6494] implicated: 1 +< [6495] implied: 4 +< [6496] implore: 2 +< [6497] implored: 2 +< [6498] implores: 1 +< [6499] imploring: 5 +< [6500] imploringly: 2 +< [6501] imply: 1 +< [6502] import: 4 +< [6503] importance: 52 +< [6504] important: 62 +< [6505] important--of: 1 +< [6506] imported: 1 +< [6507] impose: 1 +< [6508] imposed: 1 +< [6509] imposing: 2 +< [6510] impossibility: 5 +< [6511] impossible: 108 +< [6512] impossibly: 2 +< [6513] impotent: 1 +< [6514] impoverished: 1 +< [6515] impoverishing: 1 +< [6516] impoverishment: 2 +< [6517] impracticable: 1 +< [6518] impress: 1 +< [6519] impressed: 13 +< [6520] impression: 61 +< [6521] impressions: 6 +< [6522] imprinted: 2 +< [6523] imprisoned: 1 +< [6524] improper: 12 +< [6525] improperly: 1 +< [6526] impropriety: 1 +< [6527] improve: 7 +< [6528] improved: 4 +< [6529] improvement: 2 +< [6530] improvements: 8 +< [6531] improving: 2 +< [6532] imprudence: 2 +< [6533] impudent: 2 +< [6534] impulse: 7 +< [6535] impulses: 1 +< [6536] impulsive: 3 +< [6537] impulsively: 1 +< [6538] impunity: 1 +< [6539] impurities: 1 +< [6540] in: 5989 +< [6541] in--"and: 1 +< [6542] in--her: 1 +< [6543] in--levin: 1 +< [6544] in--so: 1 +< [6545] in-law: 1 +< [6546] in...see: 1 +< [6547] inability: 3 +< [6548] inaccessible: 2 +< [6549] inaccurate: 1 +< [6550] inactivity: 2 +< [6551] inane: 1 +< [6552] inapplicable: 1 +< [6553] inappropriate: 2 +< [6554] inappropriately: 2 +< [6555] inaudible: 1 +< [6556] inborn: 1 +< [6557] incapable: 19 +< [6558] incapacity: 1 +< [6559] incapacity--i: 1 +< [6560] incarnation: 2 +< [6561] incautiously: 1 +< [6562] incensed: 2 +< [6563] incessant: 4 +< [6564] incessantly: 6 +< [6565] incident: 6 +< [6566] incidental: 3 +< [6567] incidentally: 1 +< [6568] incidents: 6 +< [6569] incidents--paltry: 1 +< [6570] incitement: 1 +< [6571] inclination: 6 +< [6572] inclinations: 2 +< [6573] inclined: 2 +< [6574] include: 1 +< [6575] included: 3 +< [6576] includes: 1 +< [6577] including: 10 +< [6578] incognito: 1 +< [6579] incoherence: 1 +< [6580] incoherent: 1 +< [6581] income: 11 +< [6582] incomes: 2 +< [6583] incommensurable: 1 +< [6584] incomparably: 1 +< [6585] incomplete: 2 +< [6586] incomprehensible: 16 +< [6587] incomprehensibly: 2 +< [6588] inconceivable: 3 +< [6589] inconceivably: 1 +< [6590] incongruous: 1 +< [6591] inconsistent: 1 +< [6592] inconsolable: 1 +< [6593] inconspicuous: 2 +< [6594] incontestable: 5 +< [6595] incontestably: 3 +< [6596] inconvenient: 1 +< [6597] incorrectness: 1 +< [6598] incorrigible: 2 +< [6599] increase: 5 +< [6600] increased: 6 +< [6601] increasing: 7 +< [6602] increasingly: 1 +< [6603] incredible: 2 +< [6604] incredulity: 1 +< [6605] incredulous: 1 +< [6606] incurred: 1 +< [6607] indecision: 2 +< [6608] indecorous: 1 +< [6609] indeed: 98 +< [6610] indeed--zola: 1 +< [6611] indefinable: 1 +< [6612] indefinite: 2 +< [6613] indefiniteness: 6 +< [6614] indemnify: 1 +< [6615] indemnity: 1 +< [6616] independence: 7 +< [6617] independent: 12 +< [6618] independently: 5 +< [6619] indescribable: 1 +< [6620] indestructibility: 1 +< [6621] india: 2 +< [6622] indicate: 2 +< [6623] indicated: 5 +< [6624] indicating: 14 +< [6625] indications: 2 +< [6626] indicative: 2 +< [6627] indifference: 23 +< [6628] indifferent: 18 +< [6629] indifferently: 6 +< [6630] indignant: 3 +< [6631] indignation: 6 +< [6632] indirect: 1 +< [6633] indirectly: 2 +< [6634] indiscreet: 1 +< [6635] indiscriminately: 1 +< [6636] indispensable: 3 +< [6637] indisposed: 1 +< [6638] indisposition: 3 +< [6639] indistinctly: 1 +< [6640] individual: 11 +< [6641] individualistic: 1 +< [6642] individuality: 1 +< [6643] individually: 3 +< [6644] individuals: 1 +< [6645] indolence: 1 +< [6646] indoor: 1 +< [6647] indoors: 5 +< [6648] indubitable: 2 +< [6649] indubitable--she: 1 +< [6650] indubitably: 3 +< [6651] induce: 2 +< [6652] induced: 3 +< [6653] inducement: 1 +< [6654] indulge: 1 +< [6655] indulged: 1 +< [6656] indulgence: 2 +< [6657] indulgent: 3 +< [6658] inequality: 4 +< [6659] inertia: 2 +< [6660] inevitability: 3 +< [6661] inevitable: 10 +< [6662] inevitably: 9 +< [6663] inexact: 1 +< [6664] inexcusably: 1 +< [6665] inexhaustible: 1 +< [6666] inexpensive: 1 +< [6667] inexperience: 1 +< [6668] inexperienced: 2 +< [6669] inexplicable: 2 +< [6670] infallible: 4 +< [6671] infallibly: 2 +< [6672] infamous: 3 +< [6673] infant: 1 +< [6674] infantry: 3 +< [6675] infatuation: 1 +< [6676] infected: 11 +< [6677] infectious: 5 +< [6678] infectiously: 1 +< [6679] inferior: 5 +< [6680] inferiors: 1 +< [6681] infernal: 3 +< [6682] infidelities: 1 +< [6683] infidelity: 10 +< [6684] infinite: 6 +< [6685] inflammation: 2 +< [6686] influence: 44 +< [6687] influenced: 3 +< [6688] influences: 2 +< [6689] influential: 2 +< [6690] influx: 1 +< [6691] inform: 10 +< [6692] information: 13 +< [6693] informed: 8 +< [6694] informs: 1 +< [6695] infrequent: 1 +< [6696] infrequently: 1 +< [6697] infringement: 1 +< [6698] infuriated: 1 +< [6699] ingenious: 1 +< [6700] ingeniously: 1 +< [6701] ingenuity: 1 +< [6702] ingratiate: 1 +< [6703] ingratiating: 2 +< [6704] ingredient: 1 +< [6705] inhale: 1 +< [6706] inhaling: 1 +< [6707] inheritance: 1 +< [6708] inherited: 1 +< [6709] inimitable: 1 +< [6710] initial: 3 +< [6711] initiated: 1 +< [6712] injudicious: 1 +< [6713] injured: 7 +< [6714] injuring: 1 +< [6715] injuriously: 1 +< [6716] injury: 1 +< [6717] injury--generals: 1 +< [6718] injustice: 6 +< [6719] ink: 1 +< [6720] inmost: 2 +< [6721] inn: 3 +< [6722] inner: 24 +< [6723] innocence: 4 +< [6724] innocent: 20 +< [6725] innuendo: 1 +< [6726] innuendoes: 1 +< [6727] innumerable: 1 +< [6728] inoffensive: 3 +< [6729] inquire: 11 +< [6730] inquired: 26 +< [6731] inquirer: 1 +< [6732] inquiries: 13 +< [6733] inquiring: 6 +< [6734] inquiringly: 16 +< [6735] inquiry: 15 +< [6736] inquisitive: 3 +< [6737] inquisitively: 3 +< [6738] insane: 1 +< [6739] insanely: 3 +< [6740] inseparable: 1 +< [6741] inseparables: 2 +< [6742] inseparably: 1 +< [6743] inside: 5 +< [6744] insight: 6 +< [6745] insignificance: 1 +< [6746] insignificant: 1 +< [6747] insincere: 1 +< [6748] insincerity: 2 +< [6749] insinuated: 1 +< [6750] insist: 4 +< [6751] insisted: 15 +< [6752] insistence: 1 +< [6753] insistently: 1 +< [6754] insisting: 6 +< [6755] insists: 1 +< [6756] insolent: 1 +< [6757] insolently: 1 +< [6758] insoluble: 7 +< [6759] inspecting: 1 +< [6760] inspection: 1 +< [6761] inspector: 1 +< [6762] inspiration: 4 +< [6763] inspire: 1 +< [6764] inspired: 3 +< [6765] instability: 1 +< [6766] installment: 2 +< [6767] installments: 1 +< [6768] instance: 19 +< [6769] instance--would: 1 +< [6770] instances: 6 +< [6771] instant: 101 +< [6772] instant's: 6 +< [6773] instantaneous: 2 +< [6774] instantaneously: 1 +< [6775] instantly: 13 +< [6776] instants: 1 +< [6777] instead: 47 +< [6778] instigation: 1 +< [6779] instilled: 1 +< [6780] instilling: 1 +< [6781] instinct: 3 +< [6782] instinctive: 3 +< [6783] instinctively: 9 +< [6784] instincts: 2 +< [6785] instituted: 2 +< [6786] institution: 8 +< [6787] institutions: 9 +< [6788] instruction: 1 +< [6789] instructions: 2 +< [6790] instrument: 1 +< [6791] instruments: 2 +< [6792] insufferable: 3 +< [6793] insufferably: 4 +< [6794] insult: 6 +< [6795] insulted: 8 +< [6796] insulting: 5 +< [6797] insults: 2 +< [6798] insuperable: 1 +< [6799] insupportable: 1 +< [6800] insurmountable: 1 +< [6801] integral: 2 +< [6802] intellect: 14 +< [6803] intellectual: 19 +< [6804] intellectually: 1 +< [6805] intellectuals: 1 +< [6806] intelligence: 10 +< [6807] intelligent: 9 +< [6808] intelligible: 2 +< [6809] intend: 2 +< [6810] intended: 13 +< [6811] intended--that: 1 +< [6812] intended...i: 1 +< [6813] intending: 7 +< [6814] intense: 27 +< [6815] intensely: 10 +< [6816] intensest: 1 +< [6817] intensified: 7 +< [6818] intensify: 2 +< [6819] intensity: 7 +< [6820] intent: 7 +< [6821] intention: 17 +< [6822] intentional: 2 +< [6823] intentionally: 9 +< [6824] intentions: 8 +< [6825] intently: 27 +< [6826] intercourse: 1 +< [6827] interest: 97 +< [6828] interest--horses: 1 +< [6829] interested: 66 +< [6830] interesting: 52 +< [6831] interests: 27 +< [6832] interests--in: 1 +< [6833] interfere: 4 +< [6834] interfered: 1 +< [6835] interference: 5 +< [6836] interior: 1 +< [6837] interlaced: 1 +< [6838] interlacing: 1 +< [6839] intermediate: 2 +< [6840] internal: 2 +< [6841] international: 1 +< [6842] interpolate: 1 +< [6843] interposed: 4 +< [6844] interpret: 2 +< [6845] interpretation: 12 +< [6846] interpretations: 1 +< [6847] interpreted: 5 +< [6848] interpreter: 1 +< [6849] interpreting: 1 +< [6850] interrogation--used: 1 +< [6851] interrupt: 4 +< [6852] interrupted: 43 +< [6853] interrupting: 12 +< [6854] interruption: 1 +< [6855] interval: 8 +< [6856] intervals: 3 +< [6857] intervened: 1 +< [6858] intervention: 1 +< [6859] interview: 14 +< [6860] interviews: 4 +< [6861] intimacy: 12 +< [6862] intimate: 23 +< [6863] intimately: 2 +< [6864] intimidated: 1 +< [6865] into: 799 +< [6866] intolerable: 8 +< [6867] intolerably: 2 +< [6868] intolerant: 1 +< [6869] intonation: 3 +< [6870] intonations: 3 +< [6871] intoxicated: 5 +< [6872] intoxication: 1 +< [6873] intractably: 1 +< [6874] intricate: 2 +< [6875] intrigue: 6 +< [6876] intrigues: 3 +< [6877] intriguing: 1 +< [6878] intrinsically: 1 +< [6879] introduce: 9 +< [6880] introduced: 18 +< [6881] introducing: 3 +< [6882] introduction: 4 +< [6883] intruder: 1 +< [6884] intruding: 1 +< [6885] intrust: 4 +< [6886] intrusted: 3 +< [6887] intrusting: 1 +< [6888] intuition: 1 +< [6889] intuitive: 1 +< [6890] intérieur: 1 +< [6891] invalid: 14 +< [6892] invalid?--heard: 1 +< [6893] invalidity: 1 +< [6894] invalids: 5 +< [6895] invariable: 4 +< [6896] invariably: 4 +< [6897] invent: 5 +< [6898] invented: 6 +< [6899] inventing: 4 +< [6900] invention: 1 +< [6901] investigate: 4 +< [6902] investigated: 3 +< [6903] investigations: 1 +< [6904] inveterate: 2 +< [6905] invincible: 1 +< [6906] invisible: 1 +< [6907] invitation: 7 +< [6908] invitations: 2 +< [6909] invite: 6 +< [6910] invited: 16 +< [6911] invites: 1 +< [6912] inviting: 1 +< [6913] invoice: 1 +< [6914] involuntarily: 12 +< [6915] involuntary: 1 +< [6916] involved: 1 +< [6917] involving: 1 +< [6918] inward: 11 +< [6919] inwardly: 7 +< [6920] iodine: 2 +< [6921] iou: 1 +< [6922] ipat: 3 +< [6923] irascibility: 1 +< [6924] irascible: 3 +< [6925] irate: 1 +< [6926] irdische: 1 +< [6927] irish: 2 +< [6928] irksome: 4 +< [6929] iron: 13 +< [6930] ironical: 14 +< [6931] ironically: 7 +< [6932] ironing-board: 3 +< [6933] irony: 12 +< [6934] irrational: 7 +< [6935] irrationally: 1 +< [6936] irregular: 2 +< [6937] irregularities: 1 +< [6938] irregularity: 2 +< [6939] irregularly: 2 +< [6940] irrelevant: 2 +< [6941] irrepressible: 7 +< [6942] irrepressibly: 1 +< [6943] irreproachable: 2 +< [6944] irresistible: 2 +< [6945] irresistibly: 1 +< [6946] irresolutely: 1 +< [6947] irresolution: 1 +< [6948] irreverent: 1 +< [6949] irrevocably: 1 +< [6950] irrigation: 7 +< [6951] irritability: 8 +< [6952] irritable: 12 +< [6953] irritably: 1 +< [6954] irritate: 1 +< [6955] irritated: 18 +< [6956] irritates: 2 +< [6957] irritating: 6 +< [6958] irritation: 7 +< [6959] irs: 1 +< [6960] is: 1439 +< [6961] is!"--and: 1 +< [6962] is--but: 1 +< [6963] is--gambling: 1 +< [6964] is--how: 1 +< [6965] is--like: 1 +< [6966] is--such: 1 +< [6967] is--the: 1 +< [6968] is...how: 1 +< [6969] is...that: 1 +< [6970] is...you: 1 +< [6971] isaac: 2 +< [6972] island: 1 +< [6973] islands: 1 +< [6974] isn't: 53 +< [6975] isolated: 1 +< [6976] isolation: 3 +< [6977] issue: 2 +< [6978] issues: 1 +< [6979] ist's: 1 +< [6980] it: 3897 +< [6981] it!--plop: 1 +< [6982] it'll: 20 +< [6983] it's: 602 +< [6984] it--"suppose: 1 +< [6985] it--from: 1 +< [6986] it--hardly: 1 +< [6987] it--having: 1 +< [6988] it--he: 1 +< [6989] it--his: 1 +< [6990] it--in: 1 +< [6991] it--it: 1 +< [6992] it--it's: 2 +< [6993] it--look: 1 +< [6994] it--not: 1 +< [6995] it--one: 1 +< [6996] it--only: 1 +< [6997] it--over: 1 +< [6998] it--that: 3 +< [6999] it--the: 1 +< [7000] it--threat: 1 +< [7001] it--to: 1 +< [7002] it--whether: 1 +< [7003] it--why: 1 +< [7004] it--with: 1 +< [7005] it--your: 1 +< [7006] it...because: 1 +< [7007] it?)--alexey: 1 +< [7008] it?--geometrical: 1 +< [7009] it?...what: 1 +< [7010] italian: 15 +< [7011] italy: 3 +< [7012] items: 1 +< [7013] iteration: 1 +< [7014] its: 211 +< [7015] itself: 81 +< [7016] itself--death: 1 +< [7017] ivan: 22 +< [7018] ivan's: 1 +< [7019] ivanitch: 5 +< [7020] ivanov: 3 +< [7021] ivanov-strauss-renan: 1 +< [7022] ivanovitch: 282 +< [7023] ivanovitch's: 19 +< [7024] ivanovitch...to: 1 +< [7025] ivanovna: 95 +< [7026] ivanovna's: 14 +< [7027] ivory: 3 +< [7028] ivy: 1 +< [7029] j'adore: 1 +< [7030] j'ai: 1 +< [7031] j'en: 1 +< [7032] ja: 1 +< [7033] jabber: 1 +< [7034] jacket: 18 +< [7035] jackets: 2 +< [7036] jaloux: 1 +< [7037] jam: 14 +< [7038] jam-making: 2 +< [7039] jamais: 2 +< [7040] james: 1 +< [7041] jar: 2 +< [7042] jargon: 1 +< [7043] jarred: 5 +< [7044] jarring: 2 +< [7045] jauntily: 5 +< [7046] jaunty: 2 +< [7047] jaw: 7 +< [7048] jaws: 7 +< [7049] je: 5 +< [7050] jealous: 28 +< [7051] jealousies: 1 +< [7052] jealousy: 30 +< [7053] jeer: 2 +< [7054] jeered: 4 +< [7055] jeering: 3 +< [7056] jeers: 2 +< [7057] jerk: 3 +< [7058] jerked: 3 +< [7059] jerkin: 3 +< [7060] jerking: 2 +< [7061] jest: 7 +< [7062] jest,--"'disgrace: 1 +< [7063] jested: 1 +< [7064] jesting: 7 +< [7065] jestingly: 4 +< [7066] jests: 1 +< [7067] jesus: 1 +< [7068] jet: 1 +< [7069] jets: 1 +< [7070] jeune: 2 +< [7071] jew: 3 +< [7072] jews: 3 +< [7073] jingling: 2 +< [7074] jivio: 3 +< [7075] job: 3 +< [7076] jobmaster: 1 +< [7077] jockey: 6 +< [7078] jockeys: 1 +< [7079] jocose: 1 +< [7080] jocosely: 2 +< [7081] jocoseness: 1 +< [7082] john: 6 +< [7083] join: 10 +< [7084] joined: 17 +< [7085] joinest: 2 +< [7086] joining: 3 +< [7087] joint: 2 +< [7088] joints: 2 +< [7089] joke: 15 +< [7090] joke--thought: 1 +< [7091] joked: 1 +< [7092] jokes: 7 +< [7093] joking: 6 +< [7094] joli: 1 +< [7095] jolie: 1 +< [7096] jolly: 5 +< [7097] jolting: 4 +< [7098] jones: 1 +< [7099] joseph: 1 +< [7100] jostled: 2 +< [7101] jouer: 1 +< [7102] journal: 2 +< [7103] journalist: 1 +< [7104] journalists: 1 +< [7105] journals: 2 +< [7106] journey: 24 +< [7107] journée: 1 +< [7108] jove: 1 +< [7109] jovial: 2 +< [7110] jovially: 1 +< [7111] joy: 42 +< [7112] joyful: 8 +< [7113] joyfully: 11 +< [7114] joyous: 7 +< [7115] joyously: 4 +< [7116] joys: 6 +< [7117] jubilee: 3 +< [7118] judge: 26 +< [7119] judged: 3 +< [7120] judges: 1 +< [7121] judging: 7 +< [7122] judgment: 7 +< [7123] judicial: 1 +< [7124] juicy: 4 +< [7125] jules: 2 +< [7126] july: 4 +< [7127] jump: 4 +< [7128] jumped: 24 +< [7129] jumping: 10 +< [7130] jumps: 1 +< [7131] junctions: 1 +< [7132] juncture: 1 +< [7133] june: 8 +< [7134] junket: 3 +< [7135] juries: 1 +< [7136] jurisdiction: 1 +< [7137] jury: 1 +< [7138] juryman: 1 +< [7139] jusqu'au: 1 +< [7140] just: 476 +< [7141] juster: 1 +< [7142] justice: 15 +< [7143] justices: 5 +< [7144] justified: 4 +< [7145] justify: 6 +< [7146] justifying: 5 +< [7147] justly: 3 +< [7148] jutting: 2 +< [7149] k...ha: 2 +< [7150] kalinin: 1 +< [7151] kalinov: 1 +< [7152] kaluga: 1 +< [7153] kaluzhsky: 4 +< [7154] kamerovsky: 5 +< [7155] kammerherr: 1 +< [7156] kammerjunker: 3 +< [7157] kant: 1 +< [7158] kapitonitch: 11 +< [7159] karazinsky: 2 +< [7160] karenin: 44 +< [7161] karenin's: 7 +< [7162] karenina: 40 +< [7163] karenina's: 4 +< [7164] karenins: 13 +< [7165] karibanov: 2 +< [7166] karl: 1 +< [7167] karr: 1 +< [7168] kartasov: 2 +< [7169] kartasova: 4 +< [7170] kartasovs: 2 +< [7171] kashin: 4 +< [7172] kashinsky: 4 +< [7173] katavasov: 72 +< [7174] katavasov's: 7 +< [7175] katerina: 12 +< [7176] katia: 1 +< [7177] katinka: 1 +< [7178] katka: 1 +< [7179] katya: 9 +< [7180] kauffmann: 2 +< [7181] kaulbach: 2 +< [7182] kazan: 1 +< [7183] kedrov: 3 +< [7184] keen: 8 +< [7185] keener: 3 +< [7186] keenest: 2 +< [7187] keenly: 6 +< [7188] keep: 107 +< [7189] keeper: 2 +< [7190] keeping: 36 +< [7191] keeps: 9 +< [7192] keiss: 1 +< [7193] kept: 99 +< [7194] kerchief: 8 +< [7195] kerchiefs: 1 +< [7196] kernel: 1 +< [7197] kettle: 1 +< [7198] key: 4 +< [7199] keys: 1 +< [7200] khiva: 1 +< [7201] kicked: 3 +< [7202] kicking: 1 +< [7203] kid: 1 +< [7204] kiev: 3 +< [7205] kill: 9 +< [7206] killed: 21 +< [7207] killing: 6 +< [7208] kind: 26 +< [7209] kind-hearted: 3 +< [7210] kind-looking: 1 +< [7211] kinder: 2 +< [7212] kindest: 1 +< [7213] kindled: 2 +< [7214] kindliness: 3 +< [7215] kindly: 19 +< [7216] kindness: 4 +< [7217] kindred: 1 +< [7218] kinds: 6 +< [7219] kinds--though: 1 +< [7220] king: 7 +< [7221] kingdom: 1 +< [7222] kingdom--that: 1 +< [7223] kings: 1 +< [7224] kinship: 2 +< [7225] kirill: 1 +< [7226] kirillov: 2 +< [7227] kirillovitch: 5 +< [7228] kirillovitch's: 1 +< [7229] kislovka: 1 +< [7230] kiss: 25 +< [7231] kiss-in-the-ring: 1 +< [7232] kissed: 53 +< [7233] kisses: 4 +< [7234] kisses--that: 1 +< [7235] kissing: 33 +< [7236] kissingen: 1 +< [7237] kitchen: 6 +< [7238] kitchen-maid: 1 +< [7239] kitty: 597 +< [7240] kitty's: 74 +< [7241] kitty--what: 1 +< [7242] klaras: 1 +< [7243] klopot: 1 +< [7244] klopots: 1 +< [7245] knack: 1 +< [7246] knaust: 1 +< [7247] knave: 2 +< [7248] knavishness: 1 +< [7249] kneaded: 1 +< [7250] knee: 6 +< [7251] kneeling: 3 +< [7252] knees: 17 +< [7253] knelt: 1 +< [7254] knew: 390 +< [7255] knick-knacks: 3 +< [7256] knife: 11 +< [7257] knife...but: 1 +< [7258] knit: 1 +< [7259] knitted: 4 +< [7260] knitting: 12 +< [7261] knives: 1 +< [7262] knob: 1 +< [7263] knobbiness: 1 +< [7264] knock: 1 +< [7265] knock-kneed: 1 +< [7266] knocked: 5 +< [7267] knocking: 5 +< [7268] knot: 2 +< [7269] know: 670 +< [7270] know--betsy's: 1 +< [7271] know--seryozha: 1 +< [7272] know--whether: 1 +< [7273] know...i: 1 +< [7274] know...stay: 1 +< [7275] knowing: 81 +< [7276] knowingly: 1 +< [7277] knowledge: 33 +< [7278] known: 55 +< [7279] knows: 57 +< [7280] knuckles: 1 +< [7281] kolok: 1 +< [7282] kolpensky: 2 +< [7283] kolpik: 2 +< [7284] komissarov: 2 +< [7285] kommt: 1 +< [7286] kondraty: 1 +< [7287] konstantin: 111 +< [7288] konstantin's: 1 +< [7289] kootik: 1 +< [7290] kopecks: 4 +< [7291] korney: 13 +< [7292] korney's: 1 +< [7293] korsunskaya: 2 +< [7294] korsunsky: 14 +< [7295] korsunsky's: 2 +< [7296] korsunskys: 1 +< [7297] korzinskaya: 1 +< [7298] kostya: 31 +< [7299] kostya's: 3 +< [7300] kouzma: 21 +< [7301] kouzma's: 1 +< [7302] koznishev: 22 +< [7303] koznishev's: 1 +< [7304] krak: 12 +< [7305] krasnoe: 1 +< [7306] krilov's: 1 +< [7307] kritsky: 9 +< [7308] kritsky's: 1 +< [7309] krivin: 1 +< [7310] krivin's: 2 +< [7311] krivtsov: 1 +< [7312] krupov: 1 +< [7313] kruzin's: 1 +< [7314] kursk: 2 +< [7315] kuzovlev: 6 +< [7316] kvas: 1 +< [7317] kvitsky: 1 +< [7318] l'allemand: 1 +< [7319] l'anglais: 1 +< [7320] l'anglaise: 1 +< [7321] l'estragon: 1 +< [7322] l'existence: 1 +< [7323] l'âge: 1 +< [7324] la: 22 +< [7325] label: 1 +< [7326] labor: 47 +< [7327] labor--all: 1 +< [7328] laborer: 25 +< [7329] laborers: 35 +< [7330] laboring: 1 +< [7331] laborious: 1 +< [7332] laboriously: 1 +< [7333] labors: 5 +< [7334] lace: 18 +< [7335] lack: 24 +< [7336] lacking: 1 +< [7337] laconic: 1 +< [7338] lad: 6 +< [7339] lad's: 1 +< [7340] ladder: 2 +< [7341] laden: 1 +< [7342] ladies: 61 +< [7343] ladies--an: 1 +< [7344] ladled: 1 +< [7345] lads: 9 +< [7346] lady: 83 +< [7347] lady's: 6 +< [7348] lafitte: 2 +< [7349] lagged: 1 +< [7350] laid: 46 +< [7351] lain: 6 +< [7352] lair: 1 +< [7353] laisser: 1 +< [7354] lake: 2 +< [7355] lamb: 1 +< [7356] lambs: 1 +< [7357] lame: 2 +< [7358] lament: 1 +< [7359] lamp: 19 +< [7360] lamp-chimneys: 1 +< [7361] lamp-shade: 1 +< [7362] lamplight: 3 +< [7363] lamppost: 1 +< [7364] lamps: 3 +< [7365] land: 95 +< [7366] land's: 1 +< [7367] land--the: 1 +< [7368] land-steward: 1 +< [7369] landau: 21 +< [7370] landau's: 1 +< [7371] landau--bezzubov: 1 +< [7372] landed: 2 +< [7373] landing: 4 +< [7374] landlady: 1 +< [7375] landlord: 3 +< [7376] landowner: 28 +< [7377] landowner's: 3 +< [7378] landowners: 9 +< [7379] lands: 11 +< [7380] landscape: 1 +< [7381] language: 10 +< [7382] languages: 1 +< [7383] languid: 1 +< [7384] languidly: 3 +< [7385] lank: 2 +< [7386] lankovsky's: 1 +< [7387] lantern: 2 +< [7388] lap: 4 +< [7389] large: 29 +< [7390] larger: 7 +< [7391] larger--part: 1 +< [7392] largest: 1 +< [7393] larks: 1 +< [7394] lashed: 1 +< [7395] lashes: 3 +< [7396] laska: 43 +< [7397] laska's: 4 +< [7398] lassalle: 1 +< [7399] last: 192 +< [7400] lasted: 13 +< [7401] lasting: 3 +< [7402] lasts: 1 +< [7403] latch: 1 +< [7404] late: 84 +< [7405] late-sown: 1 +< [7406] lately: 16 +< [7407] later: 65 +< [7408] latest: 8 +< [7409] lather: 1 +< [7410] latin: 3 +< [7411] latin--it's: 1 +< [7412] latter: 10 +< [7413] laugh: 33 +< [7414] laughed: 37 +< [7415] laughing: 55 +< [7416] laughing-stock: 2 +< [7417] laughingly: 1 +< [7418] laughs: 3 +< [7419] laughter: 30 +< [7420] launch: 1 +< [7421] launched: 2 +< [7422] laundress: 1 +< [7423] laundry: 1 +< [7424] laura: 1 +< [7425] lavish: 2 +< [7426] lavished: 3 +< [7427] lavishing: 1 +< [7428] lavrenty: 1 +< [7429] law: 31 +< [7430] lawful: 2 +< [7431] lawfully: 1 +< [7432] lawn: 1 +< [7433] lawn-tennis: 1 +< [7434] laws: 20 +< [7435] lawsuit: 1 +< [7436] lawyer: 24 +< [7437] lawyer's: 6 +< [7438] lawyers: 4 +< [7439] lay: 79 +< [7440] layer: 3 +< [7441] laying: 21 +< [7442] lays: 1 +< [7443] lazily: 3 +< [7444] laziness: 2 +< [7445] lazy: 2 +< [7446] le: 16 +< [7447] lead: 21 +< [7448] leaders: 4 +< [7449] leading: 13 +< [7450] leads: 3 +< [7451] leaf: 9 +< [7452] league: 1 +< [7453] leak: 1 +< [7454] leaked: 1 +< [7455] lean: 4 +< [7456] leaned: 5 +< [7457] leaning: 20 +< [7458] leap: 2 +< [7459] leaped: 3 +< [7460] leaping: 1 +< [7461] lear: 3 +< [7462] learn: 20 +< [7463] learned: 41 +< [7464] learners: 1 +< [7465] learning: 16 +< [7466] learns: 1 +< [7467] least: 68 +< [7468] leather: 10 +< [7469] leather-covered: 1 +< [7470] leave: 84 +< [7471] leaves: 14 +< [7472] leaving: 42 +< [7473] lectern: 7 +< [7474] lecture: 2 +< [7475] lecture-room: 1 +< [7476] lectures: 1 +< [7477] led: 39 +< [7478] lee: 1 +< [7479] leeches: 1 +< [7480] left: 227 +< [7481] leg: 20 +< [7482] legal: 9 +< [7483] legalize: 1 +< [7484] legally: 2 +< [7485] leggings: 1 +< [7486] legible: 1 +< [7487] legion: 2 +< [7488] legitimate: 4 +< [7489] legitimately: 1 +< [7490] legitimization: 1 +< [7491] legitimize: 2 +< [7492] legs: 64 +< [7493] leisure: 3 +< [7494] leisure--and: 1 +< [7495] leisurely: 1 +< [7496] lemon: 3 +< [7497] lend: 3 +< [7498] lending: 1 +< [7499] length: 8 +< [7500] lengthening: 1 +< [7501] lengths: 1 +< [7502] lengthwise: 1 +< [7503] lenient: 1 +< [7504] lent: 9 +< [7505] leo: 4 +< [7506] lepers: 1 +< [7507] les: 6 +< [7508] less: 56 +< [7509] less--i'll: 1 +< [7510] lessen: 1 +< [7511] lessive: 2 +< [7512] lesson: 19 +< [7513] lessons: 8 +< [7514] lest: 1 +< [7515] let: 234 +< [7516] let's: 42 +< [7517] lets: 1 +< [7518] letter: 124 +< [7519] letter...his: 1 +< [7520] lettering: 1 +< [7521] letters: 24 +< [7522] letting: 31 +< [7523] levee: 3 +< [7524] level: 10 +< [7525] leveled: 1 +< [7526] lever: 1 +< [7527] levin: 1513 +< [7528] levin's: 99 +< [7529] levin--"a: 1 +< [7530] levin--"he's: 1 +< [7531] levin--to: 1 +< [7532] levins: 13 +< [7533] levy: 2 +< [7534] levy's: 1 +< [7535] liability: 5 +< [7536] liable: 3 +< [7537] liaison: 2 +< [7538] liar: 2 +< [7539] liberal: 12 +< [7540] liberalism: 5 +< [7541] liberalism--not: 1 +< [7542] liberals: 1 +< [7543] liberty: 6 +< [7544] library: 3 +< [7545] libre: 1 +< [7546] license: 16 +< [7547] licensed: 1 +< [7548] licking: 3 +< [7549] lid: 1 +< [7550] lidi: 1 +< [7551] lidia: 110 +< [7552] lidia's: 1 +< [7553] lidia--i'm: 1 +< [7554] lie: 19 +< [7555] lied: 1 +< [7556] lies: 9 +< [7557] lieschen: 1 +< [7558] lieu: 2 +< [7559] lieutenant: 1 +< [7560] life: 451 +< [7561] life's: 2 +< [7562] life--all: 1 +< [7563] life--and: 1 +< [7564] life--apart: 1 +< [7565] life--falsehood: 1 +< [7566] life--how: 1 +< [7567] life--if: 1 +< [7568] life--the: 1 +< [7569] life--those: 1 +< [7570] lifeless: 3 +< [7571] lifelessness: 1 +< [7572] lifetime: 1 +< [7573] lift: 6 +< [7574] lifted: 27 +< [7575] lifting: 25 +< [7576] lifts: 1 +< [7577] light: 118 +< [7578] light-colored: 1 +< [7579] light-hearted: 5 +< [7580] light-heartedly: 1 +< [7581] light-heartedness: 1 +< [7582] lighted: 41 +< [7583] lightening: 1 +< [7584] lighter: 2 +< [7585] lighting: 7 +< [7586] lightly: 22 +< [7587] lightness: 5 +< [7588] lightning: 6 +< [7589] lights: 2 +< [7590] like: 516 +< [7591] like--first-rate: 1 +< [7592] like--i'm: 1 +< [7593] like--should: 1 +< [7594] liked: 127 +< [7595] likelihood: 2 +< [7596] likely: 30 +< [7597] likely...i: 1 +< [7598] likeness: 1 +< [7599] likes: 11 +< [7600] liking: 10 +< [7601] lilac: 16 +< [7602] lili: 1 +< [7603] lille: 1 +< [7604] lily: 5 +< [7605] lily's: 1 +< [7606] limb: 1 +< [7607] limbs: 3 +< [7608] lime: 8 +< [7609] lime-tree: 2 +< [7610] lime-trees: 1 +< [7611] limes: 1 +< [7612] limetree: 1 +< [7613] limetrees: 1 +< [7614] limit: 4 +< [7615] limitation: 3 +< [7616] limitations: 1 +< [7617] limited: 7 +< [7618] limits: 8 +< [7619] limp: 2 +< [7620] limping: 2 +< [7621] line: 29 +< [7622] lined: 2 +< [7623] linen: 9 +< [7624] linen's: 1 +< [7625] lines: 21 +< [7626] linger: 1 +< [7627] lingered: 2 +< [7628] lingering: 1 +< [7629] link: 2 +< [7630] linked: 1 +< [7631] linking: 2 +< [7632] links: 3 +< [7633] linon: 11 +< [7634] lions: 1 +< [7635] lip: 8 +< [7636] lips: 98 +< [7637] liquor: 1 +< [7638] lisp: 1 +< [7639] lisping: 1 +< [7640] list: 6 +< [7641] listen: 35 +< [7642] listened: 61 +< [7643] listener: 2 +< [7644] listening: 55 +< [7645] listlessly: 3 +< [7646] lit: 3 +< [7647] litanies: 1 +< [7648] litany: 2 +< [7649] literary: 14 +< [7650] literature: 8 +< [7651] litter: 1 +< [7652] little: 460 +< [7653] live: 89 +< [7654] live--to: 1 +< [7655] lived: 61 +< [7656] lived--instead: 1 +< [7657] lived--really: 1 +< [7658] livelier: 1 +< [7659] liveliest: 2 +< [7660] livelihood: 2 +< [7661] liveliness: 2 +< [7662] lively: 23 +< [7663] liver: 3 +< [7664] liveried: 1 +< [7665] liveries: 3 +< [7666] liveries,--that: 1 +< [7667] livery: 3 +< [7668] lives: 12 +< [7669] living: 100 +< [7670] living--a: 1 +< [7671] living--she: 1 +< [7672] liza: 21 +< [7673] liza's: 1 +< [7674] lizaveta: 24 +< [7675] load: 5 +< [7676] loaded: 3 +< [7677] loading: 4 +< [7678] loads: 3 +< [7679] loan: 1 +< [7680] loath: 2 +< [7681] loathed: 2 +< [7682] loathes: 1 +< [7683] loathing: 12 +< [7684] loathsome: 13 +< [7685] loathsomeness: 3 +< [7686] loaves: 3 +< [7687] lobster: 1 +< [7688] local: 5 +< [7689] located: 4 +< [7690] locations: 2 +< [7691] lock: 5 +< [7692] locked: 8 +< [7693] locket: 2 +< [7694] locks: 3 +< [7695] locksmith: 1 +< [7696] locksmiths: 2 +< [7697] lockup: 1 +< [7698] lodge: 5 +< [7699] lodged: 2 +< [7700] lodges: 2 +< [7701] lodging: 2 +< [7702] lodgings: 1 +< [7703] loftier: 1 +< [7704] loftiest: 1 +< [7705] loftiness: 3 +< [7706] lofty: 10 +< [7707] logical: 4 +< [7708] logically: 2 +< [7709] lonely: 7 +< [7710] long: 367 +< [7711] long-familiar: 1 +< [7712] long-lived: 1 +< [7713] long-sighted: 2 +< [7714] long-skirted: 1 +< [7715] long-standing: 1 +< [7716] long...that: 1 +< [7717] long...yesterday...i: 1 +< [7718] longed: 42 +< [7719] longer: 40 +< [7720] longing: 16 +< [7721] longs: 2 +< [7722] look: 291 +< [7723] look'ee: 2 +< [7724] look-ee: 2 +< [7725] looked: 335 +< [7726] looking: 362 +< [7727] looking-glass: 10 +< [7728] looking-glasses: 1 +< [7729] lookout: 5 +< [7730] looks: 21 +< [7731] loop: 2 +< [7732] loop-holes: 1 +< [7733] loose: 7 +< [7734] loosed: 1 +< [7735] loosely: 1 +< [7736] loosely-fitting: 1 +< [7737] loosened: 2 +< [7738] lop-eared: 2 +< [7739] loquacity: 1 +< [7740] lord: 26 +< [7741] lore: 1 +< [7742] lose: 17 +< [7743] losing: 27 +< [7744] loss: 27 +< [7745] losses: 1 +< [7746] lost: 65 +< [7747] lot: 18 +< [7748] loth: 1 +< [7749] lots: 5 +< [7750] loud: 26 +< [7751] louder: 6 +< [7752] loudest: 1 +< [7753] loudly: 21 +< [7754] loudness: 1 +< [7755] louis: 1 +< [7756] lounge: 3 +< [7757] lounged: 1 +< [7758] love: 425 +< [7759] love,--and: 1 +< [7760] love--as: 1 +< [7761] love--but: 1 +< [7762] love--not: 1 +< [7763] love--the: 1 +< [7764] love--to: 1 +< [7765] love...both: 1 +< [7766] love...yes: 1 +< [7767] loved: 87 +< [7768] loved--but: 1 +< [7769] loved--even: 1 +< [7770] loveliness: 2 +< [7771] lovely: 20 +< [7772] lover: 16 +< [7773] lover's: 2 +< [7774] lovers: 1 +< [7775] loves: 22 +< [7776] lovesick: 1 +< [7777] loving: 32 +< [7778] lovingkindness: 2 +< [7779] lovingly: 1 +< [7780] low: 41 +< [7781] low-crowned: 1 +< [7782] low-cut: 1 +< [7783] low-lying: 2 +< [7784] low-necked: 4 +< [7785] low-pitched: 1 +< [7786] low-spirited: 4 +< [7787] lowed: 2 +< [7788] lower: 29 +< [7789] lowered: 4 +< [7790] lowering: 9 +< [7791] lowest: 2 +< [7792] lowing: 1 +< [7793] lucca: 1 +< [7794] luck: 9 +< [7795] luckily: 5 +< [7796] luckless: 2 +< [7797] lucky: 8 +< [7798] lucrative: 3 +< [7799] ludicrous: 10 +< [7800] luggage: 4 +< [7801] lukitch: 15 +< [7802] lull: 3 +< [7803] luminous: 1 +< [7804] lump: 3 +< [7805] lunch: 17 +< [7806] lunched: 2 +< [7807] luncheon: 3 +< [7808] lunching: 3 +< [7809] lungs: 3 +< [7810] lurid: 1 +< [7811] lush: 1 +< [7812] lust: 1 +< [7813] luster: 1 +< [7814] lusterless: 1 +< [7815] lusters: 2 +< [7816] luxuriant: 1 +< [7817] luxuries: 1 +< [7818] luxurious: 2 +< [7819] luxurious--dolly: 1 +< [7820] luxuriously: 1 +< [7821] luxury: 12 +< [7822] lvov: 16 +< [7823] lvov's: 5 +< [7824] lvova: 8 +< [7825] lying: 56 +< [7826] lying-in: 2 +< [7827] là: 1 +< [7828] lässt: 1 +< [7829] m: 5 +< [7830] m'a: 1 +< [7831] m'excuserez: 1 +< [7832] ma: 4 +< [7833] ma'am: 3 +< [7834] machine: 32 +< [7835] machinery: 5 +< [7836] machinery--a: 1 +< [7837] machines: 7 +< [7838] macht: 1 +< [7839] macédoine: 1 +< [7840] mad: 8 +< [7841] madam: 1 +< [7842] madame: 122 +< [7843] made: 402 +< [7844] made--simply: 1 +< [7845] made--they: 1 +< [7846] mademoiselle: 20 +< [7847] madman: 3 +< [7848] madman's: 1 +< [7849] madness: 5 +< [7850] maecenas: 1 +< [7851] magazine: 1 +< [7852] magazines: 1 +< [7853] magdalen: 1 +< [7854] magic: 1 +< [7855] magical: 1 +< [7856] magistrates: 1 +< [7857] magnanimity: 5 +< [7858] magnanimous: 3 +< [7859] magnanimous--that: 1 +< [7860] magnanimously: 1 +< [7861] magnificence: 1 +< [7862] magnificent: 7 +< [7863] magnitude: 3 +< [7864] mahotin: 15 +< [7865] mahotin's: 4 +< [7866] maid: 38 +< [7867] maid's: 2 +< [7868] maid-servant: 1 +< [7869] maid-servants: 1 +< [7870] maiden: 1 +< [7871] maiden's: 1 +< [7872] maidenly: 1 +< [7873] maids: 6 +< [7874] maidservant: 1 +< [7875] maidservants: 1 +< [7876] main: 6 +< [7877] mainly: 1 +< [7878] mainspring: 2 +< [7879] maintain: 7 +< [7880] maintained: 15 +< [7881] maintaining: 7 +< [7882] maintains: 1 +< [7883] maintenance: 1 +< [7884] mais: 9 +< [7885] majolica: 1 +< [7886] majority: 14 +< [7887] mak...mak...i: 1 +< [7888] make: 266 +< [7889] makes: 26 +< [7890] making: 106 +< [7891] mal: 1 +< [7892] malachite: 1 +< [7893] male: 2 +< [7894] malice: 1 +< [7895] malicious: 4 +< [7896] malignant: 13 +< [7897] malignantly: 1 +< [7898] malnutrition: 1 +< [7899] malthus: 3 +< [7900] malthus's: 1 +< [7901] maltishtcheva: 2 +< [7902] malvinsky: 1 +< [7903] maman: 18 +< [7904] maman's: 3 +< [7905] mamma: 40 +< [7906] mamma's: 2 +< [7907] mamonova: 1 +< [7908] man: 523 +< [7909] man's: 34 +< [7910] man--all: 1 +< [7911] man--emphatically--in: 1 +< [7912] man--felt: 1 +< [7913] man--unemphatically--in: 1 +< [7914] man--you: 1 +< [7915] man-cook: 1 +< [7916] man-god: 1 +< [7917] manage: 25 +< [7918] managed: 11 +< [7919] management: 13 +< [7920] manager: 3 +< [7921] managing: 5 +< [7922] mandolin: 1 +< [7923] mane: 3 +< [7924] maneuvered: 1 +< [7925] manger: 1 +< [7926] mangle: 1 +< [7927] manhood--when: 1 +< [7928] manifest: 2 +< [7929] manifestation: 5 +< [7930] manifestations: 1 +< [7931] manifested: 1 +< [7932] mankind: 4 +< [7933] manly: 10 +< [7934] manner: 36 +< [7935] manner--_grande: 1 +< [7936] manners: 8 +< [7937] manor: 1 +< [7938] manservant: 3 +< [7939] mantelpiece: 1 +< [7940] mantle: 1 +< [7941] manufactures: 2 +< [7942] manufacturing: 2 +< [7943] manure: 4 +< [7944] manured: 1 +< [7945] manuring: 1 +< [7946] manuscript: 6 +< [7947] manuscripts: 1 +< [7948] many: 115 +< [7949] many"--and: 1 +< [7950] marble: 5 +< [7951] march: 2 +< [7952] mare: 44 +< [7953] mare's: 8 +< [7954] marie: 5 +< [7955] marie's: 1 +< [7956] marie-louise: 1 +< [7957] mariette: 3 +< [7958] mark: 3 +< [7959] marked: 12 +< [7960] marked--greater: 1 +< [7961] marker: 2 +< [7962] marketing: 1 +< [7963] marks: 3 +< [7964] marmot: 1 +< [7965] marquise: 2 +< [7966] marriage: 42 +< [7967] marriages: 7 +< [7968] married: 104 +< [7969] marry: 30 +< [7970] marrying: 7 +< [7971] marsh: 51 +< [7972] marshal: 48 +< [7973] marshal's: 3 +< [7974] marshals: 3 +< [7975] marshalship: 1 +< [7976] marshes: 3 +< [7977] martyr--what: 1 +< [7978] marvel: 3 +< [7979] marveled: 3 +< [7980] marveling: 2 +< [7981] marvelous: 17 +< [7982] marvels: 2 +< [7983] mary: 2 +< [7984] marya: 65 +< [7985] masculine: 7 +< [7986] masha: 19 +< [7987] masha's: 2 +< [7988] mashkin: 5 +< [7989] maslov--that: 1 +< [7990] masquerade: 1 +< [7991] mass: 12 +< [7992] mass--the: 1 +< [7993] massacre: 1 +< [7994] massacred: 1 +< [7995] massive: 3 +< [7996] master: 41 +< [7997] master's: 8 +< [7998] mastered: 2 +< [7999] masters: 6 +< [8000] mastery: 1 +< [8001] match: 13 +< [8002] match-making: 3 +< [8003] matchboxes: 1 +< [8004] matches: 4 +< [8005] matchmaker: 1 +< [8006] matchmaking: 1 +< [8007] material: 15 +< [8008] materialism: 1 +< [8009] materialistic: 2 +< [8010] materialists: 4 +< [8011] materials: 3 +< [8012] maternal: 1 +< [8013] mathematician: 1 +< [8014] matin: 1 +< [8015] matrimony: 4 +< [8016] matrona: 7 +< [8017] matted: 1 +< [8018] matter: 116 +< [8019] mattered: 2 +< [8020] matters: 32 +< [8021] matthew: 1 +< [8022] matting: 1 +< [8023] mattress: 3 +< [8024] mattresses: 1 +< [8025] mature: 1 +< [8026] matvey: 29 +< [8027] maximum: 1 +< [8028] may: 150 +< [8029] maybe: 18 +< [8030] mazankov: 1 +< [8031] mazurka: 14 +< [8032] me: 1117 +< [8033] me!...i: 1 +< [8034] me's: 1 +< [8035] me,--and: 1 +< [8036] me--he: 2 +< [8037] me--i: 1 +< [8038] me--not: 1 +< [8039] me--of: 1 +< [8040] me--only: 1 +< [8041] me--they're: 1 +< [8042] me...and: 1 +< [8043] me...does: 1 +< [8044] me...my: 1 +< [8045] me?...no: 1 +< [8046] me?...not: 1 +< [8047] meadow: 30 +< [8048] meadow--all: 1 +< [8049] meadow-sweet: 1 +< [8050] meadowland: 1 +< [8051] meadows: 8 +< [8052] meal: 3 +< [8053] meals: 1 +< [8054] mean: 69 +< [8055] mean...what: 1 +< [8056] meaning: 90 +< [8057] meaningful: 2 +< [8058] meaningless: 3 +< [8059] means: 70 +< [8060] means--death: 1 +< [8061] means--that: 1 +< [8062] meant: 90 +< [8063] meant...it: 1 +< [8064] meantime: 3 +< [8065] meanwhile: 21 +< [8066] measure: 5 +< [8067] measured: 3 +< [8068] measures: 19 +< [8069] measuring: 1 +< [8070] meat: 1 +< [8071] meat-pies: 1 +< [8072] mechanical: 3 +< [8073] mechanician: 4 +< [8074] mechanism: 3 +< [8075] medals: 2 +< [8076] meddle: 1 +< [8077] mediaeval: 4 +< [8078] mediaevalism: 1 +< [8079] mediation: 1 +< [8080] mediator: 2 +< [8081] medical: 3 +< [8082] medicinal: 2 +< [8083] medicine: 12 +< [8084] medicines: 1 +< [8085] meditating: 1 +< [8086] meditation: 4 +< [8087] meditations: 3 +< [8088] medium: 10 +< [8089] medley: 1 +< [8090] meek: 2 +< [8091] meek-looking: 1 +< [8092] meekness: 2 +< [8093] meet: 94 +< [8094] meeting: 95 +< [8095] meetings: 11 +< [8096] meidel: 1 +< [8097] meine: 1 +< [8098] melan: 1 +< [8099] melancholy: 7 +< [8100] meledinsky--you: 1 +< [8101] mellow: 2 +< [8102] melody: 1 +< [8103] melt: 2 +< [8104] melted: 2 +< [8105] melting: 2 +< [8106] member: 19 +< [8107] members: 19 +< [8108] memorable: 2 +< [8109] memories: 32 +< [8110] memory: 39 +< [8111] memory--when: 1 +< [8112] men: 191 +< [8113] men's: 5 +< [8114] men--he: 1 +< [8115] men--her: 1 +< [8116] menace: 3 +< [8117] menacing: 2 +< [8118] menacingly: 2 +< [8119] mend: 1 +< [8120] mended: 2 +< [8121] mending: 2 +< [8122] menelaus: 1 +< [8123] ment: 1 +< [8124] mental: 22 +< [8125] mentally: 13 +< [8126] mention: 8 +< [8127] mentioned: 14 +< [8128] mentioning: 1 +< [8129] mentone: 1 +< [8130] menu: 2 +< [8131] merchant: 19 +< [8132] merchant's: 3 +< [8133] merchantibility: 1 +< [8134] merchants: 6 +< [8135] merci: 1 +< [8136] mercies: 1 +< [8137] merciful: 5 +< [8138] merciful...thanks: 1 +< [8139] merciless: 3 +< [8140] mercy: 29 +< [8141] mercy's: 4 +< [8142] mere: 24 +< [8143] merely: 78 +< [8144] merest: 1 +< [8145] merged: 4 +< [8146] meridian: 1 +< [8147] merit: 3 +< [8148] merits: 1 +< [8149] merkalova: 11 +< [8150] merkalova's: 1 +< [8151] merrily: 14 +< [8152] merriment: 1 +< [8153] merry: 12 +< [8154] merry-making: 1 +< [8155] mertsalova: 1 +< [8156] merveilles: 1 +< [8157] mes: 1 +< [8158] mesdames: 2 +< [8159] mesmerizer: 1 +< [8160] mess: 3 +< [8161] message: 6 +< [8162] messages: 1 +< [8163] messenger: 7 +< [8164] messieurs: 1 +< [8165] messroom: 2 +< [8166] met: 145 +< [8167] metallic: 1 +< [8168] metaphysical: 1 +< [8169] metaphysics: 2 +< [8170] metayers: 1 +< [8171] method: 11 +< [8172] method--to: 1 +< [8173] methodical: 1 +< [8174] methods: 14 +< [8175] metrov: 22 +< [8176] metrov's: 3 +< [8177] mettlesome: 1 +< [8178] mettre: 1 +< [8179] mezhkovs: 1 +< [8180] michael: 2 +< [8181] michelli: 2 +< [8182] midday's: 1 +< [8183] middle: 42 +< [8184] middle-aged: 5 +< [8185] midges: 2 +< [8186] midnight: 3 +< [8187] midst: 13 +< [8188] midwife: 7 +< [8189] midwife's: 1 +< [8190] midwives: 1 +< [8191] mieux: 3 +< [8192] might: 218 +< [8193] mighty: 2 +< [8194] mihail: 21 +< [8195] mihailov: 37 +< [8196] mihailov's: 6 +< [8197] mihailov--ought: 1 +< [8198] mihalitch: 3 +< [8199] mihalovna: 64 +< [8200] mihalovna's: 10 +< [8201] milan: 1 +< [8202] milan's: 1 +< [8203] mild: 2 +< [8204] mildew: 4 +< [8205] mildewy: 1 +< [8206] mile: 1 +< [8207] mile-and-a-half: 2 +< [8208] mileev: 1 +< [8209] miles: 17 +< [8210] military: 11 +< [8211] milk: 22 +< [8212] milky: 2 +< [8213] mill: 8 +< [8214] mill-wheels: 1 +< [8215] mille: 1 +< [8216] miller: 2 +< [8217] million: 3 +< [8218] millions: 16 +< [8219] mills: 1 +< [8220] mimicked: 1 +< [8221] mimicking: 6 +< [8222] mimicry: 2 +< [8223] mincing: 1 +< [8224] mind: 178 +< [8225] mind'ee: 1 +< [8226] mind's: 1 +< [8227] mind--his: 1 +< [8228] mind--the: 1 +< [8229] mind?--it's: 1 +< [8230] minding: 1 +< [8231] minds: 5 +< [8232] minds--was: 1 +< [8233] mine: 13 +< [8234] mine--almost: 1 +< [8235] mine--the: 1 +< [8236] mineral: 1 +< [8237] mingled: 1 +< [8238] mingling: 1 +< [8239] minister: 2 +< [8240] ministerial: 1 +< [8241] ministers: 6 +< [8242] ministry: 7 +< [8243] minute: 104 +< [8244] minuteness: 1 +< [8245] minutes: 40 +< [8246] minutes--those: 1 +< [8247] minutest: 5 +< [8248] mio: 2 +< [8249] miracle: 6 +< [8250] miracles: 2 +< [8251] mire: 5 +< [8252] mirror: 4 +< [8253] mirth: 4 +< [8254] mirthful: 4 +< [8255] mirthfully: 1 +< [8256] mirthfulness: 1 +< [8257] mirthless: 1 +< [8258] miry: 1 +< [8259] misapprehending: 1 +< [8260] misapprehension: 2 +< [8261] misappropriated: 1 +< [8262] misappropriation: 1 +< [8263] misbehavior: 1 +< [8264] mischief: 4 +< [8265] mischievous: 2 +< [8266] misdirected: 1 +< [8267] miserable: 26 +< [8268] miserably: 8 +< [8269] miserly: 2 +< [8270] misery: 27 +< [8271] misfortune: 16 +< [8272] misfortunes: 2 +< [8273] misha: 1 +< [8274] mishka: 6 +< [8275] misinterpretation: 1 +< [8276] misinterpreted: 1 +< [8277] misinterpreting: 1 +< [8278] misled: 1 +< [8279] mismanaged: 1 +< [8280] misplaced: 1 +< [8281] miss: 17 +< [8282] missal: 1 +< [8283] missed: 16 +< [8284] misses: 1 +< [8285] misshapen-looking: 1 +< [8286] missing: 5 +< [8287] mission: 5 +< [8288] missionary: 2 +< [8289] mississippi: 1 +< [8290] misspelt: 1 +< [8291] mist: 8 +< [8292] mistake: 28 +< [8293] mistake--that: 1 +< [8294] mistaken: 23 +< [8295] mistakenly: 2 +< [8296] mistakes: 6 +< [8297] mistaking: 1 +< [8298] mistiest: 1 +< [8299] mistress: 19 +< [8300] mistress's: 2 +< [8301] mistresses: 1 +< [8302] mists: 1 +< [8303] misty: 3 +< [8304] misunderstanding: 5 +< [8305] misunderstandings: 1 +< [8306] misunderstood: 3 +< [8307] misuse: 1 +< [8308] misères: 1 +< [8309] mitin: 1 +< [8310] mitishtchen: 1 +< [8311] mituh: 2 +< [8312] mitya: 11 +< [8313] mix: 5 +< [8314] mixed: 5 +< [8315] mixed--that: 1 +< [8316] mlle: 4 +< [8317] moan: 1 +< [8318] moaned: 1 +< [8319] mobile: 4 +< [8320] mock: 1 +< [8321] mockery: 1 +< [8322] mocking: 8 +< [8323] mockingly: 1 +< [8324] mode: 4 +< [8325] model: 6 +< [8326] moderation: 1 +< [8327] modern: 17 +< [8328] modes: 2 +< [8329] modest: 8 +< [8330] modestly: 2 +< [8331] modesty: 3 +< [8332] modification: 1 +< [8333] modified: 3 +< [8334] mohammedans: 2 +< [8335] moi: 1 +< [8336] moist: 14 +< [8337] moisten: 1 +< [8338] moistened: 1 +< [8339] moisture: 1 +< [8340] moment: 188 +< [8341] moment's: 11 +< [8342] moment--but: 1 +< [8343] moment...then: 1 +< [8344] momentary: 5 +< [8345] moments: 35 +< [8346] mon: 6 +< [8347] monarch: 2 +< [8348] monastic: 1 +< [8349] monday: 6 +< [8350] mondays: 1 +< [8351] monde: 1 +< [8352] money: 97 +< [8353] money's: 2 +< [8354] money-lender: 4 +< [8355] moneys: 2 +< [8356] monk: 2 +< [8357] monkey: 1 +< [8358] monks: 3 +< [8359] monogram: 1 +< [8360] monomach: 1 +< [8361] monopolies: 2 +< [8362] monopolists: 1 +< [8363] monotonous: 1 +< [8364] monotony: 2 +< [8365] monsieur: 1 +< [8366] monster: 1 +< [8367] monstrosities: 1 +< [8368] monstrous: 3 +< [8369] montenegrins: 3 +< [8370] month: 15 +< [8371] monthly: 2 +< [8372] months: 31 +< [8373] monument: 1 +< [8374] mood: 20 +< [8375] moods: 1 +< [8376] moon: 4 +< [8377] moonlight: 1 +< [8378] moors: 3 +< [8379] moral: 11 +< [8380] moral--disons: 1 +< [8381] moralist: 2 +< [8382] morality: 2 +< [8383] morally: 5 +< [8384] morals: 1 +< [8385] morbid: 1 +< [8386] mordvinsky: 1 +< [8387] more: 743 +< [8388] more--though: 1 +< [8389] moreover: 26 +< [8390] morfondre: 1 +< [8391] morning: 107 +< [8392] morning's: 1 +< [8393] morning--that: 1 +< [8394] mornings: 2 +< [8395] morocco: 2 +< [8396] morosely: 1 +< [8397] morphine: 7 +< [8398] morrow: 2 +< [8399] morskaia: 2 +< [8400] morsky: 1 +< [8401] mort: 1 +< [8402] mortal: 1 +< [8403] mortar: 1 +< [8404] mortification: 4 +< [8405] mortified: 4 +< [8406] mortify: 1 +< [8407] mortifying: 3 +< [8408] mosaic: 1 +< [8409] moscow: 173 +< [8410] moses: 1 +< [8411] moss: 2 +< [8412] mossy: 2 +< [8413] most: 247 +< [8414] most--the: 1 +< [8415] mostly: 1 +< [8416] mot--anti-nihilist: 1 +< [8417] moth: 4 +< [8418] moth--"work: 1 +< [8419] mother: 215 +< [8420] mother's: 30 +< [8421] mother's--and: 1 +< [8422] mother--god: 1 +< [8423] mother-in-law: 3 +< [8424] mother-of-pearl: 3 +< [8425] motherhood: 1 +< [8426] motherly: 2 +< [8427] mothers: 3 +< [8428] mothers-in-law: 1 +< [8429] moths: 1 +< [8430] motion: 12 +< [8431] motionless: 9 +< [8432] motions: 5 +< [8433] motive: 5 +< [8434] motives: 5 +< [8435] mots: 1 +< [8436] motto: 1 +< [8437] mould: 1 +< [8438] moule: 1 +< [8439] mound: 1 +< [8440] mounds: 2 +< [8441] mount: 4 +< [8442] mountain: 2 +< [8443] mountains: 2 +< [8444] mounted: 4 +< [8445] mounting: 2 +< [8446] mournful: 7 +< [8447] mournfully: 6 +< [8448] mourning: 1 +< [8449] mouse: 1 +< [8450] mouth: 38 +< [8451] mouthful: 2 +< [8452] mouths: 3 +< [8453] movable: 2 +< [8454] move: 20 +< [8455] moved: 95 +< [8456] movement: 36 +< [8457] movement...the: 1 +< [8458] movements: 30 +< [8459] moves: 1 +< [8460] moving: 63 +< [8461] mow: 13 +< [8462] mowed: 8 +< [8463] mower: 1 +< [8464] mowers: 14 +< [8465] mowing: 36 +< [8466] mowing-grass: 1 +< [8467] mown: 9 +< [8468] mr: 1 +< [8469] much: 308 +< [8470] mud: 20 +< [8471] mud-guard: 1 +< [8472] mud-guards: 3 +< [8473] mud-stained: 1 +< [8474] muddied: 2 +< [8475] muddle: 4 +< [8476] muddled: 2 +< [8477] muddles: 1 +< [8478] muddy: 4 +< [8479] muddy-looking: 1 +< [8480] mudspattered: 1 +< [8481] muff: 5 +< [8482] muffled: 4 +< [8483] muffling: 2 +< [8484] mulhausen: 2 +< [8485] multiplicity: 1 +< [8486] mumbled: 3 +< [8487] mumbling: 1 +< [8488] munching: 4 +< [8489] municipal: 1 +< [8490] murder: 4 +< [8491] murderer: 2 +< [8492] murderer's: 1 +< [8493] murdering: 1 +< [8494] murmured: 4 +< [8495] murmuring: 1 +< [8496] muscle: 2 +< [8497] muscles: 12 +< [8498] muscular: 4 +< [8499] mused: 8 +< [8500] muses: 1 +< [8501] mushroom: 10 +< [8502] mushroom's: 1 +< [8503] mushroom-picking: 1 +< [8504] mushrooms: 14 +< [8505] music: 24 +< [8506] musical: 7 +< [8507] musically: 1 +< [8508] musician: 1 +< [8509] musing: 6 +< [8510] musingly: 1 +< [8511] muslin: 5 +< [8512] muss: 1 +< [8513] must: 425 +< [8514] mustache: 8 +< [8515] mustaches: 10 +< [8516] mustiness: 1 +< [8517] mustn't: 19 +< [8518] mute: 2 +< [8519] mutilated: 1 +< [8520] muttered: 5 +< [8521] muttering: 2 +< [8522] mutual: 9 +< [8523] muzzle: 4 +< [8524] my: 789 +< [8525] my...i: 1 +< [8526] my...my: 1 +< [8527] myakaya: 19 +< [8528] myakaya's: 3 +< [8529] myakaya--not: 1 +< [8530] myakov: 1 +< [8531] myaskin: 1 +< [8532] myself: 137 +< [8533] myself--and: 1 +< [8534] myself--the: 1 +< [8535] myself--two: 1 +< [8536] mysteries: 1 +< [8537] mysterious: 22 +< [8538] mystery: 6 +< [8539] mystical: 1 +< [8540] mystified--at: 1 +< [8541] n: 4 +< [8542] n'a: 1 +< [8543] n'ai: 1 +< [8544] n'est: 4 +< [8545] n'est-ce: 2 +< [8546] n-n-no: 1 +< [8547] n...and: 1 +< [8548] nadinka: 5 +< [8549] nag: 1 +< [8550] nail: 1 +< [8551] nails: 7 +< [8552] nainsook: 1 +< [8553] naively: 1 +< [8554] naked: 7 +< [8555] naked--was: 1 +< [8556] nakedness: 4 +< [8557] name: 59 +< [8558] name--that: 1 +< [8559] named: 2 +< [8560] nameday: 1 +< [8561] names: 13 +< [8562] names?...the: 1 +< [8563] nap: 1 +< [8564] nape: 2 +< [8565] napkin: 4 +< [8566] napkins: 3 +< [8567] naples: 2 +< [8568] napping: 1 +< [8569] narrative: 1 +< [8570] narrow: 11 +< [8571] narrower: 2 +< [8572] nastia's: 1 +< [8573] nasty: 8 +< [8574] natalia: 11 +< [8575] natation: 1 +< [8576] national: 2 +< [8577] nationalize: 1 +< [8578] nations: 1 +< [8579] native: 14 +< [8580] natural: 56 +< [8581] naturally: 8 +< [8582] naturalness: 1 +< [8583] nature: 37 +< [8584] natured: 1 +< [8585] natures: 1 +< [8586] naughtiness: 1 +< [8587] naughty: 5 +< [8588] naval: 2 +< [8589] navy: 1 +< [8590] nay: 1 +< [8591] naïf: 1 +< [8592] naïve: 6 +< [8593] naïvely: 3 +< [8594] ne: 5 +< [8595] ne'er-do-wells: 2 +< [8596] near: 68 +< [8597] neared: 1 +< [8598] nearer: 26 +< [8599] nearest: 6 +< [8600] nearly: 9 +< [8601] nearness: 7 +< [8602] neat: 1 +< [8603] neatly: 3 +< [8604] neatness: 1 +< [8605] necessaries: 1 +< [8606] necessarily: 2 +< [8607] necessary: 50 +< [8608] necessitated: 1 +< [8609] necessity: 22 +< [8610] neck: 58 +< [8611] neckband: 2 +< [8612] necklace: 4 +< [8613] necks: 1 +< [8614] necktie: 1 +< [8615] need: 66 +< [8616] needed: 39 +< [8617] needful: 3 +< [8618] needful--to: 1 +< [8619] needing: 1 +< [8620] needles: 1 +< [8621] needlessly: 1 +< [8622] needn't: 4 +< [8623] needs: 16 +< [8624] negation: 3 +< [8625] negative: 7 +< [8626] negatively: 2 +< [8627] neglected: 2 +< [8628] neglecting: 1 +< [8629] negligence: 1 +< [8630] negotiation: 1 +< [8631] negotiations: 3 +< [8632] negro: 1 +< [8633] negroes: 1 +< [8634] neighbor: 6 +< [8635] neighborhood: 4 +< [8636] neighboring: 3 +< [8637] neighbors: 7 +< [8638] neither: 36 +< [8639] nephew: 4 +< [8640] neptunova: 1 +< [8641] nerve: 6 +< [8642] nerves: 6 +< [8643] nervous: 21 +< [8644] nervously: 5 +< [8645] nervousness: 1 +< [8646] nest: 4 +< [8647] nestled: 2 +< [8648] net: 3 +< [8649] nettle: 1 +< [8650] nettles: 2 +< [8651] network: 2 +< [8652] never: 410 +< [8653] never-ceasing: 4 +< [8654] never-failing: 2 +< [8655] nevertheless: 1 +< [8656] nevsky: 7 +< [8657] nevyedovsky: 16 +< [8658] nevyedovsky's: 1 +< [8659] new: 313 +< [8660] new-fashioned: 1 +< [8661] newborn: 1 +< [8662] newby: 1 +< [8663] newest: 2 +< [8664] newly: 6 +< [8665] news: 37 +< [8666] newsletter: 1 +< [8667] newspaper: 4 +< [8668] newspapers: 6 +< [8669] next: 96 +< [8670] nibbling: 1 +< [8671] nice: 92 +< [8672] nicely: 4 +< [8673] nicer: 3 +< [8674] nicest: 1 +< [8675] nicety: 1 +< [8676] nich: 1 +< [8677] nickname: 1 +< [8678] nicknamed: 2 +< [8679] niece: 6 +< [8680] night: 83 +< [8681] night's: 2 +< [8682] night-cabmen: 1 +< [8683] night-shirt: 1 +< [8684] night-watchman: 1 +< [8685] nightcap: 2 +< [8686] nightingales: 1 +< [8687] nightmare: 4 +< [8688] nights: 5 +< [8689] nightshirt: 2 +< [8690] nighttime: 1 +< [8691] nihilist: 2 +< [8692] nikandrov: 1 +< [8693] nikitin: 3 +< [8694] nikitins: 1 +< [8695] nikititch: 1 +< [8696] nikitsky: 1 +< [8697] nikolaeva: 2 +< [8698] nikolaevitch: 1 +< [8699] nikolaevna: 31 +< [8700] nikolaevna's: 2 +< [8701] nikolay: 86 +< [8702] nikolay's: 7 +< [8703] nikolay...you: 2 +< [8704] nikolinka: 1 +< [8705] nil: 1 +< [8706] nilsson: 3 +< [8707] nilsson's: 1 +< [8708] nimble: 4 +< [8709] nine: 23 +< [8710] nine-tenths: 1 +< [8711] nineteen: 3 +< [8712] ninety-eight: 1 +< [8713] ninety-nine: 2 +< [8714] nip: 1 +< [8715] nitouche: 1 +< [8716] nitrate: 1 +< [8717] nizhigorod: 1 +< [8718] nizhni: 1 +< [8719] no: 1140 +< [8720] no...truer: 1 +< [8721] noah: 1 +< [8722] nobility: 23 +< [8723] noble: 18 +< [8724] nobleman: 14 +< [8725] nobleman's: 1 +< [8726] noblemen: 16 +< [8727] nobler: 1 +< [8728] nobles: 7 +< [8729] nobly: 1 +< [8730] nobody: 6 +< [8731] nod: 3 +< [8732] nodded: 6 +< [8733] nodding: 7 +< [8734] nods: 1 +< [8735] noise: 13 +< [8736] noiseless: 1 +< [8737] noiselessly: 7 +< [8738] noises: 1 +< [8739] noisily: 5 +< [8740] noisy: 3 +< [8741] nominal: 1 +< [8742] non: 1 +< [8743] non-applicability: 1 +< [8744] non-arrival: 1 +< [8745] non-existent: 2 +< [8746] non-materialistic: 1 +< [8747] non-official: 1 +< [8748] non-platonic: 1 +< [8749] non-success: 1 +< [8750] nonchalant: 1 +< [8751] none: 16 +< [8752] nonplussed: 1 +< [8753] nonproprietary: 1 +< [8754] nonsense: 33 +< [8755] noonday: 1 +< [8756] noose: 1 +< [8757] nor: 71 +< [8758] nordston: 23 +< [8759] normal: 3 +< [8760] north: 1 +< [8761] northern: 1 +< [8762] nos: 2 +< [8763] nose: 18 +< [8764] nosegay: 1 +< [8765] noses: 1 +< [8766] nostrils: 4 +< [8767] not: 3428 +< [8768] not--and: 1 +< [8769] not--for: 1 +< [8770] not--i: 1 +< [8771] not..._not: 1 +< [8772] not...i: 1 +< [8773] notary: 1 +< [8774] note: 76 +< [8775] note--not: 1 +< [8776] notebook: 2 +< [8777] notebooks: 1 +< [8778] noted: 4 +< [8779] notes: 16 +< [8780] nothing: 531 +< [8781] nothing's: 2 +< [8782] nothing--she's: 1 +< [8783] notice: 27 +< [8784] noticeable: 4 +< [8785] noticed: 65 +< [8786] noticing: 45 +< [8787] notified: 1 +< [8788] notifies: 1 +< [8789] notion: 7 +< [8790] notions: 6 +< [8791] notorious: 3 +< [8792] notwithstanding: 2 +< [8793] nourishment: 1 +< [8794] nous: 1 +< [8795] novel: 8 +< [8796] novels: 2 +< [8797] novelty: 1 +< [8798] november: 1 +< [8799] now: 864 +< [8800] now--it's: 1 +< [8801] now--no: 1 +< [8802] now--to: 1 +< [8803] now...everything's: 1 +< [8804] now...we: 1 +< [8805] now...why: 1 +< [8806] nowadays: 17 +< [8807] nowhere: 5 +< [8808] noxious: 2 +< [8809] nuits: 1 +< [8810] numbed: 1 +< [8811] number: 18 +< [8812] numbers: 5 +< [8813] numerous: 2 +< [8814] numerova: 1 +< [8815] nurse: 78 +< [8816] nurse's: 1 +< [8817] nurse,--all: 1 +< [8818] nurse--still: 1 +< [8819] nursed: 1 +< [8820] nursery: 31 +< [8821] nurses: 6 +< [8822] nursing: 6 +< [8823] nut: 1 +< [8824] nutrition: 3 +< [8825] nuts: 1 +< [8826] o: 8 +< [8827] o'clock: 63 +< [8828] o'clock--the: 1 +< [8829] o'clock.--vronsky: 1 +< [8830] oak: 4 +< [8831] oak-tree: 1 +< [8832] oases: 1 +< [8833] oasis: 1 +< [8834] oatfield: 1 +< [8835] oaths: 1 +< [8836] oats: 15 +< [8837] obedience: 1 +< [8838] obedient: 3 +< [8839] obediently: 1 +< [8840] obeyed: 3 +< [8841] obeying: 1 +< [8842] obiralovka: 1 +< [8843] object: 30 +< [8844] objected: 2 +< [8845] objection: 2 +< [8846] objections: 4 +< [8847] objects: 5 +< [8848] obligation: 1 +< [8849] obligatory: 1 +< [8850] oblige: 1 +< [8851] obliged: 12 +< [8852] obliging: 2 +< [8853] obliterated: 1 +< [8854] oblivion: 2 +< [8855] oblivious: 4 +< [8856] oblong: 1 +< [8857] oblonskaya: 3 +< [8858] oblonsky: 104 +< [8859] oblonsky's: 9 +< [8860] oblonsky--stiva: 1 +< [8861] oblonsky--that: 1 +< [8862] oblonskys: 11 +< [8863] oblonskys...these: 1 +< [8864] obscure: 6 +< [8865] observance: 3 +< [8866] observation: 8 +< [8867] observations: 10 +< [8868] observe: 14 +< [8869] observed: 24 +< [8870] observer: 1 +< [8871] observing: 10 +< [8872] obsolete: 1 +< [8873] obstacle: 8 +< [8874] obstacles: 5 +< [8875] obstinacy: 4 +< [8876] obstinate: 4 +< [8877] obstinately: 5 +< [8878] obtain: 8 +< [8879] obtained: 8 +< [8880] obtaining: 6 +< [8881] obtrusively: 2 +< [8882] obvious: 12 +< [8883] obviously: 76 +< [8884] occasion: 4 +< [8885] occasionally: 1 +< [8886] occasionally--unmistakably: 1 +< [8887] occasioned: 1 +< [8888] occasions: 6 +< [8889] occupation: 11 +< [8890] occupations: 4 +< [8891] occupied: 17 +< [8892] occupies: 1 +< [8893] occupy: 2 +< [8894] occupying: 1 +< [8895] occur: 3 +< [8896] occur--i: 1 +< [8897] occurred: 17 +< [8898] ocean: 2 +< [8899] october: 1 +< [8900] odd: 3 +< [8901] odor: 2 +< [8902] of: 8721 +< [8903] of--i: 1 +< [8904] of--of: 1 +< [8905] of--what's: 1 +< [8906] off: 359 +< [8907] off--for: 1 +< [8908] offenbach's: 1 +< [8909] offend: 8 +< [8910] offended: 14 +< [8911] offending: 1 +< [8912] offense: 4 +< [8913] offensive: 6 +< [8914] offer: 43 +< [8915] offered: 19 +< [8916] offering: 4 +< [8917] offers: 5 +< [8918] office: 20 +< [8919] office-papers: 1 +< [8920] officer: 34 +< [8921] officers: 25 +< [8922] officers,--two: 1 +< [8923] offices: 2 +< [8924] official: 55 +< [8925] official--the: 1 +< [8926] officially: 1 +< [8927] officials: 3 +< [8928] officials--that: 1 +< [8929] officiating: 1 +< [8930] offspring: 1 +< [8931] often: 104 +< [8932] oftener: 2 +< [8933] oh: 351 +< [8934] ohotny: 1 +< [8935] oil: 3 +< [8936] oilcloth: 1 +< [8937] old: 394 +< [8938] old-fashioned: 14 +< [8939] older: 13 +< [8940] older...i: 1 +< [8941] oldest: 1 +< [8942] olive: 1 +< [8943] olive-green: 2 +< [8944] omen: 1 +< [8945] omens: 1 +< [8946] omnibuses: 1 +< [8947] on: 2210 +< [8948] once: 333 +< [8949] once--it: 1 +< [8950] oncle: 1 +< [8951] one: 1187 +< [8952] one's: 64 +< [8953] one--a: 1 +< [8954] one--the: 2 +< [8955] one-eyed: 1 +< [8956] one-half: 1 +< [8957] one-sided: 1 +< [8958] one-sidedness: 1 +< [8959] one-third: 1 +< [8960] one...is: 1 +< [8961] ones: 19 +< [8962] oneself: 20 +< [8963] onions: 1 +< [8964] online: 4 +< [8965] only: 649 +< [8966] only--your: 1 +< [8967] onslaught: 1 +< [8968] onslaughts: 1 +< [8969] ont: 1 +< [8970] onto: 41 +< [8971] oo: 1 +< [8972] open: 72 +< [8973] open-handedness: 1 +< [8974] opened: 70 +< [8975] opening: 31 +< [8976] openings: 1 +< [8977] openly: 3 +< [8978] opens: 2 +< [8979] opera: 20 +< [8980] opera-glass: 1 +< [8981] operations: 2 +< [8982] opined: 1 +< [8983] opinion: 73 +< [8984] opinions: 14 +< [8985] opium: 8 +< [8986] opponent: 7 +< [8987] opponents: 1 +< [8988] opportunities: 1 +< [8989] opportunity: 9 +< [8990] oppose: 4 +< [8991] opposed: 13 +< [8992] opposing: 1 +< [8993] opposite: 38 +< [8994] opposition: 9 +< [8995] oppress: 2 +< [8996] oppressed: 4 +< [8997] oppresses: 1 +< [8998] oppressing: 2 +< [8999] oppression: 2 +< [9000] oppressive: 1 +< [9001] oppressors: 1 +< [9002] or: 611 +< [9003] or...he: 1 +< [9004] orange: 2 +< [9005] oranges: 1 +< [9006] orchard: 1 +< [9007] orchestra: 3 +< [9008] ordained: 2 +< [9009] ordeal: 1 +< [9010] ordeals: 1 +< [9011] order: 52 +< [9012] ordered: 31 +< [9013] ordering: 5 +< [9014] orderly: 1 +< [9015] orders: 25 +< [9016] ordinarily: 1 +< [9017] ordinariness: 1 +< [9018] ordinary: 15 +< [9019] organ: 1 +< [9020] organisms: 1 +< [9021] organization: 10 +< [9022] organize: 3 +< [9023] organized: 2 +< [9024] organizing: 1 +< [9025] organs: 2 +< [9026] oriental: 2 +< [9027] origin: 4 +< [9028] original: 8 +< [9029] originality: 2 +< [9030] originated: 1 +< [9031] originator: 1 +< [9032] ornament: 1 +< [9033] orphan: 1 +< [9034] orthodox: 2 +< [9035] oscillating: 1 +< [9036] ossian's: 1 +< [9037] ostend: 1 +< [9038] ostensibly: 1 +< [9039] other: 371 +< [9040] other's: 6 +< [9041] other--in: 1 +< [9042] others: 69 +< [9043] others--how: 1 +< [9044] others--just: 1 +< [9045] otherwise: 5 +< [9046] oublie: 1 +< [9047] oubliez: 1 +< [9048] ought: 140 +< [9049] oughtn't: 2 +< [9050] our: 214 +< [9051] ours: 3 +< [9052] ourselves: 14 +< [9053] out: 1024 +< [9054] out--but: 1 +< [9055] out-of-doors: 3 +< [9056] outbidding: 1 +< [9057] outburst: 2 +< [9058] outcast: 1 +< [9059] outcries: 1 +< [9060] outcry: 1 +< [9061] outdated: 1 +< [9062] outdone: 1 +< [9063] outer: 14 +< [9064] outfit: 1 +< [9065] outing: 1 +< [9066] outlay: 2 +< [9067] outline: 1 +< [9068] outlines: 3 +< [9069] outlived: 1 +< [9070] outlook: 2 +< [9071] outrer: 1 +< [9072] outright: 2 +< [9073] outside: 40 +< [9074] outsider: 9 +< [9075] outsiders: 6 +< [9076] outstretched: 3 +< [9077] outstrip: 1 +< [9078] outstripped: 1 +< [9079] outward: 5 +< [9080] outwardly: 1 +< [9081] outwardly--and: 1 +< [9082] outweigh: 1 +< [9083] outweighed: 1 +< [9084] ov: 1 +< [9085] oval: 1 +< [9086] ovations: 1 +< [9087] over: 585 +< [9088] over-bold: 1 +< [9089] over-boot: 1 +< [9090] over-nervous: 1 +< [9091] over-tired: 1 +< [9092] overawed: 3 +< [9093] overbalancing: 1 +< [9094] overbrimming: 1 +< [9095] overcast: 1 +< [9096] overcoat: 24 +< [9097] overcome: 9 +< [9098] overcoming: 2 +< [9099] overdo: 1 +< [9100] overdriven: 1 +< [9101] overflowing: 1 +< [9102] overgrown: 2 +< [9103] overhanging: 3 +< [9104] overhead: 2 +< [9105] overheard: 4 +< [9106] overhearing: 1 +< [9107] overjoyed: 2 +< [9108] overlook: 5 +< [9109] overlooked: 3 +< [9110] overpersuaded: 1 +< [9111] overseer: 1 +< [9112] overseers: 1 +< [9113] overspread: 6 +< [9114] overspreading: 1 +< [9115] overstated: 1 +< [9116] overstrained: 2 +< [9117] overtake: 4 +< [9118] overtaken: 2 +< [9119] overtakes: 1 +< [9120] overtaking: 5 +< [9121] overtook: 11 +< [9122] overturn: 1 +< [9123] overwhelm: 1 +< [9124] overwhelmed: 4 +< [9125] overwork: 1 +< [9126] overworked: 1 +< [9127] overwrought: 3 +< [9128] owe: 1 +< [9129] owed: 4 +< [9130] owing: 14 +< [9131] owl: 1 +< [9132] own: 359 +< [9133] owned: 2 +< [9134] owner: 5 +< [9135] owner's: 1 +< [9136] ownership: 1 +< [9137] owns: 3 +< [9138] ox: 1 +< [9139] oxen: 1 +< [9140] oysters: 13 +< [9141] p.s.--i: 1 +< [9142] pace: 14 +< [9143] paced: 1 +< [9144] paces: 16 +< [9145] pacified: 2 +< [9146] pacify: 2 +< [9147] pacing: 3 +< [9148] pack: 3 +< [9149] packed: 5 +< [9150] packet: 2 +< [9151] packing: 7 +< [9152] paddock: 5 +< [9153] page: 2 +< [9154] pages: 11 +< [9155] paid: 25 +< [9156] pails: 2 +< [9157] pain: 28 +< [9158] pained: 1 +< [9159] painful: 37 +< [9160] painfully: 13 +< [9161] pains: 5 +< [9162] paint: 13 +< [9163] paint's: 1 +< [9164] painted: 15 +< [9165] painted--weak: 1 +< [9166] painter: 6 +< [9167] painting: 27 +< [9168] painting--he: 1 +< [9169] painting--no: 1 +< [9170] pair: 13 +< [9171] palace: 2 +< [9172] palazzo: 8 +< [9173] pale: 19 +< [9174] paleness: 1 +< [9175] palette: 1 +< [9176] palings: 2 +< [9177] pall: 1 +< [9178] palm: 3 +< [9179] palms: 1 +< [9180] pamphlet: 3 +< [9181] pancakes: 2 +< [9182] pane: 4 +< [9183] paneled: 1 +< [9184] panels: 1 +< [9185] panes: 2 +< [9186] pang: 9 +< [9187] pangs: 1 +< [9188] panic: 6 +< [9189] panic-stricken: 9 +< [9190] panics: 1 +< [9191] pans: 1 +< [9192] pansies: 1 +< [9193] panslavist: 1 +< [9194] panting: 4 +< [9195] papa: 29 +< [9196] papa!...how: 1 +< [9197] papa's: 3 +< [9198] papacy: 1 +< [9199] paper: 32 +< [9200] paper-knife: 2 +< [9201] paper-knives: 1 +< [9202] paper-weight: 1 +< [9203] papers: 25 +< [9204] paperwork: 1 +< [9205] par: 1 +< [9206] paradise: 1 +< [9207] paradox: 1 +< [9208] paradoxical: 1 +< [9209] paragraph: 11 +< [9210] paragraphs: 3 +< [9211] parallel: 2 +< [9212] paramount: 1 +< [9213] parapet: 2 +< [9214] parasha: 1 +< [9215] parasites: 1 +< [9216] parasol: 7 +< [9217] parasols: 3 +< [9218] parcel: 2 +< [9219] pardessus: 1 +< [9220] pardon: 27 +< [9221] pardoned: 1 +< [9222] parents: 19 +< [9223] parfait: 1 +< [9224] parfen: 2 +< [9225] paris: 7 +< [9226] paris--i: 1 +< [9227] parish: 3 +< [9228] parishioner: 1 +< [9229] parisian: 1 +< [9230] park: 1 +< [9231] parks: 1 +< [9232] parley: 1 +< [9233] parliament: 5 +< [9234] parlor: 5 +< [9235] parmenitch: 1 +< [9236] parmenov: 3 +< [9237] parmesan: 1 +< [9238] parochial: 1 +< [9239] parquet: 4 +< [9240] parried: 1 +< [9241] part: 139 +< [9242] part--he: 2 +< [9243] partake: 1 +< [9244] parted: 24 +< [9245] partial: 4 +< [9246] participation: 1 +< [9247] particle: 1 +< [9248] particolored: 1 +< [9249] particular: 15 +< [9250] particularly: 80 +< [9251] particulars: 2 +< [9252] particulary: 1 +< [9253] partie: 1 +< [9254] parties: 11 +< [9255] parting: 12 +< [9256] partisan: 1 +< [9257] partisans: 2 +< [9258] partition: 10 +< [9259] partitioned: 1 +< [9260] partly: 15 +< [9261] partner: 6 +< [9262] partners: 5 +< [9263] partnership: 4 +< [9264] partnerships: 1 +< [9265] parts: 14 +< [9266] parts--a: 1 +< [9267] party: 75 +< [9268] party--some: 1 +< [9269] pas: 10 +< [9270] pasha's: 1 +< [9271] paskudin: 2 +< [9272] pass: 39 +< [9273] passage: 15 +< [9274] passed: 109 +< [9275] passenger: 1 +< [9276] passengers: 8 +< [9277] passer: 1 +< [9278] passers-by: 2 +< [9279] passes: 1 +< [9280] passing: 40 +< [9281] passion: 33 +< [9282] passionate: 14 +< [9283] passionately: 4 +< [9284] passionless: 1 +< [9285] passions: 8 +< [9286] passive: 2 +< [9287] past: 66 +< [9288] past--the: 1 +< [9289] paste...no: 1 +< [9290] pasterns: 3 +< [9291] pastime: 2 +< [9292] pasture: 1 +< [9293] pastures: 1 +< [9294] patch: 6 +< [9295] patched: 4 +< [9296] patches: 10 +< [9297] patent: 1 +< [9298] paternal: 1 +< [9299] path: 29 +< [9300] pathetic: 1 +< [9301] paths: 4 +< [9302] patience: 3 +< [9303] patient: 16 +< [9304] patient's: 1 +< [9305] patients: 2 +< [9306] patriarchal: 1 +< [9307] patriarchs: 2 +< [9308] patriots: 1 +< [9309] patron: 1 +< [9310] patronage: 1 +< [9311] patronized: 2 +< [9312] patronizes: 1 +< [9313] patronizing: 3 +< [9314] patronymic: 1 +< [9315] patted: 4 +< [9316] pattered: 1 +< [9317] pattern: 6 +< [9318] pattern--so: 1 +< [9319] patterns: 2 +< [9320] patti: 4 +< [9321] patti's: 1 +< [9322] patting: 3 +< [9323] paul: 1 +< [9324] paul's: 1 +< [9325] pause: 17 +< [9326] paused: 19 +< [9327] pauses: 1 +< [9328] pausing: 3 +< [9329] pauvre: 1 +< [9330] pava: 7 +< [9331] pava's: 2 +< [9332] paved: 3 +< [9333] pavement: 3 +< [9334] pavements: 2 +< [9335] pavilion: 21 +< [9336] pavilions: 3 +< [9337] pavlovna: 14 +< [9338] pavlovna's: 3 +< [9339] pawn: 1 +< [9340] pawned: 1 +< [9341] paws: 2 +< [9342] pay: 40 +< [9343] paying: 15 +< [9344] payment: 5 +< [9345] payments: 3 +< [9346] pea: 1 +< [9347] peace: 79 +< [9348] peaceable: 1 +< [9349] peaceful: 6 +< [9350] peacemakers: 1 +< [9351] peaches: 2 +< [9352] peacock: 1 +< [9353] peak: 1 +< [9354] peal: 1 +< [9355] peals: 2 +< [9356] pear: 2 +< [9357] pearl: 1 +< [9358] pearls: 3 +< [9359] pearly: 1 +< [9360] peasant: 102 +< [9361] peasant's: 10 +< [9362] peasant--his: 1 +< [9363] peasant-women: 1 +< [9364] peasantry: 10 +< [9365] peasants: 129 +< [9366] pecking: 1 +< [9367] peculiar: 38 +< [9368] peculiarities: 3 +< [9369] peculiarity: 3 +< [9370] peculiarly: 8 +< [9371] pecuniary: 4 +< [9372] pedal: 1 +< [9373] pedestal: 1 +< [9374] pedestals: 1 +< [9375] peel: 1 +< [9376] peeled: 2 +< [9377] peep: 2 +< [9378] peeped: 10 +< [9379] peeping: 7 +< [9380] peered: 1 +< [9381] peering: 1 +< [9382] peevish: 2 +< [9383] peewit: 1 +< [9384] peewits: 3 +< [9385] peg: 2 +< [9386] pen: 2 +< [9387] pence: 2 +< [9388] pencil: 5 +< [9389] penetrate: 4 +< [9390] penetrated: 2 +< [9391] penetrating: 2 +< [9392] penitent: 8 +< [9393] penitently: 3 +< [9394] penknife: 2 +< [9395] penknives: 2 +< [9396] penniless: 1 +< [9397] penny: 5 +< [9398] pens: 4 +< [9399] pense: 1 +< [9400] penseur: 1 +< [9401] pensions: 1 +< [9402] pensive: 7 +< [9403] pensively: 1 +< [9404] penza: 1 +< [9405] people: 319 +< [9406] people!--we're: 1 +< [9407] people's: 11 +< [9408] people--has: 1 +< [9409] people--present: 1 +< [9410] people--that's: 3 +< [9411] people--why: 1 +< [9412] peoples: 5 +< [9413] per: 6 +< [9414] perambulator: 1 +< [9415] perceive: 2 +< [9416] perceived: 20 +< [9417] perceiving: 4 +< [9418] perceptible: 15 +< [9419] perceptibly: 2 +< [9420] perception: 2 +< [9421] perceptions: 1 +< [9422] perch: 1 +< [9423] perdere: 1 +< [9424] peremptorily: 1 +< [9425] peremptory: 3 +< [9426] perfect: 25 +< [9427] perfectibility: 1 +< [9428] perfection: 12 +< [9429] perfectly: 55 +< [9430] perforated: 1 +< [9431] perforce: 1 +< [9432] perform: 3 +< [9433] performance: 9 +< [9434] performances: 1 +< [9435] performed: 11 +< [9436] performing: 8 +< [9437] perfumed: 3 +< [9438] perhaps: 67 +< [9439] period: 15 +< [9440] periodic: 1 +< [9441] periodical: 1 +< [9442] periods: 2 +< [9443] perish: 1 +< [9444] permanent: 5 +< [9445] permissible: 1 +< [9446] permission: 18 +< [9447] permit: 2 +< [9448] permitted: 4 +< [9449] pernicious: 1 +< [9450] perpetrate: 1 +< [9451] perplexed: 2 +< [9452] perplexes: 1 +< [9453] perplexities: 1 +< [9454] perplexity: 10 +< [9455] persecuted: 2 +< [9456] persecution: 1 +< [9457] perseveringly: 1 +< [9458] persian: 1 +< [9459] persisted: 2 +< [9460] persistence: 1 +< [9461] persistent: 2 +< [9462] persistently: 3 +< [9463] persists: 1 +< [9464] person: 78 +< [9465] person's: 3 +< [9466] person...i: 1 +< [9467] personage: 6 +< [9468] personages: 4 +< [9469] personages--that: 1 +< [9470] personal: 20 +< [9471] personality: 2 +< [9472] personally: 4 +< [9473] personne: 1 +< [9474] persons: 29 +< [9475] perspective: 1 +< [9476] perspiration: 4 +< [9477] perspiring: 3 +< [9478] persuade: 15 +< [9479] persuaded: 14 +< [9480] persuading: 4 +< [9481] persuasion: 1 +< [9482] persuasive: 2 +< [9483] pertinacious: 1 +< [9484] perturbed: 3 +< [9485] perusal: 1 +< [9486] pervaded: 1 +< [9487] perverse: 1 +< [9488] pervozvanny: 1 +< [9489] pessimism: 1 +< [9490] pestsov: 36 +< [9491] petal: 1 +< [9492] petals: 2 +< [9493] peter: 2 +< [9494] peter's: 2 +< [9495] peterhof: 7 +< [9496] petersbourg: 1 +< [9497] petersburg: 126 +< [9498] petersburg's: 1 +< [9499] petersburger: 1 +< [9500] petit: 3 +< [9501] petite: 2 +< [9502] petites: 1 +< [9503] petitesse: 1 +< [9504] petition: 2 +< [9505] petitioner: 1 +< [9506] petitioner's: 1 +< [9507] petitioners: 2 +< [9508] petitions: 3 +< [9509] petritsky: 31 +< [9510] petritsky's: 4 +< [9511] petrov: 7 +< [9512] petrov's: 1 +< [9513] petrova: 1 +< [9514] petrovitch: 7 +< [9515] petrovitch's: 1 +< [9516] petrovna: 23 +< [9517] petrovna's: 2 +< [9518] petrovs: 4 +< [9519] petrovsky: 1 +< [9520] petted: 1 +< [9521] petticoat: 1 +< [9522] petticoats: 2 +< [9523] pettiest: 1 +< [9524] pettily: 1 +< [9525] petting: 1 +< [9526] petty: 11 +< [9527] peu: 1 +< [9528] peut: 1 +< [9529] pg: 1 +< [9530] pglaf: 1 +< [9531] phantasm: 1 +< [9532] phantasms: 1 +< [9533] phantoms: 2 +< [9534] pharisaical: 1 +< [9535] phase: 2 +< [9536] phases: 1 +< [9537] pheasants: 1 +< [9538] phenomena: 4 +< [9539] phenomenon: 4 +< [9540] phew: 1 +< [9541] philanthropic: 4 +< [9542] philanthropy: 1 +< [9543] philimonovna: 13 +< [9544] philimonovna's: 1 +< [9545] philip: 10 +< [9546] philip's: 1 +< [9547] philosopher: 2 +< [9548] philosopher's: 1 +< [9549] philosophers: 4 +< [9550] philosophic: 1 +< [9551] philosophical: 6 +< [9552] philosophy: 14 +< [9553] phosphorus: 1 +< [9554] photograph: 7 +< [9555] photographs: 4 +< [9556] phrase: 31 +< [9557] phrase--that: 1 +< [9558] phrase-monger: 1 +< [9559] phrases: 7 +< [9560] physic: 1 +< [9561] physical: 34 +< [9562] physically: 10 +< [9563] physician: 3 +< [9564] physics: 3 +< [9565] physiological: 2 +< [9566] physiology)--utterly: 1 +< [9567] piano: 6 +< [9568] pick: 11 +< [9569] pick-me-up: 1 +< [9570] picked: 15 +< [9571] picking: 16 +< [9572] pickle's: 1 +< [9573] pickled: 1 +< [9574] picture: 67 +< [9575] picture--a: 1 +< [9576] picture-stand: 1 +< [9577] pictured: 15 +< [9578] pictures: 15 +< [9579] pictures--this: 1 +< [9580] picturing: 9 +< [9581] piebald: 2 +< [9582] piece: 19 +< [9583] pieces: 12 +< [9584] pier: 1 +< [9585] pierced: 2 +< [9586] piercing: 3 +< [9587] pierre: 2 +< [9588] pies: 3 +< [9589] pietist: 1 +< [9590] pietists: 1 +< [9591] pig: 2 +< [9592] pilate: 10 +< [9593] pilate's: 3 +< [9594] pile: 1 +< [9595] piled: 1 +< [9596] piled-up: 1 +< [9597] pillow: 14 +< [9598] pillowcases: 1 +< [9599] pillows: 4 +< [9600] pills: 3 +< [9601] pince-nez: 6 +< [9602] pinch: 2 +< [9603] pinched: 4 +< [9604] pinching: 1 +< [9605] pines: 2 +< [9606] pink: 15 +< [9607] pinnacle: 5 +< [9608] pinned: 2 +< [9609] pinning: 1 +< [9610] pinpricks: 1 +< [9611] piotr: 3 +< [9612] pious: 1 +< [9613] pipe: 2 +< [9614] pipes: 4 +< [9615] piping: 2 +< [9616] piqued: 1 +< [9617] pis: 2 +< [9618] pis-aller: 1 +< [9619] pistol: 2 +< [9620] pistols: 3 +< [9621] pit: 1 +< [9622] pitch: 4 +< [9623] pitch-black: 1 +< [9624] pitched: 1 +< [9625] pitchers: 2 +< [9626] pitchfork: 1 +< [9627] pitchforks: 1 +< [9628] pitching: 1 +< [9629] piteous: 7 +< [9630] piteously: 2 +< [9631] pitiable: 5 +< [9632] pitied: 11 +< [9633] pities: 1 +< [9634] pitiful: 12 +< [9635] pity: 57 +< [9636] pity's: 3 +< [9637] pitying: 4 +< [9638] pivot: 1 +< [9639] pièce: 2 +< [9640] placards: 1 +< [9641] place: 154 +< [9642] place--foreign: 1 +< [9643] placed: 22 +< [9644] places: 17 +< [9645] places--there: 1 +< [9646] placid: 2 +< [9647] placing: 1 +< [9648] plague-stricken: 1 +< [9649] plaid: 1 +< [9650] plain: 9 +< [9651] plainer: 1 +< [9652] plainly: 12 +< [9653] plaintive: 3 +< [9654] plaintively: 5 +< [9655] plaisir: 1 +< [9656] plaited: 1 +< [9657] plan: 20 +< [9658] planet: 2 +< [9659] planing: 1 +< [9660] plank: 1 +< [9661] planks: 2 +< [9662] planned: 4 +< [9663] planning: 1 +< [9664] plans: 26 +< [9665] plant: 4 +< [9666] planted: 5 +< [9667] plants: 3 +< [9668] plaster: 1 +< [9669] plastic: 1 +< [9670] plate: 5 +< [9671] plate-glass: 1 +< [9672] plates: 3 +< [9673] platform: 22 +< [9674] plato: 2 +< [9675] platon: 3 +< [9676] platonic: 1 +< [9677] play: 22 +< [9678] playbill: 1 +< [9679] played: 15 +< [9680] player: 3 +< [9681] players: 4 +< [9682] playful: 2 +< [9683] playfully: 5 +< [9684] playfulness: 1 +< [9685] playing: 23 +< [9686] plays: 1 +< [9687] plaything: 5 +< [9688] playthings: 2 +< [9689] playtime: 1 +< [9690] plea: 2 +< [9691] pleaded: 1 +< [9692] pleasant: 36 +< [9693] pleasanter: 2 +< [9694] pleasantest: 1 +< [9695] pleasantly: 2 +< [9696] please: 120 +< [9697] pleased: 56 +< [9698] pleases: 2 +< [9699] pleasing: 1 +< [9700] pleasure: 72 +< [9701] pleasure--his: 1 +< [9702] pleasures: 8 +< [9703] pledged: 1 +< [9704] plein: 1 +< [9705] plenty: 13 +< [9706] plied: 1 +< [9707] plight: 3 +< [9708] plighted: 1 +< [9709] plighting: 3 +< [9710] plights: 1 +< [9711] plinths: 1 +< [9712] plots: 1 +< [9713] plough: 11 +< [9714] ploughed: 7 +< [9715] ploughing: 8 +< [9716] ploughland: 2 +< [9717] ploughs: 7 +< [9718] ploughshares: 1 +< [9719] pluck: 5 +< [9720] pluck--that: 1 +< [9721] plucked: 2 +< [9722] plucking: 1 +< [9723] plucky: 1 +< [9724] plum: 2 +< [9725] plump: 15 +< [9726] plumper: 1 +< [9727] plunge: 2 +< [9728] plunged: 8 +< [9729] plural: 2 +< [9730] plus: 2 +< [9731] plush: 1 +< [9732] poached: 1 +< [9733] poches: 1 +< [9734] pocket: 12 +< [9735] pocket--"and: 1 +< [9736] pocketbook: 8 +< [9737] pocketed: 1 +< [9738] pockets: 8 +< [9739] pockmarked: 4 +< [9740] poet: 3 +< [9741] poetic: 5 +< [9742] poetical: 2 +< [9743] poetically: 1 +< [9744] poetry: 5 +< [9745] pogatchev's: 1 +< [9746] poignancy: 1 +< [9747] poignant: 1 +< [9748] point: 115 +< [9749] point--his: 1 +< [9750] point--i: 1 +< [9751] point--the: 1 +< [9752] pointe: 1 +< [9753] pointed: 13 +< [9754] pointed.--"fetch: 1 +< [9755] pointer: 2 +< [9756] pointing: 45 +< [9757] points: 18 +< [9758] poison: 1 +< [9759] poisoned: 7 +< [9760] poked: 4 +< [9761] poking: 1 +< [9762] pokrovskoe: 11 +< [9763] poland: 6 +< [9764] poles: 1 +< [9765] police: 5 +< [9766] policeman: 1 +< [9767] policemen: 2 +< [9768] policy: 6 +< [9769] polish: 1 +< [9770] polishing: 1 +< [9771] polite: 2 +< [9772] politeness: 4 +< [9773] politeness--alluded: 1 +< [9774] political: 23 +< [9775] politician: 4 +< [9776] politics: 11 +< [9777] polkas: 1 +< [9778] pollen: 1 +< [9779] poltavsky: 1 +< [9780] pomaded: 4 +< [9781] pomorsky: 3 +< [9782] pomorsky--just: 1 +< [9783] pond: 3 +< [9784] ponder: 2 +< [9785] pondered: 15 +< [9786] pondering: 3 +< [9787] ponderous: 1 +< [9788] pool: 1 +< [9789] pools: 4 +< [9790] poor: 47 +< [9791] pope: 1 +< [9792] poplin: 1 +< [9793] popped: 1 +< [9794] popping: 2 +< [9795] popular: 2 +< [9796] populated: 1 +< [9797] population: 1 +< [9798] populations: 1 +< [9799] porch: 2 +< [9800] porridge: 3 +< [9801] port: 1 +< [9802] porter: 46 +< [9803] porter's: 9 +< [9804] porter...you: 1 +< [9805] porters: 5 +< [9806] portfolio: 8 +< [9807] portfolio--stood: 1 +< [9808] portioned: 1 +< [9809] portions: 1 +< [9810] portières: 1 +< [9811] portrait: 37 +< [9812] portrait--the: 1 +< [9813] portrait-painter: 1 +< [9814] portraits: 6 +< [9815] pose: 6 +< [9816] posing: 1 +< [9817] position: 288 +< [9818] position--all: 1 +< [9819] position--incomprehensible: 1 +< [9820] position--that's: 1 +< [9821] position...there: 1 +< [9822] positions: 4 +< [9823] positive: 6 +< [9824] positively: 55 +< [9825] possess: 1 +< [9826] possessed: 6 +< [9827] possesses: 2 +< [9828] possession: 12 +< [9829] possibility: 25 +< [9830] possible: 121 +< [9831] possible,"--if: 1 +< [9832] possible--took: 1 +< [9833] possibly: 31 +< [9834] post: 29 +< [9835] posted: 5 +< [9836] posting-fares: 1 +< [9837] posting-horses: 1 +< [9838] posts: 2 +< [9839] posture: 3 +< [9840] pot: 5 +< [9841] potato: 1 +< [9842] potato-hoeing: 1 +< [9843] potatoes: 7 +< [9844] potatoes--everything: 1 +< [9845] pothouse: 1 +< [9846] pots: 3 +< [9847] poudre: 1 +< [9848] poulard: 1 +< [9849] poulet: 1 +< [9850] pounce: 1 +< [9851] pounced: 3 +< [9852] pounds: 7 +< [9853] pour: 3 +< [9854] poured: 8 +< [9855] pouring: 6 +< [9856] pout: 1 +< [9857] pouting: 1 +< [9858] poverty: 7 +< [9859] powder: 7 +< [9860] powder-grimed: 1 +< [9861] powdering: 1 +< [9862] powders: 3 +< [9863] power: 30 +< [9864] powerful: 13 +< [9865] powerfully: 1 +< [9866] powerless: 3 +< [9867] powers: 6 +< [9868] poésie: 1 +< [9869] practical: 4 +< [9870] practically: 7 +< [9871] practice: 8 +< [9872] practiced: 3 +< [9873] practicing: 1 +< [9874] praise: 13 +< [9875] praised: 4 +< [9876] praises: 2 +< [9877] praises--i: 1 +< [9878] praising: 3 +< [9879] prancing: 1 +< [9880] pranks: 2 +< [9881] prattle: 1 +< [9882] pravdin: 2 +< [9883] pray: 15 +< [9884] prayed: 13 +< [9885] prayer: 17 +< [9886] prayers: 7 +< [9887] praying: 7 +< [9888] prays: 1 +< [9889] pre-raphaelite: 1 +< [9890] pre-raphaelites: 1 +< [9891] preached: 1 +< [9892] precarious: 1 +< [9893] precautions: 2 +< [9894] preceded: 3 +< [9895] precedents: 1 +< [9896] precedes: 1 +< [9897] preceding: 1 +< [9898] precept: 1 +< [9899] preceptor: 1 +< [9900] precious: 11 +< [9901] precipice: 1 +< [9902] precipitous: 1 +< [9903] precise: 3 +< [9904] precisely: 21 +< [9905] precision: 6 +< [9906] precluded: 1 +< [9907] predecessor: 3 +< [9908] predict: 1 +< [9909] prediction: 2 +< [9910] predictions: 1 +< [9911] preeminence: 1 +< [9912] preeminently: 1 +< [9913] preening: 1 +< [9914] prefer: 3 +< [9915] preferred: 4 +< [9916] preferring: 1 +< [9917] prefigured: 1 +< [9918] pregnancy: 3 +< [9919] preis: 1 +< [9920] preliminary: 3 +< [9921] premature: 3 +< [9922] prematurely: 2 +< [9923] preparation: 6 +< [9924] preparations: 12 +< [9925] preparatory: 1 +< [9926] prepare: 4 +< [9927] prepared: 27 +< [9928] preparing: 19 +< [9929] preponderance: 1 +< [9930] prescribe: 1 +< [9931] prescribed: 6 +< [9932] presence: 43 +< [9933] presence...i: 1 +< [9934] present: 53 +< [9935] present--well: 1 +< [9936] present...that: 1 +< [9937] presented: 24 +< [9938] presentiment: 1 +< [9939] presenting: 1 +< [9940] presently: 2 +< [9941] presents: 5 +< [9942] preserve: 2 +< [9943] preserved: 1 +< [9944] preserves: 1 +< [9945] preserving: 2 +< [9946] preserving-pan: 1 +< [9947] president: 10 +< [9948] presidential: 1 +< [9949] presiding: 1 +< [9950] press: 9 +< [9951] pressed: 35 +< [9952] presser: 1 +< [9953] pressing: 15 +< [9954] pressingly: 1 +< [9955] pressure: 4 +< [9956] prestige: 1 +< [9957] presume: 1 +< [9958] presupposing: 1 +< [9959] pretend: 1 +< [9960] pretended: 10 +< [9961] pretending: 8 +< [9962] pretense: 7 +< [9963] pretension: 1 +< [9964] pretentious-looking: 1 +< [9965] pretext: 6 +< [9966] pretexts: 1 +< [9967] prettier: 1 +< [9968] pretty: 49 +< [9969] prevailed: 1 +< [9970] prevalent: 2 +< [9971] prevent: 17 +< [9972] prevented: 14 +< [9973] preventing: 1 +< [9974] prevents: 1 +< [9975] previous: 33 +< [9976] previously: 4 +< [9977] price: 12 +< [9978] price--so: 1 +< [9979] priceless: 1 +< [9980] prices: 1 +< [9981] prick: 1 +< [9982] pricked: 5 +< [9983] pride: 32 +< [9984] pride--so: 1 +< [9985] prided: 3 +< [9986] priest: 48 +< [9987] priest's: 1 +< [9988] priests: 2 +< [9989] primarily: 2 +< [9990] primary: 1 +< [9991] prime: 2 +< [9992] primesautière: 1 +< [9993] primitive: 3 +< [9994] prince: 163 +< [9995] prince's: 10 +< [9996] prince--that's: 1 +< [9997] prince...the: 1 +< [9998] princes: 4 +< [9999] princess: 316 +< [10000] princess's: 10 +< [10001] princess...the: 1 +< [10002] princesses: 1 +< [10003] principal: 10 +< [10004] principally: 9 +< [10005] principle: 17 +< [10006] principles: 25 +< [10007] print: 3 +< [10008] printaniere: 1 +< [10009] printanière: 1 +< [10010] printed: 3 +< [10011] prints: 2 +< [10012] pripasov: 1 +< [10013] pripasov--would: 1 +< [10014] prison: 2 +< [10015] prisoner: 1 +< [10016] prisons: 2 +< [10017] private: 14 +< [10018] privation: 1 +< [10019] privilege: 1 +< [10020] privileged: 1 +< [10021] privileges: 3 +< [10022] privy: 1 +< [10023] prize: 4 +< [10024] prize-fighting: 1 +< [10025] prized: 4 +< [10026] prizes: 1 +< [10027] probability: 1 +< [10028] probable: 1 +< [10029] probably: 25 +< [10030] problem: 11 +< [10031] problems: 8 +< [10032] procedure: 1 +< [10033] proceed: 2 +< [10034] proceeded: 10 +< [10035] proceeding: 4 +< [10036] proceedings: 6 +< [10037] process: 14 +< [10038] processing: 1 +< [10039] proclaimed: 2 +< [10040] proclamation: 1 +< [10041] procreation: 1 +< [10042] procure: 1 +< [10043] procured: 1 +< [10044] prod: 1 +< [10045] produce: 4 +< [10046] produced: 10 +< [10047] produces: 1 +< [10048] product: 2 +< [10049] production: 4 +< [10050] productive: 3 +< [10051] productively: 1 +< [10052] profaned: 1 +< [10053] profaning: 1 +< [10054] professez: 1 +< [10055] profession: 2 +< [10056] professor: 24 +< [10057] professor's: 1 +< [10058] professors: 4 +< [10059] proffered: 1 +< [10060] proffering: 1 +< [10061] proficient: 1 +< [10062] profile: 1 +< [10063] profit: 13 +< [10064] profit--that's: 1 +< [10065] profitable: 5 +< [10066] profits: 7 +< [10067] profound: 3 +< [10068] profoundly: 1 +< [10069] program: 6 +< [10070] progress: 12 +< [10071] progression: 1 +< [10072] prohibition: 1 +< [10073] prohor: 1 +< [10074] project: 90 +< [10075] projecting: 4 +< [10076] projects: 6 +< [10077] prokofy: 2 +< [10078] prolong: 2 +< [10079] prolonged: 3 +< [10080] promenade: 1 +< [10081] prominent: 11 +< [10082] prominently: 2 +< [10083] promise: 21 +< [10084] promised: 45 +< [10085] promising: 6 +< [10086] promissory: 1 +< [10087] promoted: 2 +< [10088] promoting: 4 +< [10089] promotion: 3 +< [10090] prompted: 5 +< [10091] promptly: 18 +< [10092] prompts: 1 +< [10093] pronounce: 4 +< [10094] pronounced: 5 +< [10095] pronouncing: 2 +< [10096] proof: 12 +< [10097] proofread: 1 +< [10098] proofs: 7 +< [10099] prop: 1 +< [10100] propensities: 4 +< [10101] propensities--wicked: 1 +< [10102] proper: 12 +< [10103] properly: 12 +< [10104] property: 30 +< [10105] proportion: 3 +< [10106] proportionally: 1 +< [10107] proportionate: 1 +< [10108] proportions: 1 +< [10109] propos: 3 +< [10110] proposal: 2 +< [10111] proposal--that: 1 +< [10112] propose: 1 +< [10113] proposed: 21 +< [10114] proposition: 3 +< [10115] propositions: 1 +< [10116] propped: 7 +< [10117] propping: 2 +< [10118] proprietary: 1 +< [10119] proprieties: 2 +< [10120] proprietors: 1 +< [10121] propriety: 7 +< [10122] prosecution: 1 +< [10123] prosecutor: 3 +< [10124] prospect: 3 +< [10125] prosperity: 7 +< [10126] prosperous: 1 +< [10127] prostration: 1 +< [10128] protect: 6 +< [10129] protected: 2 +< [10130] protecting: 1 +< [10131] protection: 6 +< [10132] protection...though: 1 +< [10133] protector: 1 +< [10134] protegée: 1 +< [10135] protest: 2 +< [10136] protestant: 1 +< [10137] protestations: 2 +< [10138] protests: 1 +< [10139] protruding: 1 +< [10140] protégés: 1 +< [10141] proud: 36 +< [10142] proudly: 1 +< [10143] prove: 20 +< [10144] proved: 14 +< [10145] provender: 1 +< [10146] proverb: 3 +< [10147] proves: 6 +< [10148] provide: 11 +< [10149] provided: 9 +< [10150] providence: 1 +< [10151] providential: 1 +< [10152] providing: 7 +< [10153] province: 43 +< [10154] provinces: 7 +< [10155] provinces--you: 1 +< [10156] provincial: 10 +< [10157] proving: 1 +< [10158] provision: 1 +< [10159] provisions: 3 +< [10160] provoke: 3 +< [10161] provoked: 1 +< [10162] provoking: 1 +< [10163] prowess: 1 +< [10164] proximity: 1 +< [10165] prudence: 2 +< [10166] prudent: 3 +< [10167] prudno: 1 +< [10168] prussia: 3 +< [10169] pryatchnikov: 3 +< [10170] psalm: 1 +< [10171] pseudo-matrimonial: 1 +< [10172] psychological: 1 +< [10173] public: 76 +< [10174] public-spirited: 1 +< [10175] publications: 1 +< [10176] publicity: 3 +< [10177] published: 2 +< [10178] publisher...and: 1 +< [10179] puce: 1 +< [10180] puckered: 3 +< [10181] pudding: 1 +< [10182] puddings: 2 +< [10183] puddles: 1 +< [10184] puerperal: 1 +< [10185] puffed: 1 +< [10186] puffed-out: 1 +< [10187] puffing: 1 +< [10188] puffs: 1 +< [10189] puis: 3 +< [10190] pull: 5 +< [10191] pulled: 28 +< [10192] pulled-up: 1 +< [10193] pulling: 31 +< [10194] pulls: 1 +< [10195] pulse: 3 +< [10196] pumping: 1 +< [10197] punctilious: 1 +< [10198] punctual: 1 +< [10199] punctuality: 1 +< [10200] punctually: 1 +< [10201] punish: 10 +< [10202] punished: 9 +< [10203] punishing: 4 +< [10204] punishment: 9 +< [10205] punitive: 1 +< [10206] pupil: 3 +< [10207] purchase: 3 +< [10208] purchaser: 1 +< [10209] purchasers: 1 +< [10210] purchases: 2 +< [10211] pure: 8 +< [10212] purely: 3 +< [10213] purer: 3 +< [10214] purgative: 1 +< [10215] purity: 5 +< [10216] purity--had: 1 +< [10217] purplish: 1 +< [10218] purport: 1 +< [10219] purpose: 19 +< [10220] purposely: 14 +< [10221] purposes: 2 +< [10222] purse: 1 +< [10223] pursed: 1 +< [10224] pursing: 1 +< [10225] pursue: 5 +< [10226] pursued: 27 +< [10227] pursuing: 5 +< [10228] pursuit: 6 +< [10229] pursuits: 9 +< [10230] purveyor: 1 +< [10231] push: 4 +< [10232] pushed: 15 +< [10233] pushing: 5 +< [10234] put: 301 +< [10235] put-to: 1 +< [10236] puts: 2 +< [10237] putting: 87 +< [10238] putty: 1 +< [10239] putyatov: 1 +< [10240] puzzled: 6 +< [10241] puzzling: 2 +< [10242] pyevtsov: 2 +< [10243] pyotr: 26 +< [10244] pyramids: 1 +< [10245] pétersbourg: 1 +< [10246] pétrir: 1 +< [10247] qu'elle: 3 +< [10248] qu'est-ce: 1 +< [10249] qu'ils: 1 +< [10250] quack: 1 +< [10251] quacks: 3 +< [10252] quadrangle: 1 +< [10253] quadrangular: 1 +< [10254] quadrille: 10 +< [10255] quail's: 1 +< [10256] qualification: 3 +< [10257] qualifications: 4 +< [10258] qualified: 1 +< [10259] qualities: 12 +< [10260] quality: 9 +< [10261] quantity: 1 +< [10262] quarrel: 27 +< [10263] quarreled: 7 +< [10264] quarreling: 2 +< [10265] quarrels: 9 +< [10266] quarrelsome: 2 +< [10267] quarter: 4 +< [10268] quartermaster: 5 +< [10269] quarters: 5 +< [10270] quartette: 1 +< [10271] que: 6 +< [10272] queen: 2 +< [10273] queer: 27 +< [10274] queerly: 1 +< [10275] quelling: 1 +< [10276] quench: 1 +< [10277] quenched: 2 +< [10278] queried: 17 +< [10279] question: 212 +< [10280] question's: 1 +< [10281] question--"that: 1 +< [10282] question--it: 1 +< [10283] questioned: 11 +< [10284] questioning: 12 +< [10285] questioning--hostile: 1 +< [10286] questioningly: 3 +< [10287] questions: 61 +< [10288] qui: 5 +< [10289] quick: 21 +< [10290] quicken: 1 +< [10291] quickened: 7 +< [10292] quickening: 3 +< [10293] quicker: 1 +< [10294] quickly: 86 +< [10295] quicksilver: 1 +< [10296] quickwittedness: 1 +< [10297] quiet: 24 +< [10298] quieter: 1 +< [10299] quietly: 17 +< [10300] quilt: 9 +< [10301] quinze: 1 +< [10302] quite: 219 +< [10303] quite...soon: 1 +< [10304] quiver: 8 +< [10305] quivered: 13 +< [10306] quivering: 18 +< [10307] quo: 1 +< [10308] quos: 2 +< [10309] quotations: 2 +< [10310] quote: 1 +< [10311] quoted: 1 +< [10312] quoting: 1 +< [10313] r: 1 +< [10314] r's: 1 +< [10315] race: 56 +< [10316] race-course: 2 +< [10317] racers: 7 +< [10318] races: 42 +< [10319] races...and: 1 +< [10320] rachel: 1 +< [10321] racing: 3 +< [10322] rack: 2 +< [10323] racked: 1 +< [10324] radiance: 5 +< [10325] radiant: 26 +< [10326] radical: 1 +< [10327] radicalism: 1 +< [10328] rage: 8 +< [10329] raging: 2 +< [10330] ragozov: 1 +< [10331] rags: 2 +< [10332] raids: 1 +< [10333] railed: 1 +< [10334] railing: 1 +< [10335] raillery: 2 +< [10336] railroads: 1 +< [10337] rails: 7 +< [10338] railway: 21 +< [10339] railways: 13 +< [10340] rain: 22 +< [10341] rain--he: 1 +< [10342] rainbow: 1 +< [10343] raindrops: 1 +< [10344] rained: 1 +< [10345] raining: 2 +< [10346] rains: 1 +< [10347] raise: 8 +< [10348] raised: 29 +< [10349] raises: 1 +< [10350] raising: 13 +< [10351] rake: 5 +< [10352] rake-handle: 1 +< [10353] raked: 2 +< [10354] rakes: 2 +< [10355] raking: 1 +< [10356] rallying: 1 +< [10357] rambouillet: 1 +< [10358] ramifications: 1 +< [10359] rammers--you: 1 +< [10360] ramrod: 1 +< [10361] ran: 102 +< [10362] rancor: 2 +< [10363] random: 3 +< [10364] rang: 25 +< [10365] range: 1 +< [10366] ranged: 5 +< [10367] ranging: 1 +< [10368] rank: 6 +< [10369] ranks: 2 +< [10370] ransacked: 1 +< [10371] raphael: 3 +< [10372] rapid: 36 +< [10373] rapidity: 10 +< [10374] rapidly: 44 +< [10375] rapture: 7 +< [10376] raptures: 1 +< [10377] rapturous: 3 +< [10378] rapturously: 1 +< [10379] rare: 8 +< [10380] rarely: 17 +< [10381] rasa_--no: 1 +< [10382] rascal: 1 +< [10383] raspberries: 7 +< [10384] raspberry: 2 +< [10385] rate: 10 +< [10386] rather: 55 +< [10387] rational: 16 +< [10388] rations: 2 +< [10389] rattle: 3 +< [10390] rattling: 1 +< [10391] raven: 4 +< [10392] raven-black: 1 +< [10393] raves: 1 +< [10394] ravine: 2 +< [10395] raw: 1 +< [10396] rays: 4 +< [10397] razor: 1 +< [10398] re-establish: 1 +< [10399] re-read: 1 +< [10400] re-use: 2 +< [10401] reach: 10 +< [10402] reached: 65 +< [10403] reaching: 23 +< [10404] reactionist: 3 +< [10405] reacts: 1 +< [10406] read: 134 +< [10407] readable: 2 +< [10408] reader: 1 +< [10409] readier: 1 +< [10410] readily: 9 +< [10411] readiness: 3 +< [10412] reading: 58 +< [10413] reading"--he: 1 +< [10414] reading--but: 1 +< [10415] reading--reading: 1 +< [10416] ready: 126 +< [10417] ready-made: 2 +< [10418] real: 42 +< [10419] realism: 3 +< [10420] realistic: 1 +< [10421] reality: 22 +< [10422] reality...and: 1 +< [10423] realization: 3 +< [10424] realize: 15 +< [10425] realized: 21 +< [10426] realized--and: 1 +< [10427] realizes: 2 +< [10428] realizing: 3 +< [10429] really: 122 +< [10430] reap: 1 +< [10431] reaped: 1 +< [10432] reaping: 3 +< [10433] reappearance: 1 +< [10434] reappeared: 2 +< [10435] rear: 1 +< [10436] reared: 1 +< [10437] rearing: 1 +< [10438] rearrange: 1 +< [10439] rearranged: 2 +< [10440] rearranging: 1 +< [10441] reason: 60 +< [10442] reason--it: 1 +< [10443] reasonable: 5 +< [10444] reasonableness: 1 +< [10445] reasoned: 2 +< [10446] reasoning: 7 +< [10447] reasons: 5 +< [10448] reasserted: 1 +< [10449] reassurance: 1 +< [10450] reassure: 3 +< [10451] reassured: 4 +< [10452] reassuring: 2 +< [10453] reassuringly: 1 +< [10454] rebecca: 3 +< [10455] rebound: 1 +< [10456] rebounded: 1 +< [10457] rebuilt: 1 +< [10458] recall: 21 +< [10459] recalled: 51 +< [10460] recalling: 26 +< [10461] recapitulate: 1 +< [10462] receipt: 6 +< [10463] receive: 26 +< [10464] received: 63 +< [10465] receiving: 17 +< [10466] recent: 4 +< [10467] recently: 3 +< [10468] reception: 7 +< [10469] recess: 1 +< [10470] recesses: 1 +< [10471] recht: 1 +< [10472] reciprocal: 1 +< [10473] recited--the: 1 +< [10474] reckless: 2 +< [10475] recklessly: 1 +< [10476] reckon: 9 +< [10477] reckoned: 8 +< [10478] reckoning: 13 +< [10479] reckons: 1 +< [10480] recognition: 5 +< [10481] recognize: 16 +< [10482] recognized: 34 +< [10483] recognizes: 1 +< [10484] recognizing: 13 +< [10485] recollect: 2 +< [10486] recollected: 10 +< [10487] recollecting: 12 +< [10488] recollection: 15 +< [10489] recollections: 4 +< [10490] recommended: 1 +< [10491] reconcile: 4 +< [10492] reconciled: 13 +< [10493] reconciliation: 15 +< [10494] reconciling: 2 +< [10495] reconstruction: 2 +< [10496] recounted: 1 +< [10497] recourse: 3 +< [10498] recover: 7 +< [10499] recovered: 16 +< [10500] recoveries: 1 +< [10501] recovering: 3 +< [10502] recovery: 5 +< [10503] recreations: 1 +< [10504] recriminations: 1 +< [10505] recruit: 1 +< [10506] recruits: 1 +< [10507] rectifying: 1 +< [10508] recurred: 2 +< [10509] recurring: 2 +< [10510] red: 72 +< [10511] red-armed: 1 +< [10512] red-cheeked: 1 +< [10513] red-faced: 5 +< [10514] red-haired: 1 +< [10515] red-palmed: 1 +< [10516] red-spotted: 1 +< [10517] reddened: 8 +< [10518] reddened--"that: 1 +< [10519] reddening: 12 +< [10520] reddish: 2 +< [10521] redemption: 2 +< [10522] redistribute: 1 +< [10523] redistributing: 2 +< [10524] redistribution: 2 +< [10525] redoubled: 2 +< [10526] reduce: 1 +< [10527] reduced: 4 +< [10528] reduction: 1 +< [10529] reeds: 12 +< [10530] reeling: 1 +< [10531] reestablished: 3 +< [10532] refer: 2 +< [10533] reference: 6 +< [10534] references: 3 +< [10535] referred: 7 +< [10536] referring: 5 +< [10537] refined: 1 +< [10538] refined,--i: 1 +< [10539] refinement: 2 +< [10540] reflect: 3 +< [10541] reflected: 11 +< [10542] reflecting: 5 +< [10543] reflection: 14 +< [10544] reflections: 5 +< [10545] reflector: 1 +< [10546] reflex: 2 +< [10547] reform: 4 +< [10548] reformation: 2 +< [10549] reformed: 2 +< [10550] reforms: 3 +< [10551] refrain: 1 +< [10552] refrained: 1 +< [10553] refreshed: 3 +< [10554] refreshment: 3 +< [10555] refreshments: 3 +< [10556] refuge: 3 +< [10557] refund: 10 +< [10558] refusal: 12 +< [10559] refusal's: 1 +< [10560] refuse: 22 +< [10561] refused: 31 +< [10562] refuses: 2 +< [10563] refusing: 7 +< [10564] refute: 1 +< [10565] regain: 3 +< [10566] regained: 7 +< [10567] regaining: 5 +< [10568] regale: 1 +< [10569] regaled: 1 +< [10570] regard: 37 +< [10571] regarded: 19 +< [10572] regarding: 5 +< [10573] regardless: 5 +< [10574] regards: 6 +< [10575] regiment: 27 +< [10576] regiment--who: 1 +< [10577] regimental: 3 +< [10578] regiments: 1 +< [10579] regions: 4 +< [10580] register: 1 +< [10581] registered: 4 +< [10582] regret: 28 +< [10583] regretfully: 5 +< [10584] regretted: 7 +< [10585] regretting: 4 +< [10586] regular: 12 +< [10587] regulate: 2 +< [10588] regulating: 2 +< [10589] rehabilitate: 1 +< [10590] rehearsal: 2 +< [10591] rehearsing: 2 +< [10592] rein: 5 +< [10593] reins: 18 +< [10594] rejected: 3 +< [10595] rejecting: 3 +< [10596] rejection: 4 +< [10597] rejoice: 6 +< [10598] rejoiced: 5 +< [10599] rejoicing: 9 +< [10600] rejoin: 1 +< [10601] rejoinder: 1 +< [10602] rejoined: 1 +< [10603] rejuvenated: 1 +< [10604] relate: 2 +< [10605] related: 7 +< [10606] relating: 7 +< [10607] relation: 24 +< [10608] relations: 98 +< [10609] relationship: 3 +< [10610] relationships: 1 +< [10611] relative: 1 +< [10612] relatives: 1 +< [10613] relax: 1 +< [10614] relaxation: 1 +< [10615] relaxed: 1 +< [10616] relaxing: 2 +< [10617] relays: 1 +< [10618] release: 2 +< [10619] relented: 1 +< [10620] relentlessly: 1 +< [10621] relic: 3 +< [10622] relief: 18 +< [10623] relieve: 3 +< [10624] relieved: 2 +< [10625] religion: 31 +< [10626] religion--you: 1 +< [10627] religions: 2 +< [10628] religious: 18 +< [10629] religiously-patriotic: 1 +< [10630] relinquish: 1 +< [10631] relish: 1 +< [10632] relished: 1 +< [10633] reluctance: 1 +< [10634] reluctant: 1 +< [10635] reluctantly: 7 +< [10636] rely: 1 +< [10637] relying: 1 +< [10638] remain: 26 +< [10639] remainder: 3 +< [10640] remained: 28 +< [10641] remaining: 8 +< [10642] remains: 3 +< [10643] remark: 15 +< [10644] remarkable: 12 +< [10645] remarked: 1 +< [10646] remarks: 10 +< [10647] remedies: 2 +< [10648] remedy: 6 +< [10649] remember: 67 +< [10650] remember?...what: 1 +< [10651] remembered: 66 +< [10652] remembering: 32 +< [10653] remembers: 1 +< [10654] remind: 6 +< [10655] reminded: 10 +< [10656] reminding: 3 +< [10657] reminiscence: 1 +< [10658] reminiscences: 7 +< [10659] remnants: 1 +< [10660] remorse: 16 +< [10661] remorseful: 1 +< [10662] remote: 14 +< [10663] remoteness: 1 +< [10664] remotest: 1 +< [10665] removal: 3 +< [10666] remove: 3 +< [10667] removed: 5 +< [10668] removing: 3 +< [10669] renamed: 1 +< [10670] rendered: 3 +< [10671] rendering: 1 +< [10672] rendezvous: 1 +< [10673] renew: 3 +< [10674] renewed: 2 +< [10675] renewing: 2 +< [10676] renounce: 2 +< [10677] renounced: 1 +< [10678] renouncing: 3 +< [10679] renowned: 2 +< [10680] rent: 17 +< [10681] rented: 3 +< [10682] rents: 3 +< [10683] renunciation: 2 +< [10684] reopened: 1 +< [10685] reorganization: 2 +< [10686] reorganizing: 1 +< [10687] rep: 1 +< [10688] repainted: 1 +< [10689] repair: 1 +< [10690] repaired: 3 +< [10691] repairing: 4 +< [10692] repairs: 1 +< [10693] repay: 2 +< [10694] repaying: 1 +< [10695] repeat: 16 +< [10696] repeated: 87 +< [10697] repeatedly: 2 +< [10698] repeating: 17 +< [10699] repeats: 1 +< [10700] repellant: 1 +< [10701] repelled: 3 +< [10702] repent: 4 +< [10703] repentance: 2 +< [10704] repented: 3 +< [10705] repenting: 1 +< [10706] repetition: 6 +< [10707] replace: 1 +< [10708] replaced: 10 +< [10709] replacement: 5 +< [10710] replacing: 1 +< [10711] replied: 20 +< [10712] replies: 3 +< [10713] reply: 32 +< [10714] replying: 4 +< [10715] report: 22 +< [10716] reported: 6 +< [10717] reports: 7 +< [10718] repose: 7 +< [10719] repose--suddenly: 1 +< [10720] reprehensible: 2 +< [10721] represent: 1 +< [10722] representations: 3 +< [10723] representative: 2 +< [10724] representatives: 3 +< [10725] represented: 3 +< [10726] representing: 1 +< [10727] repress: 1 +< [10728] repressed: 1 +< [10729] repressing: 2 +< [10730] reprimand: 1 +< [10731] reprimanded: 1 +< [10732] reproach: 17 +< [10733] reproached: 4 +< [10734] reproaches: 4 +< [10735] reproachful: 3 +< [10736] reproachfully: 5 +< [10737] reproachfulness: 3 +< [10738] reproaching: 2 +< [10739] reprove: 1 +< [10740] reprovingly: 1 +< [10741] repudiated: 1 +< [10742] repugnance: 1 +< [10743] repulse: 1 +< [10744] repulsion: 7 +< [10745] repulsive: 7 +< [10746] repulsively: 1 +< [10747] reputation: 10 +< [10748] request: 7 +< [10749] request--that: 1 +< [10750] requests: 1 +< [10751] require: 2 +< [10752] required: 12 +< [10753] requirements: 8 +< [10754] requires: 1 +< [10755] requiring: 1 +< [10756] requisite: 1 +< [10757] rescue: 2 +< [10758] rescued: 1 +< [10759] research: 2 +< [10760] resemblance: 1 +< [10761] resembled: 1 +< [10762] resenting: 2 +< [10763] resentment: 1 +< [10764] reservations: 1 +< [10765] reserve: 11 +< [10766] reserved: 5 +< [10767] reserving: 1 +< [10768] residents: 1 +< [10769] resigned: 2 +< [10770] resist: 7 +< [10771] resistance: 2 +< [10772] resisted: 1 +< [10773] resolute: 21 +< [10774] resolutely: 18 +< [10775] resolution: 7 +< [10776] resolution--that: 1 +< [10777] resolutions: 2 +< [10778] resolved: 20 +< [10779] resolving: 3 +< [10780] resorted: 1 +< [10781] resounded: 3 +< [10782] resounding: 1 +< [10783] resources: 1 +< [10784] respect: 42 +< [10785] respectable: 2 +< [10786] respected: 8 +< [10787] respectful: 11 +< [10788] respectfully: 7 +< [10789] respectfulness: 1 +< [10790] respective: 1 +< [10791] respects: 4 +< [10792] respects'--that's: 1 +< [10793] resplendent: 2 +< [10794] respond: 5 +< [10795] responded: 44 +< [10796] responding: 2 +< [10797] response: 6 +< [10798] responses: 1 +< [10799] responsibility: 1 +< [10800] responsible: 8 +< [10801] rest: 57 +< [10802] restaurant: 4 +< [10803] restaurants: 1 +< [10804] rested: 11 +< [10805] restful: 2 +< [10806] resting: 3 +< [10807] restive: 2 +< [10808] restless: 2 +< [10809] restlessly: 1 +< [10810] restore: 2 +< [10811] restored: 2 +< [10812] restrain: 16 +< [10813] restrained: 4 +< [10814] restraining: 8 +< [10815] restraint: 1 +< [10816] restricted: 1 +< [10817] restrictions: 3 +< [10818] rests: 5 +< [10819] result: 17 +< [10820] result--the: 1 +< [10821] results: 6 +< [10822] resumed: 10 +< [10823] resumed--"she: 1 +< [10824] retain: 1 +< [10825] retained: 1 +< [10826] retinue: 1 +< [10827] retire: 4 +< [10828] retired: 7 +< [10829] retiring: 1 +< [10830] retreat: 6 +< [10831] retreated: 4 +< [10832] retreating: 4 +< [10833] retrieved: 1 +< [10834] return: 35 +< [10835] returned: 26 +< [10836] returning: 13 +< [10837] returns: 1 +< [10838] reveal: 1 +< [10839] revealed: 17 +< [10840] revealing: 2 +< [10841] revelation: 5 +< [10842] revelations: 1 +< [10843] revelry: 1 +< [10844] revenez: 1 +< [10845] revenge: 2 +< [10846] revengeful: 1 +< [10847] revenue: 2 +< [10848] revenues: 1 +< [10849] reverence: 2 +< [10850] reverend: 2 +< [10851] reverential: 1 +< [10852] reverie: 1 +< [10853] reveries: 1 +< [10854] reverse: 2 +< [10855] reversed: 1 +< [10856] reverted: 1 +< [10857] review: 6 +< [10858] reviewed: 3 +< [10859] reviews: 5 +< [10860] revising: 2 +< [10861] revision: 4 +< [10862] revival: 1 +< [10863] revive: 3 +< [10864] revived: 5 +< [10865] reviving: 2 +< [10866] revoir: 3 +< [10867] revolt: 1 +< [10868] revolted: 5 +< [10869] revolting: 6 +< [10870] revolution: 6 +< [10871] revolutionary: 3 +< [10872] revolutionist: 1 +< [10873] revolutionize: 1 +< [10874] revolutions: 1 +< [10875] revolver: 6 +< [10876] revulsion: 1 +< [10877] reward: 8 +< [10878] rewarded: 1 +< [10879] rewarding: 1 +< [10880] rewards: 1 +< [10881] rhine: 2 +< [10882] rhythm: 2 +< [10883] rhythmically: 6 +< [10884] rib: 1 +< [10885] ribbon: 8 +< [10886] ribbons: 12 +< [10887] ribs: 2 +< [10888] rich: 9 +< [10889] richer: 1 +< [10890] riches: 1 +< [10891] richly: 1 +< [10892] rid: 18 +< [10893] ridden: 4 +< [10894] riddle: 4 +< [10895] riddle--do: 1 +< [10896] ride: 4 +< [10897] rider: 5 +< [10898] riders: 3 +< [10899] ridge: 2 +< [10900] ridges: 2 +< [10901] ridicule: 11 +< [10902] ridiculed: 2 +< [10903] ridiculing: 1 +< [10904] ridiculous: 14 +< [10905] riding: 23 +< [10906] rien: 2 +< [10907] rigged: 2 +< [10908] right: 262 +< [10909] right...but: 1 +< [10910] righteous: 1 +< [10911] righting: 1 +< [10912] rightly: 9 +< [10913] rights: 27 +< [10914] rights--power: 1 +< [10915] rigid: 1 +< [10916] rigidity: 3 +< [10917] rim: 1 +< [10918] ring: 30 +< [10919] ring-covered: 1 +< [10920] ringing: 12 +< [10921] ringlets: 6 +< [10922] rings: 14 +< [10923] rinsed: 1 +< [10924] ripe: 3 +< [10925] ripen: 1 +< [10926] rise: 6 +< [10927] risen: 12 +< [10928] rises: 1 +< [10929] rising: 13 +< [10930] risk: 4 +< [10931] risky: 1 +< [10932] ristitch--to: 1 +< [10933] ristitch-kudzhitsky: 1 +< [10934] rite: 2 +< [10935] rites: 1 +< [10936] rival: 9 +< [10937] rivalry: 2 +< [10938] rivals: 3 +< [10939] river: 9 +< [10940] river-bank: 1 +< [10941] riverside: 3 +< [10942] riz: 1 +< [10943] road: 41 +< [10944] roads: 5 +< [10945] roadside: 2 +< [10946] roan: 1 +< [10947] roar: 6 +< [10948] roared: 4 +< [10949] roaring: 1 +< [10950] roars: 3 +< [10951] roast: 3 +< [10952] roasting: 1 +< [10953] robbed: 4 +< [10954] robe: 1 +< [10955] robes: 1 +< [10956] robust: 2 +< [10957] rock: 2 +< [10958] rocking: 4 +< [10959] rocking-chair: 1 +< [10960] rod: 1 +< [10961] rode: 18 +< [10962] roguish: 1 +< [10963] roguishly: 1 +< [10964] roi: 2 +< [10965] roland: 1 +< [10966] rolandak: 1 +< [10967] rolandak's: 1 +< [10968] roll: 11 +< [10969] rolled: 11 +< [10970] rolling: 5 +< [10971] rolls: 5 +< [10972] roman: 1 +< [10973] romance: 2 +< [10974] romances: 1 +< [10975] romantic: 2 +< [10976] rome: 5 +< [10977] rompue: 1 +< [10978] rond: 1 +< [10979] rood: 1 +< [10980] roof: 11 +< [10981] roofs: 8 +< [10982] room: 394 +< [10983] room--that: 1 +< [10984] room...i: 1 +< [10985] rooms: 38 +< [10986] rooms--the: 1 +< [10987] roomy: 4 +< [10988] root: 2 +< [10989] roots: 6 +< [10990] rope: 2 +< [10991] rose: 64 +< [10992] roses: 1 +< [10993] rosettes: 2 +< [10994] rosier: 1 +< [10995] rossi's: 1 +< [10996] rosy: 13 +< [10997] rosy-checked: 2 +< [10998] rotation: 1 +< [10999] rouble: 4 +< [11000] rouble's: 1 +< [11001] roubles: 43 +< [11002] roubles--consisted: 1 +< [11003] rough: 11 +< [11004] roughly: 1 +< [11005] roughness: 1 +< [11006] round: 253 +< [11007] round-faced: 1 +< [11008] round-shouldered: 2 +< [11009] round...i: 1 +< [11010] round...i'll: 1 +< [11011] rounded: 3 +< [11012] roundly: 1 +< [11013] rounds: 1 +< [11014] rouse: 5 +< [11015] roused: 12 +< [11016] rouses: 1 +< [11017] rousing: 7 +< [11018] route: 1 +< [11019] routine: 2 +< [11020] row: 30 +< [11021] rows: 22 +< [11022] royalties: 2 +< [11023] royalty: 3 +< [11024] rtishtcheva: 1 +< [11025] rub: 2 +< [11026] rubbed: 10 +< [11027] rubbing: 9 +< [11028] rubbish: 4 +< [11029] rubens: 1 +< [11030] rubicund: 1 +< [11031] ruddy: 1 +< [11032] rude: 4 +< [11033] rudeness: 4 +< [11034] ruefully: 1 +< [11035] ruffled: 1 +< [11036] rug: 24 +< [11037] rugs: 7 +< [11038] ruin: 22 +< [11039] ruined: 19 +< [11040] ruining: 4 +< [11041] ruins: 2 +< [11042] rule: 8 +< [11043] rules: 7 +< [11044] rum: 1 +< [11045] rumble: 5 +< [11046] rumbled: 1 +< [11047] rumbling: 2 +< [11048] rumored: 1 +< [11049] rumors: 2 +< [11050] run: 55 +< [11051] running: 40 +< [11052] runs: 2 +< [11053] rupture: 6 +< [11054] rural: 3 +< [11055] rurik: 2 +< [11056] rush: 19 +< [11057] rushed: 12 +< [11058] rushes: 1 +< [11059] rushing: 4 +< [11060] russe: 1 +< [11061] russia: 54 +< [11062] russia's: 1 +< [11063] russia--had: 1 +< [11064] russia--the: 1 +< [11065] russian: 89 +< [11066] russian--were: 1 +< [11067] russians: 13 +< [11068] russification: 4 +< [11069] rust: 1 +< [11070] rustle: 10 +< [11071] rustling: 1 +< [11072] rusty: 1 +< [11073] ruthlessly: 1 +< [11074] ruts: 4 +< [11075] ryabinin: 18 +< [11076] ryabinin's: 3 +< [11077] rye: 11 +< [11078] rye-beer: 3 +< [11079] ryezunov: 4 +< [11080] ryezunov's: 2 +< [11081] réunit: 1 +< [11082] réussi: 1 +< [11083] rôle: 4 +< [11084] s: 2 +< [11085] s/he: 1 +< [11086] sa: 1 +< [11087] sack: 2 +< [11088] sacks: 2 +< [11089] sacrament: 12 +< [11090] sacred: 7 +< [11091] sacrifice: 7 +< [11092] sacrificed: 7 +< [11093] sacrifices: 4 +< [11094] sad: 5 +< [11095] saddle: 14 +< [11096] saddle-girth: 2 +< [11097] saddle-horse: 1 +< [11098] saddle-horses--not: 1 +< [11099] saddled: 1 +< [11100] saddler: 1 +< [11101] saddler's: 1 +< [11102] saddling: 2 +< [11103] safe: 1 +< [11104] safeguard: 1 +< [11105] saffron-colored: 1 +< [11106] saffron-red: 1 +< [11107] sage: 1 +< [11108] said: 2726 +< [11109] said--"when: 1 +< [11110] said--came: 1 +< [11111] said--obviously: 1 +< [11112] said--that: 1 +< [11113] sailor: 1 +< [11114] sails: 1 +< [11115] saint: 2 +< [11116] sainte: 1 +< [11117] saintly: 1 +< [11118] sake: 64 +< [11119] sake--i: 1 +< [11120] salaries: 3 +< [11121] salary: 14 +< [11122] sale: 9 +< [11123] sales: 1 +< [11124] sallow: 2 +< [11125] salt: 7 +< [11126] salted: 2 +< [11127] salutation: 1 +< [11128] salvation: 15 +< [11129] sam: 1 +< [11130] samara: 1 +< [11131] same: 447 +< [11132] same--if: 1 +< [11133] sameness: 1 +< [11134] sammt: 1 +< [11135] samovar: 11 +< [11136] samson: 1 +< [11137] sancta: 1 +< [11138] sanction: 4 +< [11139] sanctioned: 1 +< [11140] sanctity: 1 +< [11141] sanctuary: 1 +< [11142] sand: 4 +< [11143] sands: 1 +< [11144] sandy: 1 +< [11145] sang: 9 +< [11146] sanina: 2 +< [11147] sanity: 1 +< [11148] sank: 25 +< [11149] sap: 2 +< [11150] saplings: 1 +< [11151] sappho: 11 +< [11152] sappho's: 2 +< [11153] sarcasm: 1 +< [11154] sarcastic: 6 +< [11155] sarcastically: 3 +< [11156] sarmatskys: 1 +< [11157] sash: 3 +< [11158] sasha: 1 +< [11159] sat: 167 +< [11160] satchel: 2 +< [11161] satin: 5 +< [11162] satiny: 1 +< [11163] satisfaction: 36 +< [11164] satisfactorily: 4 +< [11165] satisfactory: 4 +< [11166] satisfied: 33 +< [11167] satisfied--at: 1 +< [11168] satisfy: 3 +< [11169] satisfying: 2 +< [11170] saturated: 1 +< [11171] saturday: 2 +< [11172] sauce: 12 +< [11173] saucers: 1 +< [11174] sauces: 1 +< [11175] saul: 1 +< [11176] saunter: 1 +< [11177] sausages: 5 +< [11178] savage: 6 +< [11179] savageness: 1 +< [11180] savages: 2 +< [11181] savant: 1 +< [11182] savants: 1 +< [11183] save: 20 +< [11184] saved: 14 +< [11185] saving: 2 +< [11186] saviors: 1 +< [11187] saw: 421 +< [11188] sawing: 1 +< [11189] saxe: 1 +< [11190] say: 511 +< [11191] say--exquisite: 1 +< [11192] say--worse: 1 +< [11193] say...i: 2 +< [11194] saying: 153 +< [11195] sayings: 1 +< [11196] says: 47 +< [11197] says,--that: 1 +< [11198] scaffolding: 2 +< [11199] scaffolds: 1 +< [11200] scale: 6 +< [11201] scales: 1 +< [11202] scalloped: 2 +< [11203] scandal: 14 +< [11204] scandalous: 1 +< [11205] scandals: 2 +< [11206] scanned: 8 +< [11207] scanning: 10 +< [11208] scant: 1 +< [11209] scanty: 6 +< [11210] scapegoat: 1 +< [11211] scarce: 1 +< [11212] scarcely: 30 +< [11213] scarcity: 1 +< [11214] scare: 1 +< [11215] scared: 18 +< [11216] scarf: 2 +< [11217] scarifier: 1 +< [11218] scarlatina: 7 +< [11219] scarlatina--one: 1 +< [11220] scarlet: 2 +< [11221] scatter: 1 +< [11222] scattered: 6 +< [11223] scattering: 2 +< [11224] scene: 10 +< [11225] scenes: 6 +< [11226] scent: 14 +< [11227] scented: 2 +< [11228] scents: 1 +< [11229] scepticism: 1 +< [11230] schelling: 1 +< [11231] scheme: 4 +< [11232] schemes: 1 +< [11233] scholar: 1 +< [11234] school: 33 +< [11235] school,--dissipating: 1 +< [11236] school--how: 1 +< [11237] schoolboy: 2 +< [11238] schoolboys: 1 +< [11239] schooled: 1 +< [11240] schoolfellow: 3 +< [11241] schoolfellows: 1 +< [11242] schoolmistress: 1 +< [11243] schoolroom: 2 +< [11244] schools: 24 +< [11245] schopenhauer: 2 +< [11246] schulze-delitsch: 1 +< [11247] schützburgs: 1 +< [11248] science: 18 +< [11249] sciences: 3 +< [11250] scientific: 16 +< [11251] scientifically: 1 +< [11252] scissors: 5 +< [11253] scoffer: 1 +< [11254] scold: 2 +< [11255] scolded: 2 +< [11256] scolding: 2 +< [11257] scolds: 1 +< [11258] scope: 1 +< [11259] scorched: 3 +< [11260] score: 4 +< [11261] scored: 1 +< [11262] scorn: 2 +< [11263] scornful: 1 +< [11264] scotch: 5 +< [11265] scoundrel: 2 +< [11266] scoundrelly: 1 +< [11267] scoundrels: 1 +< [11268] scowled: 8 +< [11269] scowling: 17 +< [11270] scrapes: 1 +< [11271] scraping: 1 +< [11272] scratching: 4 +< [11273] scream: 11 +< [11274] screamed: 4 +< [11275] screaming: 10 +< [11276] screams: 3 +< [11277] screen: 11 +< [11278] screens: 1 +< [11279] screw: 6 +< [11280] screwed: 1 +< [11281] screwing: 5 +< [11282] screws: 1 +< [11283] scribbled: 2 +< [11284] scribbling: 2 +< [11285] scripture: 2 +< [11286] scrub: 2 +< [11287] scrubbing: 2 +< [11288] scruples: 1 +< [11289] scrupules: 1 +< [11290] scrupulous: 1 +< [11291] scrupulously: 1 +< [11292] scrutinize: 1 +< [11293] scrutinized: 4 +< [11294] scrutinizing: 7 +< [11295] scrutiny: 1 +< [11296] sculptor: 1 +< [11297] sculpturesque: 1 +< [11298] scum: 2 +< [11299] scurrying: 1 +< [11300] scythe: 30 +< [11301] scythes: 9 +< [11302] se: 4 +< [11303] sea: 13 +< [11304] sea-bathing: 1 +< [11305] seal: 2 +< [11306] sealed: 9 +< [11307] sealing: 1 +< [11308] seals: 1 +< [11309] seams: 2 +< [11310] search: 4 +< [11311] searched: 1 +< [11312] searching: 4 +< [11313] season: 4 +< [11314] seasoned: 1 +< [11315] seat: 23 +< [11316] seated: 12 +< [11317] seating: 3 +< [11318] seats: 3 +< [11319] seclusion: 1 +< [11320] second: 80 +< [11321] second-class: 2 +< [11322] secondarily: 1 +< [11323] secondary: 1 +< [11324] secondly: 8 +< [11325] seconds: 13 +< [11326] secret: 24 +< [11327] secret!--and: 1 +< [11328] secretary: 32 +< [11329] secretary's: 2 +< [11330] secretly: 2 +< [11331] secrets: 5 +< [11332] secrétaire: 1 +< [11333] section: 7 +< [11334] sections: 3 +< [11335] sects: 2 +< [11336] secular: 1 +< [11337] secure: 12 +< [11338] securing: 1 +< [11339] security: 3 +< [11340] sedate: 1 +< [11341] sedge: 3 +< [11342] seductive: 1 +< [11343] see: 611 +< [11344] see--a: 1 +< [11345] see--all: 1 +< [11346] see--it: 1 +< [11347] see--where: 1 +< [11348] seed: 9 +< [11349] seed-corn: 1 +< [11350] seeds: 2 +< [11351] seeing: 147 +< [11352] seek: 11 +< [11353] seeking: 25 +< [11354] seem: 22 +< [11355] seemed: 292 +< [11356] seemed--presented: 1 +< [11357] seeming: 5 +< [11358] seemly: 1 +< [11359] seems: 34 +< [11360] seen: 159 +< [11361] sees: 24 +< [11362] seize: 2 +< [11363] seized: 4 +< [11364] seizing: 6 +< [11365] seldom: 3 +< [11366] select: 4 +< [11367] select--religious: 1 +< [11368] selected: 5 +< [11369] selecting: 3 +< [11370] selection: 2 +< [11371] seleznevsky: 2 +< [11372] self: 3 +< [11373] self-advertisement: 1 +< [11374] self-assertive: 1 +< [11375] self-complacent: 1 +< [11376] self-conceit: 1 +< [11377] self-confidence: 4 +< [11378] self-confident: 2 +< [11379] self-contempt: 1 +< [11380] self-control: 2 +< [11381] self-controlled: 1 +< [11382] self-deception: 4 +< [11383] self-defense: 2 +< [11384] self-dissatisfaction: 2 +< [11385] self-esteem: 1 +< [11386] self-flattery--calculated: 1 +< [11387] self-government: 3 +< [11388] self-interest: 7 +< [11389] self-pity: 3 +< [11390] self-possessed: 6 +< [11391] self-possession: 10 +< [11392] self-respect: 2 +< [11393] self-sacrifice: 2 +< [11394] self-satisfaction: 1 +< [11395] self-satisfied: 3 +< [11396] self-styled: 1 +< [11397] selfish: 1 +< [11398] selfishness: 1 +< [11399] sell: 13 +< [11400] seller: 1 +< [11401] selling: 6 +< [11402] selo: 1 +< [11403] seltzer: 6 +< [11404] semi-abstract: 1 +< [11405] semicircular: 1 +< [11406] sempstress: 1 +< [11407] semyenovna: 1 +< [11408] semyon: 3 +< [11409] semyonitch: 1 +< [11410] semyonovitch: 1 +< [11411] semyonovna: 1 +< [11412] send: 56 +< [11413] sending: 16 +< [11414] sends: 3 +< [11415] sensation: 22 +< [11416] sensations: 7 +< [11417] sense: 102 +< [11418] sense--for: 1 +< [11419] sense-organ: 1 +< [11420] senseless: 9 +< [11421] senselessness: 3 +< [11422] senses: 6 +< [11423] sensibility: 1 +< [11424] sensible: 6 +< [11425] sensibly: 1 +< [11426] sensitive: 3 +< [11427] sent: 102 +< [11428] sentence: 12 +< [11429] sentiment: 2 +< [11430] sentimental: 4 +< [11431] sentimentality: 1 +< [11432] sentiments: 4 +< [11433] separate: 21 +< [11434] separated: 7 +< [11435] separately: 4 +< [11436] separates: 1 +< [11437] separation: 9 +< [11438] sept: 1 +< [11439] september: 3 +< [11440] sequel: 1 +< [11441] sequence: 2 +< [11442] sera: 1 +< [11443] serbia: 1 +< [11444] serenade: 1 +< [11445] serenades: 1 +< [11446] serene: 17 +< [11447] serenely: 8 +< [11448] serenity: 6 +< [11449] serf: 3 +< [11450] serf-labor: 1 +< [11451] serf-owner's: 1 +< [11452] serfdom: 6 +< [11453] serfs: 3 +< [11454] serge: 1 +< [11455] sergey: 299 +< [11456] series: 7 +< [11457] serious: 44 +< [11458] serious-minded: 1 +< [11459] seriously: 17 +< [11460] seriousness: 2 +< [11461] serpohovskoy's: 1 +< [11462] serpuhovskey: 1 +< [11463] serpuhovskoy: 36 +< [11464] serpuhovskoy's: 1 +< [11465] servant: 38 +< [11466] servant-girl: 1 +< [11467] servants: 28 +< [11468] serve: 7 +< [11469] served: 15 +< [11470] serves: 3 +< [11471] servia: 3 +< [11472] servian: 4 +< [11473] servians: 3 +< [11474] service: 53 +< [11475] service--had: 1 +< [11476] service--the: 1 +< [11477] services: 9 +< [11478] serving: 2 +< [11479] seryozha: 111 +< [11480] seryozha's: 9 +< [11481] seryozha--sergey: 1 +< [11482] ses: 1 +< [11483] session: 1 +< [11484] sestrin: 1 +< [11485] set: 150 +< [11486] sets: 2 +< [11487] settee: 1 +< [11488] setter: 1 +< [11489] setter-dog: 1 +< [11490] setting: 28 +< [11491] settle: 9 +< [11492] settled: 59 +< [11493] settlement: 4 +< [11494] settlement--the: 1 +< [11495] settles: 1 +< [11496] settling: 6 +< [11497] seven: 15 +< [11498] sevens: 1 +< [11499] seventeen: 9 +< [11500] seventh: 1 +< [11501] seventy: 2 +< [11502] several: 72 +< [11503] severance: 1 +< [11504] severe: 11 +< [11505] severed: 1 +< [11506] severely: 13 +< [11507] severity: 2 +< [11508] sewing: 2 +< [11509] sewn: 1 +< [11510] sh: 1 +< [11511] sh--sh--sh: 1 +< [11512] sh...it's: 1 +< [11513] shabby: 1 +< [11514] shade: 24 +< [11515] shaded: 4 +< [11516] shades: 1 +< [11517] shadow: 17 +< [11518] shadows: 6 +< [11519] shady: 2 +< [11520] shaft: 2 +< [11521] shaft-horse: 2 +< [11522] shaft-horses: 1 +< [11523] shafts: 5 +< [11524] shag: 1 +< [11525] shaggy: 1 +< [11526] shahovskaya: 1 +< [11527] shake: 12 +< [11528] shaken: 4 +< [11529] shakes: 1 +< [11530] shakespeare: 2 +< [11531] shaking: 41 +< [11532] shaky: 1 +< [11533] shall: 220 +< [11534] shallow: 1 +< [11535] shallowness: 1 +< [11536] sham: 10 +< [11537] shame: 50 +< [11538] shame-faced: 1 +< [11539] shame-stricken: 1 +< [11540] shamefaced: 2 +< [11541] shameful: 19 +< [11542] shamefully: 1 +< [11543] shamelessly: 2 +< [11544] shamestruck: 1 +< [11545] shan't: 21 +< [11546] shape: 8 +< [11547] shaped: 2 +< [11548] shapeless: 1 +< [11549] shapely: 4 +< [11550] shapes: 2 +< [11551] share: 26 +< [11552] shared: 8 +< [11553] shareholder: 1 +< [11554] shares: 4 +< [11555] sharing: 5 +< [11556] sharp: 13 +< [11557] sharpened: 1 +< [11558] sharpening: 1 +< [11559] sharper: 1 +< [11560] sharply: 9 +< [11561] shatter: 2 +< [11562] shattered: 3 +< [11563] shaved: 1 +< [11564] shaven: 2 +< [11565] shaving: 4 +< [11566] shawl: 6 +< [11567] she: 4264 +< [11568] she'd: 2 +< [11569] she'll: 6 +< [11570] she's: 107 +< [11571] she--better: 1 +< [11572] she--simple: 1 +< [11573] she-bear: 2 +< [11574] sheaf: 2 +< [11575] sheaves: 6 +< [11576] shed: 8 +< [11577] sheds: 3 +< [11578] sheep: 1 +< [11579] sheepskin: 7 +< [11580] sheepskins: 1 +< [11581] sheet: 5 +< [11582] sheets: 4 +< [11583] shelf: 2 +< [11584] shell: 5 +< [11585] shells: 2 +< [11586] shelter: 5 +< [11587] sherry: 2 +< [11588] shifted: 4 +< [11589] shifting: 6 +< [11590] shillings: 2 +< [11591] shilton: 1 +< [11592] shine: 1 +< [11593] shining: 19 +< [11594] ship: 1 +< [11595] ships: 3 +< [11596] shirked: 2 +< [11597] shirkov: 1 +< [11598] shirt: 22 +< [11599] shirt--it: 1 +< [11600] shirt-collar: 1 +< [11601] shirt-cuff: 1 +< [11602] shirt-cuffs: 1 +< [11603] shirt-sleeves: 1 +< [11604] shirts: 4 +< [11605] shivered: 3 +< [11606] shlupik: 3 +< [11607] shlupiks: 4 +< [11608] shock: 5 +< [11609] shocking: 2 +< [11610] shocks: 1 +< [11611] shod: 1 +< [11612] shoe: 1 +< [11613] shoemaker: 1 +< [11614] shoes: 9 +< [11615] shone: 13 +< [11616] shook: 47 +< [11617] shook--"as: 1 +< [11618] shoot: 15 +< [11619] shooting: 44 +< [11620] shooting-boots: 1 +< [11621] shoots: 5 +< [11622] shop: 10 +< [11623] shop-people: 1 +< [11624] shopkeeper: 2 +< [11625] shopman: 1 +< [11626] shopping: 2 +< [11627] shops: 7 +< [11628] shore: 1 +< [11629] short: 93 +< [11630] short-cropped: 2 +< [11631] shortcomings: 3 +< [11632] shortly: 6 +< [11633] shot: 26 +< [11634] shots: 6 +< [11635] should: 314 +< [11636] shoulder: 25 +< [11637] shoulder-cape: 1 +< [11638] shouldering: 1 +< [11639] shoulders: 48 +< [11640] shoulders--"he: 1 +< [11641] shoulders--they: 1 +< [11642] shouldn't: 14 +< [11643] shout: 3 +< [11644] shouted: 64 +< [11645] shouting: 14 +< [11646] shouts: 7 +< [11647] shove: 1 +< [11648] shoved: 1 +< [11649] shoving: 1 +< [11650] show: 71 +< [11651] showed: 44 +< [11652] shower: 2 +< [11653] showers: 1 +< [11654] showing: 30 +< [11655] shown: 16 +< [11656] shows: 7 +< [11657] shrank: 2 +< [11658] shrewd: 8 +< [11659] shriek: 6 +< [11660] shrieked: 15 +< [11661] shrieking: 4 +< [11662] shrieks: 6 +< [11663] shrill: 15 +< [11664] shrilly: 3 +< [11665] shrine: 1 +< [11666] shrink: 2 +< [11667] shrinking: 1 +< [11668] shrouded: 3 +< [11669] shrug: 3 +< [11670] shrugged: 5 +< [11671] shrugging: 5 +< [11672] shrunk: 1 +< [11673] shtcherbatskaya: 13 +< [11674] shtcherbatskaya's: 2 +< [11675] shtcherbatsky: 29 +< [11676] shtcherbatsky's: 1 +< [11677] shtcherbatskys: 41 +< [11678] shtoltz: 4 +< [11679] shudder: 5 +< [11680] shuddered: 10 +< [11681] shuddering: 2 +< [11682] shuffling: 1 +< [11683] shuraev: 2 +< [11684] shut: 27 +< [11685] shutter: 1 +< [11686] shutters: 1 +< [11687] shutting: 4 +< [11688] shy: 11 +< [11689] shyly: 4 +< [11690] shyness: 8 +< [11691] si: 2 +< [11692] sich: 1 +< [11693] sick: 63 +< [11694] sick-room: 4 +< [11695] sickening: 1 +< [11696] sickens: 1 +< [11697] sickliness: 2 +< [11698] sickly: 5 +< [11699] sickly-looking: 1 +< [11700] sickness: 2 +< [11701] side: 154 +< [11702] side--a: 1 +< [11703] side--acacias: 1 +< [11704] side--his: 1 +< [11705] side--why: 1 +< [11706] side-horse: 1 +< [11707] side-saddle: 3 +< [11708] side-whiskers: 1 +< [11709] sideboard: 2 +< [11710] sidelong: 4 +< [11711] sides: 26 +< [11712] sideways: 12 +< [11713] sidling: 1 +< [11714] sieve: 2 +< [11715] sifted: 3 +< [11716] sigh: 13 +< [11717] sighed: 28 +< [11718] sighing: 6 +< [11719] sight: 79 +< [11720] sights: 1 +< [11721] sign: 17 +< [11722] signal-box: 1 +< [11723] signaled: 1 +< [11724] signature: 2 +< [11725] signed: 3 +< [11726] significance: 34 +< [11727] significant: 7 +< [11728] significantly: 7 +< [11729] signify: 2 +< [11730] signifying: 1 +< [11731] signing: 4 +< [11732] signs: 18 +< [11733] sigonin: 1 +< [11734] sigonin's: 1 +< [11735] silence: 65 +< [11736] silent: 53 +< [11737] silently: 7 +< [11738] silk: 8 +< [11739] silken: 1 +< [11740] silky: 2 +< [11741] silly: 11 +< [11742] silly--so: 1 +< [11743] silver: 12 +< [11744] silvery: 4 +< [11745] silvery-gray: 1 +< [11746] similar: 7 +< [11747] simile: 1 +< [11748] similes: 1 +< [11749] simper: 1 +< [11750] simple: 60 +< [11751] simple-hearted: 7 +< [11752] simplehearted: 1 +< [11753] simpler: 6 +< [11754] simplest: 8 +< [11755] simplicitas: 1 +< [11756] simplicity: 14 +< [11757] simplified: 1 +< [11758] simply: 184 +< [11759] simultaneously: 3 +< [11760] sin: 10 +< [11761] sin--i: 1 +< [11762] since: 122 +< [11763] since...stiva: 1 +< [11764] sincere: 10 +< [11765] sincerely: 7 +< [11766] sincerity: 9 +< [11767] sinews: 1 +< [11768] sinful: 1 +< [11769] sing: 8 +< [11770] singer: 4 +< [11771] singer's: 1 +< [11772] singers: 1 +< [11773] singing: 15 +< [11774] single: 35 +< [11775] single-hearted: 1 +< [11776] singly: 1 +< [11777] sings: 1 +< [11778] singular: 1 +< [11779] siniavin: 2 +< [11780] sink: 3 +< [11781] sinking: 8 +< [11782] sinks: 1 +< [11783] sinned: 3 +< [11784] sinner: 1 +< [11785] sinners: 1 +< [11786] sins: 9 +< [11787] sins...are: 1 +< [11788] sipped: 1 +< [11789] sips: 1 +< [11790] sir: 43 +< [11791] sister: 65 +< [11792] sister's: 19 +< [11793] sister-in-law: 28 +< [11794] sister-in-law's: 3 +< [11795] sisters: 21 +< [11796] sit: 42 +< [11797] site: 4 +< [11798] sitnikov: 2 +< [11799] sits: 4 +< [11800] sitting: 146 +< [11801] sittings: 3 +< [11802] situation: 5 +< [11803] six: 36 +< [11804] sixes: 1 +< [11805] sixpence: 1 +< [11806] sixteen: 3 +< [11807] sixth: 3 +< [11808] sixty: 5 +< [11809] size: 4 +< [11810] skate: 12 +< [11811] skated: 11 +< [11812] skater: 1 +< [11813] skaters: 6 +< [11814] skates: 10 +< [11815] skating: 4 +< [11816] skating-ground: 2 +< [11817] skeleton: 4 +< [11818] skeletons: 1 +< [11819] skep: 1 +< [11820] sketch: 9 +< [11821] sketched: 2 +< [11822] sketching: 2 +< [11823] sketchy: 1 +< [11824] skies: 1 +< [11825] skill: 5 +< [11826] skillful: 2 +< [11827] skillfully: 1 +< [11828] skim: 1 +< [11829] skin: 7 +< [11830] skip: 3 +< [11831] skipping: 2 +< [11832] skips: 1 +< [11833] skirmish: 1 +< [11834] skirt: 11 +< [11835] skirts: 5 +< [11836] skorodumov: 1 +< [11837] sky: 26 +< [11838] slackened: 1 +< [11839] slackening: 1 +< [11840] slaking: 1 +< [11841] slam: 1 +< [11842] slammed: 1 +< [11843] slamming: 3 +< [11844] slander: 1 +< [11845] slanting: 8 +< [11846] slapped: 1 +< [11847] slapping: 2 +< [11848] slate-colored: 1 +< [11849] slav: 2 +< [11850] slave: 4 +< [11851] slavery: 1 +< [11852] slaves: 2 +< [11853] slavish: 2 +< [11854] slavonic: 15 +< [11855] slavophiles: 1 +< [11856] slavs: 1 +< [11857] sledge: 24 +< [11858] sledge-driver: 1 +< [11859] sledge-drivers: 1 +< [11860] sledges: 6 +< [11861] sledging: 1 +< [11862] sleek: 9 +< [11863] sleep: 64 +< [11864] sleepers: 1 +< [11865] sleepily: 2 +< [11866] sleeping: 11 +< [11867] sleeping-carriage: 1 +< [11868] sleepless: 5 +< [11869] sleeplessness: 1 +< [11870] sleeps: 1 +< [11871] sleepy: 9 +< [11872] sleeve: 10 +< [11873] sleeves: 7 +< [11874] slender: 11 +< [11875] slender-stalked: 1 +< [11876] slender-tipped: 1 +< [11877] slept: 11 +< [11878] slices: 1 +< [11879] slide: 1 +< [11880] sliding: 1 +< [11881] slight: 22 +< [11882] slighted: 3 +< [11883] slightest: 34 +< [11884] slightingly: 1 +< [11885] slightly: 17 +< [11886] slim: 1 +< [11887] slime: 1 +< [11888] slime-covered: 1 +< [11889] sling: 1 +< [11890] slip: 9 +< [11891] slipped: 14 +< [11892] slippers: 7 +< [11893] slippery: 2 +< [11894] slipping: 3 +< [11895] slits: 1 +< [11896] slope: 3 +< [11897] sloping: 1 +< [11898] slops: 1 +< [11899] sloth: 1 +< [11900] slouch: 1 +< [11901] slovenliness: 1 +< [11902] slow: 6 +< [11903] slowly: 37 +< [11904] sludin: 5 +< [11905] sludin's: 2 +< [11906] slur: 1 +< [11907] slush: 3 +< [11908] slushy: 2 +< [11909] sly: 8 +< [11910] slyly: 1 +< [11911] slyness: 1 +< [11912] smacked: 1 +< [11913] smacking: 1 +< [11914] small: 29 +< [11915] small-boned: 1 +< [11916] small-shot: 1 +< [11917] smaller: 6 +< [11918] smallest: 5 +< [11919] smallpox: 1 +< [11920] smart: 18 +< [11921] smart-looking: 3 +< [11922] smarting: 1 +< [11923] smartly: 5 +< [11924] smashed: 2 +< [11925] smashing: 1 +< [11926] smearing: 1 +< [11927] smell: 15 +< [11928] smelling: 2 +< [11929] smells: 1 +< [11930] smelt: 4 +< [11931] smile: 328 +< [11932] smile--not: 1 +< [11933] smiled: 118 +< [11934] smiles: 8 +< [11935] smiling: 177 +< [11936] smilingly: 1 +< [11937] smite: 1 +< [11938] smitten: 1 +< [11939] smock: 5 +< [11940] smoke: 15 +< [11941] smoke"--and: 1 +< [11942] smoked: 2 +< [11943] smoking: 13 +< [11944] smooth: 17 +< [11945] smoothed: 3 +< [11946] smoothing: 5 +< [11947] smoothly: 8 +< [11948] smoothness: 1 +< [11949] smote: 1 +< [11950] smother: 1 +< [11951] smothered: 6 +< [11952] snake: 1 +< [11953] snap: 3 +< [11954] snapped: 2 +< [11955] snapping: 3 +< [11956] snare: 1 +< [11957] snares: 2 +< [11958] snatch: 2 +< [11959] snatched: 7 +< [11960] snatching: 7 +< [11961] sneer: 1 +< [11962] sneering: 1 +< [11963] sneeringly: 1 +< [11964] sneezed: 2 +< [11965] snetkov: 15 +< [11966] sniff: 1 +< [11967] sniffed: 2 +< [11968] sniffing: 3 +< [11969] snipe: 37 +< [11970] snore: 2 +< [11971] snoring: 3 +< [11972] snort: 3 +< [11973] snorted: 3 +< [11974] snorting: 4 +< [11975] snorts: 1 +< [11976] snow: 26 +< [11977] snow-covered: 1 +< [11978] snowdrift: 1 +< [11979] snowstorm: 1 +< [11980] snowy: 2 +< [11981] snug: 2 +< [11982] so: 1529 +< [11983] so--as: 1 +< [11984] so--not: 1 +< [11985] so--towards: 1 +< [11986] so-and-so: 2 +< [11987] so-called: 5 +< [11988] so...yes: 1 +< [11989] soaked: 6 +< [11990] soaking: 1 +< [11991] soap: 3 +< [11992] sob: 2 +< [11993] sobbed: 3 +< [11994] sobbing: 6 +< [11995] sobs: 22 +< [11996] social: 12 +< [11997] sociale: 1 +< [11998] socialism: 2 +< [11999] socialistic: 2 +< [12000] socially: 1 +< [12001] societies: 1 +< [12002] society: 106 +< [12003] society's: 2 +< [12004] society--all: 1 +< [12005] society--owing: 1 +< [12006] society--so: 1 +< [12007] sociology: 3 +< [12008] socrates: 1 +< [12009] soden: 4 +< [12010] sofa: 25 +< [12011] sofas: 1 +< [12012] soft: 42 +< [12013] soften: 6 +< [12014] softened: 14 +< [12015] softening: 8 +< [12016] softer: 1 +< [12017] softly: 18 +< [12018] softness: 8 +< [12019] soil: 7 +< [12020] soiree: 1 +< [12021] soirèe: 1 +< [12022] soirée: 1 +< [12023] soit: 1 +< [12024] sokolov: 3 +< [12025] sold: 12 +< [12026] soldier: 9 +< [12027] soldiers: 8 +< [12028] sole: 14 +< [12029] solely: 1 +< [12030] solemn: 9 +< [12031] solemnly: 2 +< [12032] solicit: 2 +< [12033] solicitation: 1 +< [12034] solicitor: 5 +< [12035] solicitous: 2 +< [12036] solicitude: 1 +< [12037] solid: 6 +< [12038] solitary: 8 +< [12039] solitude: 11 +< [12040] solitude--she: 1 +< [12041] solo: 1 +< [12042] solution: 20 +< [12043] solution,--to: 1 +< [12044] solutions: 1 +< [12045] solve: 4 +< [12046] solved: 6 +< [12047] some: 418 +< [12048] somebody: 3 +< [12049] somehow: 16 +< [12050] someone: 53 +< [12051] someone's: 1 +< [12052] somersaults: 1 +< [12053] something: 429 +< [12054] something--just: 1 +< [12055] something--looked: 1 +< [12056] something--whether: 1 +< [12057] sometimes: 48 +< [12058] somewhat: 6 +< [12059] somewhere: 23 +< [12060] somewhere--has: 1 +< [12061] son: 140 +< [12062] son's: 12 +< [12063] son--all: 1 +< [12064] son-in-law: 2 +< [12065] song: 9 +< [12066] songs: 9 +< [12067] sons: 6 +< [12068] sons-in-law: 1 +< [12069] sont: 1 +< [12070] soon: 134 +< [12071] sooner: 13 +< [12072] soot-laden: 1 +< [12073] soothe: 14 +< [12074] soothed: 8 +< [12075] soothing: 7 +< [12076] soothingly: 2 +< [12077] sop: 2 +< [12078] sophistries: 1 +< [12079] sophistry: 1 +< [12080] sopped: 1 +< [12081] sore: 12 +< [12082] sorokina: 11 +< [12083] sorrel: 2 +< [12084] sorrento: 1 +< [12085] sorrow: 14 +< [12086] sorrowfully: 1 +< [12087] sorrows: 1 +< [12088] sorry: 70 +< [12089] sort: 113 +< [12090] sort--about: 1 +< [12091] sorte: 3 +< [12092] sorted: 1 +< [12093] sorting: 5 +< [12094] sorts: 26 +< [12095] sought: 16 +< [12096] sought--in: 1 +< [12097] soul: 103 +< [12098] soul's: 1 +< [12099] soul--and: 1 +< [12100] souls: 2 +< [12101] sound: 81 +< [12102] sounded: 14 +< [12103] sounding: 1 +< [12104] soundly: 2 +< [12105] sounds: 13 +< [12106] soup: 16 +< [12107] soupe: 1 +< [12108] sour: 2 +< [12109] source: 14 +< [12110] sources: 2 +< [12111] sousing: 1 +< [12112] south: 3 +< [12113] southern: 3 +< [12114] sow: 3 +< [12115] sowed: 3 +< [12116] sowing: 17 +< [12117] sown: 5 +< [12118] sown,--this: 1 +< [12119] space: 15 +< [12120] spade: 3 +< [12121] spades: 2 +< [12122] spain: 1 +< [12123] spanish: 2 +< [12124] spare: 6 +< [12125] spared: 1 +< [12126] spark: 1 +< [12127] sparkled: 7 +< [12128] sparkling: 8 +< [12129] sparrow: 1 +< [12130] spats: 1 +< [12131] spatter: 1 +< [12132] spattered: 1 +< [12133] speak: 145 +< [12134] speak--because: 1 +< [12135] speaker: 2 +< [12136] speakers: 1 +< [12137] speaking: 95 +< [12138] speaks: 3 +< [12139] special: 72 +< [12140] specialist: 2 +< [12141] specialists: 1 +< [12142] specialized: 1 +< [12143] specially: 15 +< [12144] specialty: 1 +< [12145] specific: 1 +< [12146] specified: 2 +< [12147] specimens: 1 +< [12148] speck: 2 +< [12149] speckly-headed: 1 +< [12150] spectacles: 6 +< [12151] spectator: 2 +< [12152] spectator--not: 1 +< [12153] spectators: 5 +< [12154] speculate: 1 +< [12155] speculation: 2 +< [12156] speculation--all: 1 +< [12157] speculator: 1 +< [12158] speculators: 1 +< [12159] speech: 15 +< [12160] speeches: 4 +< [12161] speed: 7 +< [12162] speedily: 1 +< [12163] spell: 1 +< [12164] spellbound: 1 +< [12165] spencer: 4 +< [12166] spend: 20 +< [12167] spending: 14 +< [12168] spent: 55 +< [12169] sphere: 2 +< [12170] spheres: 3 +< [12171] spider-web: 1 +< [12172] spiders: 2 +< [12173] spiderweb: 1 +< [12174] spill: 1 +< [12175] spilling: 1 +< [12176] spilt: 1 +< [12177] spin: 1 +< [12178] spinal: 1 +< [12179] spindle-tree: 1 +< [12180] spine: 4 +< [12181] spinning: 1 +< [12182] spinoza: 1 +< [12183] spirit: 22 +< [12184] spirit-lamp: 1 +< [12185] spirited: 4 +< [12186] spirits: 28 +< [12187] spirits--she: 1 +< [12188] spiritual: 39 +< [12189] spiritualism: 3 +< [12190] spiritualists: 3 +< [12191] spiritually: 1 +< [12192] spiritually--divided: 1 +< [12193] spite: 116 +< [12194] spiteful: 8 +< [12195] spittle: 1 +< [12196] splash: 1 +< [12197] splashed: 3 +< [12198] splashing: 8 +< [12199] splendid: 57 +< [12200] splendid!...i: 1 +< [12201] splendidly: 4 +< [12202] splendor: 1 +< [12203] split: 8 +< [12204] spluttered: 1 +< [12205] spoil: 13 +< [12206] spoiled: 9 +< [12207] spoiled...i've: 1 +< [12208] spoiling: 5 +< [12209] spoils: 1 +< [12210] spoilt: 1 +< [12211] spoke: 50 +< [12212] spoke--"to: 1 +< [12213] spoke--being: 1 +< [12214] spoken: 26 +< [12215] spokes: 1 +< [12216] spokesman: 1 +< [12217] sponge: 2 +< [12218] sponging: 1 +< [12219] spontaneously: 1 +< [12220] spoon: 5 +< [12221] sport: 5 +< [12222] sports: 2 +< [12223] sportsman: 8 +< [12224] sportsman's: 2 +< [12225] sportsmen: 10 +< [12226] sportsmen's: 1 +< [12227] spot: 21 +< [12228] spot-and-tan: 1 +< [12229] spots: 2 +< [12230] spotted: 5 +< [12231] spouse: 1 +< [12232] sprained: 1 +< [12233] sprang: 6 +< [12234] sprawling: 3 +< [12235] spread: 11 +< [12236] spring: 51 +< [12237] spring,--one: 1 +< [12238] spring-rattle: 1 +< [12239] springiness: 1 +< [12240] springing: 1 +< [12241] springs: 20 +< [12242] springy: 4 +< [12243] sprinkle: 2 +< [12244] sprinkled: 3 +< [12245] spruce: 1 +< [12246] sprung: 6 +< [12247] spurs: 1 +< [12248] spurting: 1 +< [12249] squabbles: 1 +< [12250] squadron: 2 +< [12251] squall: 1 +< [12252] squalling: 1 +< [12253] square: 2 +< [12254] squared: 2 +< [12255] squarely: 1 +< [12256] squaring: 1 +< [12257] squat: 1 +< [12258] squatting: 1 +< [12259] squeaked: 1 +< [12260] squeeze: 4 +< [12261] squeezed: 7 +< [12262] squeezing: 15 +< [12263] squelching: 2 +< [12264] squirrel-lined: 1 +< [12265] squirting: 3 +< [12266] st: 5 +< [12267] stabbed: 2 +< [12268] stable: 10 +< [12269] stable-boy: 1 +< [12270] stable-boys: 1 +< [12271] stables: 7 +< [12272] staccato: 1 +< [12273] stack: 3 +< [12274] stacks: 5 +< [12275] staff: 3 +< [12276] staff-captain: 1 +< [12277] staff-officer: 1 +< [12278] stag's: 1 +< [12279] stage: 15 +< [12280] staggered: 3 +< [12281] staggering: 3 +< [12282] stagnant: 3 +< [12283] stagnant-tasting: 1 +< [12284] stagnate: 1 +< [12285] stagnation: 1 +< [12286] stahl: 46 +< [12287] stahl's: 2 +< [12288] staircase: 19 +< [12289] stairs: 15 +< [12290] stake: 2 +< [12291] stakes: 2 +< [12292] staking: 1 +< [12293] stale: 3 +< [12294] stalk: 2 +< [12295] stalks: 2 +< [12296] stall: 5 +< [12297] stallion: 2 +< [12298] stalls: 6 +< [12299] stammered: 2 +< [12300] stamp: 1 +< [12301] stamping: 3 +< [12302] stand: 41 +< [12303] stand-shooting: 4 +< [12304] stand-up: 1 +< [12305] standard: 3 +< [12306] standing: 131 +< [12307] standpoint: 1 +< [12308] stands: 3 +< [12309] standstill: 6 +< [12310] stanislavitch: 1 +< [12311] star: 7 +< [12312] star-shaped: 1 +< [12313] starched: 4 +< [12314] starchy: 2 +< [12315] stare: 2 +< [12316] stared: 16 +< [12317] staring: 15 +< [12318] starlight: 1 +< [12319] stars: 14 +< [12320] start: 23 +< [12321] started: 45 +< [12322] starting: 12 +< [12323] startled: 7 +< [12324] starts: 1 +< [12325] starve: 1 +< [12326] state: 52 +< [12327] state's: 1 +< [12328] stated: 2 +< [12329] stately: 1 +< [12330] statement: 5 +< [12331] statements: 5 +< [12332] states: 16 +< [12333] statesman: 2 +< [12334] statesmen: 1 +< [12335] stating: 2 +< [12336] station: 39 +< [12337] station--on: 1 +< [12338] station-master: 5 +< [12339] stationary: 1 +< [12340] statue: 1 +< [12341] status: 5 +< [12342] stay: 75 +< [12343] stayed: 22 +< [12344] staying: 30 +< [12345] stays: 2 +< [12346] steadfast: 1 +< [12347] steadily: 2 +< [12348] steady: 2 +< [12349] steak: 2 +< [12350] steal: 4 +< [12351] stealing: 6 +< [12352] stealthily: 1 +< [12353] stealthy: 1 +< [12354] steam: 4 +< [12355] steamer: 1 +< [12356] steaming: 3 +< [12357] steamy: 2 +< [12358] steed: 2 +< [12359] steel: 1 +< [12360] steel-gray: 1 +< [12361] steel-toothed: 1 +< [12362] steely: 1 +< [12363] steep: 4 +< [12364] steeped: 1 +< [12365] steeplechase: 4 +< [12366] steered: 2 +< [12367] steering: 1 +< [12368] stem: 1 +< [12369] step: 56 +< [12370] stepan: 547 +< [12371] stepanovitch: 1 +< [12372] stephan: 1 +< [12373] stepmother: 1 +< [12374] steppe: 2 +< [12375] stepped: 17 +< [12376] steppes: 2 +< [12377] stepping: 16 +< [12378] steps: 116 +< [12379] steps--distracted: 1 +< [12380] stepson: 1 +< [12381] stereotyped: 1 +< [12382] sterling: 1 +< [12383] stern: 17 +< [12384] sternly: 10 +< [12385] stethoscope: 1 +< [12386] steward: 12 +< [12387] steward--a: 1 +< [12388] stick: 15 +< [12389] sticking: 6 +< [12390] sticks: 1 +< [12391] sticky: 5 +< [12392] stiff: 6 +< [12393] stiffened: 3 +< [12394] stiffening: 3 +< [12395] stiffly: 2 +< [12396] stiffness: 2 +< [12397] stifle: 1 +< [12398] stifled: 1 +< [12399] stifling: 5 +< [12400] still: 425 +< [12401] stillness: 6 +< [12402] stimulated: 1 +< [12403] stimulating: 2 +< [12404] stimulus: 1 +< [12405] sting: 2 +< [12406] stinging: 1 +< [12407] stinking: 3 +< [12408] stipulation: 1 +< [12409] stipules: 1 +< [12410] stir: 10 +< [12411] stirred: 12 +< [12412] stirring: 6 +< [12413] stirrup: 2 +< [12414] stitches: 1 +< [12415] stiva: 59 +< [12416] stiva"--she: 1 +< [12417] stiva's: 3 +< [12418] stiva...if: 1 +< [12419] sto-op: 1 +< [12420] stock: 8 +< [12421] stock--a: 1 +< [12422] stocking: 3 +< [12423] stockings: 11 +< [12424] stocks: 2 +< [12425] stole: 4 +< [12426] stolen: 4 +< [12427] stomach: 6 +< [12428] stone: 11 +< [12429] stones: 6 +< [12430] stony: 2 +< [12431] stood: 129 +< [12432] stoop: 3 +< [12433] stooped: 2 +< [12434] stooping: 8 +< [12435] stop: 50 +< [12436] stopped: 87 +< [12437] stopping: 31 +< [12438] store: 6 +< [12439] stored: 1 +< [12440] storeroom: 1 +< [12441] stores: 2 +< [12442] stories: 3 +< [12443] storing: 1 +< [12444] storm: 18 +< [12445] storm-clouds: 2 +< [12446] storms: 1 +< [12447] stormy: 3 +< [12448] story: 27 +< [12449] story--he: 2 +< [12450] story-book: 1 +< [12451] storytelling: 1 +< [12452] stout: 13 +< [12453] stoutly: 1 +< [12454] stove: 6 +< [12455] stoveheater: 1 +< [12456] straight: 91 +< [12457] straightened: 4 +< [12458] straightening: 3 +< [12459] straightforward: 5 +< [12460] straightforwardness: 2 +< [12461] strain: 16 +< [12462] strained: 12 +< [12463] straining: 3 +< [12464] strains: 1 +< [12465] strange: 97 +< [12466] strangely: 7 +< [12467] strangeness: 2 +< [12468] stranger: 9 +< [12469] stranger's: 1 +< [12470] stranger--yes: 1 +< [12471] strangers: 5 +< [12472] strangers--strangers: 1 +< [12473] strangest: 2 +< [12474] strangle: 1 +< [12475] strap: 2 +< [12476] strapped-up: 1 +< [12477] strata: 1 +< [12478] straw: 11 +< [12479] strawberries: 1 +< [12480] stray: 7 +< [12481] strayed: 1 +< [12482] straying: 3 +< [12483] streak: 2 +< [12484] streaks: 2 +< [12485] stream: 19 +< [12486] stream--agitated: 1 +< [12487] streamed: 2 +< [12488] streaming: 3 +< [12489] streams: 8 +< [12490] street: 18 +< [12491] streets: 5 +< [12492] stremov: 20 +< [12493] stremov's: 2 +< [12494] strength: 33 +< [12495] strengthen: 3 +< [12496] strengthened: 4 +< [12497] strenuous: 1 +< [12498] strenuously: 1 +< [12499] stress: 5 +< [12500] stretch: 8 +< [12501] stretched: 18 +< [12502] stretching: 8 +< [12503] strewn: 1 +< [12504] stricken: 1 +< [12505] strict: 10 +< [12506] strictest: 1 +< [12507] strictly: 7 +< [12508] stride: 1 +< [12509] strides: 1 +< [12510] striding: 1 +< [12511] strife: 4 +< [12512] strike: 4 +< [12513] strikes: 1 +< [12514] striking: 12 +< [12515] strikingly: 2 +< [12516] string: 9 +< [12517] stringed: 1 +< [12518] strings: 5 +< [12519] stringy: 1 +< [12520] strip: 1 +< [12521] striped: 1 +< [12522] stripes: 1 +< [12523] stripped: 4 +< [12524] stripping: 3 +< [12525] strips: 3 +< [12526] strive: 2 +< [12527] striven: 2 +< [12528] striving: 3 +< [12529] strode: 6 +< [12530] stroke: 2 +< [12531] stroked: 6 +< [12532] strokes: 3 +< [12533] stroking: 8 +< [12534] stroll: 2 +< [12535] strong: 47 +< [12536] strong-smelling: 2 +< [12537] stronger: 22 +< [12538] strongly: 1 +< [12539] strove: 1 +< [12540] struck: 68 +< [12541] struggle: 22 +< [12542] struggled: 6 +< [12543] struggles: 1 +< [12544] struggling: 20 +< [12545] stubble: 2 +< [12546] stubble-land: 1 +< [12547] stubborn: 3 +< [12548] stubbornly: 4 +< [12549] stuccoed: 1 +< [12550] stuck: 11 +< [12551] stud: 1 +< [12552] studded: 1 +< [12553] student: 7 +< [12554] students: 3 +< [12555] studied: 11 +< [12556] studies: 8 +< [12557] studio: 6 +< [12558] studios: 1 +< [12559] studiously: 6 +< [12560] studs: 2 +< [12561] study: 65 +< [12562] studying: 6 +< [12563] stuff: 5 +< [12564] stuffy: 2 +< [12565] stumble: 1 +< [12566] stumble--see: 1 +< [12567] stumbled: 9 +< [12568] stumbling: 6 +< [12569] stump: 3 +< [12570] stumps: 1 +< [12571] stung: 10 +< [12572] stupefied: 2 +< [12573] stupid: 37 +< [12574] stupider: 1 +< [12575] stupidly: 1 +< [12576] sturdy: 3 +< [12577] sturdy-looking: 1 +< [12578] sturgeon: 1 +< [12579] stuttered: 1 +< [12580] style: 23 +< [12581] stylish: 3 +< [12582] subalterns: 1 +< [12583] subdivided: 1 +< [12584] subdivisions: 2 +< [12585] subdued: 11 +< [12586] subject: 100 +< [12587] subject's: 1 +< [12588] subject--"you: 1 +< [12589] subjection: 2 +< [12590] subjects: 10 +< [12591] subjects--"aline-nadine: 1 +< [12592] subjects--also: 1 +< [12593] sublime: 3 +< [12594] submission: 3 +< [12595] submissive: 4 +< [12596] submissively: 5 +< [12597] submissiveness: 1 +< [12598] submit: 9 +< [12599] submitted: 1 +< [12600] subordinated: 1 +< [12601] subordinates: 6 +< [12602] subscribe: 1 +< [12603] subscribed: 2 +< [12604] subscriptions: 2 +< [12605] subsequent: 1 +< [12606] subside: 1 +< [12607] subsided: 3 +< [12608] subsiding: 1 +< [12609] substance: 2 +< [12610] substitute: 1 +< [12611] substituted: 1 +< [12612] subtle: 11 +< [12613] subtleties: 1 +< [12614] subtly: 3 +< [12615] subtract: 1 +< [12616] subtraction: 1 +< [12617] suburb: 2 +< [12618] succeed: 10 +< [12619] succeeded: 22 +< [12620] succeeding: 1 +< [12621] success: 28 +< [12622] successful: 20 +< [12623] successfully: 3 +< [12624] succession: 3 +< [12625] succor: 5 +< [12626] succulent: 1 +< [12627] succumbed: 1 +< [12628] such: 389 +< [12629] sucked: 4 +< [12630] sucking: 3 +< [12631] suckle: 1 +< [12632] sudden: 29 +< [12633] suddenly: 172 +< [12634] suffer: 23 +< [12635] suffered: 8 +< [12636] sufferer: 1 +< [12637] sufferers: 1 +< [12638] suffering: 57 +< [12639] sufferings: 25 +< [12640] sufficient: 3 +< [12641] sufficiently: 2 +< [12642] suffused: 3 +< [12643] sugar: 6 +< [12644] suggest: 2 +< [12645] suggested: 14 +< [12646] suggesting: 1 +< [12647] suggestion: 4 +< [12648] suggestions: 1 +< [12649] suggestive: 1 +< [12650] suggests: 1 +< [12651] suicide: 2 +< [12652] suit: 8 +< [12653] suitability: 1 +< [12654] suitable: 4 +< [12655] suitably: 1 +< [12656] suite: 1 +< [12657] suited: 2 +< [12658] suitors: 3 +< [12659] suits: 2 +< [12660] sullen: 2 +< [12661] sullying: 1 +< [12662] sum: 8 +< [12663] summed: 2 +< [12664] summer: 51 +< [12665] summer's: 1 +< [12666] summing: 1 +< [12667] summon: 2 +< [12668] summoned: 5 +< [12669] summoning: 1 +< [12670] summons: 1 +< [12671] sumptuous: 3 +< [12672] sumptuousness: 3 +< [12673] sums: 6 +< [12674] sun: 38 +< [12675] sun's: 1 +< [12676] sun-blackened: 1 +< [12677] sunbeams: 1 +< [12678] sunburnt: 5 +< [12679] sunday: 9 +< [12680] sung: 2 +< [12681] sunk: 4 +< [12682] sunken: 2 +< [12683] sunlight: 2 +< [12684] sunny: 2 +< [12685] sunrise: 2 +< [12686] sunset: 3 +< [12687] sunshade: 3 +< [12688] sunshine: 10 +< [12689] superb: 2 +< [12690] superficial: 8 +< [12691] superficiality: 1 +< [12692] superfluous: 12 +< [12693] superintend: 1 +< [12694] superintendence: 2 +< [12695] superintendents: 1 +< [12696] superior: 3 +< [12697] superiority: 5 +< [12698] superiors: 2 +< [12699] supernatural: 1 +< [12700] supersede: 1 +< [12701] superstructure: 1 +< [12702] supervision: 2 +< [12703] supper: 34 +< [12704] supplants: 1 +< [12705] supple: 6 +< [12706] supplicating: 2 +< [12707] supplication: 1 +< [12708] supplied: 1 +< [12709] supplies: 1 +< [12710] supply: 3 +< [12711] support: 32 +< [12712] supported: 5 +< [12713] supporter: 1 +< [12714] supporters: 1 +< [12715] supporting: 6 +< [12716] suppose: 61 +< [12717] supposed: 23 +< [12718] supposes: 2 +< [12719] supposing: 14 +< [12720] supposition: 5 +< [12721] suppositions: 5 +< [12722] suppress: 7 +< [12723] suppressed: 5 +< [12724] suppressing: 2 +< [12725] supremely: 1 +< [12726] sure: 74 +< [12727] surely: 14 +< [12728] surety: 2 +< [12729] surface: 4 +< [12730] surged: 1 +< [12731] surgeon: 1 +< [12732] surging: 1 +< [12733] surmised: 1 +< [12734] surmises: 2 +< [12735] surmount: 1 +< [12736] surmounting: 1 +< [12737] surname: 4 +< [12738] surovsky: 2 +< [12739] surplices--all: 1 +< [12740] surplus: 3 +< [12741] surprise: 22 +< [12742] surprised: 20 +< [12743] surprises: 2 +< [12744] surprising: 3 +< [12745] surrender: 2 +< [12746] surrendered: 2 +< [12747] surreptitiously: 1 +< [12748] surrounded: 12 +< [12749] surrounding: 6 +< [12750] surroundings: 6 +< [12751] survey: 1 +< [12752] survive: 1 +< [12753] survived: 1 +< [12754] sury: 1 +< [12755] susceptible: 2 +< [12756] suspect: 3 +< [12757] suspected: 6 +< [12758] suspecting: 2 +< [12759] suspense: 4 +< [12760] suspicion: 6 +< [12761] suspicions: 8 +< [12762] suspicious: 6 +< [12763] sustain: 1 +< [12764] sustained: 1 +< [12765] sventitsky: 2 +< [12766] sviazhskaya: 2 +< [12767] sviazhsky: 114 +< [12768] sviazhsky's: 21 +< [12769] sviazhsky--"over: 1 +< [12770] sviazhsky--he's: 1 +< [12771] sviazhskys: 3 +< [12772] svintitch: 1 +< [12773] swaddling: 1 +< [12774] swagger: 1 +< [12775] swain: 1 +< [12776] swallow: 1 +< [12777] swallow-tail: 1 +< [12778] swallowed: 2 +< [12779] swallowing: 1 +< [12780] swallows: 2 +< [12781] swamp: 6 +< [12782] swampy: 1 +< [12783] swarm: 5 +< [12784] swarmed: 3 +< [12785] swarming: 5 +< [12786] swarms: 2 +< [12787] swathed: 1 +< [12788] sway: 3 +< [12789] swayed: 4 +< [12790] swaying: 6 +< [12791] swear: 1 +< [12792] swearing: 1 +< [12793] sweat: 10 +< [12794] sweat-drenched: 1 +< [12795] swede: 2 +< [12796] sweden: 1 +< [12797] sweden's: 1 +< [12798] swedish: 2 +< [12799] sweep: 5 +< [12800] sweeping: 1 +< [12801] sweet: 50 +< [12802] sweet--to: 1 +< [12803] sweet-smelling: 1 +< [12804] sweetest: 2 +< [12805] sweetmeats: 4 +< [12806] sweetmeats!...he'd: 1 +< [12807] sweetness: 3 +< [12808] sweets: 4 +< [12809] swell: 1 +< [12810] swelled: 2 +< [12811] swelling: 3 +< [12812] swept: 1 +< [12813] swift: 9 +< [12814] swiftly: 14 +< [12815] swiftness: 4 +< [12816] swim: 2 +< [12817] swimming: 4 +< [12818] swimming-mistress: 1 +< [12819] swindle: 2 +< [12820] swindler: 1 +< [12821] swindling: 1 +< [12822] swine: 1 +< [12823] swing: 8 +< [12824] swinging: 12 +< [12825] swings: 1 +< [12826] swinishness: 2 +< [12827] swish: 1 +< [12828] swishing: 1 +< [12829] switched: 1 +< [12830] switzerland: 3 +< [12831] swollen: 12 +< [12832] swoop: 1 +< [12833] swooped: 4 +< [12834] swooping: 2 +< [12835] sword: 2 +< [12836] swore: 1 +< [12837] swung: 5 +< [12838] syllable: 2 +< [12839] syllables: 1 +< [12840] syllogism: 1 +< [12841] symbol: 1 +< [12842] symmetry: 1 +< [12843] sympathetic: 9 +< [12844] sympathetically: 4 +< [12845] sympathies: 1 +< [12846] sympathize: 4 +< [12847] sympathized: 2 +< [12848] sympathizing: 5 +< [12849] sympathy: 28 +< [12850] symptom: 1 +< [12851] symptoms: 3 +< [12852] synod: 2 +< [12853] synonymous: 1 +< [12854] synopsis: 1 +< [12855] syringe: 1 +< [12856] syrup: 2 +< [12857] system: 33 +< [12858] system's: 1 +< [12859] systems: 2 +< [12860] sépare: 1 +< [12861] t: 4 +< [12862] t...act: 1 +< [12863] table: 173 +< [12864] table-turning: 4 +< [12865] tablecloths: 1 +< [12866] tables: 10 +< [12867] tabula: 1 +< [12868] taciturn: 1 +< [12869] taciturnity: 1 +< [12870] tacked: 1 +< [12871] tackle: 1 +< [12872] tact: 10 +< [12873] tactics: 2 +< [12874] tactlessly: 1 +< [12875] tail: 11 +< [12876] tailor: 3 +< [12877] tailor--were: 1 +< [12878] tails: 1 +< [12879] taine: 1 +< [12880] take: 231 +< [12881] taken: 134 +< [12882] takes: 13 +< [12883] taking: 174 +< [12884] tale: 2 +< [12885] talent: 12 +< [12886] talents: 1 +< [12887] tales: 1 +< [12888] talk: 212 +< [12889] talkative: 4 +< [12890] talked: 82 +< [12891] talker: 1 +< [12892] talkers: 1 +< [12893] talking: 179 +< [12894] talking-to: 1 +< [12895] talks: 5 +< [12896] talks--she: 1 +< [12897] tall: 29 +< [12898] taller: 1 +< [12899] talleyrand: 1 +< [12900] tallow: 2 +< [12901] tangle: 2 +< [12902] tangled: 4 +< [12903] tanitchka: 1 +< [12904] tank: 1 +< [12905] tant: 4 +< [12906] tante: 1 +< [12907] tanya: 24 +< [12908] tanya's: 3 +< [12909] tap: 1 +< [12910] tape: 1 +< [12911] tapes: 1 +< [12912] tapped: 2 +< [12913] tapping: 2 +< [12914] tar: 2 +< [12915] tard: 1 +< [12916] tardiness: 1 +< [12917] tart: 5 +< [12918] tart--he: 1 +< [12919] tashkend: 5 +< [12920] task: 18 +< [12921] tassel: 2 +< [12922] tassels: 3 +< [12923] taste: 18 +< [12924] tasted: 3 +< [12925] tastelessly: 1 +< [12926] tastes: 9 +< [12927] tatar: 14 +< [12928] tatters: 1 +< [12929] taught: 9 +< [12930] tavern: 2 +< [12931] taverns: 1 +< [12932] tax: 6 +< [12933] taxes: 2 +< [12934] taxing: 1 +< [12935] taxpayer--though: 1 +< [12936] tchagin: 1 +< [12937] tcharskaya: 2 +< [12938] tcharsky: 2 +< [12939] tchefirovka: 1 +< [12940] tchetchensky: 6 +< [12941] tchibisova: 2 +< [12942] tchirikov: 8 +< [12943] tchirkova: 1 +< [12944] tchk: 2 +< [12945] tchudovo: 1 +< [12946] tea: 70 +< [12947] tea-table: 3 +< [12948] tea-time: 1 +< [12949] teach: 9 +< [12950] teacher: 18 +< [12951] teachers: 8 +< [12952] teaches: 1 +< [12953] teaching: 6 +< [12954] tear: 11 +< [12955] tear-stained: 3 +< [12956] tearful: 3 +< [12957] tearfully: 1 +< [12958] tearing: 10 +< [12959] tears: 104 +< [12960] teased: 2 +< [12961] teasing: 1 +< [12962] technique: 8 +< [12963] tedious: 4 +< [12964] teeth: 25 +< [12965] telegram: 33 +< [12966] telegrams: 6 +< [12967] telegraph: 3 +< [12968] telegraphed: 1 +< [12969] telegraphing: 1 +< [12970] tell: 286 +< [12971] tellement: 1 +< [12972] telling: 51 +< [12973] tells: 6 +< [12974] temper: 22 +< [12975] temper'll: 1 +< [12976] temperament: 5 +< [12977] temperature: 1 +< [12978] tempered: 1 +< [12979] tempers: 2 +< [12980] tempest: 2 +< [12981] temple: 1 +< [12982] temples: 7 +< [12983] temporary: 5 +< [12984] tempt: 1 +< [12985] temptation: 3 +< [12986] tempted: 5 +< [12987] ten: 45 +< [12988] tendencies: 2 +< [12989] tendency: 4 +< [12990] tender: 25 +< [12991] tenderer: 2 +< [12992] tenderest: 1 +< [12993] tenderly: 6 +< [12994] tenderness: 43 +< [12995] tenderness--and: 1 +< [12996] tending: 1 +< [12997] tendrils: 1 +< [12998] tenfold: 1 +< [12999] tennis: 1 +< [13000] tenor: 2 +< [13001] tenors: 1 +< [13002] tens: 3 +< [13003] tense: 4 +< [13004] tension: 5 +< [13005] tenth: 3 +< [13006] tenure: 1 +< [13007] terenty: 1 +< [13008] tereshtchenko: 1 +< [13009] term: 3 +< [13010] terms: 43 +< [13011] terrace: 22 +< [13012] terre-à-terre: 2 +< [13013] terrible: 61 +< [13014] terribly: 4 +< [13015] terrified: 4 +< [13016] terror: 32 +< [13017] terror-stricken: 1 +< [13018] terrors: 2 +< [13019] tesoro: 1 +< [13020] tesoro_--not: 1 +< [13021] test: 4 +< [13022] testament: 6 +< [13023] tested: 1 +< [13024] testified: 1 +< [13025] text: 2 +< [13026] texts: 1 +< [13027] thalers: 1 +< [13028] than: 367 +< [13029] thank: 47 +< [13030] thanked: 5 +< [13031] thankful: 2 +< [13032] thanking: 3 +< [13033] thanklessness: 1 +< [13034] thanks: 15 +< [13035] that: 5139 +< [13036] that'll: 3 +< [13037] that's: 325 +< [13038] that's--hell: 1 +< [13039] that,--but: 1 +< [13040] that--can: 1 +< [13041] that--disgust: 1 +< [13042] that--he: 2 +< [13043] that--i: 1 +< [13044] that--no: 1 +< [13045] that--nothing: 1 +< [13046] that--thanks: 1 +< [13047] that--was: 1 +< [13048] that--what: 1 +< [13049] that...and: 1 +< [13050] that...i've: 1 +< [13051] that...that...that: 1 +< [13052] that...the: 1 +< [13053] thatch: 1 +< [13054] thatching: 1 +< [13055] thaw: 1 +< [13056] thawed: 2 +< [13057] thawing: 2 +< [13058] thaws: 1 +< [13059] the: 17675 +< [13060] the--(1: 1 +< [13061] the...what's: 1 +< [13062] theater: 25 +< [13063] thee: 6 +< [13064] their: 702 +< [13065] theirs: 6 +< [13066] them: 834 +< [13067] them,--but: 1 +< [13068] them--as: 1 +< [13069] them--at: 1 +< [13070] them--i: 1 +< [13071] them--it's: 1 +< [13072] them--of: 1 +< [13073] them--or: 1 +< [13074] themselves: 67 +< [13075] themselves...to: 1 +< [13076] then: 511 +< [13077] then--all: 1 +< [13078] then--i: 1 +< [13079] then...roast: 1 +< [13080] then?--unlighted: 1 +< [13081] thence: 1 +< [13082] theologians: 1 +< [13083] theological: 1 +< [13084] theology: 2 +< [13085] theoretical: 2 +< [13086] theoretically: 3 +< [13087] theories: 10 +< [13088] theory: 16 +< [13089] theory's: 1 +< [13090] there: 1014 +< [13091] there'd: 1 +< [13092] there'll: 5 +< [13093] there's: 177 +< [13094] there--incredibly: 1 +< [13095] there--it's: 1 +< [13096] there...i: 1 +< [13097] there...in: 1 +< [13098] thereafter: 1 +< [13099] thereby: 4 +< [13100] therefore: 23 +< [13101] thereupon: 4 +< [13102] thermometer: 1 +< [13103] these: 275 +< [13104] they: 1110 +< [13105] they'd: 5 +< [13106] they'll: 20 +< [13107] they're: 67 +< [13108] they've: 28 +< [13109] they--that: 1 +< [13110] they--they're: 1 +< [13111] they--wurt: 1 +< [13112] thick: 31 +< [13113] thick-set: 2 +< [13114] thicker: 2 +< [13115] thickest: 1 +< [13116] thicket: 3 +< [13117] thickets: 1 +< [13118] thickly: 1 +< [13119] thief: 3 +< [13120] thighs: 2 +< [13121] thin: 37 +< [13122] thing: 232 +< [13123] thing"--bartnyansky: 1 +< [13124] thing's: 8 +< [13125] thing--faith: 1 +< [13126] thing--he's: 1 +< [13127] thing--i: 1 +< [13128] thing--love: 1 +< [13129] thing--we: 1 +< [13130] thing--your: 1 +< [13131] things: 158 +< [13132] things--that: 1 +< [13133] things--was: 1 +< [13134] think: 313 +< [13135] think--and: 1 +< [13136] think...of: 1 +< [13137] think...take: 1 +< [13138] thinking: 158 +< [13139] thinks: 16 +< [13140] thinned: 1 +< [13141] thinner: 7 +< [13142] thinness: 2 +< [13143] thinning: 2 +< [13144] thinnish: 2 +< [13145] third: 45 +< [13146] thirdly: 4 +< [13147] thirdly--the: 1 +< [13148] thirst: 3 +< [13149] thirteen: 1 +< [13150] thirteenth: 1 +< [13151] thirty: 15 +< [13152] thirty-eight: 2 +< [13153] thirty-five: 1 +< [13154] thirty-four: 1 +< [13155] thirty-fourth: 1 +< [13156] thirty-seven: 1 +< [13157] thirty-two: 3 +< [13158] this: 1397 +< [13159] this--all: 1 +< [13160] this...to: 2 +< [13161] this?--that's: 1 +< [13162] thoroughbred: 2 +< [13163] thoroughly: 11 +< [13164] those: 219 +< [13165] those--what's: 1 +< [13166] thou: 7 +< [13167] though: 519 +< [13168] thought: 564 +< [13169] thought--a: 1 +< [13170] thought--that: 1 +< [13171] thought--the: 1 +< [13172] thoughtful: 5 +< [13173] thoughtfully: 1 +< [13174] thoughtless: 2 +< [13175] thoughtlessly: 1 +< [13176] thoughtlessness: 1 +< [13177] thoughts: 89 +< [13178] thousand: 71 +< [13179] thousand--after: 1 +< [13180] thousand--well: 1 +< [13181] thousand...you'd: 1 +< [13182] thousands: 9 +< [13183] thrash: 1 +< [13184] thrashed: 3 +< [13185] thrasher: 1 +< [13186] thrashing: 12 +< [13187] thread: 6 +< [13188] threadbare: 1 +< [13189] threading: 1 +< [13190] threads: 1 +< [13191] threat: 3 +< [13192] threat--obtain: 1 +< [13193] threatening: 6 +< [13194] three: 154 +< [13195] three--dozen: 1 +< [13196] three-button: 1 +< [13197] three-horse: 2 +< [13198] three-mile: 3 +< [13199] three-rouble: 3 +< [13200] three-year-old: 1 +< [13201] threes: 1 +< [13202] threshing: 2 +< [13203] threshing-floor: 1 +< [13204] threw: 22 +< [13205] thrill: 4 +< [13206] thrilled: 1 +< [13207] thrilling: 1 +< [13208] throat: 15 +< [13209] throats: 1 +< [13210] throbbed: 4 +< [13211] throbbing: 7 +< [13212] throbs: 1 +< [13213] throng: 2 +< [13214] throng--when: 1 +< [13215] thronged: 5 +< [13216] thronging: 2 +< [13217] through: 214 +< [13218] throughout: 2 +< [13219] throw: 16 +< [13220] throwing: 3 +< [13221] thrown: 17 +< [13222] throws: 1 +< [13223] thrust: 18 +< [13224] thrusting: 2 +< [13225] thud: 3 +< [13226] thuff...thuff: 1 +< [13227] thuffering: 1 +< [13228] thule: 1 +< [13229] thunder: 5 +< [13230] thundery: 1 +< [13231] thursday: 1 +< [13232] thursdays: 2 +< [13233] thus: 9 +< [13234] thy: 12 +< [13235] thèrése: 2 +< [13236] ticket: 2 +< [13237] tickled: 2 +< [13238] tidily: 2 +< [13239] tidy: 4 +< [13240] tidying: 1 +< [13241] tie: 18 +< [13242] tied: 11 +< [13243] ties: 12 +< [13244] tiger-skin: 4 +< [13245] tight: 8 +< [13246] tightened: 1 +< [13247] tightening: 1 +< [13248] tighter: 2 +< [13249] tightly: 16 +< [13250] tightly-drawn: 1 +< [13251] till: 77 +< [13252] tillage: 1 +< [13253] tilt: 1 +< [13254] tilted: 1 +< [13255] timber: 7 +< [13256] time: 562 +< [13257] time"--his: 1 +< [13258] time's: 2 +< [13259] times: 84 +< [13260] timetable: 1 +< [13261] timid: 16 +< [13262] timidity: 9 +< [13263] timidity--or: 1 +< [13264] timidly: 17 +< [13265] timorously: 1 +< [13266] tin: 2 +< [13267] tingled: 1 +< [13268] tinier: 1 +< [13269] tiniest: 1 +< [13270] tinkle: 1 +< [13271] tinplate: 1 +< [13272] tintoretto: 1 +< [13273] tiny: 22 +< [13274] tip: 4 +< [13275] tipping: 2 +< [13276] tips: 4 +< [13277] tipsy: 2 +< [13278] tiptoe: 8 +< [13279] tire: 2 +< [13280] tired: 23 +< [13281] tired-looking: 1 +< [13282] tires: 1 +< [13283] tiresome: 12 +< [13284] tis: 1 +< [13285] tit: 19 +< [13286] tit's: 3 +< [13287] titian: 1 +< [13288] title: 6 +< [13289] title-deed: 1 +< [13290] tiutkin: 3 +< [13291] to: 10194 +< [13292] to,--and: 1 +< [13293] to--why: 1 +< [13294] to-day: 1 +< [13295] to-do: 2 +< [13296] to-morrow's: 1 +< [13297] to?--to: 1 +< [13298] toadying: 1 +< [13299] toast: 1 +< [13300] tobacco: 1 +< [13301] tochter: 1 +< [13302] today: 90 +< [13303] today's: 3 +< [13304] today...i: 1 +< [13305] toe: 1 +< [13306] toes: 3 +< [13307] together: 134 +< [13308] together!--i: 1 +< [13309] together--here: 1 +< [13310] together...together: 1 +< [13311] toil: 10 +< [13312] toiled: 1 +< [13313] toilet: 2 +< [13314] toilette: 1 +< [13315] toiling: 1 +< [13316] token: 3 +< [13317] tokens: 2 +< [13318] told: 260 +< [13319] tolerable: 1 +< [13320] tolstoy: 4 +< [13321] tomb: 1 +< [13322] tomber: 1 +< [13323] tomorrow: 71 +< [13324] tomorrow...i'll: 1 +< [13325] ton: 1 +< [13326] tone: 99 +< [13327] tone--hardly: 1 +< [13328] tone...but: 1 +< [13329] tones: 5 +< [13330] tongue: 3 +< [13331] tongues: 3 +< [13332] tonight: 7 +< [13333] too: 503 +< [13334] too--but: 2 +< [13335] too...where: 1 +< [13336] too?--what: 1 +< [13337] took: 241 +< [13338] tool: 1 +< [13339] tools: 3 +< [13340] tooth: 5 +< [13341] toothache: 5 +< [13342] toothless: 2 +< [13343] top: 20 +< [13344] top-boots: 1 +< [13345] topic: 7 +< [13346] topic--gossip: 1 +< [13347] topics: 1 +< [13348] topmost: 1 +< [13349] topov: 1 +< [13350] tops: 2 +< [13351] topsy-turvy: 1 +< [13352] toqué: 1 +< [13353] tore: 6 +< [13354] torment: 1 +< [13355] tormented: 3 +< [13356] tormenting: 2 +< [13357] torments: 1 +< [13358] torn: 16 +< [13359] torrent: 2 +< [13360] torrents: 1 +< [13361] tortoise-shell: 1 +< [13362] torture: 17 +< [13363] tortured: 16 +< [13364] tortures: 1 +< [13365] torturing: 6 +< [13366] tossed: 5 +< [13367] tossing: 2 +< [13368] totally: 4 +< [13369] totter: 1 +< [13370] tottered: 1 +< [13371] tottering: 1 +< [13372] touch: 20 +< [13373] touched: 34 +< [13374] touches: 1 +< [13375] touchiness: 2 +< [13376] touching: 24 +< [13377] touchingly: 1 +< [13378] tour: 8 +< [13379] tours: 2 +< [13380] tout: 2 +< [13381] tout-à-fait: 1 +< [13382] toutes: 1 +< [13383] towards: 172 +< [13384] towel: 2 +< [13385] towels: 2 +< [13386] towered: 1 +< [13387] town: 51 +< [13388] town's: 1 +< [13389] towns: 3 +< [13390] townsfolk: 1 +< [13391] townspeople: 1 +< [13392] toy: 3 +< [13393] toys: 5 +< [13394] trace: 10 +< [13395] trace-horse: 2 +< [13396] trace-horses: 1 +< [13397] traces: 6 +< [13398] track: 3 +< [13399] tracks: 3 +< [13400] tract: 1 +< [13401] tracts: 1 +< [13402] trademark: 10 +< [13403] trademark/copyright: 1 +< [13404] trades: 1 +< [13405] tradition: 3 +< [13406] traditional: 1 +< [13407] traditionalism: 1 +< [13408] traditions: 1 +< [13409] tragedians: 1 +< [13410] tragedy: 6 +< [13411] tragic: 1 +< [13412] tragically: 2 +< [13413] train: 55 +< [13414] train's: 1 +< [13415] train...who: 1 +< [13416] trained: 2 +< [13417] trainer: 3 +< [13418] training: 1 +< [13419] trains: 3 +< [13420] trait: 2 +< [13421] traits: 2 +< [13422] tramp: 3 +< [13423] trample: 4 +< [13424] trampled: 4 +< [13425] trampling: 1 +< [13426] trance: 1 +< [13427] tranquil: 2 +< [13428] tranquillity: 1 +< [13429] transact: 1 +< [13430] transcendental: 1 +< [13431] transcribe: 1 +< [13432] transcription: 1 +< [13433] transferred: 3 +< [13434] transform: 2 +< [13435] transformation: 2 +< [13436] transformations: 1 +< [13437] transformed: 10 +< [13438] transforming: 1 +< [13439] transient: 2 +< [13440] transition: 7 +< [13441] transitions: 2 +< [13442] translate: 1 +< [13443] translated: 2 +< [13444] translating: 1 +< [13445] translation: 2 +< [13446] translator: 1 +< [13447] transmigration: 1 +< [13448] transmission: 1 +< [13449] transparent: 6 +< [13450] transparent-looking: 1 +< [13451] transported: 1 +< [13452] transposed: 3 +< [13453] trap: 26 +< [13454] trapeze: 1 +< [13455] travel: 1 +< [13456] traveled: 5 +< [13457] traveler: 6 +< [13458] travelers: 1 +< [13459] traveling: 5 +< [13460] traveling-bag: 1 +< [13461] travels: 1 +< [13462] tray: 8 +< [13463] trays: 1 +< [13464] treacheries: 1 +< [13465] treachery: 1 +< [13466] tread: 4 +< [13467] treading: 3 +< [13468] treasure: 2 +< [13469] treat: 2 +< [13470] treated: 12 +< [13471] treating: 4 +< [13472] treatise: 1 +< [13473] treatment: 8 +< [13474] tree: 23 +< [13475] tree-tops: 3 +< [13476] trees: 25 +< [13477] treillage: 2 +< [13478] tremble: 1 +< [13479] trembled: 3 +< [13480] trembling: 14 +< [13481] tremendously: 1 +< [13482] tremens: 1 +< [13483] trend: 1 +< [13484] trepidation: 1 +< [13485] tres: 1 +< [13486] tress: 2 +< [13487] tresses: 1 +< [13488] trial: 4 +< [13489] trials: 1 +< [13490] triangle: 4 +< [13491] triangles: 1 +< [13492] tribes: 15 +< [13493] tribunal: 1 +< [13494] tribute: 1 +< [13495] trice: 1 +< [13496] trick: 9 +< [13497] trickery: 2 +< [13498] trickling: 1 +< [13499] tricks: 1 +< [13500] tried: 159 +< [13501] tries: 4 +< [13502] trifle: 2 +< [13503] trifles: 1 +< [13504] trifling: 7 +< [13505] trifling--and: 1 +< [13506] trigger: 3 +< [13507] trilled: 1 +< [13508] trimmed: 2 +< [13509] trinity: 1 +< [13510] trinkets: 1 +< [13511] triumph: 18 +< [13512] triumphant: 5 +< [13513] triumphantly: 2 +< [13514] triumphed: 1 +< [13515] triumphing: 1 +< [13516] trivial: 11 +< [13517] triviality: 1 +< [13518] trodden: 3 +< [13519] trois: 1 +< [13520] troitsa: 1 +< [13521] trolleys: 1 +< [13522] trop: 1 +< [13523] trot: 6 +< [13524] troth: 5 +< [13525] trotted: 2 +< [13526] trotter: 1 +< [13527] trotting: 2 +< [13528] trouble: 51 +< [13529] troubled: 10 +< [13530] troubles: 4 +< [13531] troubling: 4 +< [13532] trough: 2 +< [13533] trousers: 10 +< [13534] trousers--though: 1 +< [13535] trousseau: 8 +< [13536] trousseau--the: 1 +< [13537] trowels: 1 +< [13538] trubetskaya: 1 +< [13539] trubin: 1 +< [13540] trudging: 2 +< [13541] true: 91 +< [13542] true--true: 1 +< [13543] true...now: 1 +< [13544] truffles: 1 +< [13545] truly: 12 +< [13546] trunk: 3 +< [13547] trunks: 3 +< [13548] trussing: 1 +< [13549] trust: 6 +< [13550] trusted: 4 +< [13551] trustee: 1 +< [13552] trustfully: 2 +< [13553] trustworthy: 2 +< [13554] truth: 47 +< [13555] truthful: 18 +< [13556] truthfully: 1 +< [13557] truthfulness: 1 +< [13558] truths: 4 +< [13559] try: 67 +< [13560] trying: 134 +< [13561] très: 2 +< [13562] tsar: 14 +< [13563] tsar's: 1 +< [13564] tsaritsino: 1 +< [13565] tsarskoe: 2 +< [13566] tub: 1 +< [13567] tuberculous: 4 +< [13568] tucked: 9 +< [13569] tucking: 1 +< [13570] tuesday: 5 +< [13571] tuft: 3 +< [13572] tufts: 2 +< [13573] tugged: 2 +< [13574] tugging: 5 +< [13575] tulle: 4 +< [13576] tumbler: 1 +< [13577] tunic: 1 +< [13578] turban: 1 +< [13579] turbid: 1 +< [13580] turbot: 5 +< [13581] turin's: 1 +< [13582] turkey: 3 +< [13583] turkeys: 1 +< [13584] turkin: 1 +< [13585] turkish: 2 +< [13586] turks: 7 +< [13587] turks?--ivan: 1 +< [13588] turmoil: 2 +< [13589] turn: 56 +< [13590] turn-down: 1 +< [13591] turn-out: 1 +< [13592] turned: 207 +< [13593] turning: 115 +< [13594] turning-point: 2 +< [13595] turnings: 1 +< [13596] turns: 9 +< [13597] turovtsin: 17 +< [13598] turovtsin's: 1 +< [13599] turovtsin--"_acted: 1 +< [13600] turovtsin--good: 1 +< [13601] turovtsin--he: 1 +< [13602] tushkevitch: 22 +< [13603] tushkevitch--"with: 1 +< [13604] tushkevitch--you: 1 +< [13605] tutor: 8 +< [13606] tutor's: 3 +< [13607] tver: 6 +< [13608] tverskaya: 15 +< [13609] tverskaya's: 9 +< [13610] tverskoys: 2 +< [13611] tversky: 2 +< [13612] twelve: 14 +< [13613] twentieth: 1 +< [13614] twenty: 26 +< [13615] twenty--had: 1 +< [13616] twenty-eight: 2 +< [13617] twenty-five: 6 +< [13618] twenty-four: 2 +< [13619] twenty-six: 2 +< [13620] twenty-two: 1 +< [13621] twice: 14 +< [13622] twig: 4 +< [13623] twigs: 5 +< [13624] twilight: 5 +< [13625] twinge: 1 +< [13626] twinkle: 1 +< [13627] twinkled: 2 +< [13628] twinkling: 2 +< [13629] twirling: 2 +< [13630] twist: 1 +< [13631] twisted: 4 +< [13632] twisting: 7 +< [13633] twitch: 1 +< [13634] twitched: 9 +< [13635] twitching: 14 +< [13636] twittered: 3 +< [13637] two: 293 +< [13638] two--or: 1 +< [13639] two-and-twenty: 1 +< [13640] two-thirds: 1 +< [13641] twopence: 2 +< [13642] twos: 1 +< [13643] tying: 1 +< [13644] tyndall: 1 +< [13645] tyndall's: 1 +< [13646] type: 6 +< [13647] type--she: 1 +< [13648] types: 2 +< [13649] typhus: 2 +< [13650] typical: 2 +< [13651] typically: 1 +< [13652] télégraphe: 1 +< [13653] tête-à-tête: 1 +< [13654] u.s: 3 +< [13655] ud: 1 +< [13656] udder: 1 +< [13657] ugh: 1 +< [13658] uglier: 1 +< [13659] ugliness: 1 +< [13660] ugly: 11 +< [13661] ultimate: 1 +< [13662] umbrella: 1 +< [13663] umpire: 1 +< [13664] un: 7 +< [13665] unable: 34 +< [13666] unaccountable: 1 +< [13667] unaccustomed: 6 +< [13668] unaffected: 2 +< [13669] unaided: 1 +< [13670] unalterable: 5 +< [13671] unalterably: 2 +< [13672] unanimity: 3 +< [13673] unanimously: 1 +< [13674] unannounced: 1 +< [13675] unanswered: 1 +< [13676] unapproachable: 1 +< [13677] unasked: 1 +< [13678] unassailable: 1 +< [13679] unattainable: 4 +< [13680] unattractive: 2 +< [13681] unavoidable: 1 +< [13682] unaware: 3 +< [13683] unawares: 1 +< [13684] unbearable: 6 +< [13685] unbearably: 1 +< [13686] unbecoming: 5 +< [13687] unbecomingly: 2 +< [13688] unbelief: 6 +< [13689] unbeliever: 9 +< [13690] unbelievers: 1 +< [13691] unbelieving: 1 +< [13692] unbending: 1 +< [13693] unbridled: 1 +< [13694] unbroken: 1 +< [13695] unbuttoned: 5 +< [13696] uncalled: 3 +< [13697] uncannily: 1 +< [13698] uncanny: 1 +< [13699] unceasing: 1 +< [13700] unceasingly: 5 +< [13701] uncertain: 8 +< [13702] uncertainly: 2 +< [13703] uncertainty: 13 +< [13704] unchanged: 6 +< [13705] uncivil: 1 +< [13706] uncle: 13 +< [13707] uncle's: 2 +< [13708] unclean: 1 +< [13709] uncleanness: 1 +< [13710] uncles: 2 +< [13711] uncomfortable: 16 +< [13712] uncommonly: 2 +< [13713] uncomprehended: 2 +< [13714] uncompromising: 2 +< [13715] uncongenial: 3 +< [13716] unconscious: 3 +< [13717] unconsciously: 44 +< [13718] unconsciousness: 5 +< [13719] uncontrollably: 2 +< [13720] uncorking: 1 +< [13721] uncouth: 2 +< [13722] uncover: 5 +< [13723] uncovered: 3 +< [13724] uncovering: 1 +< [13725] uncrooked: 1 +< [13726] unction: 3 +< [13727] uncut: 5 +< [13728] und: 1 +< [13729] undefined: 4 +< [13730] under: 167 +< [13731] undercassock: 1 +< [13732] underclothes: 1 +< [13733] undergoing: 1 +< [13734] undergrowth: 1 +< [13735] underlying: 1 +< [13736] understand: 263 +< [13737] understand--why: 1 +< [13738] understanding: 32 +< [13739] understands: 12 +< [13740] understood: 89 +< [13741] understood--"i: 1 +< [13742] undertake: 5 +< [13743] undertaken: 5 +< [13744] undertaking: 4 +< [13745] undertakings: 1 +< [13746] undeserved: 2 +< [13747] undesigned: 1 +< [13748] undeveloped: 1 +< [13749] undid: 1 +< [13750] undignified: 1 +< [13751] undisguised: 1 +< [13752] undivided: 2 +< [13753] undivided--and: 1 +< [13754] undo: 3 +< [13755] undoing: 1 +< [13756] undone: 1 +< [13757] undoubted: 1 +< [13758] undoubtedly: 7 +< [13759] undress: 1 +< [13760] undressed: 5 +< [13761] undressing: 2 +< [13762] undue: 1 +< [13763] undulating: 1 +< [13764] une: 7 +< [13765] unearned: 1 +< [13766] unearthly: 3 +< [13767] uneasily: 5 +< [13768] uneasiness: 6 +< [13769] uneasy: 10 +< [13770] unenforceability: 1 +< [13771] unequal: 2 +< [13772] unequaled: 1 +< [13773] unequally: 1 +< [13774] uneven: 3 +< [13775] unevenly: 1 +< [13776] uneventful: 1 +< [13777] unexpected: 15 +< [13778] unexpectedly: 10 +< [13779] unfailing: 2 +< [13780] unfair: 7 +< [13781] unfair...i: 1 +< [13782] unfairness: 1 +< [13783] unfaithful: 8 +< [13784] unfaithfulness: 3 +< [13785] unfamiliar: 3 +< [13786] unfastening: 1 +< [13787] unfathomable: 1 +< [13788] unfavorable: 2 +< [13789] unfavorably: 1 +< [13790] unfeeling: 1 +< [13791] unfeigned: 1 +< [13792] unfeminine: 1 +< [13793] unfinished: 3 +< [13794] unfit: 1 +< [13795] unflagging: 3 +< [13796] unfold: 1 +< [13797] unfolded: 3 +< [13798] unfolding: 1 +< [13799] unforeseen: 1 +< [13800] unfortunate: 1 +< [13801] unfortunately: 2 +< [13802] unfrequent: 1 +< [13803] ungracious: 1 +< [13804] unhappily: 1 +< [13805] unhappiness: 12 +< [13806] unhappiness--no: 1 +< [13807] unhappy: 53 +< [13808] unharmed: 1 +< [13809] unharness: 1 +< [13810] unharnessed: 2 +< [13811] unharnessing: 1 +< [13812] unhasting: 1 +< [13813] unhealthily: 1 +< [13814] unhesitating: 4 +< [13815] unhinged: 1 +< [13816] unhooked: 1 +< [13817] unhurt: 6 +< [13818] unification: 1 +< [13819] uniform: 32 +< [13820] uniformly: 1 +< [13821] uniforms: 10 +< [13822] unimpeachable: 2 +< [13823] unimportant: 5 +< [13824] unintelligible: 2 +< [13825] uninteresting: 2 +< [13826] uninterrupted: 1 +< [13827] union: 4 +< [13828] unique: 2 +< [13829] unison: 1 +< [13830] united: 16 +< [13831] uniting: 2 +< [13832] unity: 3 +< [13833] universal: 9 +< [13834] universities: 1 +< [13835] university: 20 +< [13836] unjust: 8 +< [13837] unjustly: 2 +< [13838] unkempt: 1 +< [13839] unkindness: 1 +< [13840] unknown: 19 +< [13841] unlawful: 1 +< [13842] unlawfully: 1 +< [13843] unlearning: 1 +< [13844] unless: 6 +< [13845] unlighted: 1 +< [13846] unlike: 19 +< [13847] unlink: 1 +< [13848] unlooked: 1 +< [13849] unloosed: 1 +< [13850] unloved: 1 +< [13851] unluckily: 5 +< [13852] unlucky: 9 +< [13853] unmanly: 1 +< [13854] unmarried: 3 +< [13855] unmelted: 1 +< [13856] unmistakable: 16 +< [13857] unmistakably: 31 +< [13858] unmoved: 4 +< [13859] unmown: 2 +< [13860] unnatural: 17 +< [13861] unnaturally: 4 +< [13862] unnaturalness: 3 +< [13863] unnecessary: 6 +< [13864] unnoticed: 7 +< [13865] unobserved: 3 +< [13866] unobtrusively: 2 +< [13867] unoccupied: 5 +< [13868] unpack: 2 +< [13869] unpacked: 2 +< [13870] unpacking: 1 +< [13871] unpardonable: 4 +< [13872] unpardonably: 2 +< [13873] unpleasant: 39 +< [13874] unpleasantly: 1 +< [13875] unpleasantness: 4 +< [13876] unprejudiced: 1 +< [13877] unprepared: 1 +< [13878] unprepossessing: 1 +< [13879] unproductive: 1 +< [13880] unproductively: 1 +< [13881] unprofitably: 1 +< [13882] unpunctualities: 1 +< [13883] unqualified: 1 +< [13884] unquestionable: 1 +< [13885] unreasonable: 1 +< [13886] unresisting: 1 +< [13887] unresting: 1 +< [13888] unromantic: 1 +< [13889] unsafe: 1 +< [13890] unsatisfactory: 4 +< [13891] unsatisfied: 2 +< [13892] unscrewed: 1 +< [13893] unseemly: 8 +< [13894] unseen: 10 +< [13895] unsettled: 3 +< [13896] unshaken: 1 +< [13897] unsifted: 1 +< [13898] unsolicited: 1 +< [13899] unsolved: 1 +< [13900] unsound: 1 +< [13901] unspoken: 2 +< [13902] unstirred: 1 +< [13903] unsuccessful: 2 +< [13904] unsuitability: 1 +< [13905] unsuitable: 3 +< [13906] unsullied: 1 +< [13907] unsuspecting: 1 +< [13908] unsympathetic: 1 +< [13909] untarnished: 1 +< [13910] untidy: 3 +< [13911] untied: 3 +< [13912] until: 5 +< [13913] unto: 2 +< [13914] untouched: 3 +< [13915] untrained: 2 +< [13916] untrampled: 1 +< [13917] untroubled: 1 +< [13918] untrue: 1 +< [13919] untruly: 1 +< [13920] untrussing: 1 +< [13921] untruth: 1 +< [13922] untying: 1 +< [13923] unusual: 5 +< [13924] unusually: 1 +< [13925] unutterable: 1 +< [13926] unutterably: 4 +< [13927] unvarying: 2 +< [13928] unwarily: 1 +< [13929] unwell: 9 +< [13930] unwholesome: 1 +< [13931] unwilling: 5 +< [13932] unwillingly: 3 +< [13933] unwithered: 1 +< [13934] unwonted: 1 +< [13935] unworthily: 1 +< [13936] unworthiness: 1 +< [13937] unworthy: 4 +< [13938] unyoked: 1 +< [13939] up: 1306 +< [13940] up--it: 1 +< [13941] up-to-date: 1 +< [13942] up...but: 1 +< [13943] up...don't: 1 +< [13944] updated: 2 +< [13945] upheld: 1 +< [13946] uphill: 2 +< [13947] upholding: 1 +< [13948] upland: 5 +< [13949] upland's: 1 +< [13950] uplands: 1 +< [13951] uplifting: 1 +< [13952] upon: 207 +< [13953] upper: 6 +< [13954] uppermost: 1 +< [13955] upright: 3 +< [13956] upset: 9 +< [13957] upsets: 1 +< [13958] upsetting: 4 +< [13959] upside: 2 +< [13960] upstairs: 28 +< [13961] upstarts: 2 +< [13962] upward: 1 +< [13963] upwards: 11 +< [13964] urbanity: 1 +< [13965] urge: 3 +< [13966] urged: 9 +< [13967] urgent: 2 +< [13968] urgently: 3 +< [13969] urging: 5 +< [13970] us: 232 +< [13971] us--this: 1 +< [13972] us...i: 1 +< [13973] use: 73 +< [13974] used: 119 +< [13975] useful: 7 +< [13976] usefulness: 1 +< [13977] useless: 15 +< [13978] uselessness: 1 +< [13979] user: 3 +< [13980] ushering: 1 +< [13981] using: 14 +< [13982] usual: 59 +< [13983] usually: 19 +< [13984] usurped: 1 +< [13985] ut: 1 +< [13986] utility: 3 +< [13987] utmost: 15 +< [13988] utopia: 1 +< [13989] utter: 19 +< [13990] utterance: 12 +< [13991] utterances: 1 +< [13992] uttered: 30 +< [13993] uttered--"the: 1 +< [13994] uttering: 7 +< [13995] utterly: 83 +< [13996] va: 3 +< [13997] vacated: 1 +< [13998] vaccinate: 1 +< [13999] vacillating: 2 +< [14000] vague: 14 +< [14001] vaguely: 13 +< [14002] vaguest: 1 +< [14003] vain: 9 +< [14004] vainly: 1 +< [14005] valet: 17 +< [14006] valley: 1 +< [14007] valorous: 1 +< [14008] valuable: 3 +< [14009] value: 21 +< [14010] valued: 1 +< [14011] valued--"look: 1 +< [14012] values: 1 +< [14013] valuing: 1 +< [14014] van: 2 +< [14015] vanilla: 2 +< [14016] vanished: 28 +< [14017] vanishes: 1 +< [14018] vanishing: 1 +< [14019] vanity: 6 +< [14020] vanquished: 1 +< [14021] vanya's: 1 +< [14022] vapor: 1 +< [14023] varenka: 140 +< [14024] varenka's: 14 +< [14025] varenka...i: 1 +< [14026] varied: 2 +< [14027] variety: 3 +< [14028] various: 22 +< [14029] variously: 1 +< [14030] varnished: 4 +< [14031] varvara: 29 +< [14032] varvara--but: 1 +< [14033] varvara--you: 1 +< [14034] varya: 14 +< [14035] varyagi: 1 +< [14036] vase: 1 +< [14037] vases: 1 +< [14038] vashtchenkov's: 1 +< [14039] vaska: 8 +< [14040] vassenka: 61 +< [14041] vassenka's: 4 +< [14042] vassiliev: 1 +< [14043] vassilievitch: 9 +< [14044] vassilievna: 1 +< [14045] vassiltchikov: 1 +< [14046] vassiltchikova: 1 +< [14047] vassily: 36 +< [14048] vassya's: 1 +< [14049] vast: 7 +< [14050] vasya: 1 +< [14051] vatkovskaya: 1 +< [14052] vats: 1 +< [14053] vault: 1 +< [14054] vaulted: 1 +< [14055] vegetable: 1 +< [14056] vegetables: 2 +< [14057] vegetating: 1 +< [14058] vehicle: 2 +< [14059] veil: 19 +< [14060] veiled: 1 +< [14061] veins: 6 +< [14062] velvet: 15 +< [14063] velvety: 1 +< [14064] venden: 3 +< [14065] venden's: 1 +< [14066] venerable: 1 +< [14067] venetian: 1 +< [14068] venez: 2 +< [14069] vengeance: 2 +< [14070] venice: 1 +< [14071] venovsky: 3 +< [14072] ventilation: 1 +< [14073] ventilator: 1 +< [14074] venture: 4 +< [14075] ventured: 3 +< [14076] venturing: 2 +< [14077] venus: 3 +< [14078] verbal: 1 +< [14079] verbose: 1 +< [14080] verification: 1 +< [14081] verified: 4 +< [14082] verify: 3 +< [14083] vermin: 2 +< [14084] vers: 1 +< [14085] verse: 4 +< [14086] verses: 3 +< [14087] version: 1 +< [14088] vertebrae: 1 +< [14089] very: 652 +< [14090] veslovsky: 104 +< [14091] veslovsky's: 4 +< [14092] veslovsky...you: 1 +< [14093] veslovsky?"--it: 1 +< [14094] vespers: 1 +< [14095] vestals: 1 +< [14096] vestige: 1 +< [14097] vestment: 3 +< [14098] vestments: 2 +< [14099] veteran: 2 +< [14100] veterinary: 1 +< [14101] vexation: 14 +< [14102] vexatious: 1 +< [14103] vexed: 17 +< [14104] vexing: 2 +< [14105] vibration: 1 +< [14106] vicar: 1 +< [14107] vices: 1 +< [14108] vicious: 4 +< [14109] viciously: 1 +< [14110] victim: 2 +< [14111] victim--killed: 1 +< [14112] victorious: 1 +< [14113] victory: 6 +< [14114] vie: 1 +< [14115] viel: 1 +< [14116] vienna: 1 +< [14117] vieux: 1 +< [14118] view: 72 +< [14119] view--stupid: 1 +< [14120] viewed: 2 +< [14121] viewing: 1 +< [14122] views: 44 +< [14123] vigor: 4 +< [14124] vigorous: 10 +< [14125] vigorous-looking: 1 +< [14126] vigorously: 9 +< [14127] vile: 4 +< [14128] villa: 9 +< [14129] village: 35 +< [14130] villages: 1 +< [14131] villain: 1 +< [14132] villains: 1 +< [14133] villas: 3 +< [14134] vinaigre: 1 +< [14135] vindicate: 1 +< [14136] vindictive: 2 +< [14137] vindictiveness: 2 +< [14138] vinegar: 1 +< [14139] vinovsky: 1 +< [14140] violates: 1 +< [14141] violence: 2 +< [14142] violent: 13 +< [14143] violently: 6 +< [14144] violet: 2 +< [14145] virtue: 5 +< [14146] virtues: 2 +< [14147] virtuous: 1 +< [14148] virus: 1 +< [14149] vis-a-vis: 1 +< [14150] visible: 13 +< [14151] visibly: 2 +< [14152] vision: 6 +< [14153] visions: 1 +< [14154] visit: 27 +< [14155] visited: 5 +< [14156] visiting: 3 +< [14157] visitor: 23 +< [14158] visitors: 34 +< [14159] visits: 6 +< [14160] vital: 2 +< [14161] vitality: 1 +< [14162] vite: 1 +< [14163] vive: 1 +< [14164] vivid: 6 +< [14165] vividly: 18 +< [14166] vividness: 6 +< [14167] vladimir: 2 +< [14168] vladimirsky: 1 +< [14169] vlassieva: 2 +< [14170] vlasyevna: 1 +< [14171] vlasyevna,"--this: 1 +< [14172] vocation: 3 +< [14173] vodka: 16 +< [14174] vogue: 1 +< [14175] voice: 191 +< [14176] voices: 31 +< [14177] void: 1 +< [14178] volga: 1 +< [14179] volgarinov: 3 +< [14180] volgarinov's: 3 +< [14181] volkov: 1 +< [14182] volume: 3 +< [14183] volunteer: 1 +< [14184] volunteered: 1 +< [14185] volunteers: 23 +< [14186] vom: 1 +< [14187] vorknev: 1 +< [14188] vorkuev: 10 +< [14189] vorkuev...you: 1 +< [14190] vos: 1 +< [14191] vote: 10 +< [14192] voted: 2 +< [14193] votes: 7 +< [14194] voting: 5 +< [14195] votre: 1 +< [14196] vouchsafe: 2 +< [14197] vouchsafed: 3 +< [14198] vouchsafing: 1 +< [14199] vous: 9 +< [14200] voyez: 2 +< [14201] voytov: 3 +< [14202] vozdrem: 1 +< [14203] vozdvizhenskoe: 8 +< [14204] vrede: 7 +< [14205] vronskaya: 4 +< [14206] vronskaya's: 2 +< [14207] vronsky: 770 +< [14208] vronsky's: 85 +< [14209] vronsky's--a: 1 +< [14210] vronsky--a: 1 +< [14211] vronsky--i: 1 +< [14212] vronsky--since: 1 +< [14213] vronsky--that: 1 +< [14214] vronskys: 3 +< [14215] vu: 1 +< [14216] vulgar: 8 +< [14217] vulgar--as: 1 +< [14218] vulgarity: 1 +< [14219] vulgarize: 1 +< [14220] vulgarly: 1 +< [14221] vult: 1 +< [14222] w: 2 +< [14223] wade: 1 +< [14224] wafer: 1 +< [14225] wag: 1 +< [14226] wage-fund: 1 +< [14227] wages: 8 +< [14228] wagging: 3 +< [14229] waging: 1 +< [14230] wagner: 2 +< [14231] wagon-loads: 2 +< [14232] wagonette: 13 +< [14233] wagons: 5 +< [14234] wags: 1 +< [14235] wailed: 1 +< [14236] wailing: 1 +< [14237] wain: 1 +< [14238] waist: 12 +< [14239] waistcoat: 12 +< [14240] waistcoats: 2 +< [14241] waists: 2 +< [14242] wait: 66 +< [14243] waited: 19 +< [14244] waiter: 21 +< [14245] waiter's: 1 +< [14246] waiters: 8 +< [14247] waiters--all: 1 +< [14248] waiting: 82 +< [14249] waiting-room: 3 +< [14250] waitresses: 1 +< [14251] wake: 9 +< [14252] waked: 18 +< [14253] wakes: 1 +< [14254] waking: 10 +< [14255] walk: 50 +< [14256] walk--still: 1 +< [14257] walked: 150 +< [14258] walking: 64 +< [14259] walks: 6 +< [14260] wall: 16 +< [14261] wallpapers--they're: 1 +< [14262] walls: 8 +< [14263] waltz: 13 +< [14264] waltzed: 1 +< [14265] waltzes: 1 +< [14266] waltzing: 2 +< [14267] wandered: 1 +< [14268] wandering: 1 +< [14269] wane: 1 +< [14270] waned: 1 +< [14271] waning: 3 +< [14272] want: 229 +< [14273] wanted: 172 +< [14274] wanted...yes: 1 +< [14275] wanting: 13 +< [14276] wanton: 1 +< [14277] wants: 38 +< [14278] war: 24 +< [14279] ward: 1 +< [14280] wardrobe: 1 +< [14281] wards: 2 +< [14282] wardship: 4 +< [14283] wardships: 1 +< [14284] warehouse: 1 +< [14285] warfare: 1 +< [14286] warily: 3 +< [14287] warm: 30 +< [14288] warmed: 3 +< [14289] warmer: 2 +< [14290] warmly: 13 +< [14291] warmth: 8 +< [14292] warn: 6 +< [14293] warned: 2 +< [14294] warning: 2 +< [14295] warranties: 3 +< [14296] warranty: 2 +< [14297] warriors: 1 +< [14298] wars: 1 +< [14299] wary: 3 +< [14300] was: 5298 +< [14301] was--catholic: 1 +< [14302] was...tries: 1 +< [14303] wash: 10 +< [14304] washed: 18 +< [14305] washhouse: 1 +< [14306] washing: 9 +< [14307] washstand: 2 +< [14308] wasn't: 21 +< [14309] wasn't...i: 1 +< [14310] wasp: 2 +< [14311] waste: 9 +< [14312] wasted: 13 +< [14313] wasted...i'd: 1 +< [14314] wastepaper: 1 +< [14315] wastes: 1 +< [14316] wasting: 8 +< [14317] watch: 37 +< [14318] watch's: 1 +< [14319] watch-chain: 2 +< [14320] watched: 20 +< [14321] watches: 1 +< [14322] watching: 30 +< [14323] watchmaker: 2 +< [14324] water: 64 +< [14325] watering: 3 +< [14326] watering-place: 7 +< [14327] waters: 9 +< [14328] wave: 4 +< [14329] waved: 8 +< [14330] waver: 1 +< [14331] wavered: 3 +< [14332] wavering: 3 +< [14333] waves: 4 +< [14334] waving: 19 +< [14335] wax: 5 +< [14336] waxing: 1 +< [14337] way: 315 +< [14338] way's: 1 +< [14339] way--a: 1 +< [14340] way--the: 2 +< [14341] ways: 19 +< [14342] we: 456 +< [14343] we'd: 4 +< [14344] we'll: 49 +< [14345] we're: 40 +< [14346] we've: 36 +< [14347] we--i: 1 +< [14348] we--old--with: 1 +< [14349] weak: 13 +< [14350] weakened: 1 +< [14351] weakening: 1 +< [14352] weaker: 1 +< [14353] weakly: 1 +< [14354] weakness: 21 +< [14355] weaknesses: 5 +< [14356] weal: 3 +< [14357] wealth: 13 +< [14358] wealthy: 14 +< [14359] weaned: 2 +< [14360] weapon: 5 +< [14361] wear: 2 +< [14362] wearers: 1 +< [14363] wearied: 1 +< [14364] wearily: 2 +< [14365] weariness: 12 +< [14366] wearing: 24 +< [14367] wearisome: 3 +< [14368] weary: 23 +< [14369] weather: 17 +< [14370] web: 6 +< [14371] wedding: 26 +< [14372] wedding--from: 1 +< [14373] wedlock: 1 +< [14374] wednesday: 1 +< [14375] wee: 2 +< [14376] weed: 1 +< [14377] weeding: 1 +< [14378] weeds: 2 +< [14379] week: 16 +< [14380] week's: 2 +< [14381] week-days: 1 +< [14382] weeks: 11 +< [14383] weep: 2 +< [14384] weeping: 7 +< [14385] weibliche: 1 +< [14386] weigh: 3 +< [14387] weighed: 9 +< [14388] weighing: 2 +< [14389] weighs: 2 +< [14390] weight: 15 +< [14391] weights: 2 +< [14392] weighty: 8 +< [14393] weirdness: 1 +< [14394] welcome: 8 +< [14395] welcomed: 3 +< [14396] welfare: 7 +< [14397] well: 627 +< [14398] well--and: 1 +< [14399] well-being: 1 +< [14400] well-bred: 5 +< [14401] well-brushed: 1 +< [14402] well-built: 2 +< [14403] well-cared-for: 1 +< [14404] well-combed: 1 +< [14405] well-connected: 1 +< [14406] well-cut: 1 +< [14407] well-directed: 1 +< [14408] well-dressed: 1 +< [14409] well-fed: 3 +< [14410] well-finished: 1 +< [14411] well-groomed: 1 +< [14412] well-known: 8 +< [14413] well-matched: 1 +< [14414] well-ordered: 3 +< [14415] well-painted: 1 +< [14416] well-preserved: 1 +< [14417] well-remembered: 1 +< [14418] well-swept: 1 +< [14419] well-to-do: 3 +< [14420] well-washed: 1 +< [14421] welling: 1 +< [14422] wells: 1 +< [14423] wench: 2 +< [14424] wench's: 1 +< [14425] wenches: 1 +< [14426] wenn: 1 +< [14427] wenn's: 1 +< [14428] went: 660 +< [14429] went...to: 1 +< [14430] werden: 1 +< [14431] were: 1233 +< [14432] weren't: 10 +< [14433] wertherish: 1 +< [14434] west: 2 +< [14435] western: 1 +< [14436] wet: 28 +< [14437] wet-nurse: 8 +< [14438] wet-nurse's: 1 +< [14439] wetted: 1 +< [14440] wetting: 1 +< [14441] what: 1676 +< [14442] what's: 97 +< [14443] what--what: 1 +< [14444] what...has: 1 +< [14445] what?--eternal: 1 +< [14446] whatever: 46 +< [14447] whatsoever: 2 +< [14448] wheat: 15 +< [14449] wheel: 4 +< [14450] wheels: 23 +< [14451] when: 947 +< [14452] when's: 1 +< [14453] whence: 7 +< [14454] whenever: 10 +< [14455] where: 318 +< [14456] where's: 6 +< [14457] whereabouts: 1 +< [14458] wherefore: 2 +< [14459] wherein: 1 +< [14460] wherever: 6 +< [14461] wherewithal: 1 +< [14462] whether: 147 +< [14463] whetstone: 1 +< [14464] whetstones: 1 +< [14465] whetted: 1 +< [14466] whetting: 4 +< [14467] which: 1078 +< [14468] which--eyes: 1 +< [14469] which--i: 1 +< [14470] whiffs: 1 +< [14471] while: 330 +< [14472] while--not: 1 +< [14473] whim: 1 +< [14474] whims: 1 +< [14475] whimsical: 1 +< [14476] whined: 1 +< [14477] whines: 1 +< [14478] whining: 5 +< [14479] whinnying: 1 +< [14480] whip: 2 +< [14481] whips: 1 +< [14482] whir: 3 +< [14483] whirled: 1 +< [14484] whirling: 7 +< [14485] whirring: 1 +< [14486] whiskered: 1 +< [14487] whiskers: 21 +< [14488] whisking: 1 +< [14489] whisper: 21 +< [14490] whisper...but: 1 +< [14491] whispered: 35 +< [14492] whispering: 5 +< [14493] whistle: 7 +< [14494] whistled: 3 +< [14495] whistles: 2 +< [14496] whistling: 4 +< [14497] whit: 1 +< [14498] white: 130 +< [14499] white-breasted: 1 +< [14500] white-headed: 2 +< [14501] white-legged: 2 +< [14502] white-seal: 1 +< [14503] whitebreast: 1 +< [14504] whiteness: 1 +< [14505] whiter: 2 +< [14506] whizzing: 1 +< [14507] who: 784 +< [14508] who'd: 3 +< [14509] who'll: 1 +< [14510] who're: 3 +< [14511] who's: 24 +< [14512] who've: 1 +< [14513] who--and: 1 +< [14514] who--her: 1 +< [14515] whoever: 4 +< [14516] whole: 216 +< [14517] wholly: 3 +< [14518] whom: 196 +< [14519] whose: 50 +< [14520] whosoever: 1 +< [14521] why: 435 +< [14522] why--whether: 1 +< [14523] wicked: 7 +< [14524] wide: 19 +< [14525] wide-awake: 1 +< [14526] wide-brimmed: 2 +< [14527] wide-margined: 1 +< [14528] wide-open: 4 +< [14529] widely: 1 +< [14530] wider: 6 +< [14531] widest: 2 +< [14532] widow: 3 +< [14533] widow's: 1 +< [14534] widower: 1 +< [14535] wiesbaden: 1 +< [14536] wife: 364 +< [14537] wife's: 49 +< [14538] wife--a: 1 +< [14539] wife--and: 1 +< [14540] wife--my: 1 +< [14541] wild: 18 +< [14542] wilderness: 1 +< [14543] wildest: 1 +< [14544] wilds: 2 +< [14545] wiles: 2 +< [14546] wilful: 1 +< [14547] will: 462 +< [14548] will--a: 1 +< [14549] willfully: 2 +< [14550] willing: 2 +< [14551] willow: 5 +< [14552] willow-tree: 1 +< [14553] wills: 3 +< [14554] wilson's: 2 +< [14555] wilt: 1 +< [14556] win: 5 +< [14557] wind: 20 +< [14558] winding: 5 +< [14559] windmill: 1 +< [14560] windmills: 3 +< [14561] window: 65 +< [14562] window's: 1 +< [14563] window--you: 1 +< [14564] window-frame: 1 +< [14565] window-panes: 1 +< [14566] windows: 11 +< [14567] wine: 27 +< [14568] wine-glass: 1 +< [14569] wines: 5 +< [14570] wing: 4 +< [14571] wings: 13 +< [14572] wink: 2 +< [14573] winked: 2 +< [14574] winking: 4 +< [14575] winner: 1 +< [14576] winning: 6 +< [14577] winning--seventeen: 1 +< [14578] winnowed: 1 +< [14579] winnowing: 1 +< [14580] winter: 40 +< [14581] winter's: 1 +< [14582] wipe: 2 +< [14583] wiped: 4 +< [14584] wiping: 7 +< [14585] wire: 1 +< [14586] wise: 7 +< [14587] wish: 43 +< [14588] wish...except: 1 +< [14589] wished: 35 +< [14590] wished...i: 1 +< [14591] wishes: 16 +< [14592] wishing: 18 +< [14593] wit: 4 +< [14594] witchcraft: 1 +< [14595] with: 3792 +< [14596] withdraw: 2 +< [14597] withdrawing: 1 +< [14598] withdrawn: 1 +< [14599] withdrew: 7 +< [14600] withers: 1 +< [14601] within: 31 +< [14602] without: 429 +< [14603] witness: 3 +< [14604] witnessed: 2 +< [14605] wits: 1 +< [14606] wittiest: 1 +< [14607] wittily: 1 +< [14608] witty: 2 +< [14609] wives: 8 +< [14610] wives--you'd: 1 +< [14611] wo: 1 +< [14612] wobbling: 2 +< [14613] woes: 1 +< [14614] woke: 7 +< [14615] wolf: 1 +< [14616] wolves--everyone: 1 +< [14617] woman: 184 +< [14618] woman's: 16 +< [14619] woman--and: 1 +< [14620] woman--no: 1 +< [14621] woman--that: 1 +< [14622] woman--the: 1 +< [14623] womanly: 1 +< [14624] women: 124 +< [14625] women's: 2 +< [14626] women,--at: 1 +< [14627] women--god: 1 +< [14628] women-folk: 2 +< [14629] women-friends: 2 +< [14630] womenfolks: 1 +< [14631] won: 8 +< [14632] won't: 144 +< [14633] won't...i: 1 +< [14634] wonder: 29 +< [14635] wondered: 20 +< [14636] wonderful: 17 +< [14637] wonderfully: 10 +< [14638] wondering: 19 +< [14639] wonderingly: 4 +< [14640] wonders: 2 +< [14641] wood: 10 +< [14642] wood-merchant: 1 +< [14643] wooded: 1 +< [14644] wooden: 4 +< [14645] woodland: 1 +< [14646] woods: 3 +< [14647] wool: 3 +< [14648] woolen: 3 +< [14649] word: 126 +< [14650] word--_son: 1 +< [14651] word--on: 1 +< [14652] wordless: 1 +< [14653] words: 261 +< [14654] words--"scoundrel: 1 +< [14655] wordy: 1 +< [14656] wore: 12 +< [14657] work: 302 +< [14658] work--anything: 1 +< [14659] work--it's: 1 +< [14660] workaday: 1 +< [14661] worked: 28 +< [14662] workers: 1 +< [14663] working: 45 +< [14664] workings: 1 +< [14665] workman: 3 +< [14666] workmen: 4 +< [14667] workpeople: 1 +< [14668] works: 43 +< [14669] world: 140 +< [14670] world's: 2 +< [14671] world--he: 1 +< [14672] world--the: 2 +< [14673] worldly: 8 +< [14674] worm: 2 +< [14675] worn: 11 +< [14676] worn-out: 1 +< [14677] worried: 23 +< [14678] worried-looking: 1 +< [14679] worries: 11 +< [14680] worry: 12 +< [14681] worry--in: 1 +< [14682] worrying: 11 +< [14683] worse: 60 +< [14684] worships: 1 +< [14685] worst: 16 +< [14686] worth: 30 +< [14687] worthless: 5 +< [14688] worthy: 3 +< [14689] would: 1044 +< [14690] would--take: 1 +< [14691] wouldn't: 38 +< [14692] wound: 17 +< [14693] wounded: 16 +< [14694] wounding: 4 +< [14695] wounds: 4 +< [14696] wrangling: 2 +< [14697] wrap: 1 +< [14698] wrapped: 6 +< [14699] wrapper: 1 +< [14700] wrapping: 6 +< [14701] wrappings: 3 +< [14702] wrappings--faults: 1 +< [14703] wraps: 1 +< [14704] wrath: 5 +< [14705] wrathful: 1 +< [14706] wrathful-looking: 1 +< [14707] wrathfully: 5 +< [14708] wreath: 4 +< [14709] wreathed: 1 +< [14710] wreck: 2 +< [14711] wrecking: 1 +< [14712] wretch: 2 +< [14713] wretched: 21 +< [14714] wretchedest: 1 +< [14715] wretchedness: 3 +< [14716] wretchedness...or: 1 +< [14717] wretches: 1 +< [14718] wriggling: 2 +< [14719] wring: 1 +< [14720] wrinkled: 5 +< [14721] wrinkles: 2 +< [14722] wrinkling: 1 +< [14723] wrist: 8 +< [14724] wrists: 1 +< [14725] write: 44 +< [14726] writer: 3 +< [14727] writer's: 2 +< [14728] writers: 1 +< [14729] writes: 10 +< [14730] writing: 39 +< [14731] writing-table: 5 +< [14732] writing-tables: 1 +< [14733] written: 31 +< [14734] wrong: 88 +< [14735] wrong--shameful: 1 +< [14736] wronged: 3 +< [14737] wrongly: 7 +< [14738] wrongs: 1 +< [14739] wrote: 53 +< [14740] wrought: 2 +< [14741] wrung: 1 +< [14742] wry: 2 +< [14743] wurt: 1 +< [14744] www.gutenberg.net: 3 +< [14745] wünscht: 1 +< [14746] xxvii: 1 +< [14747] y: 4 +< [14748] yacht: 1 +< [14749] yard: 9 +< [14750] yards: 8 +< [14751] yashvin: 64 +< [14752] yashvin's: 4 +< [14753] yashvin--a: 1 +< [14754] yausky: 1 +< [14755] yawn: 6 +< [14756] yawned: 2 +< [14757] yawning: 3 +< [14758] year: 68 +< [14759] year's: 4 +< [14760] year--the: 1 +< [14761] year--was: 1 +< [14762] year--which: 1 +< [14763] yearling: 1 +< [14764] yearly: 1 +< [14765] yearnings: 1 +< [14766] years: 84 +< [14767] yegor: 11 +< [14768] yegorov: 1 +< [14769] yegorushka: 1 +< [14770] yeliseev's: 1 +< [14771] yellow: 15 +< [14772] yellow-green: 1 +< [14773] yellow-red: 1 +< [14774] yellowish: 1 +< [14775] yelping: 1 +< [14776] yermil: 1 +< [14777] yermilin: 1 +< [14778] yes: 529 +< [14779] yes--yes--yes: 1 +< [14780] yes--you're: 1 +< [14781] yes...just: 1 +< [14782] yes...no: 1 +< [14783] yes...oh: 1 +< [14784] yesterday: 66 +< [14785] yesterday's: 5 +< [14786] yesterday--he: 1 +< [14787] yet: 142 +< [14788] yet--to: 1 +< [14789] yet...and: 1 +< [14790] yevgeney: 1 +< [14791] yevgenyevna: 6 +< [14792] yield: 5 +< [14793] yielded: 7 +< [14794] yielding: 1 +< [14795] yields: 1 +< [14796] yoke: 3 +< [14797] yonder: 3 +< [14798] you: 3035 +< [14799] you'd: 22 +< [14800] you'll: 53 +< [14801] you're: 176 +< [14802] you've: 88 +< [14803] you--and: 1 +< [14804] you--do: 1 +< [14805] you--i: 1 +< [14806] you--she: 1 +< [14807] you--that: 1 +< [14808] you--to: 1 +< [14809] you--two: 1 +< [14810] you--yes: 1 +< [14811] you...and: 1 +< [14812] you...at: 1 +< [14813] you...but: 1 +< [14814] you...grisha: 1 +< [14815] you...no: 1 +< [14816] you...not: 1 +< [14817] you...with: 1 +< [14818] you...you: 2 +< [14819] you?--though: 1 +< [14820] young: 207 +< [14821] young-looking: 1 +< [14822] younger: 24 +< [14823] youngest: 6 +< [14824] youngish: 3 +< [14825] your: 528 +< [14826] yours: 12 +< [14827] yourself: 61 +< [14828] yourselves: 2 +< [14829] youth: 30 +< [14830] youthful: 7 +< [14831] youthful-looking: 1 +< [14832] youthfulness--positively: 1 +< [14833] youths: 1 +< [14834] yury: 1 +< [14835] zahar: 1 +< [14836] zaraisky: 4 +< [14837] zeal: 3 +< [14838] zealously: 1 +< [14839] zest: 1 +< [14840] zhivahov: 1 +< [14841] zigzag: 1 +< [14842] zipporah: 1 +< [14843] znamenka: 1 +< [14844] zoological: 2 +< [14845] zoology: 2 +< [14846] zu: 2 +< [14847] À: 1 +< [14848] Ça: 2 +< [14849] à: 11 +< [14850] ça: 2 +< [14851] écoles: 1 +< [14852] été: 1 +< [14853] être: 1 +< [14854] the: 1 +--- +> Filename: raw_text_input/1399.txt.utf-8.txt, total words: 2658525 +> [0] 0: 6 +> [1] 0.0: 1 +> [2] 0.00033: 1 +> [3] 0.004064: 2 +> [4] 0.01: 2 +> [5] 0.02: 4 +> [6] 0.0282: 1 +> [7] 0.02905: 1 +> [8] 0.03: 1 +> [9] 0.03069: 1 +> [10] 0.03215: 1 +> [11] 0.0338: 1 +> [12] 0.0353: 1 +> [13] 0.04: 2 +> [14] 0.04006: 1 +> [15] 0.04715: 1 +> [16] 0.05: 3 +> [17] 0.0510: 1 +> [18] 0.05305: 1 +> [19] 0.05616: 1 +> [20] 0.0610: 1 +> [21] 0.064: 1 +> [22] 0.06908: 1 +> [23] 0.0929: 1 +> [24] 0.1: 14 +> [25] 0.10: 1 +> [26] 0.13411: 1 +> [27] 0.15: 5 +> [28] 0.155: 1 +> [29] 0.2: 3 +> [30] 0.22: 1 +> [31] 0.25: 4 +> [32] 0.2572: 1 +> [33] 0.2642: 1 +> [34] 0.2705: 1 +> [35] 0.283: 1 +> [36] 0.3: 2 +> [37] 0.305: 1 +> [38] 0.346: 1 +> [39] 0.35: 1 +> [40] 0.3524: 1 +> [41] 0.373: 1 +> [42] 0.386: 1 +> [43] 0.3937: 1 +> [44] 0.4: 2 +> [45] 0.405: 1 +> [46] 0.4064: 1 +> [47] 0.4536: 1 +> [48] 0.5: 17 +> [49] 0.5-1: 1 +> [50] 0.5-10: 1 +> [51] 0.50: 1 +> [52] 0.505: 2 +> [53] 0.5396: 1 +> [54] 0.544: 1 +> [55] 0.6: 1 +> [56] 0.609: 1 +> [57] 0.61: 1 +> [58] 0.621: 1 +> [59] 0.639: 1 +> [60] 0.64: 1 +> [61] 0.672: 1 +> [62] 0.705: 1 +> [63] 0.722: 1 +> [64] 0.749: 1 +> [65] 0.75: 2 +> [66] 0.765: 1 +> [67] 0.772: 1 +> [68] 0.774: 1 +> [69] 0.8: 2 +> [70] 0.800: 1 +> [71] 0.810: 1 +> [72] 0.812: 1 +> [73] 0.822: 1 +> [74] 0.827: 1 +> [75] 0.833: 1 +> [76] 0.836: 1 +> [77] 0.842: 1 +> [78] 0.845: 1 +> [79] 0.855: 1 +> [80] 0.856: 1 +> [81] 0.858: 1 +> [82] 0.859: 1 +> [83] 0.860: 1 +> [84] 0.861: 2 +> [85] 0.862: 1 +> [86] 0.863: 1 +> [87] 0.866: 1 +> [88] 0.867: 3 +> [89] 0.871: 3 +> [90] 0.872: 1 +> [91] 0.873: 3 +> [92] 0.874: 1 +> [93] 0.875: 2 +> [94] 0.875-0.884: 1 +> [95] 0.879-0.880: 1 +> [96] 0.880: 1 +> [97] 0.881: 1 +> [98] 0.888: 1 +> [99] 0.90: 1 +> [100] 0.901: 1 +> [101] 0.907: 1 +> [102] 0.908: 1 +> [103] 0.910: 1 +> [104] 0.914: 1 +> [105] 0.914-0.916: 2 +> [106] 0.914-0.917: 2 +> [107] 0.915-0.919: 1 +> [108] 0.915-0.920: 1 +> [109] 0.916-0.920: 2 +> [110] 0.917: 1 +> [111] 0.917-0.918: 1 +> [112] 0.919: 1 +> [113] 0.919-0.923: 1 +> [114] 0.920-0.930: 1 +> [115] 0.921-0.925: 1 +> [116] 0.921-0.926: 1 +> [117] 0.922-0.927: 1 +> [118] 0.922-0.930: 1 +> [119] 0.923-0.924: 1 +> [120] 0.924-0.926: 1 +> [121] 0.924-0.927: 2 +> [122] 0.924-0.929: 1 +> [123] 0.924-0.930: 1 +> [124] 0.925-0.926: 2 +> [125] 0.925-0.928: 1 +> [126] 0.925-0.931: 1 +> [127] 0.926: 1 +> [128] 0.927-0.933: 1 +> [129] 0.927-0.936: 1 +> [130] 0.93: 1 +> [131] 0.931-0.938: 2 +> [132] 0.936-0.942: 1 +> [133] 0.942-0.955: 1 +> [134] 0.943-0.952: 1 +> [135] 0.946: 1 +> [136] 0.950: 1 +> [137] 0.950-0.952: 1 +> [138] 0.958-0.969: 1 +> [139] 0.960: 1 +> [140] 0.960-0.966: 1 +> [141] 0.970: 1 +> [142] 0.970-0.980: 1 +> [143] 0.973: 1 +> [144] 0.975: 1 +> [145] 0.984: 1 +> [146] 0.990-0.999: 1 +> [147] 0.995: 1 +> [148] 0.996: 2 +> [149] 0.9980: 1 +> [150] 0.9985: 1 +> [151] 0.9990: 1 +> [152] 0.9995: 1 +> [153] 00000: 1 +> [154] 00022: 1 +> [155] 00043: 1 +> [156] 00065: 1 +> [157] 00087: 1 +> [158] 001: 1 +> [159] 00108: 1 +> [160] 00130: 1 +> [161] 00152: 1 +> [162] 00173: 1 +> [163] 0064: 1 +> [164] 01: 1 +> [165] 05616: 1 +> [166] 07: 1 +> [167] 0°: 3 +> [168] 1: 278 +> [169] 1'> [170] 1'>and: 3 +> [171] 1'>but: 1 +> [172] 1'>came: 2 +> [173] 1'>found: 1 +> [174] 1'>her: 1 +> [175] 1'>hid: 1 +> [176] 1'>in: 1 +> [177] 1'>laying: 1 +> [178] 1'>menacing: 1 +> [179] 1'>on: 1 +> [180] 1'>only: 1 +> [181] 1'>seeking: 1 +> [182] 1'>smoldered: 1 +> [183] 1'>sunk: 1 +> [184] 1'>to: 1 +> [185] 1'>turns: 1 +> [186] 1'>woe: 1 +> [187] 1,000: 2 +> [188] 1,000,000: 1 +> [189] 1,024: 1 +> [190] 1,200: 3 +> [191] 1,400: 1 +> [192] 1,400-pound: 1 +> [193] 1,600: 1 +> [194] 1--iii: 3 +> [195] 1--iv: 1 +> [196] 1--vi: 3 +> [197] 1--xi: 2 +> [198] 1--xv: 1 +> [199] 1-1/2: 3 +> [200] 1-10: 5 +> [201] 1-100: 1 +> [202] 1-1000: 1 +> [203] 1-11: 3 +> [204] 1-12: 2 +> [205] 1-13: 6 +> [206] 1-14: 4 +> [207] 1-16: 1 +> [208] 1-17: 1 +> [209] 1-18: 2 +> [210] 1-2: 2 +> [211] 1-21: 1 +> [212] 1-23: 2 +> [213] 1-3: 7 +> [214] 1-3/8: 1 +> [215] 1-30: 1 +> [216] 1-34: 2 +> [217] 1-4: 2 +> [218] 1-45: 1 +> [219] 1-5: 4 +> [220] 1-6: 5 +> [221] 1-7: 2 +> [222] 1-8: 1 +> [223] 1-9: 1 +> [224] 1-hr: 1 +> [225] 1-in: 3 +> [226] 1.0: 4 +> [227] 1.00: 2 +> [228] 1.000: 1 +> [229] 1.0000: 1 +> [230] 1.0005: 1 +> [231] 1.0010: 1 +> [232] 1.0015: 1 +> [233] 1.0020: 1 +> [234] 1.0025: 1 +> [235] 1.0026: 1 +> [236] 1.0030: 1 +> [237] 1.0035: 1 +> [238] 1.0040: 1 +> [239] 1.0053: 1 +> [240] 1.007: 1 +> [241] 1.0074: 1 +> [242] 1.00914: 1 +> [243] 1.01: 1 +> [244] 1.010: 1 +> [245] 1.0125: 1 +> [246] 1.014: 1 +> [247] 1.0147: 1 +> [248] 1.016: 4 +> [249] 1.0168: 1 +> [250] 1.01829: 1 +> [251] 1.0192: 1 +> [252] 1.0218: 1 +> [253] 1.022: 1 +> [254] 1.0243: 1 +> [255] 1.02743: 1 +> [256] 1.029: 1 +> [257] 1.0365: 1 +> [258] 1.03658: 1 +> [259] 1.037: 1 +> [260] 1.045: 2 +> [261] 1.04572: 1 +> [262] 1.049: 1 +> [263] 1.052: 1 +> [264] 1.05513: 1 +> [265] 1.057: 1 +> [266] 1.062: 1 +> [267] 1.0623: 1 +> [268] 1.06454: 1 +> [269] 1.067: 1 +> [270] 1.07-1.08: 1 +> [271] 1.07396: 1 +> [272] 1.075: 2 +> [273] 1.080: 1 +> [274] 1.083: 1 +> [275] 1.08337: 1 +> [276] 1.088: 1 +> [277] 1.09: 1 +> [278] 1.091: 1 +> [279] 1.09278: 1 +> [280] 1.094: 1 +> [281] 1.1: 2 +> [282] 1.100: 1 +> [283] 1.1006: 1 +> [284] 1.101: 1 +> [285] 1.102: 1 +> [286] 1.10258: 1 +> [287] 1.103: 1 +> [288] 1.106: 1 +> [289] 1.108: 1 +> [290] 1.109: 1 +> [291] 1.112: 1 +> [292] 1.11238: 1 +> [293] 1.114: 1 +> [294] 1.116: 2 +> [295] 1.117: 1 +> [296] 1.120: 1 +> [297] 1.1204: 1 +> [298] 1.12219: 1 +> [299] 1.1224: 1 +> [300] 1.125: 2 +> [301] 1.127: 1 +> [302] 1.1304: 1 +> [303] 1.13199: 1 +> [304] 1.1326: 1 +> [305] 1.134: 1 +> [306] 1.135: 1 +> [307] 1.1353: 1 +> [308] 1.1377: 1 +> [309] 1.141: 1 +> [310] 1.14179: 1 +> [311] 1.142: 1 +> [312] 1.1437: 1 +> [313] 1.1464: 1 +> [314] 1.149: 1 +> [315] 1.152: 2 +> [316] 1.15200: 1 +> [317] 1.155: 1 +> [318] 1.156: 1 +> [319] 1.157: 1 +> [320] 1.160: 1 +> [321] 1.162: 1 +> [322] 1.16222: 1 +> [323] 1.163: 1 +> [324] 1.165: 1 +> [325] 1.168: 1 +> [326] 1.171: 2 +> [327] 1.17243: 1 +> [328] 1.1734: 1 +> [329] 1.176: 1 +> [330] 1.179: 1 +> [331] 1.180: 1 +> [332] 1.182: 1 +> [333] 1.18265: 1 +> [334] 1.1846: 1 +> [335] 1.188: 1 +> [336] 1.189: 1 +> [337] 1.190: 2 +> [338] 1.1923: 1 +> [339] 1.19286: 1 +> [340] 1.195: 2 +> [341] 1.196: 1 +> [342] 1.198: 1 +> [343] 1.2: 3 +> [344] 1.200: 1 +> [345] 1.2004: 1 +> [346] 1.203: 1 +> [347] 1.20344: 1 +> [348] 1.207: 1 +> [349] 1.2085: 2 +> [350] 1.210: 1 +> [351] 1.2100: 2 +> [352] 1.211: 1 +> [353] 1.2112: 2 +> [354] 1.2125: 2 +> [355] 1.2137: 2 +> [356] 1.21402: 1 +> [357] 1.2142: 1 +> [358] 1.2150: 2 +> [359] 1.2165: 2 +> [360] 1.2174: 1 +> [361] 1.2177: 2 +> [362] 1.2185: 1 +> [363] 1.2190: 2 +> [364] 1.220: 1 +> [365] 1.2202: 2 +> [366] 1.2217: 2 +> [367] 1.2225: 1 +> [368] 1.2230: 2 +> [369] 1.2242: 2 +> [370] 1.2245: 1 +> [371] 1.22459: 1 +> [372] 1.2255: 2 +> [373] 1.2265: 1 +> [374] 1.2270: 2 +> [375] 1.2280: 2 +> [376] 1.229: 1 +> [377] 1.2295: 2 +> [378] 1.2307: 2 +> [379] 1.231: 1 +> [380] 1.2322: 2 +> [381] 1.2324: 1 +> [382] 1.2335: 2 +> [383] 1.235: 2 +> [384] 1.2350: 2 +> [385] 1.23517: 1 +> [386] 1.2362: 2 +> [387] 1.237: 2 +> [388] 1.2375: 2 +> [389] 1.2390: 2 +> [390] 1.2400: 2 +> [391] 1.241: 2 +> [392] 1.2412: 2 +> [393] 1.2427: 2 +> [394] 1.243: 1 +> [395] 1.2440: 2 +> [396] 1.2450: 1 +> [397] 1.2455: 2 +> [398] 1.24575: 1 +> [399] 1.2465: 2 +> [400] 1.2467: 1 +> [401] 1.2480: 2 +> [402] 1.2490: 2 +> [403] 1.25: 8 +> [404] 1.250: 1 +> [405] 1.2505: 2 +> [406] 1.2515: 1 +> [407] 1.252: 1 +> [408] 1.2520: 2 +> [409] 1.2532: 2 +> [410] 1.2545: 2 +> [411] 1.255: 1 +> [412] 1.2560: 2 +> [413] 1.25681: 1 +> [414] 1.2575: 2 +> [415] 1.258: 1 +> [416] 1.2585: 2 +> [417] 1.2600: 2 +> [418] 1.261: 1 +> [419] 1.2612: 2 +> [420] 1.262: 1 +> [421] 1.2625: 2 +> [422] 1.263: 1 +> [423] 1.2640: 2 +> [424] 1.26787: 1 +> [425] 1.274: 1 +> [426] 1.27893: 1 +> [427] 1.28: 1 +> [428] 1.280: 1 +> [429] 1.285: 1 +> [430] 1.287: 1 +> [431] 1.28999: 1 +> [432] 1.296: 1 +> [433] 1.297: 1 +> [434] 1.3: 4 +> [435] 1.30105: 1 +> [436] 1.308: 2 +> [437] 1.31261: 1 +> [438] 1.320: 2 +> [439] 1.32417: 1 +> [440] 1.332: 1 +> [441] 1.335: 1 +> [442] 1.33573: 1 +> [443] 1.345: 1 +> [444] 1.34729: 1 +> [445] 1.355: 2 +> [446] 1.357: 1 +> [447] 1.35885: 1 +> [448] 1.370: 1 +> [449] 1.37082: 1 +> [450] 1.38279: 1 +> [451] 1.383: 1 +> [452] 1.386: 1 +> [453] 1.390: 1 +> [454] 1.39476: 1 +> [455] 1.397: 1 +> [456] 1.4: 3 +> [457] 1.40673: 1 +> [458] 1.410: 1 +> [459] 1.41870: 1 +> [460] 1.424: 1 +> [461] 1.430: 1 +> [462] 1.43104: 1 +> [463] 1.436: 1 +> [464] 1.438: 1 +> [465] 1.44338: 1 +> [466] 1.453: 1 +> [467] 1.45573: 1 +> [468] 1.468: 1 +> [469] 1.46807: 1 +> [470] 1.470: 1 +> [471] 1.48041: 1 +> [472] 1.483: 1 +> [473] 1.49314: 1 +> [474] 1.497: 1 +> [475] 1.498: 1 +> [476] 1.5: 7 +> [477] 1.50: 2 +> [478] 1.50588: 1 +> [479] 1.514: 1 +> [480] 1.51861: 1 +> [481] 1.520: 1 +> [482] 1.530: 1 +> [483] 1.53135: 1 +> [484] 1.54: 3 +> [485] 1.540: 1 +> [486] 1.54408: 1 +> [487] 1.55728: 1 +> [488] 1.558: 1 +> [489] 1.563: 1 +> [490] 1.570: 1 +> [491] 1.57048: 1 +> [492] 1.57079: 1 +> [493] 1.580: 1 +> [494] 1.597: 1 +> [495] 1.5°: 1 +> [496] 1.6: 3 +> [497] 1.61: 1 +> [498] 1.615: 1 +> [499] 1.621: 1 +> [500] 1.630: 1 +> [501] 1.634: 1 +> [502] 1.652: 1 +> [503] 1.665: 1 +> [504] 1.671: 1 +> [505] 1.690: 1 +> [506] 1.691: 1 +> [507] 1.70: 1 +> [508] 1.711: 1 +> [509] 1.732: 1 +> [510] 1.736: 1 +> [511] 1.740: 1 +> [512] 1.745: 1 +> [513] 1.753: 1 +> [514] 1.774: 1 +> [515] 1.798: 1 +> [516] 1.800: 1 +> [517] 1.819: 1 +> [518] 1.821: 1 +> [519] 1.842: 1 +> [520] 1.853: 1 +> [521] 1.860: 1 +> [522] 1.9: 1 +> [523] 1.905: 1 +> [524] 1.93: 1 +> [525] 1.930: 1 +> [526] 1.980: 1 +> [527] 1.988: 1 +> [528] 1.a: 19 +> [529] 1.b: 19 +> [530] 1.c: 38 +> [531] 1.d: 19 +> [532] 1.e: 38 +> [533] 1.e.1: 95 +> [534] 1.e.2: 19 +> [535] 1.e.3: 19 +> [536] 1.e.4: 19 +> [537] 1.e.5: 19 +> [538] 1.e.6: 19 +> [539] 1.e.7: 57 +> [540] 1.e.8: 76 +> [541] 1.e.9: 57 +> [542] 1.f: 19 +> [543] 1.f.1: 19 +> [544] 1.f.2: 19 +> [545] 1.f.3: 85 +> [546] 1.f.4: 19 +> [547] 1.f.5: 19 +> [548] 1.f.6: 19 +> [549] 1/10: 1 +> [550] 1/2: 2 +> [551] 1/2°: 2 +> [552] 1/3: 1 +> [553] 1/8: 1 +> [554] 10: 131 +> [555] 10,000: 4 +> [556] 10--annette: 1 +> [557] 10-1: 1 +> [558] 10-12: 1 +> [559] 10-14: 2 +> [560] 10-15: 1 +> [561] 10-16: 1 +> [562] 10-20: 1 +> [563] 10-21: 2 +> [564] 10-50: 1 +> [565] 10-cc: 1 +> [566] 10.0: 3 +> [567] 10.0-12.25: 1 +> [568] 10.00: 1 +> [569] 10.06: 1 +> [570] 10.10: 1 +> [571] 10.177: 1 +> [572] 10.18: 1 +> [573] 10.2: 4 +> [574] 10.22: 1 +> [575] 10.3: 1 +> [576] 10.34: 1 +> [577] 10.37-12.37: 1 +> [578] 10.37-14.75: 1 +> [579] 10.4: 6 +> [580] 10.41: 1 +> [581] 10.5: 3 +> [582] 10.5-10.6: 2 +> [583] 10.5-10.8: 1 +> [584] 10.6: 4 +> [585] 10.7: 1 +> [586] 10.755: 1 +> [587] 10.76: 1 +> [588] 10.85: 1 +> [589] 10.9: 2 +> [590] 10.90: 1 +> [591] 10.962: 1 +> [592] 10.97: 1 +> [593] 100: 75 +> [594] 100,000: 1 +> [595] 100-1: 1 +> [596] 100-101: 1 +> [597] 100-107: 1 +> [598] 100-110: 2 +> [599] 100.0: 1 +> [600] 100.4: 1 +> [601] 100.8: 1 +> [602] 1000: 9 +> [603] 1000-1: 1 +> [604] 10000: 4 +> [605] 100°-120°: 1 +> [606] 100°c: 1 +> [607] 101: 8 +> [608] 101-103: 1 +> [609] 101.6: 1 +> [610] 101.7-104: 1 +> [611] 102: 5 +> [612] 102.2: 1 +> [613] 102.4: 1 +> [614] 1020.54: 1 +> [615] 10229.83: 1 +> [616] 102°-103°: 1 +> [617] 103: 7 +> [618] 103-104: 1 +> [619] 103.2: 1 +> [620] 1035.95: 1 +> [621] 10377.91: 1 +> [622] 104: 9 +> [623] 104-105: 1 +> [624] 104-110: 1 +> [625] 104.8: 1 +> [626] 104°-111°: 1 +> [627] 105: 13 +> [628] 105-106: 1 +> [629] 105-109: 1 +> [630] 105-110: 1 +> [631] 105-126: 1 +> [632] 105.6: 1 +> [633] 105.8: 1 +> [634] 105°: 1 +> [635] 106: 8 +> [636] 106-113: 1 +> [637] 106.4: 1 +> [638] 107: 11 +> [639] 107.2: 1 +> [640] 107.6: 1 +> [641] 108: 8 +> [642] 108,000: 2 +> [643] 108.8: 1 +> [644] 109: 1 +> [645] 109.4: 1 +> [646] 109.6: 1 +> [647] 10_a: 1 +> [648] 10°: 11 +> [649] 10°-12°: 1 +> [650] 11: 39 +> [651] 11-1/2: 1 +> [652] 11-15: 1 +> [653] 11-18: 2 +> [654] 11-20: 1 +> [655] 11-21: 1 +> [656] 11-28: 1 +> [657] 11.0: 3 +> [658] 11.0-12.45: 1 +> [659] 11.2: 2 +> [660] 11.42: 1 +> [661] 11.5: 2 +> [662] 11.62-12.9: 1 +> [663] 11.7: 2 +> [664] 11.84: 1 +> [665] 11.882: 1 +> [666] 11.9: 1 +> [667] 110: 7 +> [668] 110-117: 6 +> [669] 110-136: 1 +> [670] 110-140: 1 +> [671] 110-171: 1 +> [672] 110-gal: 1 +> [673] 110.4: 1 +> [674] 110°: 4 +> [675] 111: 7 +> [676] 111.2: 2 +> [677] 112: 5 +> [678] 11254.99: 1 +> [679] 113: 10 +> [680] 113-118: 1 +> [681] 114: 3 +> [682] 114.8: 1 +> [683] 11417.91: 1 +> [684] 115: 7 +> [685] 116: 8 +> [686] 116.6: 1 +> [687] 11691.23: 1 +> [688] 117: 7 +> [689] 117-125: 1 +> [690] 118: 6 +> [691] 118-120: 1 +> [692] 118.4: 1 +> [693] 118.9-120: 1 +> [694] 11860.45: 1 +> [695] 119: 5 +> [696] 119.4: 1 +> [697] 1192.61: 1 +> [698] 11th: 1 +> [699] 11°: 1 +> [700] 11°-12°: 1 +> [701] 12: 54 +> [702] 12-14: 1 +> [703] 12-16: 1 +> [704] 12-24: 1 +> [705] 12-30: 1 +> [706] 12-48: 1 +> [707] 12.0: 2 +> [708] 12.00: 1 +> [709] 12.198: 1 +> [710] 12.2: 1 +> [711] 12.2-12.8: 1 +> [712] 12.5: 2 +> [713] 12.64: 1 +> [714] 12.74: 1 +> [715] 12.75: 2 +> [716] 12.8: 2 +> [717] 12.90: 1 +> [718] 12.969: 1 +> [719] 120: 18 +> [720] 120-121: 1 +> [721] 120-129: 1 +> [722] 120-130: 1 +> [723] 120-140: 1 +> [724] 120.2: 1 +> [725] 120°: 4 +> [726] 121: 9 +> [727] 121-123: 1 +> [728] 121.3-124: 1 +> [729] 1210.61: 1 +> [730] 122: 4 +> [731] 1222: 1 +> [732] 1228.82: 1 +> [733] 1229: 1 +> [734] 123: 6 +> [735] 123-125: 1 +> [736] 123.8: 1 +> [737] 123°-128°: 1 +> [738] 124: 3 +> [739] 1245.41: 1 +> [740] 125: 8 +> [741] 125-126: 1 +> [742] 125-140: 1 +> [743] 125.6: 1 +> [744] 1255: 1 +> [745] 1257: 1 +> [746] 126: 6 +> [747] 126-134: 1 +> [748] 126.5: 1 +> [749] 1260: 4 +> [750] 1266: 1 +> [751] 127: 4 +> [752] 127-140: 1 +> [753] 127-164: 1 +> [754] 127.4: 1 +> [755] 1276.45: 1 +> [756] 128: 11 +> [757] 128-130: 1 +> [758] 128°: 1 +> [759] 128°-135°: 1 +> [760] 129: 8 +> [761] 129.2: 1 +> [762] 12mo: 9 +> [763] 12°: 3 +> [764] 13: 37 +> [765] 13--v: 1 +> [766] 13-18: 1 +> [767] 13-20: 1 +> [768] 13-22: 1 +> [769] 13-45: 1 +> [770] 13.0: 4 +> [771] 13.12-13.25: 2 +> [772] 13.12-13.5: 1 +> [773] 13.2-13.5: 1 +> [774] 13.25: 1 +> [775] 13.3: 1 +> [776] 13.5: 4 +> [777] 13.55: 1 +> [778] 13.6: 2 +> [779] 13.80: 1 +> [780] 13.9: 1 +> [781] 130: 17 +> [782] 130-132: 1 +> [783] 130-140: 1 +> [784] 130°: 5 +> [785] 131: 6 +> [786] 13130.82: 1 +> [787] 13152.64: 1 +> [788] 1316.12: 1 +> [789] 132: 4 +> [790] 132-133: 1 +> [791] 132.5-147: 1 +> [792] 132.8: 1 +> [793] 132°: 1 +> [794] 133: 8 +> [795] 133-134: 1 +> [796] 13320.90: 1 +> [797] 13343.02: 1 +> [798] 134: 6 +> [799] 134-137: 1 +> [800] 134-141: 1 +> [801] 134.6: 1 +> [802] 135: 8 +> [803] 135-6: 1 +> [804] 135°: 1 +> [805] 136: 7 +> [806] 136.4: 1 +> [807] 137: 6 +> [808] 137-138: 1 +> [809] 138: 5 +> [810] 138-139: 1 +> [811] 138.2: 1 +> [812] 139: 5 +> [813] 139-142: 1 +> [814] 1399: 1 +> [815] 1399-8.txt: 1 +> [816] 1399-8.zip: 1 +> [817] 13th: 3 +> [818] 13°: 1 +> [819] 14: 40 +> [820] 14,—‘for: 1 +> [821] 14--vii: 1 +> [822] 14-16: 1 +> [823] 14-18: 1 +> [824] 14-21: 1 +> [825] 14-23: 2 +> [826] 14-24: 1 +> [827] 14.0: 2 +> [828] 14.085: 1 +> [829] 14.1: 1 +> [830] 14.278: 1 +> [831] 14.37: 1 +> [832] 14.4: 2 +> [833] 14.42: 1 +> [834] 14.5: 2 +> [835] 14.80: 1 +> [836] 140: 15 +> [837] 140-170: 1 +> [838] 140.25: 1 +> [839] 140°: 3 +> [840] 140°-145°: 1 +> [841] 140°-160°: 1 +> [842] 141: 3 +> [843] 141.8: 1 +> [844] 142: 4 +> [845] 143: 4 +> [846] 143-144: 1 +> [847] 143.6: 1 +> [848] 144: 10 +> [849] 144,000: 1 +> [850] 144-147: 2 +> [851] 1449.61: 1 +> [852] 145: 9 +> [853] 145.4: 1 +> [854] 1455.40: 1 +> [855] 146: 4 +> [856] 1461.40: 1 +> [857] 14614.04: 1 +> [858] 147: 5 +> [859] 147-148: 1 +> [860] 147.2: 1 +> [861] 148: 5 +> [862] 148-149: 1 +> [863] 1482.56: 1 +> [864] 14825.58: 1 +> [865] 149: 5 +> [866] 149-150: 1 +> [867] 14°: 2 +> [868] 15: 66 +> [869] 15,000: 2 +> [870] 15--and: 1 +> [871] 15-17: 2 +> [872] 15-18: 3 +> [873] 15-19: 2 +> [874] 15-20: 3 +> [875] 15-21: 1 +> [876] 15-22: 1 +> [877] 15-24: 2 +> [878] 15-40: 1 +> [879] 15.0: 2 +> [880] 15.13: 1 +> [881] 15.2: 3 +> [882] 15.25-16: 1 +> [883] 15.43: 1 +> [884] 15.48: 1 +> [885] 15.5: 2 +> [886] 15.5°: 1 +> [887] 15.70: 1 +> [888] 15.740: 1 +> [889] 15.8: 1 +> [890] 15.91: 1 +> [891] 15/4: 1 +> [892] 150: 23 +> [893] 150,000: 2 +> [894] 150-151: 1 +> [895] 150-165: 1 +> [896] 150-170: 1 +> [897] 150-cc: 1 +> [898] 150.8: 1 +> [899] 1500: 19 +> [900] 15006.66: 1 +> [901] 1506: 1 +> [902] 1507: 1 +> [903] 150°: 9 +> [904] 151: 4 +> [905] 151-154: 1 +> [906] 1513: 1 +> [907] 152: 1 +> [908] 152.5: 1 +> [909] 152.6: 1 +> [910] 15223.88: 1 +> [911] 1523: 1 +> [912] 153: 6 +> [913] 1530.81: 1 +> [914] 154: 3 +> [915] 154-180: 1 +> [916] 154.4: 1 +> [917] 155: 5 +> [918] 155-156: 1 +> [919] 1553.92: 1 +> [920] 1555: 3 +> [921] 1555--second: 1 +> [922] 1558: 3 +> [923] 155°: 1 +> [924] 156: 4 +> [925] 156-159: 1 +> [926] 156.2: 1 +> [927] 157: 1 +> [928] 157,000,000: 1 +> [929] 1578: 1 +> [930] 158: 3 +> [931] 159: 3 +> [932] 159-160: 1 +> [933] 159.8: 1 +> [934] 1590.14: 1 +> [935] 1595.57: 1 +> [936] 15y: 1 +> [937] 15°: 7 +> [938] 15°-22°: 1 +> [939] 15°c: 1 +> [940] 16: 41 +> [941] 16,000: 1 +> [942] 16-18: 1 +> [943] 16-19: 1 +> [944] 16-20: 1 +> [945] 16-22--in: 1 +> [946] 16-23: 1 +> [947] 16-27: 1 +> [948] 16-33: 1 +> [949] 16-42: 1 +> [950] 16-oz: 2 +> [951] 16.0: 2 +> [952] 16.2: 1 +> [953] 16.39: 1 +> [954] 16.5: 3 +> [955] 16.5-16.9: 1 +> [956] 16.50: 2 +> [957] 16.670: 1 +> [958] 16.77: 1 +> [959] 16.8: 1 +> [960] 160: 6 +> [961] 160,000: 1 +> [962] 160-161: 1 +> [963] 160°: 14 +> [964] 161: 2 +> [965] 161-162: 1 +> [966] 161.6: 1 +> [967] 1610: 1 +> [968] 1614.15: 1 +> [969] 162: 4 +> [970] 162,000,000: 1 +> [971] 162-164: 1 +> [972] 162.3: 1 +> [973] 163: 2 +> [974] 163.4: 1 +> [975] 1637: 1 +> [976] 1638.43: 1 +> [977] 164: 3 +> [978] 165: 8 +> [979] 165-166: 1 +> [980] 165-195: 1 +> [981] 165-196: 2 +> [982] 165.2: 1 +> [983] 165.9: 1 +> [984] 166: 6 +> [985] 166-167: 1 +> [986] 166-169: 1 +> [987] 167: 3 +> [988] 168: 5 +> [989] 168.8: 1 +> [990] 16882.49: 1 +> [991] 1689-1695: 1 +> [992] 1689.35: 1 +> [993] 169: 2 +> [994] 169-1/2: 1 +> [995] 169-183: 1 +> [996] 16°: 7 +> [997] 16°-22°: 1 +> [998] 17: 40 +> [999] 17,015: 1 +> [1000] 17-20: 2 +> [1001] 17-22: 1 +> [1002] 17-25: 1 +> [1003] 17.0: 2 +> [1004] 17.3: 1 +> [1005] 17.5: 2 +> [1006] 17.540: 1 +> [1007] 17.5°: 1 +> [1008] 17.6: 2 +> [1009] 17.60: 1 +> [1010] 17.67: 1 +> [1011] 17.9: 1 +> [1012] 170: 7 +> [1013] 170-172: 1 +> [1014] 170-178: 1 +> [1015] 170.0: 1 +> [1016] 170.6: 1 +> [1017] 171: 1 +> [1018] 1710: 1 +> [1019] 17126.87: 1 +> [1020] 172: 4 +> [1021] 172-173: 1 +> [1022] 172.4: 1 +> [1023] 1728: 1 +> [1024] 173: 4 +> [1025] 174: 5 +> [1026] 174-174.6: 1 +> [1027] 174-175: 1 +> [1028] 174.2: 1 +> [1029] 175: 8 +> [1030] 175-180: 1 +> [1031] 175-190: 1 +> [1032] 1750: 1 +> [1033] 1750-1780: 1 +> [1034] 176: 5 +> [1035] 176-177: 1 +> [1036] 177-181: 2 +> [1037] 177.8: 1 +> [1038] 1772. [1039] 178: 2 +> [1040] 178-186: 1 +> [1041] 1789: 4 +> [1042] 179.6: 1 +> [1043] 1797: 1 +> [1044] 17th: 5 +> [1045] 17°: 4 +> [1046] 18: 63 +> [1047] 18,038: 1 +> [1048] 18--ii: 1 +> [1049] 18-19: 1 +> [1050] 18-20: 1 +> [1051] 18-21: 1 +> [1052] 18-22: 1 +> [1053] 18-23: 1 +> [1054] 18-29: 1 +> [1055] 18-35: 1 +> [1056] 18.0: 2 +> [1057] 18.4: 1 +> [1058] 18.5: 3 +> [1059] 18.58: 1 +> [1060] 18.60: 1 +> [1061] 180: 3 +> [1062] 180-200: 1 +> [1063] 1800: 1 +> [1064] 1801: 1 +> [1065] 1805: 23 +> [1066] 1805-6: 1 +> [1067] 1806: 10 +> [1068] 1807: 13 +> [1069] 1808: 5 +> [1070] 1809: 15 +> [1071] 1809--precede: 1 +> [1072] 180°: 2 +> [1073] 180°--200°: 1 +> [1074] 181: 2 +> [1075] 181-182: 3 +> [1076] 181.4: 1 +> [1077] 181.6: 1 +> [1078] 1810: 3 +> [1079] 1811: 7 +> [1080] 1812: 57 +> [1081] 1812--the: 2 +> [1082] 1812--though: 1 +> [1083] 1813: 11 +> [1084] 1813--salute: 1 +> [1085] 1815: 1 +> [1086] 182: 2 +> [1087] 182-183: 1 +> [1088] 182-184: 1 +> [1089] 182-187: 1 +> [1090] 1820: 7 +> [1091] 1825: 1 +> [1092] 1826 [1093] 1827: 1 +> [1094] 183: 4 +> [1095] 183.2: 1 +> [1096] 184: 2 +> [1097] 184-185: 1 +> [1098] 184-187: 1 +> [1099] 184-196: 1 +> [1100] 1848: 1 +> [1101] 1849: 1 +> [1102] 185: 9 +> [1103] 185-200: 1 +> [1104] 185.5-286: 1 +> [1105] 185.8: 1 +> [1106] 1854: 1 +> [1107] 1855: 1 +> [1108] 1858: 1 +> [1109] 1859: 1 +> [1110] 186: 9 +> [1111] 186.8: 1 +> [1112] 1860: 2 +> [1113] 1860.70: 1 +> [1114] 1861: 1 +> [1115] 1863: 1 +> [1116] 1864: 2 +> [1117] 1866: 3 +> [1118] 1868: 1 +> [1119] 1868.12: 1 +> [1120] 1869: 1 +> [1121] 187: 6 +> [1122] 187-188: 2 +> [1123] 1870: 1 +> [1124] 1871: 1 +> [1125] 1873: 2 +> [1126] 1874: 1 +> [1127] 1875.83: 1 +> [1128] 18758.32: 1 +> [1129] 1876: 3 +> [1130] 188: 4 +> [1131] 188-189: 2 +> [1132] 188-193: 2 +> [1133] 188.6: 1 +> [1134] 1880: 1 +> [1135] 1884: 1 +> [1136] 189: 3 +> [1137] 189-193: 1 +> [1138] 189.3-192: 1 +> [1139] 1891: 3 +> [1140] 1894: 1 +> [1141] 1895: 2 +> [1142] 1897: 3 +> [1143] 1898: 1 +> [1144] 1899: 1 +> [1145] 18th: 1 +> [1146] 18°: 5 +> [1147] 19: 41 +> [1148] 19-21: 2 +> [1149] 19-22: 1 +> [1150] 19-23: 2 +> [1151] 19-30: 1 +> [1152] 19-34: 1 +> [1153] 19.0: 2 +> [1154] 19.2: 1 +> [1155] 19.4: 1 +> [1156] 19.5: 2 +> [1157] 19.50: 1 +> [1158] 19.58: 1 +> [1159] 19.6: 1 +> [1160] 19.803: 1 +> [1161] 190: 6 +> [1162] 190-193: 2 +> [1163] 190-195: 1 +> [1164] 190-196: 1 +> [1165] 190-197: 1 +> [1166] 190.4: 1 +> [1167] 190.5-195.4: 1 +> [1168] 190.6-192.9: 1 +> [1169] 190.9: 1 +> [1170] 1900: 3 +> [1171] 1902: 1 +> [1172] 1902.99: 1 +> [1173] 19029.85: 1 +> [1174] 1903: 2 +> [1175] 1903-1909: 1 +> [1176] 1904: 3 +> [1177] 1906: 10 +> [1178] 1907: 3 +> [1179] 1908: 1 +> [1180] 1909: 5 +> [1181] 191: 6 +> [1182] 191-195: 1 +> [1183] 191-196: 1 +> [1184] 191.3: 1 +> [1185] 1910: 4 +> [1186] 1911: 1 +> [1187] 1912: 4 +> [1188] 1913: 6 +> [1189] 1914: 3 +> [1190] 1914.68: 1 +> [1191] 1915: 3 +> [1192] 1916: 1 +> [1193] 1917: 2 +> [1194] 1918: 4 +> [1195] 1919: 6 +> [1196] 192: 1 +> [1197] 192.2: 1 +> [1198] 192.2-193.1: 1 +> [1199] 192.2-193.5: 1 +> [1200] 1920: 4 +> [1201] 1921: 4 +> [1202] 1922: 3 +> [1203] 193: 2 +> [1204] 193-1/2: 1 +> [1205] 193-194: 1 +> [1206] 193-196: 1 +> [1207] 194: 2 +> [1208] 194-203.7: 1 +> [1209] 194.3: 1 +> [1210] 194.6-195.1: 1 +> [1211] 1940.53: 1 +> [1212] 195: 4 +> [1213] 195-198: 1 +> [1214] 195.3-196.6: 1 +> [1215] 195.8: 1 +> [1216] 196: 1 +> [1217] 196.3-202: 1 +> [1218] 197: 2 +> [1219] 197.3: 1 +> [1220] 197.5: 1 +> [1221] 197.6: 1 +> [1222] 1974.18: 1 +> [1223] 198: 1 +> [1224] 198-219: 2 +> [1225] 198.9: 1 +> [1226] 1987.68: 1 +> [1227] 199.4: 1 +> [1228] 199.5-200: 1 +> [1229] 199.7: 1 +> [1230] 1996: 1 +> [1231] 1997: 3 +> [1232] 19th: 1 +> [1233] 19°: 2 +> [1234] 1:1: 1 +> [1235] 1 [1236] 1 [1237] 1st: 88 +> [1238] 1st-3rd: 2 +> [1239] 1°: 2 +> [1240] 1–9: 1 +> [1241] 2: 203 +> [1242] 2)--he: 1 +> [1243] 2,000,000: 1 +> [1244] 2,600: 1 +> [1245] 2--xiv: 1 +> [1246] 2-1/2: 1 +> [1247] 2-10: 1 +> [1248] 2-11: 2 +> [1249] 2-13: 1 +> [1250] 2-20: 1 +> [1251] 2-25: 1 +> [1252] 2-27: 1 +> [1253] 2-3: 2 +> [1254] 2-4: 2 +> [1255] 2-9: 1 +> [1256] 2.0: 2 +> [1257] 2.00: 1 +> [1258] 2.04: 1 +> [1259] 2.050: 1 +> [1260] 2.079: 1 +> [1261] 2.130: 1 +> [1262] 2.179: 1 +> [1263] 2.2: 1 +> [1264] 2.200: 1 +> [1265] 2.205: 1 +> [1266] 2.270: 1 +> [1267] 2.283: 1 +> [1268] 2.370: 1 +> [1269] 2.392: 1 +> [1270] 2.4: 2 +> [1271] 2.459: 1 +> [1272] 2.47: 1 +> [1273] 2.5: 4 +> [1274] 2.500: 1 +> [1275] 2.540: 1 +> [1276] 2.551: 1 +> [1277] 2.58: 1 +> [1278] 2.59: 1 +> [1279] 2.6: 1 +> [1280] 2.60: 1 +> [1281] 2.618: 1 +> [1282] 2.646: 1 +> [1283] 2.679: 1 +> [1284] 2.71: 1 +> [1285] 2.757: 1 +> [1286] 2.770: 1 +> [1287] 2.8: 1 +> [1288] 2.838: 1 +> [1289] 2.869: 1 +> [1290] 2.9: 1 +> [1291] 2.907: 1 +> [1292] 2.92: 1 +> [1293] 2.985: 1 +> [1294] 20: 109 +> [1295] 20,000: 1 +> [1296] 20-23: 1 +> [1297] 20-25: 1 +> [1298] 20-25°: 1 +> [1299] 20-26: 1 +> [1300] 20-30: 1 +> [1301] 20-50: 1 +> [1302] 20.0: 2 +> [1303] 20.32: 3 +> [1304] 20.410: 1 +> [1305] 20.5: 2 +> [1306] 20.50: 1 +> [1307] 20.59: 1 +> [1308] 20.8: 2 +> [1309] 200: 22 +> [1310] 200-210: 1 +> [1311] 200-215: 1 +> [1312] 200-cc: 1 +> [1313] 200.4: 1 +> [1314] 2000: 5 +> [1315] 2001: 21 +> [1316] 2005: 1 +> [1317] 2006: 2 +> [1318] 2008: 2 +> [1319] 2009: 6 +> [1320] 2009 [1321] 201: 1 +> [1322] 201.2: 1 +> [1323] 201.5: 1 +> [1324] 2010: 1 +> [1325] 2011: 3 +> [1326] 2012: 7 +> [1327] 2017.69: 1 +> [1328] 202: 1 +> [1329] 203: 1 +> [1330] 2030: 2 +> [1331] 204: 2 +> [1332] 204.8: 1 +> [1333] 2041.01: 1 +> [1334] 2048.04: 1 +> [1335] 205: 1 +> [1336] 205-1/2: 1 +> [1337] 205.7-211.7: 1 +> [1338] 206: 2 +> [1339] 206.6: 1 +> [1340] 207: 1 +> [1341] 2071.90: 1 +> [1342] 208: 3 +> [1343] 208.4: 1 +> [1344] 209: 2 +> [1345] 209.44: 1 +> [1346] 20th: 3 +> [1347] 20°: 14 +> [1348] 21: 33 +> [1349] 21-22: 1 +> [1350] 21-23: 2 +> [1351] 21-25: 1 +> [1352] 21-27: 1 +> [1353] 21.0: 2 +> [1354] 21.2: 1 +> [1355] 21.40: 1 +> [1356] 21.42: 1 +> [1357] 21.6: 1 +> [1358] 210: 3 +> [1359] 210.2: 1 +> [1360] 210.3-215: 1 +> [1361] 210°: 1 +> [1362] 211: 4 +> [1363] 212: 3 +> [1364] 213.8: 1 +> [1365] 214: 2 +> [1366] 215: 4 +> [1367] 215.6: 1 +> [1368] 216: 1 +> [1369] 216-218.8: 1 +> [1370] 217: 4 +> [1371] 217.4: 1 +> [1372] 2174.42: 1 +> [1373] 218: 2 +> [1374] 219: 4 +> [1375] 219-237: 1 +> [1376] 219.1: 1 +> [1377] 219.2: 1 +> [1378] 21st: 2 +> [1379] 21°: 2 +> [1380] 22: 39 +> [1381] 22-1/2: 1 +> [1382] 22-23: 1 +> [1383] 22-30: 2 +> [1384] 22.2: 1 +> [1385] 22.4: 1 +> [1386] 22.460: 1 +> [1387] 22.50: 1 +> [1388] 22.64: 1 +> [1389] 220: 2 +> [1390] 220-222.4: 1 +> [1391] 220-225: 1 +> [1392] 221: 3 +> [1393] 221.5-227: 1 +> [1394] 222: 1 +> [1395] 222.8: 1 +> [1396] 223: 2 +> [1397] 2233.79: 1 +> [1398] 224: 1 +> [1399] 224.6: 1 +> [1400] 225: 3 +> [1401] 226: 1 +> [1402] 226.4: 1 +> [1403] 227: 1 +> [1404] 228: 6 +> [1405] 228.2: 1 +> [1406] 229: 2 +> [1407] 22nd: 4 +> [1408] 22°: 3 +> [1409] 23: 30 +> [1410] 23-1/4: 1 +> [1411] 23-24: 1 +> [1412] 23-25: 1 +> [1413] 23-26: 1 +> [1414] 23-33: 1 +> [1415] 23.2: 1 +> [1416] 23.3: 1 +> [1417] 23.30: 1 +> [1418] 23.45: 1 +> [1419] 23.67: 1 +> [1420] 23.83: 1 +> [1421] 230: 5 +> [1422] 231: 4 +> [1423] 231.8: 1 +> [1424] 232: 1 +> [1425] 233: 2 +> [1426] 233.6: 1 +> [1427] 234: 1 +> [1428] 235: 3 +> [1429] 235.4: 1 +> [1430] 236: 4 +> [1431] 236-237: 1 +> [1432] 237: 2 +> [1433] 237.2: 1 +> [1434] 238: 1 +> [1435] 2385.21: 1 +> [1436] 239: 2 +> [1437] 23d: 1 +> [1438] 23rd: 1 +> [1439] 23°: 1 +> [1440] 24: 43 +> [1441] 24-1/2: 1 +> [1442] 24-25: 1 +> [1443] 24-27: 3 +> [1444] 24-28: 4 +> [1445] 24-29: 1 +> [1446] 24-30: 1 +> [1447] 24-31: 1 +> [1448] 24-48: 1 +> [1449] 24.20: 1 +> [1450] 24.5: 1 +> [1451] 24.8: 3 +> [1452] 24.81: 1 +> [1453] 240: 3 +> [1454] 240.8: 1 +> [1455] 242.6: 1 +> [1456] 2421.23: 1 +> [1457] 2425.67: 1 +> [1458] 243: 2 +> [1459] 244: 1 +> [1460] 244.4: 1 +> [1461] 2457.65: 1 +> [1462] 246: 1 +> [1463] 246.1: 1 +> [1464] 246.2: 1 +> [1465] 247: 1 +> [1466] 248: 2 +> [1467] 249.8: 1 +> [1468] 2490.83: 1 +> [1469] 2497: 1 +> [1470] 24th: 4 +> [1471] 25: 56 +> [1472] 25-10: 2 +> [1473] 25-20: 1 +> [1474] 25-26: 1 +> [1475] 25-27: 3 +> [1476] 25-28: 1 +> [1477] 25-32: 1 +> [1478] 25-37: 1 +> [1479] 25-cc: 1 +> [1480] 25-g: 1 +> [1481] 25.0: 1 +> [1482] 25.10: 1 +> [1483] 25.6: 1 +> [1484] 25.650: 1 +> [1485] 25.8: 1 +> [1486] 25.80: 1 +> [1487] 25.9: 1 +> [1488] 25.938: 1 +> [1489] 250: 8 +> [1490] 250-253: 1 +> [1491] 250.5: 1 +> [1492] 2500: 1 +> [1493] 251: 2 +> [1494] 252: 2 +> [1495] 252.6: 1 +> [1496] 253.4: 1 +> [1497] 253.7: 1 +> [1498] 2534.02: 1 +> [1499] 255: 3 +> [1500] 255.2: 1 +> [1501] 2551.35: 1 +> [1502] 2552.90: 1 +> [1503] 2554: 1 +> [1504] 2554-8.txt: 1 +> [1505] 2554-8.zip: 1 +> [1506] 256: 6 +> [1507] 257: 1 +> [1508] 258: 1 +> [1509] 258.8: 1 +> [1510] 2589.87: 1 +> [1511] 25th: 3 +> [1512] 25°: 4 +> [1513] 25°-35°: 1 +> [1514] 26: 34 +> [1515] 26-28: 1 +> [1516] 26-29: 1 +> [1517] 26-35: 1 +> [1518] 26.0: 2 +> [1519] 26.10: 1 +> [1520] 26.2: 2 +> [1521] 26.3: 2 +> [1522] 26.4: 3 +> [1523] 26.5: 2 +> [1524] 26.6: 1 +> [1525] 26.7: 2 +> [1526] 26.8: 2 +> [1527] 26.83: 1 +> [1528] 26.9: 2 +> [1529] 260: 1 +> [1530] 260.6: 1 +> [1531] 2600: 1 +> [1532] 2600.txt: 1 +> [1533] 2600.zip: 1 +> [1534] 262.4: 1 +> [1535] 2632.24: 1 +> [1536] 2638: 1 +> [1537] 2638.txt: 1 +> [1538] 2638.zip: 1 +> [1539] 264: 1 +> [1540] 264.2: 1 +> [1541] 266: 2 +> [1542] 267: 2 +> [1543] 267.8: 1 +> [1544] 268: 1 +> [1545] 268-270: 1 +> [1546] 268.5: 1 +> [1547] 269.6: 1 +> [1548] 26°: 5 +> [1549] 27: 29 +> [1550] 27-31: 2 +> [1551] 27-33: 2 +> [1552] 27.0: 2 +> [1553] 27.00: 1 +> [1554] 27.1: 1 +> [1555] 27.2: 3 +> [1556] 27.3: 2 +> [1557] 27.4: 2 +> [1558] 27.6: 2 +> [1559] 27.7: 2 +> [1560] 27.8: 2 +> [1561] 27.80: 1 +> [1562] 270: 2 +> [1563] 271.4: 1 +> [1564] 273.2: 1 +> [1565] 275: 1 +> [1566] 276.8: 1 +> [1567] 278: 1 +> [1568] 278.6: 1 +> [1569] 2782.75: 1 +> [1570] 279: 1 +> [1571] 2791.04: 1 +> [1572] 27916: 1 +> [1573] 27916-8.txt: 1 +> [1574] 27916-8.zip: 1 +> [1575] 27th: 1 +> [1576] 27°: 5 +> [1577] 27°-32°: 1 +> [1578] 28: 47 +> [1579] 28-29: 1 +> [1580] 28-33: 2 +> [1581] 28-34: 1 +> [1582] 28.0: 2 +> [1583] 28.00: 1 +> [1584] 28.2: 2 +> [1585] 28.3: 2 +> [1586] 28.35: 1 +> [1587] 28.4: 4 +> [1588] 28.6: 2 +> [1589] 28.7: 2 +> [1590] 28.78: 1 +> [1591] 28.8: 3 +> [1592] 28.83: 1 +> [1593] 28.9: 2 +> [1594] 28.90: 1 +> [1595] 280: 2 +> [1596] 280.4: 1 +> [1597] 280.5: 1 +> [1598] 281: 2 +> [1599] 282: 4 +> [1600] 282.2: 1 +> [1601] 2824.77: 1 +> [1602] 284: 2 +> [1603] 2867.26: 1 +> [1604] 2872.02: 1 +> [1605] 288: 1 +> [1606] 2899.22: 1 +> [1607] 28th: 1 +> [1608] 28°: 3 +> [1609] 28°-30°: 1 +> [1610] 29: 35 +> [1611] 29-30: 1 +> [1612] 29-32: 1 +> [1613] 29-46: 1 +> [1614] 29.0: 2 +> [1615] 29.2: 2 +> [1616] 29.3: 2 +> [1617] 29.5: 2 +> [1618] 29.57: 1 +> [1619] 29.5°: 1 +> [1620] 29.6: 4 +> [1621] 29.7: 2 +> [1622] 29.8: 2 +> [1623] 29.80: 1 +> [1624] 29.9: 2 +> [1625] 29.93: 1 +> [1626] 291: 1 +> [1627] 2910.80: 1 +> [1628] 292: 1 +> [1629] 2922.81: 1 +> [1630] 293-307: 1 +> [1631] 294: 1 +> [1632] 295: 2 +> [1633] 2965.12: 1 +> [1634] 297: 2 +> [1635] 298: 2 +> [1636] 29th: 1 +> [1637] 29°: 1 +> [1638] 2_s: 1 +> [1639] 2nacl: 1 +> [1640] 2nd: 68 +> [1641] 2°: 3 +> [1642] 3: 175 +> [1643] 3,000: 1 +> [1644] 3,700: 1 +> [1645] 3-1/2: 1 +> [1646] 3-10: 1 +> [1647] 3-11: 4 +> [1648] 3-14: 1 +> [1649] 3-15: 1 +> [1650] 3-4: 1 +> [1651] 3-5: 4 +> [1652] 3-9: 1 +> [1653] 3-inch: 1 +> [1654] 3-lb: 2 +> [1655] 3.0: 2 +> [1656] 3.00: 3 +> [1657] 3.077: 1 +> [1658] 3.085: 1 +> [1659] 3.1416: 2 +> [1660] 3.2: 3 +> [1661] 3.214: 1 +> [1662] 3.25: 1 +> [1663] 3.258: 1 +> [1664] 3.28: 1 +> [1665] 3.35: 1 +> [1666] 3.354: 1 +> [1667] 3.5: 2 +> [1668] 3.50: 3 +> [1669] 3.508: 1 +> [1670] 3.541: 1 +> [1671] 3.661: 1 +> [1672] 3.663: 1 +> [1673] 3.7: 1 +> [1674] 3.70: 1 +> [1675] 3.7282: 2 +> [1676] 3.785: 1 +> [1677] 3.8: 1 +> [1678] 3.829: 1 +> [1679] 3.876: 1 +> [1680] 3.89: 1 +> [1681] 3/5: 1 +> [1682] 30: 75 +> [1683] 30,000: 1 +> [1684] 30--vii: 1 +> [1685] 30--viii: 1 +> [1686] 30-32: 1 +> [1687] 30-36: 1 +> [1688] 30-40: 2 +> [1689] 30-60: 1 +> [1690] 30.0: 2 +> [1691] 30.1: 2 +> [1692] 30.2: 3 +> [1693] 30.2°: 1 +> [1694] 30.3: 2 +> [1695] 30.4: 3 +> [1696] 30.46: 1 +> [1697] 30.6: 2 +> [1698] 30.690: 1 +> [1699] 30.7: 2 +> [1700] 30.70: 1 +> [1701] 30.8: 2 +> [1702] 30.9: 2 +> [1703] 300: 8 +> [1704] 3000: 4 +> [1705] 302: 2 +> [1706] 3061.61: 1 +> [1707] 309: 2 +> [1708] 30th: 2 +> [1709] 30°: 6 +> [1710] 31: 26 +> [1711] 31--viii: 1 +> [1712] 31--xviii: 1 +> [1713] 31-1/2: 1 +> [1714] 31-33: 2 +> [1715] 31-34: 1 +> [1716] 31-35: 2 +> [1717] 31.0: 3 +> [1718] 31.10: 1 +> [1719] 31.2: 3 +> [1720] 31.22: 1 +> [1721] 31.3: 1 +> [1722] 31.80: 1 +> [1723] 3107.84: 1 +> [1724] 3113.54: 1 +> [1725] 318: 1 +> [1726] 3180.28: 1 +> [1727] 3183: 1 +> [1728] 3183.txt: 1 +> [1729] 3183.zip: 1 +> [1730] 31831: 1 +> [1731] 319.11: 1 +> [1732] 3191.13: 1 +> [1733] 31°: 1 +> [1734] 32: 39 +> [1735] 32-34: 1 +> [1736] 32-36: 1 +> [1737] 32-41: 1 +> [1738] 32.2: 1 +> [1739] 32.47: 1 +> [1740] 32.5°: 1 +> [1741] 32.70: 1 +> [1742] 32.8: 2 +> [1743] 3228.30: 1 +> [1744] 323: 1 +> [1745] 324: 1 +> [1746] 325: 4 +> [1747] 326.2: 1 +> [1748] 3276.86: 1 +> [1749] 3290.80: 1 +> [1750] 33: 20 +> [1751] 33,000: 2 +> [1752] 33-1/3: 4 +> [1753] 33-34: 1 +> [1754] 33.4: 1 +> [1755] 33.6: 1 +> [1756] 33.69: 1 +> [1757] 33.70: 1 +> [1758] 33.8: 1 +> [1759] 330: 1 +> [1760] 332: 1 +> [1761] 334: 1 +> [1762] 3367: 1 +> [1763] 3378.69: 1 +> [1764] 338: 2 +> [1765] 3395.93: 1 +> [1766] 33°: 3 +> [1767] 34: 16 +> [1768] 34--ix: 1 +> [1769] 34.4: 1 +> [1770] 34.7: 1 +> [1771] 34.90: 1 +> [1772] 34.96: 1 +> [1773] 340: 2 +> [1774] 34114: 1 +> [1775] 34114-8.txt: 1 +> [1776] 34114-8.zip: 1 +> [1777] 346: 1 +> [1778] 34°: 2 +> [1779] 35: 22 +> [1780] 35-38: 2 +> [1781] 35-45: 1 +> [1782] 35-46: 1 +> [1783] 35.2: 1 +> [1784] 35.3: 1 +> [1785] 35.6: 1 +> [1786] 35.710: 1 +> [1787] 35.90: 1 +> [1788] 350: 1 +> [1789] 351: 1 +> [1790] 354: 1 +> [1791] 356: 1 +> [1792] 357: 1 +> [1793] 3571.88: 1 +> [1794] 3577.82: 1 +> [1795] 35°: 3 +> [1796] 36: 27 +> [1797] 36--xvi: 1 +> [1798] 36--xviii: 1 +> [1799] 36-38: 3 +> [1800] 36-42: 1 +> [1801] 36-43: 2 +> [1802] 36-47: 1 +> [1803] 36-50: 1 +> [1804] 36.0: 1 +> [1805] 36.25: 1 +> [1806] 36.43: 1 +> [1807] 36.8: 1 +> [1808] 36.90: 1 +> [1809] 360: 5 +> [1810] 36034: 1 +> [1811] 36034-8.txt: 1 +> [1812] 36034-8.zip: 1 +> [1813] 3624.03: 1 +> [1814] 3625.82: 1 +> [1815] 3631.84: 1 +> [1816] 36°: 12 +> [1817] 36°-37°: 2 +> [1818] 37: 19 +> [1819] 37-1/2: 1 +> [1820] 37-1/2°: 4 +> [1821] 37-12°: 1 +> [1822] 37-41: 1 +> [1823] 37.4: 2 +> [1824] 37.53: 1 +> [1825] 37.582: 1 +> [1826] 37.6: 1 +> [1827] 37.80: 1 +> [1828] 3721.39: 1 +> [1829] 373: 1 +> [1830] 3736.24: 1 +> [1831] 375: 2 +> [1832] 3751.66: 1 +> [1833] 377: 1 +> [1834] 378: 1 +> [1835] 37°: 4 +> [1836] 38: 22 +> [1837] 38-40: 3 +> [1838] 38-42: 1 +> [1839] 38-42--_except: 1 +> [1840] 38-45: 1 +> [1841] 38.4: 1 +> [1842] 38.8: 1 +> [1843] 38.80: 1 +> [1844] 38.90: 1 +> [1845] 3805.97: 1 +> [1846] 385: 2 +> [1847] 386: 2 +> [1848] 388: 1 +> [1849] 3881.06: 1 +> [1850] 3886.47: 1 +> [1851] 389.6: 1 +> [1852] 38°: 4 +> [1853] 38°-40°: 2 +> [1854] 39: 12 +> [1855] 39-42: 1 +> [1856] 39.2: 2 +> [1857] 39.37: 1 +> [1858] 39.90: 1 +> [1859] 39.99: 1 +> [1860] 391: 1 +> [1861] 39288: 1 +> [1862] 39288-8.txt: 1 +> [1863] 39288-8.zip: 1 +> [1864] 39290: 1 +> [1865] 39290-0.txt: 1 +> [1866] 39290-0.zip: 1 +> [1867] 39293: 1 +> [1868] 39293-0.txt: 1 +> [1869] 39293-0.zip: 1 +> [1870] 39294: 1 +> [1871] 39294-8.txt: 1 +> [1872] 39294-8.zip: 1 +> [1873] 39295: 1 +> [1874] 39295-8.txt: 1 +> [1875] 39295-8.zip: 1 +> [1876] 39296: 1 +> [1877] 39296-8.txt: 1 +> [1878] 39296-8.zip: 1 +> [1879] 39297: 1 +> [1880] 39297-8.txt: 1 +> [1881] 39297-8.zip: 1 +> [1882] 3948.35: 1 +> [1883] 397.54: 1 +> [1884] 3975.35: 1 +> [1885] 39°: 4 +> [1886] 3rd: 13 +> [1887] 3°: 3 +> [1888] 4: 130 +> [1889] 4,000: 1 +> [1890] 4,500: 4 +> [1891] 4--xxi: 1 +> [1892] 4-3/4: 1 +> [1893] 4-5: 1 +> [1894] 4-6: 2 +> [1895] 4-7: 2 +> [1896] 4-8: 3 +> [1897] 4-in: 3 +> [1898] 4.0: 2 +> [1899] 4.00: 5 +> [1900] 4.012: 1 +> [1901] 4.184: 1 +> [1902] 4.2-8.5: 1 +> [1903] 4.205: 1 +> [1904] 4.3: 1 +> [1905] 4.406: 1 +> [1906] 4.465: 1 +> [1907] 4.5: 2 +> [1908] 4.50: 1 +> [1909] 4.556: 1 +> [1910] 4.604: 1 +> [1911] 4.76: 1 +> [1912] 4.8: 3 +> [1913] 4.865: 1 +> [1914] 4.9: 1 +> [1915] 4.903: 1 +> [1916] 4/5n: 1 +> [1917] 4/9: 1 +> [1918] 40: 48 +> [1919] 40,000: 5 +> [1920] 40--xvi: 1 +> [1921] 40-cc: 1 +> [1922] 40.2: 1 +> [1923] 40.8: 1 +> [1924] 40.90: 1 +> [1925] 400: 11 +> [1926] 4000: 4 +> [1927] 403.54: 1 +> [1928] 4035.38: 1 +> [1929] 404: 1 +> [1930] 4082.15: 1 +> [1931] 409.61: 1 +> [1932] 4096.08: 1 +> [1933] 40°: 4 +> [1934] 41: 15 +> [1935] 41-44: 1 +> [1936] 41.41: 1 +> [1937] 41.5°-45.5°: 1 +> [1938] 41.6: 2 +> [1939] 4143.79: 1 +> [1940] 415: 1 +> [1941] 416: 2 +> [1942] 41°: 3 +> [1943] 41°-47°: 1 +> [1944] 42: 13 +> [1945] 42-45: 1 +> [1946] 42.10: 1 +> [1947] 42.4: 1 +> [1948] 42.5°-46°: 1 +> [1949] 42.8: 1 +> [1950] 42.83: 1 +> [1951] 420: 2 +> [1952] 4223.37: 1 +> [1953] 425: 1 +> [1954] 42°: 3 +> [1955] 42–44: 1 +> [1956] 43: 13 +> [1957] 43-44: 1 +> [1958] 43.0: 2 +> [1959] 43.2: 1 +> [1960] 43.40: 1 +> [1961] 43.4°: 1 +> [1962] 43.5°: 1 +> [1963] 43.6: 1 +> [1964] 4348.84: 1 +> [1965] 4358.95: 1 +> [1966] 4366.20: 1 +> [1967] 4384.21: 1 +> [1968] 43°: 1 +> [1969] 43°-44°: 1 +> [1970] 44: 14 +> [1971] 44.2°: 1 +> [1972] 44.38: 1 +> [1973] 44.4: 1 +> [1974] 44.6: 1 +> [1975] 44.60: 1 +> [1976] 44.8: 1 +> [1977] 442: 1 +> [1978] 4447.67: 1 +> [1979] 44°: 1 +> [1980] 45: 17 +> [1981] 45--viii: 2 +> [1982] 45-46: 1 +> [1983] 45-50: 1 +> [1984] 45-51: 1 +> [1985] 45-52: 1 +> [1986] 45.5: 1 +> [1987] 45.6: 1 +> [1988] 45.80: 1 +> [1989] 450: 3 +> [1990] 450°: 1 +> [1991] 4557: 19 +> [1992] 4592.42: 1 +> [1993] 45°-49°: 1 +> [1994] 46: 9 +> [1995] 46-47: 1 +> [1996] 46-7: 1 +> [1997] 46.15: 1 +> [1998] 46.3-49.6: 1 +> [1999] 46.4: 2 +> [2000] 46.9: 1 +> [2001] 460: 1 +> [2002] 4606.41: 1 +> [2003] 4651.74: 1 +> [2004] 4661.77: 1 +> [2005] 468: 1 +> [2006] 46°: 3 +> [2007] 46°-47°: 1 +> [2008] 47: 10 +> [2009] 47-104: 1 +> [2010] 47-50: 2 +> [2011] 47.10: 1 +> [2012] 47.2: 1 +> [2013] 47.230: 1 +> [2014] 47.58: 1 +> [2015] 470: 2 +> [2016] 475: 1 +> [2017] 476: 1 +> [2018] 47°-48.5°: 1 +> [2019] 47°-51°: 1 +> [2020] 48: 17 +> [2021] 48.2: 1 +> [2022] 48.25: 1 +> [2023] 48.3: 1 +> [2024] 48.8: 1 +> [2025] 480: 2 +> [2026] 483.6: 1 +> [2027] 485.13: 1 +> [2028] 4851.33: 1 +> [2029] 4886: 2 +> [2030] 48°: 1 +> [2031] 49: 13 +> [2032] 49-50: 1 +> [2033] 49.02: 1 +> [2034] 49.40: 1 +> [2035] 49.6: 2 +> [2036] 49.8: 1 +> [2037] 4981.66: 1 +> [2038] 499: 1 +> [2039] 49°: 1 +> [2040] 4_d: 1 +> [2041] 4th: 4 +> [2042] 4x: 1 +> [2043] 4°: 1 +> [2044] 5: 106 +> [2045] 5,000: 19 +> [2046] 5,760: 1 +> [2047] 5-1/2: 3 +> [2048] 5-1/4: 2 +> [2049] 5-10: 1 +> [2050] 5-11: 1 +> [2051] 5-13: 1 +> [2052] 5-17: 1 +> [2053] 5-20: 1 +> [2054] 5-3/4: 1 +> [2055] 5-7: 1 +> [2056] 5-8: 2 +> [2057] 5-8.75: 1 +> [2058] 5-g: 1 +> [2059] 5-per-cent: 1 +> [2060] 5.0: 2 +> [2061] 5.00: 2 +> [2062] 5.05: 1 +> [2063] 5.102: 1 +> [2064] 5.2: 1 +> [2065] 5.29: 1 +> [2066] 5.3: 2 +> [2067] 5.353: 1 +> [2068] 5.405: 1 +> [2069] 5.5: 2 +> [2070] 5.5-10: 1 +> [2071] 5.526: 1 +> [2072] 5.6: 3 +> [2073] 5.60: 1 +> [2074] 5.645: 1 +> [2075] 5.666: 1 +> [2076] 5.8: 1 +> [2077] 5.87: 1 +> [2078] 5.953: 1 +> [2079] 5.999: 1 +> [2080] 5/4: 1 +> [2081] 5/4n: 1 +> [2082] 5/8: 3 +> [2083] 5/9: 1 +> [2084] 50: 104 +> [2085] 50,000: 1 +> [2086] 50,000,000_l: 1 +> [2087] 50-150: 1 +> [2088] 50-54: 1 +> [2089] 50-55: 1 +> [2090] 50-60: 1 +> [2091] 50-cc: 1 +> [2092] 50-lb: 2 +> [2093] 50.4: 1 +> [2094] 500: 8 +> [2095] 5000: 4 +> [2096] 501(c)(3: 37 +> [2097] 505: 1 +> [2098] 5068.04: 1 +> [2099] 5073.64: 1 +> [2100] 50°: 5 +> [2101] 51: 9 +> [2102] 51.2: 2 +> [2103] 51.8: 1 +> [2104] 510.27: 1 +> [2105] 5102.69: 1 +> [2106] 517.97: 1 +> [2107] 5179.74: 1 +> [2108] 518: 1 +> [2109] 51°: 3 +> [2110] 51°-54°: 1 +> [2111] 51°-60°: 1 +> [2112] 52: 10 +> [2113] 52-59: 1 +> [2114] 52.6: 1 +> [2115] 52.620: 1 +> [2116] 52.8: 1 +> [2117] 5236: 1 +> [2118] 5264.47: 1 +> [2119] 52°: 1 +> [2120] 53: 10 +> [2121] 53-57: 1 +> [2122] 53.024: 1 +> [2123] 53.6: 2 +> [2124] 53.8: 1 +> [2125] 54: 10 +> [2126] 54-55: 1 +> [2127] 54.0: 1 +> [2128] 54.4: 1 +> [2129] 54.5°: 1 +> [2130] 544: 1 +> [2131] 55: 14 +> [2132] 55-56: 2 +> [2133] 55.2: 1 +> [2134] 55.3-60: 1 +> [2135] 55.4: 2 +> [2136] 550: 3 +> [2137] 556: 1 +> [2138] 557: 1 +> [2139] 5582.09: 1 +> [2140] 56: 14 +> [2141] 56-59: 1 +> [2142] 56.8: 1 +> [2143] 56.9: 1 +> [2144] 560: 1 +> [2145] 5604.36: 1 +> [2146] 5627.50: 1 +> [2147] 56°-60.5°: 1 +> [2148] 57: 8 +> [2149] 57-70: 1 +> [2150] 57.2: 1 +> [2151] 57.6: 1 +> [2152] 5708.96: 1 +> [2153] 575: 1 +> [2154] 5798.45: 1 +> [2155] 58: 11 +> [2156] 58.3: 1 +> [2157] 58.4: 1 +> [2158] 580: 1 +> [2159] 5845.62: 1 +> [2160] 59: 7 +> [2161] 59-1/2°: 2 +> [2162] 59-60: 1 +> [2163] 59.2: 1 +> [2164] 59.6: 1 +> [2165] 5912.71: 1 +> [2166] 5922.53: 1 +> [2167] 5930.23: 1 +> [2168] 594: 1 +> [2169] 596-1887: 19 +> [2170] 59°-61°: 1 +> [2171] 5th: 3 +> [2172] 5°: 2 +> [2173] 6: 68 +> [2174] 6--st: 1 +> [2175] 6-1/2: 3 +> [2176] 6-1/4: 4 +> [2177] 6-12: 1 +> [2178] 6-21: 2 +> [2179] 6-7: 1 +> [2180] 6-8).[20: 1 +> [2181] 6-9: 4 +> [2182] 6-me: 1 +> [2183] 6.0: 2 +> [2184] 6.00: 1 +> [2185] 6.286: 1 +> [2186] 6.4: 3 +> [2187] 6.45: 1 +> [2188] 6.452: 1 +> [2189] 6.5: 2 +> [2190] 6.5-10.5: 1 +> [2191] 6.521: 1 +> [2192] 6.55: 1 +> [2193] 6.745: 1 +> [2194] 6.8: 2 +> [2195] 6.87-12.5: 1 +> [2196] 60: 62 +> [2197] 60,000: 1 +> [2198] 60-61: 1 +> [2199] 60.5°: 1 +> [2200] 60.8: 2 +> [2201] 600: 6 +> [2202] 600.txt: 3 +> [2203] 600.zip: 3 +> [2204] 6000: 4 +> [2205] 60°: 3 +> [2206] 61: 11 +> [2207] 61,440: 1 +> [2208] 61-2: 1 +> [2209] 61-62: 1 +> [2210] 61.0: 1 +> [2211] 61.6: 1 +> [2212] 62: 13 +> [2213] 62-1/2: 2 +> [2214] 62-65: 1 +> [2215] 62.4: 1 +> [2216] 62.5: 1 +> [2217] 62.6: 1 +> [2218] 622.71: 1 +> [2219] 6227.02: 1 +> [2220] 625: 1 +> [2221] 62°: 2 +> [2222] 63: 10 +> [2223] 63.2: 1 +> [2224] 637.5: 1 +> [2225] 638: 1 +> [2226] 638.23: 1 +> [2227] 64: 11 +> [2228] 64-5: 2 +> [2229] 64-5).[21: 1 +> [2230] 64-6221541: 19 +> [2231] 64.0: 1 +> [2232] 64.4: 1 +> [2233] 64.8: 1 +> [2234] 649: 1 +> [2235] 64°: 1 +> [2236] 64°-68°: 1 +> [2237] 65: 8 +> [2238] 65-68: 1 +> [2239] 65.5: 1 +> [2240] 65.6: 1 +> [2241] 65.8: 1 +> [2242] 65.92: 1 +> [2243] 650: 3 +> [2244] 6512.44: 1 +> [2245] 6523.25: 1 +> [2246] 654: 1 +> [2247] 658.05: 1 +> [2248] 6580.59: 1 +> [2249] 65°: 1 +> [2250] 66: 8 +> [2251] 66-72: 1 +> [2252] 66.2: 1 +> [2253] 66.28: 1 +> [2254] 66.4: 1 +> [2255] 66.450: 1 +> [2256] 660: 2 +> [2257] 666: 6 +> [2258] 66°: 3 +> [2259] 67: 7 +> [2260] 67,000,000: 1 +> [2261] 67.0: 1 +> [2262] 67.2: 1 +> [2263] 670: 1 +> [2264] 671: 2 +> [2265] 674: 2 +> [2266] 6757.38: 1 +> [2267] 67°: 1 +> [2268] 68: 7 +> [2269] 68-69: 1 +> [2270] 68-75: 1 +> [2271] 68.41: 1 +> [2272] 68.6: 1 +> [2273] 68.8: 1 +> [2274] 687: 1 +> [2275] 68°-77°: 1 +> [2276] 69: 9 +> [2277] 69-71: 1 +> [2278] 69.2: 1 +> [2279] 69.3-70.4: 1 +> [2280] 69.6: 1 +> [2281] 69.8: 1 +> [2282] 697: 1 +> [2283] 6_d: 5 +> [2284] 6th: 3 +> [2285] 7: 53 +> [2286] 7,000: 2 +> [2287] 7,689: 1 +> [2288] 7--iv: 1 +> [2289] 7-1/2: 6 +> [2290] 7-1/4: 1 +> [2291] 7-10: 1 +> [2292] 7-11: 1 +> [2293] 7-3/4: 1 +> [2294] 7-9: 2 +> [2295] 7.0: 2 +> [2296] 7.00: 1 +> [2297] 7.042: 1 +> [2298] 7.1: 1 +> [2299] 7.138: 1 +> [2300] 7.2: 2 +> [2301] 7.31: 1 +> [2302] 7.40: 1 +> [2303] 7.4564: 1 +> [2304] 7.5: 4 +> [2305] 7.50: 5 +> [2306] 7.7: 1 +> [2307] 7.7-10.2: 1 +> [2308] 7.723: 1 +> [2309] 7.752: 1 +> [2310] 7.8: 1 +> [2311] 70: 21 +> [2312] 70,000: 1 +> [2313] 70.0: 1 +> [2314] 70.4: 1 +> [2315] 700: 4 +> [2316] 7000: 4 +> [2317] 705: 1 +> [2318] 708: 1 +> [2319] 71: 8 +> [2320] 71-72: 1 +> [2321] 71.2: 1 +> [2322] 71.6: 2 +> [2323] 71°: 1 +> [2324] 72: 9 +> [2325] 72-73: 1 +> [2326] 72.8: 1 +> [2327] 722: 1 +> [2328] 724: 1 +> [2329] 724.81: 1 +> [2330] 7248.06: 1 +> [2331] 72°: 1 +> [2332] 72°-75°: 1 +> [2333] 73: 9 +> [2334] 73-75: 1 +> [2335] 73.2: 1 +> [2336] 73.4: 1 +> [2337] 73.6: 1 +> [2338] 7307.02: 1 +> [2339] 74: 8 +> [2340] 74.4: 1 +> [2341] 74.7: 1 +> [2342] 740: 1 +> [2343] 7412.79: 1 +> [2344] 7442.78: 1 +> [2345] 75: 19 +> [2346] 75-76: 1 +> [2347] 75-80: 1 +> [2348] 75-90: 2 +> [2349] 75.2: 2 +> [2350] 750: 1 +> [2351] 7508.33: 1 +> [2352] 75°: 1 +> [2353] 76: 11 +> [2354] 76-77: 1 +> [2355] 76.4: 1 +> [2356] 76.8: 1 +> [2357] 7602.06: 1 +> [2358] 7611.94: 1 +> [2359] 767: 1 +> [2360] 77: 16 +> [2361] 77-1/2: 2 +> [2362] 77-78: 2 +> [2363] 77.4-82: 1 +> [2364] 77.6: 1 +> [2365] 78: 24 +> [2366] 78-79: 1 +> [2367] 78.1: 1 +> [2368] 78.4: 1 +> [2369] 78.8: 1 +> [2370] 785: 2 +> [2371] 7854: 1 +> [2372] 79: 7 +> [2373] 79-81: 1 +> [2374] 79.2: 1 +> [2375] 79.60: 1 +> [2376] 79.9: 1 +> [2377] 790: 1 +> [2378] 795.07: 1 +> [2379] 7o: 1 +> [2380] 7th: 1 +> [2381] 7°: 1 +> [2382] 7°-10°: 1 +> [2383] 8: 66 +> [2384] 8,400: 1 +> [2385] 8--vi: 1 +> [2386] 8-1/2: 2 +> [2387] 8-1/3: 1 +> [2388] 8-10: 1 +> [2389] 8-11: 1 +> [2390] 8-16: 2 +> [2391] 8-3/4: 2 +> [2392] 8-9: 1 +> [2393] 8-9.8: 1 +> [2394] 8.0: 2 +> [2395] 8.00: 1 +> [2396] 8.20: 1 +> [2397] 8.223: 1 +> [2398] 8.3-11: 1 +> [2399] 8.3-11.8: 1 +> [2400] 8.3-9.9: 1 +> [2401] 8.4: 1 +> [2402] 8.5: 2 +> [2403] 8.5-9.3: 1 +> [2404] 8.547: 1 +> [2405] 8.6: 1 +> [2406] 8.68: 1 +> [2407] 8.7: 3 +> [2408] 8.770: 1 +> [2409] 8.8: 4 +> [2410] 80: 28 +> [2411] 80,000: 1 +> [2412] 80-100: 1 +> [2413] 80-84: 1 +> [2414] 80-90: 2 +> [2415] 80.5°: 2 +> [2416] 80.6: 1 +> [2417] 80.6-84.5: 1 +> [2418] 80.8: 1 +> [2419] 800: 5 +> [2420] 8000: 4 +> [2421] 801: 19 +> [2422] 806: 1 +> [2423] 807.08: 1 +> [2424] 809: 19 +> [2425] 80°: 3 +> [2426] 80°-100°: 1 +> [2427] 81: 8 +> [2428] 81-82: 1 +> [2429] 81-95: 2 +> [2430] 81.6: 1 +> [2431] 81.7: 1 +> [2432] 819.21: 1 +> [2433] 81°: 3 +> [2434] 82: 7 +> [2435] 82-84: 1 +> [2436] 82.4: 2 +> [2437] 82°: 1 +> [2438] 83: 9 +> [2439] 83.2: 1 +> [2440] 83.4-85.9: 1 +> [2441] 833: 1 +> [2442] 8373.13: 1 +> [2443] 84: 8 +> [2444] 84-87: 1 +> [2445] 84.1: 1 +> [2446] 84.2: 1 +> [2447] 84.8: 1 +> [2448] 84116: 19 +> [2449] 844.67: 1 +> [2450] 8446.73: 1 +> [2451] 846: 1 +> [2452] 848: 1 +> [2453] 84°: 1 +> [2454] 85: 15 +> [2455] 85-90: 1 +> [2456] 85-98: 1 +> [2457] 85.6: 1 +> [2458] 850: 2 +> [2459] 85°: 1 +> [2460] 86: 6 +> [2461] 86.4: 1 +> [2462] 86.5: 1 +> [2463] 860: 1 +> [2464] 86th: 1 +> [2465] 86°-88°: 1 +> [2466] 87: 10 +> [2467] 87-90: 1 +> [2468] 87.2: 1 +> [2469] 87.41: 1 +> [2470] 87.5: 1 +> [2471] 87.8: 1 +> [2472] 8768.42: 1 +> [2473] 88: 10 +> [2474] 88-92: 1 +> [2475] 88.6: 1 +> [2476] 88.7-92.8: 1 +> [2477] 88.8: 1 +> [2478] 884: 1 +> [2479] 8862: 1 +> [2480] 8895.85: 1 +> [2481] 89: 7 +> [2482] 89-1/2: 1 +> [2483] 89-95.7: 1 +> [2484] 89.6: 2 +> [2485] 89.7: 1 +> [2486] 890: 1 +> [2487] 8hcl: 1 +> [2488] 8th: 1 +> [2489] 8vo: 30 +> [2490] 8°: 1 +> [2491] 9: 55 +> [2492] 9-1/2: 3 +> [2493] 9-1/4: 4 +> [2494] 9-12: 2 +> [2495] 9-20: 1 +> [2496] 9-21: 1 +> [2497] 9-3/4: 1 +> [2498] 9.0: 2 +> [2499] 9.00: 1 +> [2500] 9.20: 1 +> [2501] 9.3-10.3: 1 +> [2502] 9.42: 1 +> [2503] 9.5: 2 +> [2504] 9.524: 1 +> [2505] 9.6: 2 +> [2506] 9.62-12.75: 1 +> [2507] 9.63: 1 +> [2508] 9.8: 3 +> [2509] 9.95: 1 +> [2510] 9.954: 1 +> [2511] 9.96: 2 +> [2512] 9/4n: 1 +> [2513] 9/5n: 1 +> [2514] 90: 65 +> [2515] 90-100: 3 +> [2516] 90-110: 1 +> [2517] 90-93: 1 +> [2518] 90.16: 1 +> [2519] 90.4: 1 +> [2520] 90.6: 1 +> [2521] 900: 2 +> [2522] 9000: 4 +> [2523] 91: 5 +> [2524] 91-96: 1 +> [2525] 91.2: 1 +> [2526] 91.4: 1 +> [2527] 91°-92°: 1 +> [2528] 92: 5 +> [2529] 92.8: 1 +> [2530] 92°: 1 +> [2531] 93: 12 +> [2532] 93-94: 1 +> [2533] 93-95: 2 +> [2534] 93-97: 1 +> [2535] 93.07: 1 +> [2536] 93.14: 1 +> [2537] 93.2: 1 +> [2538] 93.5: 1 +> [2539] 93.6: 1 +> [2540] 930.35: 1 +> [2541] 9303.48: 1 +> [2542] 9379.16: 1 +> [2543] 94: 6 +> [2544] 94-95: 1 +> [2545] 94.04: 1 +> [2546] 94.2: 1 +> [2547] 94.4: 1 +> [2548] 94.47: 1 +> [2549] 94.59: 1 +> [2550] 940: 1 +> [2551] 95: 33 +> [2552] 95,000,000: 2 +> [2553] 95-105: 1 +> [2554] 95-117: 1 +> [2555] 95-96: 1 +> [2556] 95.05: 1 +> [2557] 95.2: 1 +> [2558] 95.28: 1 +> [2559] 95.3: 1 +> [2560] 95.38: 1 +> [2561] 95.43: 1 +> [2562] 95.5: 1 +> [2563] 95.52: 1 +> [2564] 95.6: 2 +> [2565] 95.70: 1 +> [2566] 95.73: 1 +> [2567] 95.8: 1 +> [2568] 95.86: 1 +> [2569] 9514.93: 1 +> [2570] 953: 1 +> [2571] 954: 1 +> [2572] 957.34: 1 +> [2573] 95°-96°: 1 +> [2574] 96: 17 +> [2575] 96-110: 1 +> [2576] 96-17: 1 +> [2577] 96-98: 1 +> [2578] 96.2: 1 +> [2579] 96.3: 1 +> [2580] 96.73: 1 +> [2581] 96.8: 2 +> [2582] 96.930: 1 +> [2583] 96°-101°: 1 +> [2584] 97: 6 +> [2585] 97-1/2: 1 +> [2586] 97.6: 1 +> [2587] 970.27: 1 +> [2588] 98: 13 +> [2589] 98-100: 1 +> [2590] 98-117: 1 +> [2591] 98.2-102.4: 1 +> [2592] 98.4: 1 +> [2593] 98.6: 1 +> [2594] 986: 3 +> [2595] 986.txt: 1 +> [2596] 986.zip: 1 +> [2597] 98°-99°: 1 +> [2598] 99: 6 +> [2599] 99.0: 1 +> [2600] 99.2: 1 +> [2601] 99.5: 2 +> [2602] 99712: 19 +> [2603] 999: 1 +> [2604] 99913: 1 +> [2605] 99935: 1 +> [2606] 99956: 1 +> [2607] 99978: 1 +> [2608] 9_b: 1 +> [2609] 9th: 3 +> [2610] a: 53077 +> [2611] a—karamazov: 1 +> [2612] a'most: 1 +> [2613] a's: 2 +> [2614] a,--aren't: 1 +> [2615] a--?’: 1 +> [2616] a--a: 5 +> [2617] a--a--a: 2 +> [2618] a--but: 1 +> [2619] a--like: 1 +> [2620] a--na: 1 +> [2621] a--such: 3 +> [2622] a--surely: 1 +> [2623] a--the: 1 +> [2624] a--to: 1 +> [2625] a--well: 2 +> [2626] a--whatever: 1 +> [2627] a--you: 1 +> [2628] a--young: 1 +> [2629] a-a: 1 +> [2630] a-a-a: 2 +> [2631] a-a-a-a: 2 +> [2632] a-a-h: 1 +> [2633] a-ach: 4 +> [2634] a-ah: 5 +> [2635] a-begging: 1 +> [2636] a-brewing: 1 +> [2637] a-crying: 1 +> [2638] a-drip: 1 +> [2639] a-glitter: 1 +> [2640] a-hey: 2 +> [2641] a-horseback: 1 +> [2642] a-oo: 2 +> [2643] a-quarreling: 1 +> [2644] a-quiver: 1 +> [2645] a-tiptoe: 1 +> [2646] a-tu: 3 +> [2647] a-weary: 2 +> [2648] a.d: 20 +> [2649] aah: 1 +> [2650] aaronic: 1 +> [2651] ab: 1 +> [2652] aback: 34 +> [2653] abacus: 1 +> [2654] abaddon: 1 +> [2655] abandon: 67 +> [2656] abandoned: 100 +> [2657] abandoned.”: 1 +> [2658] abandoning: 32 +> [2659] abandonment: 20 +> [2660] abandons: 1 +> [2661] abasement: 2 +> [2662] abash: 1 +> [2663] abashed: 32 +> [2664] abasing: 2 +> [2665] abate: 5 +> [2666] abated: 2 +> [2667] abba: 1 +> [2668] abbe: 18 +> [2669] abbe's: 1 +> [2670] abbess: 1 +> [2671] abbess's: 1 +> [2672] abbey: 64 +> [2673] abbeys: 2 +> [2674] abbot: 75 +> [2675] abbot's: 3 +> [2676] abbot--who's: 1 +> [2677] abbots: 2 +> [2678] abbreviated: 1 +> [2679] abbreviations: 2 +> [2680] abbé: 6 +> [2681] abc: 1 +> [2682] abdicate: 2 +> [2683] abdicated: 1 +> [2684] abdomen: 2 +> [2685] abdomens: 2 +> [2686] abduction: 3 +> [2687] abductors: 1 +> [2688] abed: 1 +> [2689] aber: 1 +> [2690] aberdeen: 1 +> [2691] aberration: 20 +> [2692] aberration? [2693] aberrations: 1 +> [2694] abhorrence: 5 +> [2695] abide: 28 +> [2696] abideth: 3 +> [2697] abiding: 7 +> [2698] abietic: 1 +> [2699] abilities: 7 +> [2700] ability: 20 +> [2701] abject: 22 +> [2702] abjectly: 5 +> [2703] abjectness: 9 +> [2704] abjectness--all: 1 +> [2705] abjure: 2 +> [2706] ablaze: 7 +> [2707] able: 442 +> [2708] able--in: 1 +> [2709] ablest: 2 +> [2710] ablutions: 2 +> [2711] ably: 2 +> [2712] abnegation: 1 +> [2713] abnormal: 14 +> [2714] abnormalities: 2 +> [2715] abnormality: 3 +> [2716] abnormally: 4 +> [2717] aboard: 1 +> [2718] abode: 10 +> [2719] abodes: 2 +> [2720] abolish: 2 +> [2721] abolished: 11 +> [2722] abolished--there: 1 +> [2723] abolishing: 2 +> [2724] abolition: 13 +> [2725] abominable: 22 +> [2726] abominable. [2727] abominably: 3 +> [2728] abominate: 1 +> [2729] abomination: 7 +> [2730] abominations: 1 +> [2731] abortions: 1 +> [2732] aboth: 2 +> [2733] abound: 2 +> [2734] abounding: 1 +> [2735] abounds: 1 +> [2736] about: 5258 +> [2737] about,--in: 1 +> [2738] about, [2739] about--as: 1 +> [2740] about--he's: 1 +> [2741] about--i: 2 +> [2742] about--i'm: 1 +> [2743] about--were: 1 +> [2744] about. [2745] about [2746] about?--what: 1 +> [2747] about? [2748] above: 657 +> [2749] above-board: 2 +> [2750] above-named: 1 +> [2751] aboveboard: 1 +> [2752] abraham: 17 +> [2753] abraham's: 1 +> [2754] abrahamic: 1 +> [2755] abraham’s: 1 +> [2756] abramovna: 1 +> [2757] abreast: 21 +> [2758] abridgment: 1 +> [2759] abroad: 225 +> [2760] abroad--the: 1 +> [2761] abrupt: 36 +> [2762] abruptly: 120 +> [2763] abruptness: 5 +> [2764] abs: 1 +> [2765] abscess: 2 +> [2766] absence: 126 +> [2767] absences: 2 +> [2768] absent: 44 +> [2769] absent-minded: 24 +> [2770] absent-mindedly: 12 +> [2771] absent-mindedness: 10 +> [2772] absentee: 1 +> [2773] absentees: 2 +> [2774] absently: 19 +> [2775] absentminded: 1 +> [2776] absolute: 79 +> [2777] absolutely: 218 +> [2778] absolutely--absolutely: 1 +> [2779] absolution: 4 +> [2780] absolved: 3 +> [2781] absorb: 4 +> [2782] absorbed: 103 +> [2783] absorbing: 11 +> [2784] absorption: 19 +> [2785] abstain: 13 +> [2786] abstained: 2 +> [2787] abstaining: 4 +> [2788] abstemious: 1 +> [2789] abstention: 1 +> [2790] abstiens-toi: 1 +> [2791] abstinence: 4 +> [2792] abstinence. [2793] abstract: 23 +> [2794] abstraction: 9 +> [2795] abstractions: 1 +> [2796] abstractly: 2 +> [2797] absurd: 174 +> [2798] absurd! [2799] absurd--it's: 4 +> [2800] absurd-looking: 1 +> [2801] absurd. [2802] absurdest: 5 +> [2803] absurdities: 9 +> [2804] absurdity: 36 +> [2805] absurdly: 9 +> [2806] abundance: 14 +> [2807] abundant: 8 +> [2808] abundantly: 7 +> [2809] abuse: 70 +> [2810] abused: 18 +> [2811] abuses: 10 +> [2812] abusing: 24 +> [2813] abusive: 2 +> [2814] abutted: 2 +> [2815] abyss: 14 +> [2816] acacia: 1 +> [2817] acacias: 3 +> [2818] academical: 1 +> [2819] academician: 1 +> [2820] academy: 9 +> [2821] académicien. [2822] accapareurs: 1 +> [2823] accede: 2 +> [2824] acceding: 1 +> [2825] accelerate: 2 +> [2826] accelerated: 3 +> [2827] accent: 27 +> [2828] accent--having: 1 +> [2829] accented: 1 +> [2830] accents: 15 +> [2831] accentuate: 2 +> [2832] accentuated: 2 +> [2833] accentuating: 4 +> [2834] accentuation: 1 +> [2835] accept: 190 +> [2836] acceptable: 9 +> [2837] acceptance: 13 +> [2838] acceptation: 1 +> [2839] accepted: 172 +> [2840] accepting: 39 +> [2841] accepts: 10 +> [2842] access: 201 +> [2843] accessed: 19 +> [2844] accessibility: 1 +> [2845] accessible: 24 +> [2846] accession: 4 +> [2847] accessories--a: 1 +> [2848] accessory: 1 +> [2849] accident: 45 +> [2850] accident--or: 1 +> [2851] accidental: 21 +> [2852] accidentally: 40 +> [2853] accidently: 1 +> [2854] accidents: 5 +> [2855] acclaim: 1 +> [2856] acclaimed: 2 +> [2857] acclamations: 4 +> [2858] acclimated: 1 +> [2859] accommodate: 3 +> [2860] accommodated: 2 +> [2861] accommodating: 6 +> [2862] accommodation: 5 +> [2863] accommodations: 1 +> [2864] accompanied: 102 +> [2865] accompanies: 5 +> [2866] accompaniment: 14 +> [2867] accompaniments: 1 +> [2868] accompany: 35 +> [2869] accompanying: 26 +> [2870] accomplice: 15 +> [2871] accomplice? [2872] accomplices: 2 +> [2873] accomplish: 12 +> [2874] accomplished: 50 +> [2875] accomplished--were: 1 +> [2876] accomplished.”: 1 +> [2877] accomplishes: 2 +> [2878] accomplishing: 5 +> [2879] accomplishment: 13 +> [2880] accomplishments: 6 +> [2881] accord: 59 +> [2882] accord... [2883] accordance: 82 +> [2884] accorded: 3 +> [2885] according: 221 +> [2886] accordingly: 24 +> [2887] accosted: 5 +> [2888] accoucheur: 1 +> [2889] account: 363 +> [2890] account! [2891] account, [2892] account. [2893] account? [2894] accountable: 1 +> [2895] accountant: 9 +> [2896] accounted: 9 +> [2897] accounting: 1 +> [2898] accounts: 65 +> [2899] accounts, [2900] accounts--and: 1 +> [2901] accounts? [2902] accouterments: 1 +> [2903] accredited: 2 +> [2904] accrue: 1 +> [2905] accumulate: 1 +> [2906] accumulated: 9 +> [2907] accumulating: 3 +> [2908] accumulation: 12 +> [2909] accumulations: 2 +> [2910] accuracy: 27 +> [2911] accurate: 17 +> [2912] accurately: 21 +> [2913] accursed: 39 +> [2914] accusation: 17 +> [2915] accusations: 7 +> [2916] accuse: 26 +> [2917] accused: 46 +> [2918] accuser: 1 +> [2919] accusers: 1 +> [2920] accuses: 4 +> [2921] accusing: 8 +> [2922] accustom: 7 +> [2923] accustomed: 100 +> [2924] accustoms: 1 +> [2925] ace: 2 +> [2926] acerbity: 3 +> [2927] acetanilide: 1 +> [2928] acetate: 11 +> [2929] acetate._--the: 1 +> [2930] acetic: 17 +> [2931] acetin: 10 +> [2932] acetone: 8 +> [2933] acetyl: 1 +> [2934] acetylizable: 5 +> [2935] acetylizing: 1 +> [2936] ach: 28 +> [2937] ach! [2938] ache: 29 +> [2939] ache--it: 1 +> [2940] ache. [2941] ached: 40 +> [2942] aches: 15 +> [2943] achieve: 14 +> [2944] achieved: 6 +> [2945] achieved.--but: 1 +> [2946] achievement: 10 +> [2947] achievement--though: 1 +> [2948] achievements: 4 +> [2949] achilles: 11 +> [2950] aching: 31 +> [2951] aching—in: 1 +> [2952] achtung: 1 +> [2953] acid: 365 +> [2954] acid-washed: 1 +> [2955] acid._--carefully: 1 +> [2956] acid_--carefully: 1 +> [2957] acidified: 2 +> [2958] acidifier: 1 +> [2959] acidifying: 1 +> [2960] acidity: 6 +> [2961] acidity._--take: 1 +> [2962] acids: 196 +> [2963] acids._--the: 1 +> [2964] acknowledge: 32 +> [2965] acknowledged: 25 +> [2966] acknowledgement: 2 +> [2967] acknowledges: 2 +> [2968] acknowledging: 18 +> [2969] acknowledgment: 5 +> [2970] acknowledgment--this: 1 +> [2971] acknowledgments: 3 +> [2972] acme: 3 +> [2973] acolytes: 2 +> [2974] acquaint: 3 +> [2975] acquaintance: 239 +> [2976] acquaintance--he: 1 +> [2977] acquaintance? [2978] acquaintances: 96 +> [2979] acquaintanceships: 1 +> [2980] acquainted: 65 +> [2981] acquainted. [2982] acquaints: 2 +> [2983] acquiesce: 2 +> [2984] acquiesced: 2 +> [2985] acquiescence: 3 +> [2986] acquiescing: 1 +> [2987] acquire: 12 +> [2988] acquired: 27 +> [2989] acquirement: 2 +> [2990] acquirements: 3 +> [2991] acquires: 1 +> [2992] acquiring: 6 +> [2993] acquisition: 2 +> [2994] acquisitive: 1 +> [2995] acquit: 13 +> [2996] acquittal: 7 +> [2997] acquitted: 15 +> [2998] acquitted? [2999] acre: 12 +> [3000] acres: 29 +> [3001] acrid: 2 +> [3002] acrobat: 1 +> [3003] acrobats: 1 +> [3004] across: 399 +> [3005] across--whips: 1 +> [3006] act: 280 +> [3007] act--act: 1 +> [3008] act--if: 1 +> [3009] acted: 81 +> [3010] acting: 74 +> [3011] action: 399 +> [3012] action—a: 1 +> [3013] action—it's: 1 +> [3014] action--are: 2 +> [3015] action--as: 1 +> [3016] action--he: 1 +> [3017] action--i: 1 +> [3018] action--seeing: 1 +> [3019] action--the: 1 +> [3020] actions: 122 +> [3021] actions--without: 1 +> [3022] actions. [3023] active: 106 +> [3024] actively: 8 +> [3025] activities: 12 +> [3026] activities--the: 1 +> [3027] activity: 148 +> [3028] activity--beneficent: 3 +> [3029] activity--in: 1 +> [3030] activity--the: 1 +> [3031] activity--to: 1 +> [3032] actor: 7 +> [3033] actor's: 1 +> [3034] actors: 11 +> [3035] actors--had: 1 +> [3036] actress: 24 +> [3037] actresses: 4 +> [3038] actresses--with: 1 +> [3039] acts: 142 +> [3040] actual: 101 +> [3041] actuality: 2 +> [3042] actually: 181 +> [3043] actuated: 4 +> [3044] acute: 33 +> [3045] acutely: 18 +> [3046] acutest: 10 +> [3047] ad: 1 +> [3048] adam: 16 +> [3049] adam's: 5 +> [3050] adamantinely: 1 +> [3051] adamson: 2 +> [3052] adam’s: 1 +> [3053] adapt: 3 +> [3054] adaptability: 3 +> [3055] adaptable: 5 +> [3056] adaptation: 4 +> [3057] adaptations: 2 +> [3058] adapted: 25 +> [3059] adapter: 1 +> [3060] adapting: 5 +> [3061] adapts: 1 +> [3062] add: 206 +> [3063] add--"mademoiselle: 1 +> [3064] add? [3065] added: 1046 +> [3066] added--"very: 1 +> [3067] added--allusions: 1 +> [3068] added--be: 1 +> [3069] added--that: 1 +> [3070] added--they: 1 +> [3071] adder: 2 +> [3072] addicted: 2 +> [3073] adding: 59 +> [3074] addison: 1 +> [3075] addition: 107 +> [3076] additional: 91 +> [3077] additionally: 1 +> [3078] additions: 31 +> [3079] additions--was: 1 +> [3080] addled: 1 +> [3081] address: 182 +> [3082] address--just: 1 +> [3083] address--perhaps: 1 +> [3084] addressed: 168 +> [3085] addresses: 22 +> [3086] addressing: 252 +> [3087] adds: 17 +> [3088] adduce: 1 +> [3089] adducing: 1 +> [3090] adela: 4 +> [3091] adela's: 1 +> [3092] adelaida: 76 +> [3093] adelaida's: 7 +> [3094] adelaide: 2 +> [3095] adelaïda: 14 +> [3096] adele: 1 +> [3097] adept: 4 +> [3098] adequate: 4 +> [3099] adequately: 3 +> [3100] adhere: 6 +> [3101] adhered: 13 +> [3102] adherence: 6 +> [3103] adherent: 3 +> [3104] adherents: 7 +> [3105] adherents--military: 1 +> [3106] adheres: 3 +> [3107] adhering: 1 +> [3108] adhesion: 2 +> [3109] adieu: 6 +> [3110] adieux: 2 +> [3111] adjacent: 6 +> [3112] adjective: 1 +> [3113] adjectives: 2 +> [3114] adjoined: 5 +> [3115] adjoining: 23 +> [3116] adjoins: 1 +> [3117] adjourn: 1 +> [3118] adjourned: 3 +> [3119] adjured: 3 +> [3120] adjust: 3 +> [3121] adjusted: 18 +> [3122] adjusting: 5 +> [3123] adjustment: 2 +> [3124] adjutant: 159 +> [3125] adjutant's: 7 +> [3126] adjutant--a: 1 +> [3127] adjutant-general: 3 +> [3128] adjutant-generals: 1 +> [3129] adjutants: 37 +> [3130] adjutants--was: 1 +> [3131] adjutants-general: 1 +> [3132] administer: 5 +> [3133] administered: 11 +> [3134] administering: 1 +> [3135] administration: 7 +> [3136] administrative: 14 +> [3137] administrator: 3 +> [3138] administrators: 2 +> [3139] admirable: 16 +> [3140] admirable--she: 1 +> [3141] admirable_--everything: 1 +> [3142] admirably: 8 +> [3143] admiral: 1 +> [3144] admiration: 58 +> [3145] admiration--and: 1 +> [3146] admire: 38 +> [3147] admired: 38 +> [3148] admirer: 13 +> [3149] admirers: 3 +> [3150] admires: 3 +> [3151] admiring: 38 +> [3152] admiringly: 6 +> [3153] admissible: 3 +> [3154] admission: 25 +> [3155] admit: 243 +> [3156] admit--he: 1 +> [3157] admit--i: 1 +> [3158] admit [3159] admits: 11 +> [3160] admittance: 4 +> [3161] admitted: 127 +> [3162] admitting: 34 +> [3163] admonish: 4 +> [3164] admonished: 5 +> [3165] admonishes: 1 +> [3166] admonishing: 2 +> [3167] admonishingly: 1 +> [3168] admonition: 5 +> [3169] admonitions: 5 +> [3170] admonitory: 1 +> [3171] ado: 7 +> [3172] adoing: 1 +> [3173] adonai: 1 +> [3174] adonis: 1 +> [3175] adopt: 31 +> [3176] adopted: 70 +> [3177] adopted--an: 1 +> [3178] adopting: 14 +> [3179] adoption: 17 +> [3180] adoptionists: 2 +> [3181] adopts: 3 +> [3182] adorable: 3 +> [3183] adoration: 14 +> [3184] adoration--that: 1 +> [3185] adore: 10 +> [3186] adored: 24 +> [3187] adorer: 4 +> [3188] adorers: 3 +> [3189] adores: 5 +> [3190] adoring: 6 +> [3191] adorn: 7 +> [3192] adorned: 18 +> [3193] adorning: 5 +> [3194] adornment: 3 +> [3195] adornments: 1 +> [3196] adorns: 1 +> [3197] adraksin: 4 +> [3198] adrianople: 1 +> [3199] adriatic: 6 +> [3200] adrien: 8 +> [3201] adrift: 5 +> [3202] adroit: 10 +> [3203] adroitly: 7 +> [3204] adroitness: 3 +> [3205] adulation: 1 +> [3206] adult: 1 +> [3207] adulterant: 1 +> [3208] adulterants: 2 +> [3209] adulterate: 1 +> [3210] adulterated: 2 +> [3211] adulteration: 2 +> [3212] adulterations: 1 +> [3213] adulterous: 1 +> [3214] adultery: 7 +> [3215] adults: 1 +> [3216] advance: 107 +> [3217] advance-guards: 1 +> [3218] advance-money: 1 +> [3219] advanced: 113 +> [3220] advancement: 3 +> [3221] advances: 9 +> [3222] advancing: 43 +> [3223] advantage: 184 +> [3224] advantage--for: 2 +> [3225] advantage--that: 1 +> [3226] advantage.”: 1 +> [3227] advantageous: 41 +> [3228] advantageously: 4 +> [3229] advantages: 53 +> [3230] adve'sawies: 1 +> [3231] advent: 22 +> [3232] adventure: 27 +> [3233] adventure. [3234] adventurer: 1 +> [3235] adventurers: 2 +> [3236] adventures: 30 +> [3237] adventuresses: 1 +> [3238] adventurous: 2 +> [3239] adverb: 2 +> [3240] adverbs: 2 +> [3241] adversaries: 2 +> [3242] adversary: 7 +> [3243] adversary's: 1 +> [3244] adverse: 3 +> [3245] adverting: 1 +> [3246] advertise: 3 +> [3247] advertised: 2 +> [3248] advertisement: 1 +> [3249] advertising: 2 +> [3250] advice: 166 +> [3251] advice--or: 1 +> [3252] advice--you: 1 +> [3253] advisability: 1 +> [3254] advisable: 33 +> [3255] advise: 56 +> [3256] advised: 52 +> [3257] adviser: 7 +> [3258] advisers: 12 +> [3259] advises: 1 +> [3260] advising: 7 +> [3261] advocate: 9 +> [3262] advocated: 3 +> [3263] advocates: 7 +> [3264] advocating: 4 +> [3265] aerate: 1 +> [3266] aerial: 1 +> [3267] afanasy: 32 +> [3268] afanasy's: 1 +> [3269] afanasyvitch: 2 +> [3270] afar: 14 +> [3271] afar. [3272] afeared: 1 +> [3273] affability: 6 +> [3274] affable: 11 +> [3275] affably: 8 +> [3276] affair: 185 +> [3277] affair, [3278] affair--i: 2 +> [3279] affair--this: 1 +> [3280] affair--yes: 1 +> [3281] affair. [3282] affair? [3283] affaire: 1 +> [3284] affairs: 222 +> [3285] affairs, [3286] affairs--all: 1 +> [3287] affairs--near: 1 +> [3288] affairs--this: 1 +> [3289] affairs--which: 1 +> [3290] affect: 42 +> [3291] affectation: 42 +> [3292] affected: 113 +> [3293] affectedly: 8 +> [3294] affecting: 28 +> [3295] affection: 93 +> [3296] affectionate: 38 +> [3297] affectionately: 28 +> [3298] affections: 12 +> [3299] affections. [3300] affections—he: 1 +> [3301] affects: 4 +> [3302] affetto: 2 +> [3303] affianced: 6 +> [3304] affinity: 7 +> [3305] affirm: 8 +> [3306] affirmative: 8 +> [3307] affirmative--more: 1 +> [3308] affirmative? [3309] affirmatively: 5 +> [3310] affirmed: 2 +> [3311] affirming: 2 +> [3312] affirms: 2 +> [3313] affixed: 2 +> [3314] afflatus: 1 +> [3315] afflict: 1 +> [3316] afflicted: 15 +> [3317] affliction: 10 +> [3318] afflictions: 1 +> [3319] affluent: 1 +> [3320] afford: 35 +> [3321] afforded: 19 +> [3322] affording: 7 +> [3323] affords: 8 +> [3324] affright: 3 +> [3325] affrighted: 2 +> [3326] affrightedly: 1 +> [3327] affront: 10 +> [3328] affronted: 6 +> [3329] affronts: 2 +> [3330] afghan: 1 +> [3331] afimya: 1 +> [3332] afire: 1 +> [3333] aflame: 5 +> [3334] afloat: 3 +> [3335] afoot: 8 +> [3336] afore: 1 +> [3337] aforesaid: 4 +> [3338] afraid: 788 +> [3339] afraid! [3340] afraid, [3341] afraid--afraid: 1 +> [3342] afraid--but: 1 +> [3343] afraid--he: 1 +> [3344] afraid--the: 1 +> [3345] afraid--was: 1 +> [3346] afraid--you: 1 +> [3347] afraid? [3348] afresh: 32 +> [3349] afresh--today: 1 +> [3350] africa: 18 +> [3351] african: 2 +> [3352] africans: 1 +> [3353] afrosinya: 1 +> [3354] aft: 2 +> [3355] after: 3423 +> [3356] after—some: 1 +> [3357] after, [3358] after--after: 1 +> [3359] after--it: 1 +> [3360] after--that: 2 +> [3361] after-actions: 1 +> [3362] after-cabin: 1 +> [3363] after-dinner: 6 +> [3364] after-years--what: 1 +> [3365] after...you: 1 +> [3366] after. [3367] after? [3368] afterglow: 1 +> [3369] afterlife: 1 +> [3370] aftermath: 1 +> [3371] afternoon: 81 +> [3372] afternoon--and: 1 +> [3373] afternoons: 3 +> [3374] afterthought: 1 +> [3375] afterward: 31 +> [3376] afterward--that: 1 +> [3377] afterwards: 495 +> [3378] afterwards! [3379] afterwards—that: 1 +> [3380] afterwards, [3381] afterwards--"modestly: 1 +> [3382] afterwards--afterwards: 1 +> [3383] afterwards--but: 1 +> [3384] afterwards--for: 1 +> [3385] afterwards--oh: 1 +> [3386] afterwards--that: 1 +> [3387] afterwards--we: 1 +> [3388] afterwards--when: 1 +> [3389] afterwards--you: 1 +> [3390] afterwards. [3391] afterwards? [3392] afwaid: 1 +> [3393] agabus: 4 +> [3394] agabus[24: 1 +> [3395] agafea: 74 +> [3396] agafya: 21 +> [3397] agafya—fancy: 1 +> [3398] again: 3293 +> [3399] again!) [3400] again! [3401] again— [3402] again—but: 1 +> [3403] again—my: 1 +> [3404] again—something: 1 +> [3405] again—that's: 1 +> [3406] again—they've: 1 +> [3407] again—to: 1 +> [3408] again,--"countess: 1 +> [3409] again, [3410] again--"but: 1 +> [3411] again--"why: 1 +> [3412] again--after: 1 +> [3413] again--and: 1 +> [3414] again--another: 1 +> [3415] again--as: 1 +> [3416] again--because: 1 +> [3417] again--dull: 1 +> [3418] again--he: 1 +> [3419] again--i: 2 +> [3420] again--it: 2 +> [3421] again--said: 1 +> [3422] again--still: 1 +> [3423] again--that: 2 +> [3424] again--though: 1 +> [3425] again--to: 2 +> [3426] again--valuing: 3 +> [3427] again--waved: 1 +> [3428] again--why: 1 +> [3429] again--with: 1 +> [3430] again-never: 1 +> [3431] again. [3432] again.”: 1 +> [3433] again [3434] again—it's: 1 +> [3435] again? [3436] against: 1181 +> [3437] agape: 1 +> [3438] agaric: 1 +> [3439] agate: 1 +> [3440] agatha: 1 +> [3441] age: 242 +> [3442] age—it: 1 +> [3443] age,--the: 1 +> [3444] age,’: 1 +> [3445] age--i: 1 +> [3446] age--it: 1 +> [3447] age-long: 1 +> [3448] aged: 28 +> [3449] aged-looking: 1 +> [3450] ageing: 1 +> [3451] agencies: 2 +> [3452] agency: 9 +> [3453] agent: 60 +> [3454] agent's: 1 +> [3455] agents: 11 +> [3456] ages: 55 +> [3457] ages—not: 1 +> [3458] ages--that: 2 +> [3459] ages--which: 4 +> [3460] aggrandizement: 4 +> [3461] aggravate: 2 +> [3462] aggravated: 2 +> [3463] aggravating: 3 +> [3464] aggregate: 1 +> [3465] aggression: 2 +> [3466] aggressive: 2 +> [3467] aggressively: 1 +> [3468] aggressor: 3 +> [3469] aggrieved: 11 +> [3470] aghast: 19 +> [3471] agile: 6 +> [3472] agile--she: 1 +> [3473] agility: 8 +> [3474] agincourt: 1 +> [3475] aging: 2 +> [3476] agitate: 3 +> [3477] agitated: 138 +> [3478] agitated, [3479] agitated--"i: 1 +> [3480] agitated--i: 1 +> [3481] agitating: 13 +> [3482] agitation: 123 +> [3483] agitation--"and: 1 +> [3484] agitation--excitement--all: 1 +> [3485] agitations: 1 +> [3486] agitator: 2 +> [3487] agitators: 1 +> [3488] aglaya: 431 +> [3489] aglaya!--i: 1 +> [3490] aglaya's: 40 +> [3491] aglaya--(for: 1 +> [3492] aglaya--add: 1 +> [3493] aglaya--and: 1 +> [3494] aglaya--had: 1 +> [3495] aglaya--i--i: 1 +> [3496] aglaya--perhaps: 1 +> [3497] aglaya--quick: 1 +> [3498] aglaya--that: 1 +> [3499] aglaya--that's: 1 +> [3500] aglaya;--but: 1 +> [3501] aglaya?--impossible: 1 +> [3502] aglaya?--oh: 1 +> [3503] aglow: 9 +> [3504] ago: 507 +> [3505] ago— [3506] ago—dmitri: 1 +> [3507] ago—he: 1 +> [3508] ago—i: 1 +> [3509] ago,--printed: 1 +> [3510] ago, [3511] ago--after: 1 +> [3512] ago--and: 4 +> [3513] ago--from: 1 +> [3514] ago--how: 1 +> [3515] ago--i: 1 +> [3516] ago--in: 1 +> [3517] ago--perhaps: 1 +> [3518] ago--that: 1 +> [3519] ago--there: 1 +> [3520] ago--two: 1 +> [3521] ago. [3522] ago? [3523] agog: 1 +> [3524] agoing: 2 +> [3525] agone: 1 +> [3526] agonies: 19 +> [3527] agonies—i: 1 +> [3528] agonies--the: 1 +> [3529] agonised: 1 +> [3530] agonising: 14 +> [3531] agonising--it: 1 +> [3532] agonisingly: 2 +> [3533] agonized: 4 +> [3534] agonizing: 29 +> [3535] agonizingly: 5 +> [3536] agony: 77 +> [3537] agony--that: 1 +> [3538] agony. [3539] agrafena: 44 +> [3540] agree: 341 +> [3541] agree, [3542] agree--with: 1 +> [3543] agreeable: 99 +> [3544] agreeable--she: 1 +> [3545] agreeably: 11 +> [3546] agreed: 194 +> [3547] agreed--it: 1 +> [3548] agreeing: 10 +> [3549] agreement: 395 +> [3550] agreements: 3 +> [3551] agrees: 7 +> [3552] agricult: 1 +> [3553] agricultural: 6 +> [3554] agricultural--as: 1 +> [3555] agriculture: 37 +> [3556] agriculturist: 1 +> [3557] agriculturists: 1 +> [3558] agrippa: 5 +> [3559] agrippina: 2 +> [3560] agrippina! [3561] agrippina— [3562] agrippina, [3563] ague: 4 +> [3564] ague--"there: 1 +> [3565] agues: 1 +> [3566] agwee: 1 +> [3567] ah: 591 +> [3568] ah-ah: 1 +> [3569] ah-ing: 1 +> [3570] aha: 16 +> [3571] ahahah: 1 +> [3572] ahead: 82 +> [3573] ahem: 2 +> [3574] ai: 1 +> [3575] aid: 82 +> [3576] aide-de-camp: 50 +> [3577] aide-de-camp's: 1 +> [3578] aided: 5 +> [3579] aides-de-camp: 16 +> [3580] aiding: 1 +> [3581] aids: 5 +> [3582] aie: 2 +> [3583] aie! [3584] aie--aie: 1 +> [3585] aigoual: 2 +> [3586] aiken: 1 +> [3587] ailed: 2 +> [3588] ailing: 4 +> [3589] ailments: 1 +> [3590] ails: 2 +> [3591] aim: 183 +> [3592] aim--and: 1 +> [3593] aim--to: 1 +> [3594] aime: 6 +> [3595] aimed: 42 +> [3596] aiming: 17 +> [3597] aimless: 8 +> [3598] aimlessly: 20 +> [3599] aimlessness: 2 +> [3600] aims: 40 +> [3601] aims--only: 1 +> [3602] aims--the: 1 +> [3603] ain't: 3 +> [3604] ainsworth: 1 +> [3605] air: 694 +> [3606] air,--in: 1 +> [3607] air, [3608] air--was: 1 +> [3609] air-balloon: 1 +> [3610] air-dry: 1 +> [3611] air-oven: 1 +> [3612] air-tight: 3 +> [3613] air. [3614] air [3615] aired: 1 +> [3616] airily: 3 +> [3617] airiness: 2 +> [3618] airing: 3 +> [3619] airless: 1 +> [3620] airlessness: 1 +> [3621] airs: 20 +> [3622] airs! [3623] airs--varia: 1 +> [3624] airy: 3 +> [3625] aise: 1 +> [3626] aisle: 12 +> [3627] aisles: 2 +> [3628] ajar: 12 +> [3629] ajar--i: 1 +> [3630] ak: 19 +> [3631] aka: 3 +> [3632] akharovs: 1 +> [3633] akhrosimova: 3 +> [3634] akim: 2 +> [3635] akim's: 1 +> [3636] akimbo: 10 +> [3637] akin: 27 +> [3638] akinfi: 1 +> [3639] al: 5 +> [3640] alabaster: 1 +> [3641] alabin: 2 +> [3642] alacrity: 7 +> [3643] alais: 206 +> [3644] alais'--engagement: 1 +> [3645] alais--i: 1 +> [3646] alarm: 201 +> [3647] alarm--in: 1 +> [3648] alarm--the: 1 +> [3649] alarm--was: 1 +> [3650] alarm [3651] alarmed: 108 +> [3652] alarming: 15 +> [3653] alarmingly: 1 +> [3654] alarms: 4 +> [3655] alas: 67 +> [3656] alas!... [3657] alasco: 1 +> [3658] albanians: 1 +> [3659] albans: 9 +> [3660] albany: 1 +> [3661] albeit: 1 +> [3662] albemarle’s: 2 +> [3663] albi: 1 +> [3664] albonys: 1 +> [3665] album: 21 +> [3666] albumen: 1 +> [3667] albuminous: 8 +> [3668] albums: 6 +> [3669] alchemist: 1 +> [3670] alcohol: 88 +> [3671] alcohol[31: 1 +> [3672] alcoholic: 23 +> [3673] alcohols: 7 +> [3674] alcove: 4 +> [3675] aldehydes: 1 +> [3676] alder: 3 +> [3677] alderman: 3 +> [3678] alders: 2 +> [3679] aldersgate: 1 +> [3680] ale: 19 +> [3681] aleksey: 1 +> [3682] alembics: 1 +> [3683] alenina: 1 +> [3684] alert: 15 +> [3685] alertly: 2 +> [3686] alertness: 3 +> [3687] alesha: 1 +> [3688] alexander: 142 +> [3689] alexander's: 22 +> [3690] alexander--generals: 1 +> [3691] alexander--just: 1 +> [3692] alexander--though: 1 +> [3693] alexanders: 1 +> [3694] alexanders--bekleshev: 1 +> [3695] alexandr: 2 +> [3696] alexandra: 66 +> [3697] alexandra's: 3 +> [3698] alexandra--whom: 1 +> [3699] alexandre: 2 +> [3700] alexandria: 5 +> [3701] alexandrian: 2 +> [3702] alexandrovitch: 578 +> [3703] alexandrovitch's: 47 +> [3704] alexandrovitch. [3705] alexandrovna: 412 +> [3706] alexandrovna!--gania: 1 +> [3707] alexandrovna! [3708] alexandrovna's: 25 +> [3709] alexandrovna's...but: 1 +> [3710] alexandrovna's. [3711] alexandrovna,--and: 1 +> [3712] alexandrovna, [3713] alexandrovna--helps: 1 +> [3714] alexandrovna--seeing: 1 +> [3715] alexandrovna [3716] alexandrovna? [3717] alexeevich: 34 +> [3718] alexeevich's: 7 +> [3719] alexeevna: 2 +> [3720] alexeitch: 2 +> [3721] alexey: 777 +> [3722] alexey! [3723] alexey's: 3 +> [3724] alexey--i: 1 +> [3725] alexey. [3726] alexey? [3727] alexeyevitch: 1 +> [3728] alexeyevitch--retired: 1 +> [3729] alexeyevna: 18 +> [3730] alexeyevna's: 6 +> [3731] alexeyevna's--that: 1 +> [3732] alexeyovitch: 1 +> [3733] alexis: 1 +> [3734] alexyevitch: 5 +> [3735] alexyevna: 1 +> [3736] algebra: 2 +> [3737] algeria: 1 +> [3738] alias: 2 +> [3739] alibon: 2 +> [3740] alien: 16 +> [3741] alienate: 2 +> [3742] alienated: 1 +> [3743] alienating: 2 +> [3744] alienation: 2 +> [3745] aliens: 1 +> [3746] alienum: 1 +> [3747] alight: 12 +> [3748] alighted: 11 +> [3749] alighting: 7 +> [3750] alights: 1 +> [3751] aligning: 1 +> [3752] alike: 62 +> [3753] alike, [3754] alike--by: 1 +> [3755] alike--turned: 1 +> [3756] alike--were: 1 +> [3757] alike. [3758] aliment: 1 +> [3759] alimony: 1 +> [3760] aline: 5 +> [3761] aline-nadine: 1 +> [3762] aliosha: 1 +> [3763] alioshka: 2 +> [3764] alioshka--i: 1 +> [3765] aliquot: 5 +> [3766] alive: 169 +> [3767] alive! [3768] alive--a: 1 +> [3769] alive--he: 1 +> [3770] alive--live: 1 +> [3771] alive--the: 1 +> [3772] alive--what: 1 +> [3773] alive. [3774] alive? [3775] alive? [3776] alizarine: 1 +> [3777] alkali: 114 +> [3778] alkali._--put: 1 +> [3779] alkalies: 1 +> [3780] alkaline: 23 +> [3781] alkalinity: 17 +> [3782] alkalinity._--weigh: 1 +> [3783] alkalis: 25 +> [3784] all: 13923 +> [3785] all! [3786] all! [3787] all— [3788] all—both: 1 +> [3789] all—don't: 2 +> [3790] all—the: 1 +> [3791] all—thou: 1 +> [3792] all—to: 1 +> [3793] all—what: 1 +> [3794] all's: 8 +> [3795] all,--to: 1 +> [3796] all, [3797] all, [3798] all,”: 1 +> [3799] all--all: 5 +> [3800] all--and: 6 +> [3801] all--but: 2 +> [3802] all--carried: 1 +> [3803] all--death: 1 +> [3804] all--disgrace--bend: 1 +> [3805] all--every: 1 +> [3806] all--everything: 2 +> [3807] all--for: 2 +> [3808] all--gazed: 1 +> [3809] all--he: 4 +> [3810] all--her: 1 +> [3811] all--hideousness: 1 +> [3812] all--i: 2 +> [3813] all--if: 1 +> [3814] all--it: 1 +> [3815] all--madame: 1 +> [3816] all--might: 1 +> [3817] all--more: 1 +> [3818] all--only: 1 +> [3819] all--read: 1 +> [3820] all--she: 3 +> [3821] all--that: 2 +> [3822] all--that's: 3 +> [3823] all--the: 3 +> [3824] all--there: 1 +> [3825] all--to: 1 +> [3826] all--twenty: 1 +> [3827] all--waiting: 1 +> [3828] all--when: 1 +> [3829] all--with: 1 +> [3830] all-conquering: 1 +> [3831] all-embracing: 3 +> [3832] all-forgiving: 1 +> [3833] all-good: 1 +> [3834] all-important: 2 +> [3835] all-knowing: 1 +> [3836] all-mastering: 1 +> [3837] all-night: 1 +> [3838] all-powerful: 4 +> [3839] all-seeing: 1 +> [3840] all-transforming: 1 +> [3841] all.... [3842] all. [3843] all. [3844] all [3845] all? [3846] allah: 2 +> [3847] allay: 3 +> [3848] allayed: 5 +> [3849] allege: 1 +> [3850] alleged: 16 +> [3851] alleges: 1 +> [3852] allegiance: 5 +> [3853] alleging: 4 +> [3854] allegorical: 3 +> [3855] allegorically: 1 +> [3856] allegories: 2 +> [3857] allegory: 7 +> [3858] allegory, [3859] allen: 2 +> [3860] alleviate: 4 +> [3861] alleviated: 1 +> [3862] alley: 27 +> [3863] alleys: 15 +> [3864] allez: 1 +> [3865] allez-vous: 1 +> [3866] alliance: 24 +> [3867] alliances: 4 +> [3868] allied: 10 +> [3869] alliee: 1 +> [3870] allies: 17 +> [3871] allies--the: 1 +> [3872] alligator: 1 +> [3873] alloit-il: 1 +> [3874] allons: 3 +> [3875] allopaths: 1 +> [3876] allot: 2 +> [3877] allotment: 1 +> [3878] allotments: 2 +> [3879] allotted: 10 +> [3880] allotting: 1 +> [3881] allow: 326 +> [3882] allowable: 2 +> [3883] allowance: 16 +> [3884] allowances: 5 +> [3885] allowed: 237 +> [3886] allowed--so: 1 +> [3887] allowing: 29 +> [3888] allows: 17 +> [3889] alloy: 3 +> [3890] alloyed: 1 +> [3891] allude: 14 +> [3892] alluded: 16 +> [3893] alludes: 2 +> [3894] alluding: 11 +> [3895] allure: 5 +> [3896] allured: 5 +> [3897] allurement: 2 +> [3898] allurements: 3 +> [3899] alluring: 5 +> [3900] alluringly: 1 +> [3901] allusion: 24 +> [3902] allusions: 14 +> [3903] ally: 8 +> [3904] allying: 1 +> [3905] alma: 1 +> [3906] almack's: 1 +> [3907] almanacks--“windy”--“cool”--“very: 1 +> [3908] almighty: 28 +> [3909] almighty.’: 2 +> [3910] almighty? [3911] almond: 4 +> [3912] almond-oil: 3 +> [3913] almond-shaped: 1 +> [3914] almonds: 1 +> [3915] almost: 1534 +> [3916] almost--with: 1 +> [3917] alms: 14 +> [3918] alms--the: 1 +> [3919] alms-jug: 1 +> [3920] almshouse: 6 +> [3921] almshouse, [3922] almshouses: 1 +> [3923] aloft: 11 +> [3924] alone: 1101 +> [3925] alone! [3926] alone—no: 1 +> [3927] alone—the: 1 +> [3928] alone, [3929] alone--alone: 2 +> [3930] alone--and: 1 +> [3931] alone--for: 1 +> [3932] alone--her: 1 +> [3933] alone--incurring: 1 +> [3934] alone--it: 1 +> [3935] alone--let: 1 +> [3936] alone--me: 1 +> [3937] alone--the: 2 +> [3938] alone--who: 1 +> [3939] alone--with: 1 +> [3940] alone--without: 1 +> [3941] alone--would: 1 +> [3942] alone. [3943] alone. [3944] alone? [3945] along: 709 +> [3946] along! [3947] along, [3948] along--i'll: 1 +> [3949] along--quick: 1 +> [3950] along--the: 1 +> [3951] along. [3952] alongside: 15 +> [3953] aloof: 16 +> [3954] aloofness: 6 +> [3955] alors: 1 +> [3956] aloud: 180 +> [3957] aloud!—no: 1 +> [3958] aloud--a: 1 +> [3959] aloud--irritation: 1 +> [3960] alpatych: 134 +> [3961] alpatych's: 3 +> [3962] alpha: 9 +> [3963] alphabet: 4 +> [3964] alpheus: 1 +> [3965] alphonse: 3 +> [3966] already: 1138 +> [3967] already, [3968] already--that: 1 +> [3969] already--the: 1 +> [3970] already...it: 1 +> [3971] already. [3972] already? [3973] alsace: 1 +> [3974] alsatian: 2 +> [3975] also: 840 +> [3976] also! [3977] also, [3978] also--a: 1 +> [3979] also--and: 1 +> [3980] also--but: 1 +> [3981] also--in: 1 +> [3982] also--things: 1 +> [3983] also--watched: 1 +> [3984] altar: 33 +> [3985] altar-fires, [3986] altar-rails: 2 +> [3987] altars: 2 +> [3988] alte: 1 +> [3989] alter: 26 +> [3990] alteration: 23 +> [3991] alterations: 2 +> [3992] altercation: 9 +> [3993] altercations: 2 +> [3994] altered: 43 +> [3995] altered--for: 1 +> [3996] altering: 8 +> [3997] alternate: 23 +> [3998] alternated: 6 +> [3999] alternately: 13 +> [4000] alternating: 2 +> [4001] alternations: 1 +> [4002] alternative: 13 +> [4003] alternative—that: 1 +> [4004] alternatives: 4 +> [4005] alternatives--siberia: 1 +> [4006] alters: 3 +> [4007] although: 233 +> [4008] although--in: 1 +> [4009] altogether: 210 +> [4010] altogether, [4011] altogether,’: 1 +> [4012] altogether--at: 1 +> [4013] altogether--i'm: 1 +> [4014] altogether--into: 1 +> [4015] altogether--she: 1 +> [4016] altogether. [4017] altogether? [4018] alum: 1 +> [4019] alumina: 13 +> [4020] aluminum: 4 +> [4021] always: 1893 +> [4022] always—i: 1 +> [4023] always, [4024] always--and: 1 +> [4025] always--this: 1 +> [4026] always--you: 1 +> [4027] alyona: 16 +> [4028] alyosha: 1129 +> [4029] alyosha! [4030] alyosha—all: 1 +> [4031] alyosha—don't: 1 +> [4032] alyosha—his: 1 +> [4033] alyosha—the: 1 +> [4034] alyosha's: 62 +> [4035] alyosha, [4036] alyosha. [4037] alyosha [4038] alyosha? [4039] alyoshka: 1 +> [4040] am: 3962 +> [4041] am! [4042] am's: 1 +> [4043] am,--except: 1 +> [4044] am, [4045] am--don't: 1 +> [4046] am--then: 1 +> [4047] am--to: 1 +> [4048] am--what: 1 +> [4049] am. [4050] am? [4051] amalek: 2 +> [4052] amalgam: 1 +> [4053] amalgamated: 4 +> [4054] amalgamating: 1 +> [4055] amalgamation: 2 +> [4056] amalgamator: 4 +> [4057] amalia: 68 +> [4058] amant: 1 +> [4059] amanti: 1 +> [4060] amants: 1 +> [4061] amass: 1 +> [4062] amassed: 1 +> [4063] amassing: 5 +> [4064] amateur: 6 +> [4065] amateurs: 3 +> [4066] amaze: 3 +> [4067] amazed: 68 +> [4068] amazement: 114 +> [4069] amazement--for: 1 +> [4070] amazement;--only: 1 +> [4071] amazing: 25 +> [4072] amazing--something: 1 +> [4073] amazingly: 2 +> [4074] amazon: 2 +> [4075] ambassador: 19 +> [4076] ambassador's: 20 +> [4077] ambassadors: 3 +> [4078] amber: 4 +> [4079] ambiguity: 3 +> [4080] ambiguous: 6 +> [4081] ambition: 32 +> [4082] ambitions: 5 +> [4083] ambitious: 16 +> [4084] amble: 8 +> [4085] ambled: 3 +> [4086] ambler: 1 +> [4087] ambling: 3 +> [4088] ambulance: 6 +> [4089] ambuscade: 1 +> [4090] ambush: 14 +> [4091] ame: 1 +> [4092] amelie: 2 +> [4093] amelie's: 1 +> [4094] amen: 9 +> [4095] amenable: 3 +> [4096] amend: 4 +> [4097] amende: 2 +> [4098] amended: 1 +> [4099] amending: 1 +> [4100] amendment: 1 +> [4101] amends: 5 +> [4102] amenities: 1 +> [4103] amenity: 1 +> [4104] america: 43 +> [4105] america--the: 2 +> [4106] american: 30 +> [4107] americanism: 1 +> [4108] ames: 1 +> [4109] amethyst: 1 +> [4110] amethysts: 1 +> [4111] ami: 10 +> [4112] amiabilities: 2 +> [4113] amiability: 11 +> [4114] amiable: 51 +> [4115] amiableness: 1 +> [4116] amiably: 13 +> [4117] amicable: 3 +> [4118] amicably: 9 +> [4119] amid: 124 +> [4120] amidships: 3 +> [4121] amidst: 13 +> [4122] amie: 2 +> [4123] amis: 3 +> [4124] amiss: 23 +> [4125] amiss--a: 1 +> [4126] amity: 1 +> [4127] ammonia: 9 +> [4128] ammoniac: 2 +> [4129] ammonium: 11 +> [4130] ammunition: 14 +> [4131] amnestied: 1 +> [4132] amnesty: 5 +> [4133] among: 734 +> [4134] amongst: 42 +> [4135] amor: 1 +> [4136] amore: 2 +> [4137] amorous: 5 +> [4138] amorphous: 2 +> [4139] amount: 138 +> [4140] amounted: 11 +> [4141] amounting: 5 +> [4142] amounts: 19 +> [4143] amounts.... [4144] amour: 3 +> [4145] amoureuse: 1 +> [4146] amphilochus: 1 +> [4147] amphitheater: 2 +> [4148] amphitheatre: 1 +> [4149] ample: 16 +> [4150] amply: 5 +> [4151] amputated: 4 +> [4152] amstetten: 1 +> [4153] amulet: 2 +> [4154] amuse: 44 +> [4155] amused: 59 +> [4156] amusedly: 1 +> [4157] amusement: 63 +> [4158] amusement--"and: 1 +> [4159] amusement--almost: 1 +> [4160] amusement.”: 1 +> [4161] amusement? [4162] amusements: 17 +> [4163] amusements--very: 1 +> [4164] amuses: 6 +> [4165] amusing: 77 +> [4166] amusing! [4167] amusing, [4168] amusingly: 2 +> [4169] an: 7066 +> [4170] an--an: 1 +> [4171] an--we: 1 +> [4172] anabaptists: 1 +> [4173] anachronism: 9 +> [4174] anaevsky: 2 +> [4175] analogous: 4 +> [4176] analogy: 1 +> [4177] analyse: 1 +> [4178] analysed: 3 +> [4179] analyses: 6 +> [4180] analysing: 3 +> [4181] analysis: 71 +> [4182] analysis—i: 1 +> [4183] analyst: 2 +> [4184] analysts: 1 +> [4185] analytical: 12 +> [4186] analyze: 11 +> [4187] analyzed: 9 +> [4188] analyzing: 5 +> [4189] anarchism: 1 +> [4190] anarchists: 1 +> [4191] anarchy: 2 +> [4192] anathema: 4 +> [4193] anathematized: 1 +> [4194] anatole: 208 +> [4195] anatole's: 14 +> [4196] anatomically: 1 +> [4197] anatomy: 3 +> [4198] ancestor: 2 +> [4199] ancestors: 12 +> [4200] ancestral: 2 +> [4201] anchor: 3 +> [4202] anchorage: 1 +> [4203] anchorites: 1 +> [4204] anchors: 1 +> [4205] ancien: 2 +> [4206] ancient: 121 +> [4207] ancients: 21 +> [4208] and: 90792 +> [4209] and— [4210] and—andrey: 1 +> [4211] and—damn: 1 +> [4212] and—he: 1 +> [4213] and—what: 1 +> [4214] and—would: 2 +> [4215] and'--and: 1 +> [4216] and--"puff: 1 +> [4217] and--after: 1 +> [4218] and--and: 29 +> [4219] and--and--but: 1 +> [4220] and--and--i: 1 +> [4221] and--and--oh: 1 +> [4222] and--and--the: 1 +> [4223] and--and--well: 1 +> [4224] and--as: 2 +> [4225] and--begin: 1 +> [4226] and--but: 6 +> [4227] and--can: 1 +> [4228] and--god: 1 +> [4229] and--her: 1 +> [4230] and--hey: 1 +> [4231] and--i: 4 +> [4232] and--it: 1 +> [4233] and--just: 1 +> [4234] and--like: 2 +> [4235] and--man: 1 +> [4236] and--no: 1 +> [4237] and--now: 1 +> [4238] and--oh: 1 +> [4239] and--pardon: 1 +> [4240] and--realised: 1 +> [4241] and--receiving: 1 +> [4242] and--sickened: 2 +> [4243] and--the: 1 +> [4244] and--well: 3 +> [4245] and--what: 3 +> [4246] and--what's: 1 +> [4247] and--where: 1 +> [4248] and--with: 1 +> [4249] and--yes: 1 +> [4250] and-and: 1 +> [4251] and-and--dear: 1 +> [4252] and-so: 1 +> [4253] and...i: 2 +> [4254] and...you: 1 +> [4255] andalusian: 1 +> [4256] andelys: 3 +> [4257] andre: 2 +> [4258] andreevich: 280 +> [4259] andreevich's: 8 +> [4260] andreevich--(he: 1 +> [4261] andreevitch: 7 +> [4262] andreevitch--that: 1 +> [4263] andreevna: 5 +> [4264] andrew: 1040 +> [4265] andrew!"--said: 1 +> [4266] andrew's: 95 +> [4267] andrew--"not: 1 +> [4268] andrew--a: 1 +> [4269] andrew--and: 1 +> [4270] andrew--promised: 1 +> [4271] andrew--relapsing: 1 +> [4272] andrew--she: 1 +> [4273] andrew--spoke: 1 +> [4274] andrews: 1 +> [4275] andrey: 54 +> [4276] andrey! [4277] andrey's: 3 +> [4278] andrey? [4279] andrusha: 4 +> [4280] andrusha's: 1 +> [4281] andrusha--the: 1 +> [4282] andré: 32 +> [4283] andwew: 1 +> [4284] ane: 2 +> [4285] anecdote: 34 +> [4286] anecdote! [4287] anecdote [4288] anecdotes: 23 +> [4289] anereevich: 2 +> [4290] anew: 21 +> [4291] anew--"as: 1 +> [4292] anew--but: 1 +> [4293] anferovs: 2 +> [4294] anfim: 4 +> [4295] anfisa: 4 +> [4296] anfisa's: 1 +> [4297] angel: 103 +> [4298] angel! [4299] angel's: 4 +> [4300] angel, [4301] angel--as: 1 +> [4302] angel. [4303] angel? [4304] angelic: 14 +> [4305] angelically: 1 +> [4306] angelology: 4 +> [4307] angels: 40 +> [4308] angels—vision: 1 +> [4309] angels. [4310] anger: 232 +> [4311] anger--"and: 1 +> [4312] anger--and: 1 +> [4313] anger. [4314] angered: 21 +> [4315] angering: 1 +> [4316] angers: 1 +> [4317] angew: 3 +> [4318] angina: 5 +> [4319] anglaise: 7 +> [4320] angle: 23 +> [4321] angle--so: 1 +> [4322] angle--we: 1 +> [4323] angles: 5 +> [4324] angling: 5 +> [4325] anglo-saxon: 1 +> [4326] anglomaniac: 1 +> [4327] angrier: 6 +> [4328] angrily: 232 +> [4329] angrily--"that: 1 +> [4330] angry: 489 +> [4331] angry! [4332] angry--but: 1 +> [4333] angry--ha-ha: 1 +> [4334] angry--or: 1 +> [4335] angry--over: 1 +> [4336] angry--that: 1 +> [4337] angry-looking: 5 +> [4338] angry. [4339] angry? [4340] anguish: 67 +> [4341] anguished: 4 +> [4342] angular: 5 +> [4343] anhydride: 18 +> [4344] anhydride._--this: 1 +> [4345] anhydrous: 3 +> [4346] aniline: 3 +> [4347] animal: 66 +> [4348] animal's: 1 +> [4349] animal--content: 1 +> [4350] animals: 31 +> [4351] animals--from: 1 +> [4352] animals--strong: 1 +> [4353] animate: 1 +> [4354] animated: 88 +> [4355] animatedly: 1 +> [4356] animating: 1 +> [4357] animation: 49 +> [4358] animaux: 2 +> [4359] animosity: 3 +> [4360] anise: 1 +> [4361] anisia: 2 +> [4362] aniska: 5 +> [4363] anisya: 15 +> [4364] anisya's: 1 +> [4365] anita: 2 +> [4366] anitchkin: 2 +> [4367] ankle: 5 +> [4368] ankle-deep: 1 +> [4369] ankles: 6 +> [4370] anklets: 1 +> [4371] ann: 2 +> [4372] anna: 1041 +> [4373] anna's: 82 +> [4374] anna--excuse: 1 +> [4375] anna--he: 1 +> [4376] anna--who: 1 +> [4377] anna...nor: 1 +> [4378] annals: 1 +> [4379] anne: 153 +> [4380] anne's: 19 +> [4381] anne--from: 1 +> [4382] anne--i: 1 +> [4383] annealed: 1 +> [4384] annenkoff's: 1 +> [4385] annette: 8 +> [4386] annette's: 2 +> [4387] annette--how: 1 +> [4388] annex: 1 +> [4389] annexed: 3 +> [4390] annie: 7 +> [4391] annihilate: 7 +> [4392] annihilated: 10 +> [4393] annihilating: 1 +> [4394] annihilation: 3 +> [4395] anniversary: 9 +> [4396] anno: 1 +> [4397] announce: 47 +> [4398] announced: 101 +> [4399] announcement: 19 +> [4400] announcements: 2 +> [4401] announces: 2 +> [4402] announcing: 14 +> [4403] annoy: 24 +> [4404] annoyance: 83 +> [4405] annoyance--something: 1 +> [4406] annoyances: 3 +> [4407] annoyed: 69 +> [4408] annoying: 24 +> [4409] annoys: 7 +> [4410] annual: 4 +> [4411] annually: 3 +> [4412] annulled: 1 +> [4413] annum: 1 +> [4414] annushka: 22 +> [4415] annushka's: 4 +> [4416] anointed: 1 +> [4417] anointing: 2 +> [4418] anomalies: 1 +> [4419] anomalous: 2 +> [4420] anon: 1 +> [4421] anonymous: 28 +> [4422] anonymous, [4423] anonymously: 1 +> [4424] another: 2260 +> [4425] another's: 34 +> [4426] another's--a: 1 +> [4427] another--a: 1 +> [4428] another--aglaya: 1 +> [4429] another--and: 2 +> [4430] another--bernadotte: 1 +> [4431] another--filled: 1 +> [4432] another--for: 1 +> [4433] another--he: 1 +> [4434] another--like: 1 +> [4435] another--no: 1 +> [4436] another--pierre: 1 +> [4437] another--that: 1 +> [4438] another--the: 1 +> [4439] another--there: 1 +> [4440] another--you: 1 +> [4441] another. [4442] another [4443] anothers: 1 +> [4444] another’s: 3 +> [4445] ansicht: 1 +> [4446] anstie: 1 +> [4447] answer: 898 +> [4448] answer! [4449] answer—he: 1 +> [4450] answer, [4451] answer--as: 1 +> [4452] answer--quick--the: 1 +> [4453] answer--simply: 1 +> [4454] answer--they'll: 1 +> [4455] answer--when: 1 +> [4456] answer. [4457] answerable: 6 +> [4458] answered: 1577 +> [4459] answered, [4460] answered--"he: 1 +> [4461] answered--and: 1 +> [4462] answered--he: 1 +> [4463] answered--his: 1 +> [4464] answered--it: 1 +> [4465] answered--the: 2 +> [4466] answered--though: 1 +> [4467] answered. [4468] answering: 85 +> [4469] answers: 56 +> [4470] ant: 1 +> [4471] ant-heap: 8 +> [4472] ant-hill: 1 +> [4473] antagonism: 12 +> [4474] antagonist: 11 +> [4475] antagonist's: 1 +> [4476] antagonistic: 8 +> [4477] antagonists: 2 +> [4478] antagonist’s: 1 +> [4479] antagonize: 1 +> [4480] antagonized: 1 +> [4481] ante-chamber: 3 +> [4482] ante-chamber,--hadn't: 1 +> [4483] ante-room: 6 +> [4484] ante-rooms: 1 +> [4485] antecedent: 2 +> [4486] antecedents: 2 +> [4487] antechamber: 8 +> [4488] antechambers: 1 +> [4489] antedates: 1 +> [4490] antediluvian: 1 +> [4491] anteroom: 38 +> [4492] anterooms: 1 +> [4493] anthem—and: 1 +> [4494] anthony: 111 +> [4495] anthony's: 22 +> [4496] anthony--were: 1 +> [4497] anthracite: 1 +> [4498] anthropology: 1 +> [4499] anti-christ: 1 +> [4500] anti-christ--i: 1 +> [4501] anti-french: 1 +> [4502] anti-heretical: 1 +> [4503] anti-hero: 5 +> [4504] anti-legalism: 2 +> [4505] anti-nihilism: 1 +> [4506] anti-nihilistic: 1 +> [4507] anti-pauline: 1 +> [4508] antichrist: 11 +> [4509] antichrist--i: 2 +> [4510] antichrists: 2 +> [4511] anticipate: 15 +> [4512] anticipated: 33 +> [4513] anticipates: 4 +> [4514] anticipating: 10 +> [4515] anticipation: 31 +> [4516] anticipations: 5 +> [4517] anticipatory: 2 +> [4518] antics: 6 +> [4519] antidote: 2 +> [4520] antidotes: 2 +> [4521] antinational: 1 +> [4522] antinomian: 2 +> [4523] antioch: 38 +> [4524] antiochian: 1 +> [4525] antip: 7 +> [4526] antipathetic: 1 +> [4527] antipathies: 4 +> [4528] antipathy: 9 +> [4529] antiquaries: 1 +> [4530] antiquary: 3 +> [4531] antique: 8 +> [4532] antiques: 1 +> [4533] antiquities: 3 +> [4534] antiquity: 9 +> [4535] antiseptic: 4 +> [4536] antiseptics: 1 +> [4537] antitheses: 1 +> [4538] antithesis: 12 +> [4539] antoine: 4 +> [4540] anton: 30 +> [4541] antonitch: 24 +> [4542] antonitch's: 3 +> [4543] antonov: 1 +> [4544] antonovna: 3 +> [4545] antonovna's: 1 +> [4546] ants: 11 +> [4547] anxieties: 14 +> [4548] anxieties--they: 1 +> [4549] anxiety: 159 +> [4550] anxiety--to: 1 +> [4551] anxious: 282 +> [4552] anxious-looking: 1 +> [4553] anxious. [4554] anxiously: 60 +> [4555] any: 3316 +> [4556] any--were: 1 +> [4557] any. [4558] any? [4559] anybody: 52 +> [4560] anybody"--but: 1 +> [4561] anybody'd: 1 +> [4562] anybody's: 3 +> [4563] anybody, [4564] anyhow: 28 +> [4565] anymore: 1 +> [4566] anyone: 592 +> [4567] anyone'--that's: 1 +> [4568] anyone's: 19 +> [4569] anyone--all: 1 +> [4570] anyone--but: 1 +> [4571] anyone--cleverer: 1 +> [4572] anyone--even: 1 +> [4573] anyone--to: 1 +> [4574] anyone--while: 1 +> [4575] anything: 1358 +> [4576] anything! [4577] anything's: 4 +> [4578] anything, [4579] anything--(i: 1 +> [4580] anything--agreed: 1 +> [4581] anything--and: 3 +> [4582] anything--anything: 1 +> [4583] anything--delirium: 1 +> [4584] anything--for: 3 +> [4585] anything--he: 1 +> [4586] anything--i: 1 +> [4587] anything--only: 1 +> [4588] anything--polenka: 1 +> [4589] anything--she's: 1 +> [4590] anything--we: 1 +> [4591] anything. [4592] anyway: 207 +> [4593] anyway—and: 1 +> [4594] anyway, [4595] anyway. [4596] anyways: 1 +> [4597] anywhere: 142 +> [4598] anywhere--i: 4 +> [4599] anywhere--to: 1 +> [4600] anywhere. [4601] anæmic: 1 +> [4602] apace: 2 +> [4603] apart: 206 +> [4604] apart, [4605] apart--and: 1 +> [4606] apart—mitya: 1 +> [4607] apartment: 11 +> [4608] apartments: 24 +> [4609] apathetic: 3 +> [4610] apathy: 12 +> [4611] ape: 13 +> [4612] ape--who: 1 +> [4613] aperture: 5 +> [4614] apes: 2 +> [4615] apex: 4 +> [4616] apiary: 5 +> [4617] apiece: 3 +> [4618] aping: 1 +> [4619] aplomb: 2 +> [4620] apocalypse: 31 +> [4621] apocalypses: 6 +> [4622] apocalyptic: 11 +> [4623] apocrypha: 1 +> [4624] apocryphal: 3 +> [4625] apollo: 2 +> [4626] apollon: 57 +> [4627] apollon's: 3 +> [4628] apollos: 7 +> [4629] apologetic: 8 +> [4630] apologetically: 6 +> [4631] apologetically--"pardon: 1 +> [4632] apologetics: 5 +> [4633] apologies: 9 +> [4634] apologise: 9 +> [4635] apologised: 2 +> [4636] apologising: 5 +> [4637] apologist: 1 +> [4638] apologists: 2 +> [4639] apologize: 38 +> [4640] apologize. [4641] apologized: 6 +> [4642] apologizing: 11 +> [4643] apologue: 2 +> [4644] apology: 25 +> [4645] apoplectic: 2 +> [4646] apoplexy: 2 +> [4647] apostacy: 1 +> [4648] apostasies: 1 +> [4649] apostasy: 1 +> [4650] apostate: 2 +> [4651] apostle: 70 +> [4652] apostle's: 6 +> [4653] apostles: 61 +> [4654] apostleship: 13 +> [4655] apostolate: 2 +> [4656] apostolic: 88 +> [4657] apostolicity: 6 +> [4658] apoth: 6 +> [4659] apothecaries: 2 +> [4660] apothecary: 3 +> [4661] apotheosis: 2 +> [4662] appal: 2 +> [4663] appalled: 10 +> [4664] appalling: 6 +> [4665] appallingly: 2 +> [4666] apparatus: 12 +> [4667] apparatus--_capillary: 1 +> [4668] apparel: 1 +> [4669] apparent: 94 +> [4670] apparent--such: 1 +> [4671] apparently: 208 +> [4672] apparently--you: 1 +> [4673] apparition: 12 +> [4674] apparition. [4675] apparition;--but: 1 +> [4676] apparitions: 1 +> [4677] apparitor: 2 +> [4678] appeal: 65 +> [4679] appeal— [4680] appeal—and: 1 +> [4681] appeal--from: 1 +> [4682] appeal--in: 1 +> [4683] appeal--that: 1 +> [4684] appealed: 23 +> [4685] appealing: 22 +> [4686] appeals: 6 +> [4687] appear: 209 +> [4688] appearance: 291 +> [4689] appearance--tall: 1 +> [4690] appearance--that: 1 +> [4691] appearances: 32 +> [4692] appeared: 416 +> [4693] appeared--half: 1 +> [4694] appeared--now: 1 +> [4695] appeared. [4696] appearing: 52 +> [4697] appears: 121 +> [4698] appears--certain: 1 +> [4699] appears--to: 1 +> [4700] appease: 6 +> [4701] appeased: 11 +> [4702] appellation: 4 +> [4703] appellations: 4 +> [4704] appendage: 1 +> [4705] appended: 5 +> [4706] appendices: 2 +> [4707] appendix: 11 +> [4708] appetising: 4 +> [4709] appetite: 24 +> [4710] appetites: 3 +> [4711] appetizer: 1 +> [4712] appetizers: 1 +> [4713] appetizing: 4 +> [4714] applaud: 4 +> [4715] applauded: 9 +> [4716] applauding: 6 +> [4717] applause: 27 +> [4718] apple: 25 +> [4719] apple-tree: 1 +> [4720] apple-trees: 1 +> [4721] apples: 7 +> [4722] appleton: 1 +> [4723] appliances: 2 +> [4724] applicability: 5 +> [4725] applicable: 74 +> [4726] applicant: 2 +> [4727] applicants: 2 +> [4728] application: 38 +> [4729] applications: 4 +> [4730] applied: 52 +> [4731] applies: 8 +> [4732] apply: 69 +> [4733] applying: 10 +> [4734] appoint: 1 +> [4735] appointed: 76 +> [4736] appointees: 1 +> [4737] appointing: 2 +> [4738] appointment: 51 +> [4739] appointments: 10 +> [4740] apporte: 1 +> [4741] apportioned: 3 +> [4742] apportionment: 1 +> [4743] appositely: 1 +> [4744] appositeness: 1 +> [4745] appraised: 1 +> [4746] appraising: 1 +> [4747] appreciable: 2 +> [4748] appreciably: 1 +> [4749] appreciate: 50 +> [4750] appreciated: 45 +> [4751] appreciated--none: 1 +> [4752] appreciates: 1 +> [4753] appreciating: 2 +> [4754] appreciation: 16 +> [4755] appreciative: 2 +> [4756] apprehend: 7 +> [4757] apprehended: 5 +> [4758] apprehending: 1 +> [4759] apprehension: 28 +> [4760] apprehensions: 8 +> [4761] apprehensive: 6 +> [4762] apprehensively: 10 +> [4763] apprehensiveness: 1 +> [4764] apprentice: 3 +> [4765] apprentices: 1 +> [4766] apprenticeship: 3 +> [4767] apprise: 1 +> [4768] apprised: 4 +> [4769] approach: 103 +> [4770] approached: 160 +> [4771] approaches: 7 +> [4772] approaching: 145 +> [4773] approbation: 10 +> [4774] approfondissez: 1 +> [4775] appropriate: 23 +> [4776] appropriated: 7 +> [4777] appropriately: 7 +> [4778] appropriateness: 2 +> [4779] appropriation: 1 +> [4780] approval: 36 +> [4781] approval.--so: 1 +> [4782] approve: 33 +> [4783] approve? [4784] approved: 26 +> [4785] approves: 3 +> [4786] approving: 13 +> [4787] approvingly: 14 +> [4788] approximate: 10 +> [4789] approximated: 2 +> [4790] approximately: 22 +> [4791] approximately--is: 1 +> [4792] approximating: 2 +> [4793] approximation: 3 +> [4794] appurtenances: 3 +> [4795] appwove: 1 +> [4796] appétit: 1 +> [4797] appétit--bonne: 1 +> [4798] apraksin: 1 +> [4799] apraksina: 6 +> [4800] apraksina's: 1 +> [4801] apraksins: 2 +> [4802] apres: 2 +> [4803] apricot-kernel: 2 +> [4804] april: 22 +> [4805] apron: 25 +> [4806] apron-strings: 2 +> [4807] aproned: 1 +> [4808] aprons: 3 +> [4809] apropos: 10 +> [4810] apse: 2 +> [4811] apsheron: 4 +> [4812] apsherons: 4 +> [4813] apt: 29 +> [4814] aptekarsky: 1 +> [4815] aptitude: 8 +> [4816] aptly: 4 +> [4817] apuhtin: 1 +> [4818] aquaintances: 1 +> [4819] aquarium: 1 +> [4820] aquatic: 2 +> [4821] aqueous: 5 +> [4822] aquiline: 1 +> [4823] arab: 5 +> [4824] arabchik: 1 +> [4825] arabia: 1 +> [4826] arabian: 1 +> [4827] arabic: 1 +> [4828] arable: 3 +> [4829] arachidic: 1 +> [4830] arachis: 7 +> [4831] aragon's: 1 +> [4832] arakcheev: 38 +> [4833] arakcheev's: 5 +> [4834] aramaic: 16 +> [4835] araunah: 1 +> [4836] arbat: 8 +> [4837] arbaty: 1 +> [4838] arbeitskur: 1 +> [4839] arbenin: 1 +> [4840] arbiter: 4 +> [4841] arbiters: 2 +> [4842] arbitrarily: 6 +> [4843] arbitrariness: 1 +> [4844] arbitrary: 8 +> [4845] arbitration: 1 +> [4846] arbitrator: 3 +> [4847] arbitrators: 2 +> [4848] arbois: 1 +> [4849] arbor: 5 +> [4850] arbour: 3 +> [4851] arbours: 1 +> [4852] arc: 2 +> [4853] arcade: 5 +> [4854] arcades: 1 +> [4855] arch: 9 +> [4856] arch-scoundrel: 1 +> [4857] arch-traitor: 1 +> [4858] arch-ultramontanism: 1 +> [4859] archaeologist: 1 +> [4860] archaic: 1 +> [4861] archangel: 1 +> [4862] archangels: 3 +> [4863] archbishop: 3 +> [4864] archdeacon: 2 +> [4865] archduchess: 2 +> [4866] archduchy: 1 +> [4867] archduke: 13 +> [4868] archduke's: 1 +> [4869] arched: 11 +> [4870] archery: 1 +> [4871] archery-meetings: 1 +> [4872] arches: 3 +> [4873] archimandrite: 1 +> [4874] arching: 5 +> [4875] architect: 29 +> [4876] architect's: 1 +> [4877] architects: 1 +> [4878] architectural: 2 +> [4879] architecture: 5 +> [4880] archive: 260 +> [4881] archive/american: 6 +> [4882] archives: 3 +> [4883] archly: 1 +> [4884] archness: 1 +> [4885] archway: 8 +> [4886] archways: 1 +> [4887] arcola: 3 +> [4888] arctic: 1 +> [4889] arcturus: 1 +> [4890] ardalion: 15 +> [4891] ardalionovitch: 67 +> [4892] ardalionovitch--a: 1 +> [4893] ardalionovna: 22 +> [4894] ardalionovna's: 1 +> [4895] arden: 5 +> [4896] ardent: 18 +> [4897] ardentem: 1 +> [4898] ardently: 6 +> [4899] arderne: 3 +> [4900] ardolionovitch,--persuaded: 1 +> [4901] ardor: 9 +> [4902] ardor--all: 1 +> [4903] ardors: 1 +> [4904] ardour: 5 +> [4905] arduous: 1 +> [4906] arduously: 1 +> [4907] are: 8691 +> [4908] are! [4909] are"--and: 1 +> [4910] are, [4911] are--a: 1 +> [4912] are--at: 1 +> [4913] are--came: 1 +> [4914] are--eternally--children: 1 +> [4915] are--i: 1 +> [4916] are--oh: 1 +> [4917] are--such: 1 +> [4918] are--that: 1 +> [4919] are--the: 1 +> [4920] are--yet: 1 +> [4921] are--you: 1 +> [4922] are...i've: 1 +> [4923] are. [4924] are.’: 1 +> [4925] area: 10 +> [4926] aren't: 77 +> [4927] aren't--like: 1 +> [4928] argand: 1 +> [4929] argent: 1 +> [4930] argo: 1 +> [4931] argue: 20 +> [4932] argued: 24 +> [4933] argues: 5 +> [4934] arguing: 16 +> [4935] argument: 68 +> [4936] argumenta: 2 +> [4937] argumentative: 4 +> [4938] argumentatively: 1 +> [4939] arguments: 73 +> [4940] arhip: 2 +> [4941] arias: 3 +> [4942] arid: 2 +> [4943] aright: 7 +> [4944] arimathæa: 1 +> [4945] arina: 4 +> [4946] arinka: 1 +> [4947] arinushka: 3 +> [4948] arise: 60 +> [4949] arise! [4950] arise.’: 1 +> [4951] arisen: 25 +> [4952] arises: 25 +> [4953] arising: 16 +> [4954] arising—that: 1 +> [4955] aristarchus: 1 +> [4956] aristion: 3 +> [4957] aristocracy: 12 +> [4958] aristocrat: 13 +> [4959] aristocratic: 27 +> [4960] aristocrats: 3 +> [4961] aristotle: 1 +> [4962] aristovo: 2 +> [4963] arithmetic: 14 +> [4964] arithmetic--didn't: 1 +> [4965] arithmetical: 2 +> [4966] ark: 3 +> [4967] arkady: 199 +> [4968] arkady's: 9 +> [4969] arkadyevitch: 510 +> [4970] arkadyevitch's: 37 +> [4971] arkadyevitch--all: 1 +> [4972] arkadyevna: 53 +> [4973] arkadyevna's: 3 +> [4974] arkadyevna--she: 1 +> [4975] arkasha: 49 +> [4976] arkharovs: 4 +> [4977] arles: 1 +> [4978] arm: 461 +> [4979] arm's: 6 +> [4980] arm--till: 1 +> [4981] arm-chair: 16 +> [4982] arm-chairs: 1 +> [4983] arm-in-arm: 1 +> [4984] armand: 2 +> [4985] armchair: 45 +> [4986] armchairs: 3 +> [4987] armed: 44 +> [4988] armed,’: 1 +> [4989] armee: 1 +> [4990] armenian: 6 +> [4991] armenians: 1 +> [4992] armfeldt: 11 +> [4993] armfeldt's: 1 +> [4994] armfeldts: 1 +> [4995] armful: 2 +> [4996] armfuls: 2 +> [4997] armhole: 2 +> [4998] armies: 47 +> [4999] armies--both: 1 +> [5000] armies--just: 1 +> [5001] arming: 3 +> [5002] armistice: 4 +> [5003] armoire: 2 +> [5004] armor: 5 +> [5005] armory: 1 +> [5006] armour: 4 +> [5007] armpit: 2 +> [5008] armpits: 6 +> [5009] arms: 539 +> [5010] arms!’: 1 +> [5011] arms--and: 2 +> [5012] arms--but: 1 +> [5013] arms--she: 1 +> [5014] arms--well: 1 +> [5015] army: 698 +> [5016] army's: 6 +> [5017] army--a: 2 +> [5018] army--and: 2 +> [5019] army--first: 1 +> [5020] army--french: 1 +> [5021] army--i: 1 +> [5022] army--is: 1 +> [5023] army--it: 1 +> [5024] army--moved: 1 +> [5025] army--napoleon: 1 +> [5026] army--news: 1 +> [5027] army--physically: 1 +> [5028] army--to: 1 +> [5029] army--tried: 1 +> [5030] army--was: 1 +> [5031] army--when: 1 +> [5032] army--which: 3 +> [5033] army--who: 1 +> [5034] arnauts: 2 +> [5035] arnheim: 12 +> [5036] arnheimer: 1 +> [5037] aroma: 2 +> [5038] aromatic: 6 +> [5039] aromatics: 1 +> [5040] arose: 62 +> [5041] around: 323 +> [5042] around--all: 1 +> [5043] arouse: 28 +> [5044] aroused: 83 +> [5045] arouses: 1 +> [5046] arousing: 10 +> [5047] arquebuse: 2 +> [5048] arrange: 94 +> [5049] arranged: 152 +> [5050] arranged--a: 1 +> [5051] arrangement: 49 +> [5052] arrangement--everything: 1 +> [5053] arrangements: 61 +> [5054] arrangements--leads: 1 +> [5055] arranges: 2 +> [5056] arranging: 41 +> [5057] arranging--at: 1 +> [5058] arrant: 6 +> [5059] arras: 8 +> [5060] array: 22 +> [5061] arrayed: 1 +> [5062] arrear: 2 +> [5063] arrears: 2 +> [5064] arrest: 57 +> [5065] arrest. [5066] arrested: 53 +> [5067] arresting: 2 +> [5068] arrival: 165 +> [5069] arrival's: 1 +> [5070] arrival--for: 1 +> [5071] arrival--just: 1 +> [5072] arrival--my: 1 +> [5073] arrival--that: 1 +> [5074] arrivals: 14 +> [5075] arrive: 76 +> [5076] arrived: 311 +> [5077] arrived—the: 1 +> [5078] arrived, [5079] arrived--'save: 1 +> [5080] arrived--he: 1 +> [5081] arrived? [5082] arrivee: 1 +> [5083] arrives: 9 +> [5084] arriving: 31 +> [5085] arrogance: 4 +> [5086] arrogant: 7 +> [5087] arrogantly--at: 1 +> [5088] arrogate: 1 +> [5089] arrow: 12 +> [5090] arrow-slit: 1 +> [5091] arrow-slits: 3 +> [5092] arrow [5093] arsenal: 7 +> [5094] arsenal--i: 1 +> [5095] arsenic: 2 +> [5096] arseny: 5 +> [5097] arseny's: 1 +> [5098] arshin: 1 +> [5099] arson: 3 +> [5100] art: 123 +> [5101] art--people: 1 +> [5102] art-exhibitions: 1 +> [5103] artemyevs: 11 +> [5104] arteries: 1 +> [5105] artful: 7 +> [5106] artfully: 3 +> [5107] artfulness: 2 +> [5108] arthur: 1 +> [5109] article: 123 +> [5110] article's: 1 +> [5111] article, [5112] article--and: 1 +> [5113] article--the: 1 +> [5114] article. [5115] articled: 1 +> [5116] articles: 27 +> [5117] articles, [5118] articulate: 18 +> [5119] articulated: 29 +> [5120] articulately: 1 +> [5121] articulating: 8 +> [5122] articulation: 1 +> [5123] artifice: 1 +> [5124] artifices: 2 +> [5125] artificial: 31 +> [5126] artificiality: 4 +> [5127] artificially: 15 +> [5128] artillery: 57 +> [5129] artilleryman: 7 +> [5130] artilleryman's: 1 +> [5131] artillerymen: 8 +> [5132] artillerymen's: 1 +> [5133] artisan: 2 +> [5134] artisans: 9 +> [5135] artist: 59 +> [5136] artist's: 4 +> [5137] artist-monks: 1 +> [5138] artistic: 20 +> [5139] artistically: 3 +> [5140] artists: 9 +> [5141] artizan: 1 +> [5142] artless: 6 +> [5143] artless--or: 1 +> [5144] artless-looking: 1 +> [5145] artlessness: 1 +> [5146] artois: 1 +> [5147] arts: 3 +> [5148] aryan: 1 +> [5149] arènes: 8 +> [5150] as: 18709 +> [5151] as&mdash: 1 +> [5152] as--a: 1 +> [5153] as--not: 1 +> [5154] as-as-as: 1 +> [5155] as-is: 19 +> [5156] as—he: 1 +> [5157] asbestos: 7 +> [5158] asbestos,[28: 1 +> [5159] ascend: 10 +> [5160] ascendant: 1 +> [5161] ascendant--the: 1 +> [5162] ascended: 22 +> [5163] ascending: 11 +> [5164] ascension: 2 +> [5165] ascension--an: 1 +> [5166] ascension? [5167] ascent: 6 +> [5168] ascertain: 19 +> [5169] ascertained: 13 +> [5170] ascertaining: 5 +> [5171] ascetic: 8 +> [5172] asceticism: 1 +> [5173] ascetics: 2 +> [5174] asch: 2 +> [5175] ascii: 38 +> [5176] ascribe: 10 +> [5177] ascribed: 10 +> [5178] ascribing: 1 +> [5179] ash: 52 +> [5180] ash-cat: 1 +> [5181] ash-heaps: 1 +> [5182] ash-plant: 2 +> [5183] ash-tray: 1 +> [5184] ashamed: 407 +> [5185] ashamed! [5186] ashamed--god: 1 +> [5187] ashamed--not: 1 +> [5188] ashamed. [5189] ashamed?"--she: 1 +> [5190] ashamed?--i: 1 +> [5191] ashamed? [5192] ashed: 2 +> [5193] ashes: 24 +> [5194] ashing: 1 +> [5195] ashless: 1 +> [5196] ashley: 2 +> [5197] ashore: 5 +> [5198] ashtray: 1 +> [5199] asia: 52 +> [5200] asian: 2 +> [5201] asiatic: 5 +> [5202] asiatics: 1 +> [5203] asiatique: 2 +> [5204] aside: 260 +> [5205] aside [5206] aside? [5207] aside? [5208] asile: 1 +> [5209] ask: 934 +> [5210] ask,--if: 1 +> [5211] ask, [5212] ask--how: 1 +> [5213] ask--you: 1 +> [5214] ask? [5215] askance: 31 +> [5216] asked: 2196 +> [5217] asked--don't: 1 +> [5218] asked--i: 1 +> [5219] asked--she: 1 +> [5220] askew: 3 +> [5221] asking: 328 +> [5222] asking--what: 1 +> [5223] askinson: 1 +> [5224] asks: 54 +> [5225] aslant: 3 +> [5226] asleep: 293 +> [5227] asleep—an: 1 +> [5228] asleep, [5229] asleep--he: 1 +> [5230] asleep--he'll: 1 +> [5231] asleep--it: 1 +> [5232] asleep. [5233] asleep? [5234] asparagus: 7 +> [5235] aspect: 44 +> [5236] aspect--she: 1 +> [5237] aspect--to: 1 +> [5238] aspects: 12 +> [5239] aspen: 13 +> [5240] aspens: 3 +> [5241] asperse: 1 +> [5242] aspersed: 1 +> [5243] aspersion: 1 +> [5244] aspirant: 1 +> [5245] aspiration: 3 +> [5246] aspirations: 15 +> [5247] aspire: 9 +> [5248] aspires: 2 +> [5249] aspiring: 1 +> [5250] ass: 30 +> [5251] ass! [5252] ass. [5253] assailant: 16 +> [5254] assailants: 6 +> [5255] assailed: 6 +> [5256] assails: 1 +> [5257] assassin: 1 +> [5258] assassination: 1 +> [5259] assassins: 2 +> [5260] assault: 5 +> [5261] assaulted: 1 +> [5262] assaulting: 1 +> [5263] assaults: 1 +> [5264] assemblage: 1 +> [5265] assemble: 4 +> [5266] assembled: 53 +> [5267] assemblies: 3 +> [5268] assembling: 4 +> [5269] assembly: 49 +> [5270] assent: 26 +> [5271] assented: 70 +> [5272] assenting: 4 +> [5273] assert: 24 +> [5274] assert, [5275] asserted: 13 +> [5276] asserting: 8 +> [5277] assertion: 10 +> [5278] assertions: 4 +> [5279] asserts: 5 +> [5280] asses: 3 +> [5281] assessor: 5 +> [5282] asset: 4 +> [5283] assets: 1 +> [5284] asseverations: 1 +> [5285] assez: 4 +> [5286] assiduity: 2 +> [5287] assiduous: 2 +> [5288] assiduously: 11 +> [5289] assiette: 1 +> [5290] assign: 3 +> [5291] assignat: 1 +> [5292] assignation: 1 +> [5293] assigned: 25 +> [5294] assigning: 2 +> [5295] assignment: 1 +> [5296] assimilate: 1 +> [5297] assimilated: 2 +> [5298] assimilates: 2 +> [5299] assimilating: 1 +> [5300] assimilation: 3 +> [5301] assist: 50 +> [5302] assistance: 90 +> [5303] assistant: 45 +> [5304] assistant's: 1 +> [5305] assistants: 7 +> [5306] assisted: 10 +> [5307] assisting: 7 +> [5308] assizes: 1 +> [5309] associate: 16 +> [5310] associated: 181 +> [5311] associates: 7 +> [5312] associating: 2 +> [5313] association: 16 +> [5314] associations: 8 +> [5315] assorted: 1 +> [5316] assuage: 2 +> [5317] assume: 64 +> [5318] assumed: 109 +> [5319] assumed--"and: 1 +> [5320] assumes: 12 +> [5321] assuming: 21 +> [5322] assumption: 24 +> [5323] assumption--and: 1 +> [5324] assumption--it: 1 +> [5325] assumptions: 2 +> [5326] assurance: 51 +> [5327] assurances: 10 +> [5328] assure: 206 +> [5329] assured: 71 +> [5330] assuredly: 5 +> [5331] assures: 6 +> [5332] assuring: 19 +> [5333] assyria: 1 +> [5334] assyrians: 1 +> [5335] astafieva: 1 +> [5336] asterisks: 1 +> [5337] astern: 1 +> [5338] asthma: 3 +> [5339] astir: 6 +> [5340] astonish: 9 +> [5341] astonished: 106 +> [5342] astonishes: 2 +> [5343] astonishing: 16 +> [5344] astonishingly: 4 +> [5345] astonishment: 123 +> [5346] astound: 1 +> [5347] astounded: 23 +> [5348] astounding: 14 +> [5349] astoundingly: 1 +> [5350] astounds: 1 +> [5351] astra: 1 +> [5352] astrachan: 1 +> [5353] astrachan--overcoat: 1 +> [5354] astraea: 1 +> [5355] astray: 41 +> [5356] astraying: 1 +> [5357] astride: 5 +> [5358] astrolabe: 3 +> [5359] astrolabe--was: 1 +> [5360] astrologer: 50 +> [5361] astrologer's: 8 +> [5362] astrologers: 2 +> [5363] astronomers: 3 +> [5364] astronomy: 9 +> [5365] astute: 5 +> [5366] astwide: 2 +> [5367] asunder: 4 +> [5368] asylum: 18 +> [5369] asylums: 3 +> [5370] asylums--on: 1 +> [5371] at: 21342 +> [5372] at--at: 2 +> [5373] at--so: 1 +> [5374] at--the: 1 +> [5375] at-home: 3 +> [5376] at. [5377] at? [5378] atalanta: 3 +> [5379] ate: 53 +> [5380] atelier: 2 +> [5381] athanasius: 3 +> [5382] atheism: 13 +> [5383] atheist: 18 +> [5384] atheist. [5385] atheistic: 3 +> [5386] atheists: 9 +> [5387] athenian: 2 +> [5388] athenians: 1 +> [5389] athens: 1 +> [5390] athenæus: 1 +> [5391] athirst: 1 +> [5392] athlete: 3 +> [5393] athlete's: 1 +> [5394] athletic: 3 +> [5395] athos: 5 +> [5396] athwart: 7 +> [5397] atlantic: 2 +> [5398] atlas: 1 +> [5399] atmosphere: 43 +> [5400] atmospheres: 1 +> [5401] atmospheric: 1 +> [5402] atom: 7 +> [5403] atom--in: 1 +> [5404] atoms: 12 +> [5405] atone: 15 +> [5406] atoned: 6 +> [5407] atonement: 7 +> [5408] atones: 2 +> [5409] atoning: 4 +> [5410] atop: 1 +> [5411] atque: 1 +> [5412] atrocious: 7 +> [5413] atrociously: 3 +> [5414] atrocities: 3 +> [5415] atrocity: 1 +> [5416] att-ention: 1 +> [5417] attach: 24 +> [5418] attache: 2 +> [5419] attached: 76 +> [5420] attaches: 6 +> [5421] attaching: 9 +> [5422] attachment: 12 +> [5423] attachments: 7 +> [5424] attaché: 2 +> [5425] attaché--he: 1 +> [5426] attack: 205 +> [5427] attack's: 1 +> [5428] attack--employed: 1 +> [5429] attack--knew: 1 +> [5430] attack--very: 1 +> [5431] attacked: 63 +> [5432] attacker: 1 +> [5433] attacking: 44 +> [5434] attacks: 39 +> [5435] attain: 59 +> [5436] attainable: 2 +> [5437] attained: 64 +> [5438] attaining: 16 +> [5439] attainment: 9 +> [5440] attainments: 1 +> [5441] attains: 1 +> [5442] attempt: 152 +> [5443] attempted: 39 +> [5444] attempting: 15 +> [5445] attempts: 42 +> [5446] attend: 57 +> [5447] attendance: 28 +> [5448] attendant: 21 +> [5449] attendants: 12 +> [5450] attended: 33 +> [5451] attendez: 1 +> [5452] attending: 28 +> [5453] attendre: 1 +> [5454] attends: 3 +> [5455] attention: 426 +> [5456] attention, [5457] attention.”: 1 +> [5458] attentions: 22 +> [5459] attentions--that: 1 +> [5460] attentions--you: 1 +> [5461] attention—one: 1 +> [5462] attentive: 34 +> [5463] attentively: 101 +> [5464] attentively—more: 1 +> [5465] attentiveness: 1 +> [5466] attest: 1 +> [5467] attestation: 2 +> [5468] attested: 2 +> [5469] attic: 5 +> [5470] attila's: 1 +> [5471] attilas: 4 +> [5472] attire: 35 +> [5473] attired: 4 +> [5474] attis: 1 +> [5475] attitude: 133 +> [5476] attitude--very: 1 +> [5477] attitudes: 12 +> [5478] attorney: 1 +> [5479] attract: 36 +> [5480] attracted: 86 +> [5481] attracting: 15 +> [5482] attraction: 40 +> [5483] attraction--this: 1 +> [5484] attraction. [5485] attractions: 11 +> [5486] attractive: 62 +> [5487] attractively: 1 +> [5488] attractiveness: 4 +> [5489] attracts: 4 +> [5490] attributable: 2 +> [5491] attribute: 21 +> [5492] attributed: 31 +> [5493] attributes: 9 +> [5494] attributes--love: 1 +> [5495] attributing: 6 +> [5496] attribution: 3 +> [5497] attrition: 1 +> [5498] au: 43 +> [5499] aubert-chalme: 1 +> [5500] auburn: 2 +> [5501] auch: 3 +> [5502] auction: 3 +> [5503] auctions: 1 +> [5504] audacious: 14 +> [5505] audacity: 16 +> [5506] audible: 44 +> [5507] audibly: 27 +> [5508] audience: 59 +> [5509] audience,--until: 1 +> [5510] audience--which: 1 +> [5511] audience-room: 1 +> [5512] audiences: 1 +> [5513] audit: 1 +> [5514] auditing: 3 +> [5515] auditor: 3 +> [5516] auditors: 1 +> [5517] audley: 461 +> [5518] audley's: 61 +> [5519] audley's--which: 1 +> [5520] audley--and: 1 +> [5521] audley--how: 1 +> [5522] audley--of: 1 +> [5523] audleys: 7 +> [5524] auersperg: 11 +> [5525] auersperg's: 1 +> [5526] auerstadt: 4 +> [5527] augen: 1 +> [5528] auger: 1 +> [5529] augesd: 5 +> [5530] augezd: 1 +> [5531] aught: 6 +> [5532] augment: 1 +> [5533] augmented: 2 +> [5534] augured: 1 +> [5535] august: 55 +> [5536] augustin: 2 +> [5537] aulnoy: 1 +> [5538] aunt: 96 +> [5539] aunt's: 6 +> [5540] aunt--i: 1 +> [5541] aunt--that: 1 +> [5542] auntie: 6 +> [5543] aunts: 8 +> [5544] aunts--stiva: 1 +> [5545] aureole: 1 +> [5546] aus: 3 +> [5547] ausgerechnet: 1 +> [5548] auspices: 2 +> [5549] ausrechnen: 1 +> [5550] aussi: 1 +> [5551] austere: 18 +> [5552] austerely: 2 +> [5553] austerity: 5 +> [5554] austerlitz: 54 +> [5555] austerlitz--takes: 1 +> [5556] australian: 1 +> [5557] austria: 30 +> [5558] austria's: 4 +> [5559] austrian: 72 +> [5560] austrians: 21 +> [5561] austro-prussian: 1 +> [5562] authentic: 16 +> [5563] authenticate: 1 +> [5564] authenticated: 2 +> [5565] authenticity: 11 +> [5566] author: 121 +> [5567] author's: 10 +> [5568] author> [5569] authoress?--not: 1 +> [5570] authoresses: 1 +> [5571] authorisation: 2 +> [5572] authoritative: 5 +> [5573] authoritatively: 5 +> [5574] authorities: 66 +> [5575] authorities. [5576] authority: 193 +> [5577] authority—all: 1 +> [5578] authority--went: 1 +> [5579] authorization: 1 +> [5580] authorized: 7 +> [5581] authors: 15 +> [5582] authorship: 6 +> [5583] author”: 1 +> [5584] autobiographers: 1 +> [5585] autobiography: 2 +> [5586] autoclave: 26 +> [5587] autoclaving: 1 +> [5588] autocrat: 2 +> [5589] autocratic: 1 +> [5590] autograph: 3 +> [5591] autographs: 1 +> [5592] automatic: 5 +> [5593] automatically: 2 +> [5594] automaton: 1 +> [5595] automedon: 1 +> [5596] automobile: 4 +> [5597] automobiles: 3 +> [5598] autre: 1 +> [5599] autumn: 63 +> [5600] autumnal: 2 +> [5601] aux: 7 +> [5602] auxiliary: 1 +> [5603] avail: 25 +> [5604] availability: 2 +> [5605] available: 61 +> [5606] availed: 4 +> [5607] availing: 8 +> [5608] avails: 2 +> [5609] avalanche: 2 +> [5610] avare: 1 +> [5611] avarice: 2 +> [5612] avdotya: 118 +> [5613] avdotya's: 1 +> [5614] ave: 1 +> [5615] avec: 4 +> [5616] avenge: 22 +> [5617] avenged: 6 +> [5618] avengers: 1 +> [5619] avenges: 1 +> [5620] avenging: 6 +> [5621] avenieva...and: 1 +> [5622] avenue: 57 +> [5623] avenues: 3 +> [5624] average: 15 +> [5625] averages: 2 +> [5626] averse: 1 +> [5627] aversion: 38 +> [5628] aversions: 3 +> [5629] avert: 8 +> [5630] averted: 17 +> [5631] averting: 8 +> [5632] avez: 1 +> [5633] avid: 2 +> [5634] avidity: 1 +> [5635] avignon: 2 +> [5636] avis: 1 +> [5637] avocations: 1 +> [5638] avoid: 313 +> [5639] avoidance: 7 +> [5640] avoided: 90 +> [5641] avoiding: 42 +> [5642] avoids: 2 +> [5643] avoir: 4 +> [5644] avoirdupois: 1 +> [5645] avon: 2 +> [5646] avow: 2 +> [5647] avowal: 9 +> [5648] avowal--"as: 1 +> [5649] avowals: 1 +> [5650] avowed: 5 +> [5651] avowedly: 2 +> [5652] avowing: 1 +> [5653] avows: 1 +> [5654] await: 24 +> [5655] awaited: 70 +> [5656] awaiting: 102 +> [5657] awaits: 18 +> [5658] awake: 88 +> [5659] awake. [5660] awaked: 3 +> [5661] awaken: 11 +> [5662] awakened: 23 +> [5663] awakening: 23 +> [5664] awakens: 1 +> [5665] awakes: 1 +> [5666] awaking: 3 +> [5667] award: 1 +> [5668] awarded: 5 +> [5669] awards: 3 +> [5670] aware: 238 +> [5671] aware--she: 1 +> [5672] awareness: 1 +> [5673] away: 2742 +> [5674] away! [5675] away—go: 1 +> [5676] away—she'll: 1 +> [5677] away—where: 1 +> [5678] away, [5679] away--"for: 1 +> [5680] away--a: 2 +> [5681] away--alone: 1 +> [5682] away--and: 2 +> [5683] away--get: 1 +> [5684] away--go: 1 +> [5685] away--if: 1 +> [5686] away--more: 1 +> [5687] away--seemed: 1 +> [5688] away--taken: 1 +> [5689] away--that's: 1 +> [5690] away--there: 1 +> [5691] away--to: 4 +> [5692] away--you: 20 +> [5693] away.... [5694] away. [5695] away. [5696] away [5697] away—you: 1 +> [5698] away? [5699] awe: 29 +> [5700] awe-inspiring: 1 +> [5701] awe-stricken: 3 +> [5702] awe-struck: 2 +> [5703] awed: 7 +> [5704] awestruck: 2 +> [5705] awful: 221 +> [5706] awful! [5707] awful, [5708] awful? [5709] awfully: 117 +> [5710] awfulness: 3 +> [5711] awhile: 39 +> [5712] awhile. [5713] awistocwacy: 1 +> [5714] awkward: 95 +> [5715] awkwardly: 38 +> [5716] awkwardness: 36 +> [5717] awkwardnesses: 2 +> [5718] awl: 1 +> [5719] awoke: 86 +> [5720] awry: 6 +> [5721] ax: 16 +> [5722] ax? [5723] axe: 68 +> [5724] axes: 7 +> [5725] axiom: 8 +> [5726] axiomatic: 1 +> [5727] axioms: 1 +> [5728] axles: 2 +> [5729] ay: 89 +> [5730] aye: 2 +> [5731] aylmer: 6 +> [5732] azalia: 1 +> [5733] azor: 1 +> [5734] azov: 1 +> [5735] azure: 1 +> [5736] aïe: 4 +> [5737] b: 213 +> [5738] b's: 2 +> [5739] b----n: 1 +> [5740] b--;’: 1 +> [5741] b.--the: 1 +> [5742] b.c: 1 +> [5743] ba'cawolla--i: 1 +> [5744] baa: 2 +> [5745] baal: 1 +> [5746] babble: 7 +> [5747] babbled: 6 +> [5748] babbler: 4 +> [5749] babbling: 4 +> [5750] babe: 22 +> [5751] babe—that: 1 +> [5752] babe's: 2 +> [5753] babe, [5754] babe [5755] babe? [5756] babel: 10 +> [5757] babes: 15 +> [5758] babet: 1 +> [5759] babies: 11 +> [5760] babushkin's: 2 +> [5761] baby: 169 +> [5762] baby's: 20 +> [5763] baby. [5764] babyhood: 1 +> [5765] babyish: 1 +> [5766] babylon: 13 +> [5767] babylon"--rightly: 1 +> [5768] bacchanalian: 2 +> [5769] bacchus: 2 +> [5770] bach: 1 +> [5771] bachelor: 27 +> [5772] bachelor's: 1 +> [5773] bachelors: 4 +> [5774] bachelor’s: 1 +> [5775] bachmatoff: 12 +> [5776] back: 2436 +> [5777] back! [5778] back—all: 1 +> [5779] back's: 1 +> [5780] back, [5781] back, [5782] back--but: 1 +> [5783] back--fell: 1 +> [5784] back--for: 1 +> [5785] back--he: 1 +> [5786] back--it: 1 +> [5787] back--reflect: 1 +> [5788] back--she: 1 +> [5789] back--shuddering: 1 +> [5790] back--sprang: 1 +> [5791] back--the: 1 +> [5792] back--to: 1 +> [5793] back-alley: 6 +> [5794] back-alley. [5795] back-alleys: 2 +> [5796] back-band: 1 +> [5797] back-street: 1 +> [5798] back-way: 4 +> [5799] back-yard: 3 +> [5800] back-yards: 1 +> [5801] back. [5802] back. [5803] back.”: 1 +> [5804] back? [5805] backbiter: 1 +> [5806] backbiting: 2 +> [5807] backbone: 4 +> [5808] backed: 9 +> [5809] backers: 1 +> [5810] background: 38 +> [5811] background--white: 1 +> [5812] backing: 6 +> [5813] backs: 28 +> [5814] backward: 21 +> [5815] backwardness: 2 +> [5816] backwards: 24 +> [5817] backwash: 2 +> [5818] backwater: 5 +> [5819] bacon: 11 +> [5820] bacon--the: 1 +> [5821] bacteria: 3 +> [5822] bacterial: 1 +> [5823] bad: 498 +> [5824] bad, [5825] bad--what: 1 +> [5826] bad--wrong: 1 +> [5827] bad-and: 1 +> [5828] bad-hearted: 1 +> [5829] bad-looking: 5 +> [5830] bad. [5831] bade: 43 +> [5832] baden: 4 +> [5833] baden-baden: 1 +> [5834] badge: 14 +> [5835] badger: 2 +> [5836] badger's: 1 +> [5837] badger-dog: 1 +> [5838] badgering: 1 +> [5839] badges: 4 +> [5840] badinage: 1 +> [5841] badly: 121 +> [5842] badly, [5843] badly--all: 1 +> [5844] badly--i: 1 +> [5845] badness: 3 +> [5846] badness--and: 1 +> [5847] baffled: 11 +> [5848] baffled--then: 1 +> [5849] baffling: 2 +> [5850] bag: 67 +> [5851] bag—so: 1 +> [5852] bag--"a: 1 +> [5853] bagenal: 11 +> [5854] bagenal's: 1 +> [5855] baggage: 56 +> [5856] baggy: 1 +> [5857] bagman: 2 +> [5858] bagovut: 1 +> [5859] bagovut's: 1 +> [5860] bagration: 134 +> [5861] bagration's: 21 +> [5862] bagration--being: 1 +> [5863] bags: 22 +> [5864] bah: 22 +> [5865] bah-bah-bah: 1 +> [5866] bail: 1 +> [5867] bailey: 1 +> [5868] bailiff: 51 +> [5869] bailiff's: 9 +> [5870] bailiffs: 1 +> [5871] bailly: 2 +> [5872] bain't: 4 +> [5873] bait: 2 +> [5874] baited: 1 +> [5875] baize: 3 +> [5876] baize-covered: 1 +> [5877] bakaleyev's: 8 +> [5878] bake: 1 +> [5879] baked: 4 +> [5880] bakehouses: 2 +> [5881] baker's: 7 +> [5882] bakers: 4 +> [5883] baking: 5 +> [5884] bakunin: 1 +> [5885] bal: 1 +> [5886] bal-macheve: 2 +> [5887] balaam: 1 +> [5888] balaam's: 4 +> [5889] balaamite: 1 +> [5890] balaamites: 1 +> [5891] balaga: 20 +> [5892] balalayka: 6 +> [5893] balalaïka: 1 +> [5894] balance: 41 +> [5895] balance--of: 1 +> [5896] balanced: 4 +> [5897] balancing: 5 +> [5898] balashav's: 2 +> [5899] balashev: 95 +> [5900] balashev's: 15 +> [5901] balconies: 2 +> [5902] balcony: 29 +> [5903] bald: 112 +> [5904] bald-headed: 3 +> [5905] balderdash: 1 +> [5906] baldly: 1 +> [5907] baldwin: 53 +> [5908] baldwin's: 4 +> [5909] bale: 1 +> [5910] baleful: 1 +> [5911] balk: 5 +> [5912] balked: 2 +> [5913] ball: 235 +> [5914] ball--in: 1 +> [5915] ball--struck: 1 +> [5916] ball-dress: 1 +> [5917] ball-giver: 1 +> [5918] ball-room: 6 +> [5919] ball. [5920] ball?”: 1 +> [5921] ballad: 4 +> [5922] ballade: 1 +> [5923] ballads: 2 +> [5924] ballet: 13 +> [5925] balloon: 13 +> [5926] balloons: 2 +> [5927] ballot: 6 +> [5928] balloted: 2 +> [5929] ballroom: 45 +> [5930] balls: 79 +> [5931] balls. [5932] balm: 2 +> [5933] balmy: 1 +> [5934] balsam: 1 +> [5935] balsams: 1 +> [5936] baltic: 2 +> [5937] baltimore: 1 +> [5938] balustrade: 6 +> [5939] bamboozle: 2 +> [5940] bamboozling: 1 +> [5941] ban: 3 +> [5942] banality: 1 +> [5943] band: 58 +> [5944] band-stand: 1 +> [5945] bandage: 9 +> [5946] bandaged: 25 +> [5947] bandages: 2 +> [5948] bandaging: 1 +> [5949] banded: 2 +> [5950] bandolier: 1 +> [5951] bandoliers: 1 +> [5952] bands: 28 +> [5953] bands--of: 1 +> [5954] bandsmen: 1 +> [5955] bandstand: 1 +> [5956] bandy: 4 +> [5957] bandy-legged: 2 +> [5958] bandy-legs: 1 +> [5959] bane: 4 +> [5960] banfield: 9 +> [5961] banfield's: 5 +> [5962] bang: 7 +> [5963] banged: 6 +> [5964] banging: 10 +> [5965] banish: 6 +> [5966] banished: 6 +> [5967] banishment: 1 +> [5968] banister: 1 +> [5969] bank: 111 +> [5970] bank's: 1 +> [5971] bank-book: 1 +> [5972] bank-house: 1 +> [5973] bank-notes: 3 +> [5974] bank. [5975] banker: 6 +> [5976] bankers: 2 +> [5977] bankers...they've: 1 +> [5978] banking: 5 +> [5979] banknote: 4 +> [5980] banknotes: 1 +> [5981] banknotes.... [5982] bankrupt: 7 +> [5983] bankruptcy: 4 +> [5984] banks: 35 +> [5985] banned: 1 +> [5986] banner: 17 +> [5987] banner--that: 1 +> [5988] banners: 9 +> [5989] banquet: 16 +> [5990] banquet-hall: 1 +> [5991] banquets: 1 +> [5992] banter: 8 +> [5993] bantering: 8 +> [5994] banteringly: 1 +> [5995] baptising: 1 +> [5996] baptism: 20 +> [5997] baptismal: 2 +> [5998] baptisms: 1 +> [5999] baptist: 7 +> [6000] baptist's: 1 +> [6001] baptized: 3 +> [6002] bar: 37 +> [6003] barannikov's: 1 +> [6004] barashkoff: 3 +> [6005] barashkoff--i: 1 +> [6006] barbara: 2 +> [6007] barbarian: 2 +> [6008] barbarians: 2 +> [6009] barbarism: 6 +> [6010] barbarity: 3 +> [6011] barbarous: 13 +> [6012] barbarous--monstrous: 1 +> [6013] barbeacon: 1 +> [6014] barbed: 1 +> [6015] barber: 14 +> [6016] barber's: 4 +> [6017] barbers: 1 +> [6018] barbican: 1 +> [6019] barcarolle: 2 +> [6020] barclay: 51 +> [6021] barclay's: 2 +> [6022] barclays: 1 +> [6023] bare: 189 +> [6024] bare-armed: 3 +> [6025] bare-faced: 2 +> [6026] bare-foot: 1 +> [6027] bare-footed: 2 +> [6028] bare-handed: 1 +> [6029] bare-headed: 4 +> [6030] bare-legged: 4 +> [6031] bared: 10 +> [6032] barefaced: 2 +> [6033] barefoot: 17 +> [6034] barefooted: 7 +> [6035] bareheaded: 15 +> [6036] barely: 41 +> [6037] barest: 4 +> [6038] bargain: 18 +> [6039] bargain. [6040] bargained: 8 +> [6041] bargaining: 14 +> [6042] bargains: 2 +> [6043] barge: 8 +> [6044] bargees: 1 +> [6045] bargeman: 1 +> [6046] barges: 6 +> [6047] baring: 3 +> [6048] baritone: 4 +> [6049] barium: 9 +> [6050] bark: 19 +> [6051] bark's: 1 +> [6052] barked: 3 +> [6053] barking: 14 +> [6054] barking--our: 1 +> [6055] barks: 5 +> [6056] barky: 1 +> [6057] barley: 2 +> [6058] barley-corn: 2 +> [6059] barleycorn: 1 +> [6060] barmherzige: 1 +> [6061] barn: 40 +> [6062] barn-like: 1 +> [6063] barnabas: 20 +> [6064] barnes: 1 +> [6065] barnes--all: 1 +> [6066] barnet: 3 +> [6067] barns: 7 +> [6068] barnt: 1 +> [6069] baron: 30 +> [6070] baron's: 1 +> [6071] baron--or: 1 +> [6072] baroness: 13 +> [6073] baroness's: 2 +> [6074] baronetcy: 1 +> [6075] barons: 2 +> [6076] barouche: 1 +> [6077] barque: 4 +> [6078] barrack: 1 +> [6079] barrack-room: 3 +> [6080] barracks: 17 +> [6081] barred: 12 +> [6082] barrel: 16 +> [6083] barrel-organ: 1 +> [6084] barrels: 26 +> [6085] barren: 9 +> [6086] barricade: 7 +> [6087] barricaded: 4 +> [6088] barricades: 6 +> [6089] barricading: 1 +> [6090] barrier: 40 +> [6091] barriers: 9 +> [6092] barring: 11 +> [6093] barrister: 4 +> [6094] barristers: 1 +> [6095] barrow: 1 +> [6096] barrowloads: 1 +> [6097] barrows: 1 +> [6098] barry: 5 +> [6099] bars: 15 +> [6100] bartenstein: 2 +> [6101] barter: 2 +> [6102] barters: 1 +> [6103] barthelemi: 1 +> [6104] bartholomew: 2 +> [6105] bartholomew's: 1 +> [6106] bartnyansky: 5 +> [6107] bartnyansky's: 1 +> [6108] baruch: 4 +> [6109] bas: 20 +> [6110] base: 132 +> [6111] base,'--words: 1 +> [6112] base--base: 1 +> [6113] base-born: 4 +> [6114] base-cowardly: 1 +> [6115] baseborn: 1 +> [6116] based: 89 +> [6117] based--a: 1 +> [6118] baseless: 3 +> [6119] basely: 2 +> [6120] basement: 9 +> [6121] basements: 1 +> [6122] baseness: 25 +> [6123] baseness. [6124] baser: 5 +> [6125] bases: 14 +> [6126] basest: 4 +> [6127] bashful: 13 +> [6128] bashful. [6129] bashfully: 3 +> [6130] bashfulness: 11 +> [6131] basic: 5 +> [6132] basil: 1 +> [6133] basilides: 1 +> [6134] basin: 9 +> [6135] basing: 2 +> [6136] basins: 2 +> [6137] basis: 37 +> [6138] basis--on: 1 +> [6139] bask: 2 +> [6140] basked: 1 +> [6141] basket: 14 +> [6142] basketful: 1 +> [6143] baskets: 2 +> [6144] basking: 1 +> [6145] basle: 4 +> [6146] basov: 1 +> [6147] basque: 1 +> [6148] bass: 30 +> [6149] bassano: 1 +> [6150] basset: 352 +> [6151] basset's: 30 +> [6152] basset,--unless: 1 +> [6153] basset--he: 2 +> [6154] basset--perhaps: 1 +> [6155] basset--their: 1 +> [6156] bassets: 7 +> [6157] bassompierre: 1 +> [6158] bast: 16 +> [6159] bastard: 2 +> [6160] bastards: 1 +> [6161] bastide: 2 +> [6162] bastille: 22 +> [6163] bastille--it: 1 +> [6164] bastilles: 2 +> [6165] bat: 5 +> [6166] bat!”: 1 +> [6167] bat's: 1 +> [6168] bat?”: 1 +> [6169] bataillons: 1 +> [6170] batard: 1 +> [6171] batch: 2 +> [6172] bateau: 1 +> [6173] bated: 4 +> [6174] batey: 2 +> [6175] bath: 62 +> [6176] bath--in: 1 +> [6177] bath-house: 10 +> [6178] bath-house. [6179] bathe: 7 +> [6180] bathed: 19 +> [6181] bathes: 1 +> [6182] bathhouse: 2 +> [6183] bathing: 13 +> [6184] bathing-place: 3 +> [6185] bathing-shed: 2 +> [6186] bathroom: 2 +> [6187] baths: 9 +> [6188] batiste: 4 +> [6189] batman: 1 +> [6190] baton: 3 +> [6191] bats: 9 +> [6192] bats--for: 1 +> [6193] battalion: 49 +> [6194] battalion'--and: 1 +> [6195] battalions: 24 +> [6196] battalions--which: 1 +> [6197] battens: 1 +> [6198] battered: 10 +> [6199] batteries: 14 +> [6200] battering: 4 +> [6201] battering-ram: 2 +> [6202] battering-ram--you: 1 +> [6203] battery: 76 +> [6204] battery--which: 1 +> [6205] batting: 1 +> [6206] battle: 396 +> [6207] battle--heaven: 1 +> [6208] battle--i: 1 +> [6209] battle--suddenly: 1 +> [6210] battle--tarutino: 1 +> [6211] battle--the: 1 +> [6212] battle-cry: 1 +> [6213] battle-field: 2 +> [6214] battle-fields: 1 +> [6215] battled: 1 +> [6216] battlefield: 38 +> [6217] battleground: 1 +> [6218] battlemented: 1 +> [6219] battlements: 5 +> [6220] battles: 30 +> [6221] battles--when: 1 +> [6222] battling: 1 +> [6223] battre: 2 +> [6224] baulked: 1 +> [6225] bault: 17 +> [6226] bault--martinbault: 1 +> [6227] baume: 1 +> [6228] baumé: 8 +> [6229] baur: 10 +> [6230] baur's: 7 +> [6231] bavaria: 1 +> [6232] bavarians: 2 +> [6233] bawl: 1 +> [6234] bawled: 10 +> [6235] bawling: 4 +> [6236] bay: 42 +> [6237] bayberry: 3 +> [6238] bayed: 1 +> [6239] bayeux: 2 +> [6240] baying: 2 +> [6241] bayonet: 5 +> [6242] bayoneted: 1 +> [6243] bayonets: 16 +> [6244] bays: 2 +> [6245] bazaar: 6 +> [6246] bazaars: 1 +> [6247] bazancour: 1 +> [6248] bazdeev: 5 +> [6249] bazdeev's: 5 +> [6250] bazdeevs: 1 +> [6251] be: 14639 +> [6252] be! [6253] be&mdash: 1 +> [6254] be— [6255] be—losing: 1 +> [6256] be'st: 1 +> [6257] be)--still: 1 +> [6258] be,'--out: 1 +> [6259] be, [6260] be,”: 1 +> [6261] be--against: 1 +> [6262] be--can: 1 +> [6263] be--had: 1 +> [6264] be--himself: 1 +> [6265] be--let's: 1 +> [6266] be--much: 1 +> [6267] be--not: 1 +> [6268] be--nothing: 1 +> [6269] be--one: 1 +> [6270] be--perhaps: 1 +> [6271] be--peter: 1 +> [6272] be--places: 1 +> [6273] be--seeing: 1 +> [6274] be--still: 1 +> [6275] be--stopped: 1 +> [6276] be--the: 1 +> [6277] be--to: 1 +> [6278] be--who: 1 +> [6279] be--you: 2 +> [6280] be-ne-ficial: 1 +> [6281] be-ribboned: 1 +> [6282] be.... [6283] be...forgive: 1 +> [6284] be...i: 1 +> [6285] be. [6286] be. [6287] be? [6288] beach: 2 +> [6289] beacon: 3 +> [6290] beaded: 1 +> [6291] beadle: 3 +> [6292] beads: 7 +> [6293] beady: 1 +> [6294] beak: 5 +> [6295] beaker: 21 +> [6296] beam: 8 +> [6297] beamed: 31 +> [6298] beaming: 54 +> [6299] beams: 15 +> [6300] bean: 10 +> [6301] beans: 2 +> [6302] beanstalk: 1 +> [6303] bear: 294 +> [6304] bear's: 1 +> [6305] bear-hunting: 1 +> [6306] bear-hunts: 1 +> [6307] bear... [6308] bear? [6309] bearable: 2 +> [6310] beard: 96 +> [6311] beard—if: 1 +> [6312] beard's: 1 +> [6313] bearded: 9 +> [6314] beardless: 7 +> [6315] beards: 5 +> [6316] bearer: 15 +> [6317] bearer's: 1 +> [6318] bearer,”: 1 +> [6319] bearers: 7 +> [6320] bearer’s: 1 +> [6321] beareth: 1 +> [6322] bearing: 64 +> [6323] bearing--never: 1 +> [6324] bearings: 4 +> [6325] bears: 31 +> [6326] bearskin: 4 +> [6327] bearskins: 1 +> [6328] beast: 115 +> [6329] beast's: 1 +> [6330] beast--ran: 1 +> [6331] beastliness: 7 +> [6332] beastly: 3 +> [6333] beasts: 28 +> [6334] beat: 199 +> [6335] beaten: 91 +> [6336] beater: 3 +> [6337] beaters: 1 +> [6338] beatific: 4 +> [6339] beatified: 3 +> [6340] beating: 157 +> [6341] beating—rods: 1 +> [6342] beating. [6343] beatings: 1 +> [6344] beatitude: 1 +> [6345] beatrice: 1 +> [6346] beats: 14 +> [6347] beau: 3 +> [6348] beau-frère: 2 +> [6349] beaucaire: 2 +> [6350] beauche: 1 +> [6351] beaucoup: 2 +> [6352] beaudelays: 24 +> [6353] beaudelays--in: 1 +> [6354] beaufort's: 1 +> [6355] beaufrère: 1 +> [6356] beaufrère's: 1 +> [6357] beauharnais: 2 +> [6358] beaumarchais: 3 +> [6359] beaume: 6 +> [6360] beausset: 21 +> [6361] beausset's: 4 +> [6362] beaute: 1 +> [6363] beauteous: 1 +> [6364] beauties: 6 +> [6365] beautified: 1 +> [6366] beautiful: 303 +> [6367] beautiful, [6368] beautiful--compared: 1 +> [6369] beautifully: 14 +> [6370] beautifully-worked: 1 +> [6371] beautify: 3 +> [6372] beauty: 288 +> [6373] beauty! [6374] beauty's: 1 +> [6375] beauty,--enough: 1 +> [6376] beauty--(i: 1 +> [6377] beauty--a: 1 +> [6378] beauté: 1 +> [6379] beaux: 3 +> [6380] beaux-frères: 1 +> [6381] beaver: 21 +> [6382] beavers: 3 +> [6383] bec: 5 +> [6384] became: 526 +> [6385] became--might: 1 +> [6386] because: 2003 +> [6387] because"--he: 1 +> [6388] because— [6389] because--as: 1 +> [6390] because--because: 1 +> [6391] because--excuse: 1 +> [6392] because--i: 1 +> [6393] because--that's: 1 +> [6394] because--you: 1 +> [6395] because...proud: 1 +> [6396] beck: 1 +> [6397] beckon: 4 +> [6398] beckoned: 32 +> [6399] beckoning: 7 +> [6400] beckons: 1 +> [6401] become: 550 +> [6402] become—which: 1 +> [6403] become--she: 1 +> [6404] becomes: 78 +> [6405] becoming: 98 +> [6406] becomingly: 1 +> [6407] bed: 574 +> [6408] bed! [6409] bed, [6410] bed--it's: 1 +> [6411] bed--of: 1 +> [6412] bed--the: 1 +> [6413] bed-head: 1 +> [6414] bed-linen: 1 +> [6415] bed-room: 3 +> [6416] bed;”: 1 +> [6417] bedchamber: 13 +> [6418] bedclothes: 4 +> [6419] bedding: 2 +> [6420] bedding--all: 1 +> [6421] bede-roll: 1 +> [6422] bedfellows: 3 +> [6423] bedfellows!--might: 1 +> [6424] bedford: 1 +> [6425] bedizened: 1 +> [6426] bedlam: 2 +> [6427] bedouin: 6 +> [6428] bedraggled: 1 +> [6429] bedridden: 2 +> [6430] bedroom: 102 +> [6431] bedroom—karamazov: 1 +> [6432] bedroom. [6433] bedrooms: 4 +> [6434] beds: 32 +> [6435] bedside: 22 +> [6436] bedside [6437] bedsores: 2 +> [6438] bedstead: 22 +> [6439] bedsteads: 1 +> [6440] bedtime: 2 +> [6441] bee: 29 +> [6442] bee's: 1 +> [6443] bee-garden: 1 +> [6444] bee-house: 2 +> [6445] bee-keeper: 2 +> [6446] bee-keeping: 2 +> [6447] bee-skips: 1 +> [6448] beech: 1 +> [6449] beech-wood: 1 +> [6450] beef: 22 +> [6451] beef's: 1 +> [6452] beef-steak: 1 +> [6453] beefsteak: 3 +> [6454] beehives: 2 +> [6455] beekeeper: 10 +> [6456] beekeeper's: 1 +> [6457] beekeeping: 1 +> [6458] been: 6695 +> [6459] been—i'll: 1 +> [6460] been, [6461] been--and: 1 +> [6462] been--heavens: 1 +> [6463] been--i: 1 +> [6464] been--the: 1 +> [6465] been...not: 1 +> [6466] been? [6467] beer: 23 +> [6468] beer-drinking: 1 +> [6469] bees: 42 +> [6470] bees--tamed: 1 +> [6471] bees-wax: 1 +> [6472] beeswax: 3 +> [6473] beethoven: 1 +> [6474] beetle: 7 +> [6475] beetle's: 1 +> [6476] beetle-browed: 3 +> [6477] beetle? [6478] beetles: 3 +> [6479] beetling: 1 +> [6480] beetroot: 1 +> [6481] befall: 7 +> [6482] befallen: 8 +> [6483] befalls: 1 +> [6484] befel: 2 +> [6485] befell: 4 +> [6486] befits: 5 +> [6487] befitted: 4 +> [6488] befitting: 6 +> [6489] befogged: 3 +> [6490] befooled: 1 +> [6491] before: 4187 +> [6492] before! [6493] before—an: 1 +> [6494] before—from: 1 +> [6495] before—or: 1 +> [6496] before—so: 1 +> [6497] before, [6498] before--a: 4 +> [6499] before--after: 1 +> [6500] before--all: 1 +> [6501] before--and: 1 +> [6502] before--as: 1 +> [6503] before--he: 1 +> [6504] before--human: 1 +> [6505] before--i: 1 +> [6506] before--many: 1 +> [6507] before--not: 1 +> [6508] before--now: 1 +> [6509] before--paris: 1 +> [6510] before--presented: 1 +> [6511] before--save: 1 +> [6512] before--she: 3 +> [6513] before--such: 1 +> [6514] before--that: 2 +> [6515] before--were: 1 +> [6516] before--when: 2 +> [6517] before--yes: 1 +> [6518] before. [6519] before? [6520] beforehand: 130 +> [6521] beforehand! [6522] beforehand—warns: 1 +> [6523] beforehand. [6524] befouled: 3 +> [6525] befriend: 2 +> [6526] befriended: 2 +> [6527] befriending: 1 +> [6528] beg: 253 +> [6529] beg! [6530] beg--as: 1 +> [6531] beg--by: 1 +> [6532] beg--i'll: 1 +> [6533] beg. [6534] began: 2488 +> [6535] began--at: 1 +> [6536] began--it: 1 +> [6537] begehr: 1 +> [6538] beget: 2 +> [6539] begets: 2 +> [6540] begetting: 1 +> [6541] beggar: 46 +> [6542] beggar's: 5 +> [6543] beggar-boy: 1 +> [6544] beggared: 4 +> [6545] beggarly: 9 +> [6546] beggars: 13 +> [6547] beggars. [6548] beggary: 5 +> [6549] beggary--never--no: 1 +> [6550] begged: 141 +> [6551] begging: 69 +> [6552] begier: 1 +> [6553] begin: 451 +> [6554] begin—my: 1 +> [6555] begin. [6556] begin.’: 1 +> [6557] beginner: 3 +> [6558] beginners: 3 +> [6559] beginning: 474 +> [6560] beginning, [6561] beginning--as: 1 +> [6562] beginnings: 14 +> [6563] begins: 70 +> [6564] begins--that: 1 +> [6565] begins. [6566] begone: 14 +> [6567] begot: 5 +> [6568] begotten: 8 +> [6569] begrudge: 1 +> [6570] begrudged: 1 +> [6571] begs: 11 +> [6572] beguiles: 1 +> [6573] begun: 289 +> [6574] begun--the: 1 +> [6575] behalf: 28 +> [6576] behave: 60 +> [6577] behaved: 82 +> [6578] behaves: 3 +> [6579] behaving: 20 +> [6580] behavior: 34 +> [6581] behavior [6582] behaviour: 43 +> [6583] behaviour--i: 1 +> [6584] beheaded: 3 +> [6585] beheld: 6 +> [6586] behenic: 1 +> [6587] behind: 971 +> [6588] behind--a: 1 +> [6589] behind. [6590] behindhand: 2 +> [6591] behneseh: 1 +> [6592] behold: 27 +> [6593] behold--anticipation: 1 +> [6594] beholden: 1 +> [6595] beholders: 2 +> [6596] beholding: 1 +> [6597] beholds: 1 +> [6598] behooved: 1 +> [6599] behoves: 2 +> [6600] being: 1777 +> [6601] being--a: 1 +> [6602] being--at: 1 +> [6603] being--he's: 1 +> [6604] being--i: 1 +> [6605] being--what: 1 +> [6606] being? [6607] beings: 25 +> [6608] beist: 1 +> [6609] bekleshev: 2 +> [6610] belabor: 1 +> [6611] belabored: 1 +> [6612] belabour: 3 +> [6613] belated: 3 +> [6614] belauded: 2 +> [6615] belaya: 3 +> [6616] belcher: 2 +> [6617] beldam: 1 +> [6618] belfry: 6 +> [6619] belgian: 2 +> [6620] belgians: 1 +> [6621] belgium: 1 +> [6622] belie: 1 +> [6623] belied: 3 +> [6624] belief: 60 +> [6625] beliefs: 10 +> [6626] beliefs--"i: 1 +> [6627] beliefs--he: 1 +> [6628] believe: 1237 +> [6629] believe—i: 1 +> [6630] believe, [6631] believe--cried: 1 +> [6632] believe--that: 1 +> [6633] believe--what: 1 +> [6634] believe. [6635] believe? [6636] believed: 252 +> [6637] believed! [6638] believed, [6639] believed--of: 1 +> [6640] believer: 20 +> [6641] believer's: 1 +> [6642] believers: 21 +> [6643] believes: 31 +> [6644] believest: 2 +> [6645] believest.’: 1 +> [6646] believeth: 3 +> [6647] believing: 68 +> [6648] belittle: 1 +> [6649] bell: 116 +> [6650] bell-ringing: 5 +> [6651] bell [6652] belle: 7 +> [6653] belle-soeur: 5 +> [6654] belliard: 5 +> [6655] bellies: 1 +> [6656] bellow: 4 +> [6657] bellowed: 3 +> [6658] bellowitz: 1 +> [6659] bellows: 2 +> [6660] bells: 53 +> [6661] bells. [6662] belly: 16 +> [6663] belly-band: 4 +> [6664] bellyful: 1 +> [6665] belmesov: 2 +> [6666] belong: 45 +> [6667] belonged: 78 +> [6668] belonging: 44 +> [6669] belongings: 17 +> [6670] belongings, [6671] belongs: 25 +> [6672] belova: 11 +> [6673] belova's: 1 +> [6674] beloved: 50 +> [6675] below: 308 +> [6676] below--and: 1 +> [6677] below--where: 2 +> [6678] belt: 20 +> [6679] belted: 3 +> [6680] belts: 4 +> [6681] belvedere: 3 +> [6682] belyavsky—he: 1 +> [6683] belying: 1 +> [6684] bemoan: 1 +> [6685] bemoans: 1 +> [6686] bemused: 1 +> [6687] ben: 47 +> [6688] ben's: 2 +> [6689] bench: 104 +> [6690] benches: 15 +> [6691] bend: 29 +> [6692] bended: 1 +> [6693] bending: 90 +> [6694] bends: 3 +> [6695] beneath: 60 +> [6696] benedick: 1 +> [6697] benediction: 9 +> [6698] benefactions: 2 +> [6699] benefactor: 61 +> [6700] benefactor's: 5 +> [6701] benefactor--and: 1 +> [6702] benefactors: 10 +> [6703] benefactress: 5 +> [6704] benefactress. [6705] beneficence: 4 +> [6706] beneficent: 7 +> [6707] beneficial: 5 +> [6708] benefit: 87 +> [6709] benefited: 1 +> [6710] benefits: 13 +> [6711] benevolence: 14 +> [6712] benevolent: 11 +> [6713] benevolently: 1 +> [6714] benjamin: 6 +> [6715] bennigsen: 68 +> [6716] bennigsen's: 10 +> [6717] bennigsenites: 1 +> [6718] bennigsens: 1 +> [6719] bent: 217 +> [6720] bentham: 1 +> [6721] bentinck: 2 +> [6722] bentinck--who: 1 +> [6723] benumbed: 7 +> [6724] benumbing: 1 +> [6725] benumbs: 1 +> [6726] benzine: 2 +> [6727] benôit: 58 +> [6728] benôit's: 6 +> [6729] benôit--standing: 1 +> [6730] bequeath: 2 +> [6731] bequeathed: 3 +> [6732] bequeathing: 2 +> [6733] beranger: 1 +> [6734] bereaved: 3 +> [6735] bereaves: 1 +> [6736] bereft: 2 +> [6737] berezina: 18 +> [6738] berg: 93 +> [6739] berg's: 7 +> [6740] bergs: 3 +> [6741] bergs--have: 1 +> [6742] beringed: 2 +> [6743] berkeley: 2 +> [6744] berkoot: 2 +> [6745] berkoshov: 1 +> [6746] berlin: 15 +> [6747] berlins: 1 +> [6748] bernard: 16 +> [6749] bernard's: 1 +> [6750] bernard? [6751] bernards: 1 +> [6752] bernards! [6753] berries: 3 +> [6754] berry: 1 +> [6755] bertenev's: 1 +> [6756] berth: 21 +> [6757] berthe: 4 +> [6758] berthe's: 1 +> [6759] berthelot: 2 +> [6760] berthier: 13 +> [6761] berthier's: 1 +> [6762] berthier--it: 1 +> [6763] berthiers: 1 +> [6764] berths: 5 +> [6765] bertie: 149 +> [6766] bertie's: 6 +> [6767] bertram: 22 +> [6768] bertram's: 1 +> [6769] berwick: 1 +> [6770] besashed: 1 +> [6771] beseech: 25 +> [6772] beseeches: 2 +> [6773] beseeching: 7 +> [6774] beseechingly: 1 +> [6775] besenval: 1 +> [6776] beset: 9 +> [6777] beside: 615 +> [6778] besides: 511 +> [6779] besides--besides: 1 +> [6780] besides--but: 1 +> [6781] besides--i: 1 +> [6782] besieged: 6 +> [6783] besiegers: 1 +> [6784] besmirched: 1 +> [6785] beso: 1 +> [6786] besought: 22 +> [6787] besouhoff: 1 +> [6788] bespalova: 1 +> [6789] bespatter: 1 +> [6790] bespattered: 4 +> [6791] bespattering: 1 +> [6792] bespeak: 1 +> [6793] bespoken: 2 +> [6794] besprinkled: 1 +> [6795] besprinkles: 1 +> [6796] bessieres: 1 +> [6797] best: 633 +> [6798] best--conscription: 1 +> [6799] best--recollections: 1 +> [6800] best--she: 1 +> [6801] best-known: 1 +> [6802] best-organized: 1 +> [6803] best. [6804] best? [6805] bestial: 2 +> [6806] bestiality: 1 +> [6807] bestir: 3 +> [6808] bestirred: 1 +> [6809] bestow: 10 +> [6810] bestowed: 15 +> [6811] bestowing: 4 +> [6812] bestriding: 1 +> [6813] besuhof: 4 +> [6814] besuhof--all: 1 +> [6815] bet: 53 +> [6816] bet, [6817] betaken: 2 +> [6818] bethany: 1 +> [6819] bethink: 3 +> [6820] bethinking: 5 +> [6821] bethought: 7 +> [6822] betide: 4 +> [6823] betimes: 1 +> [6824] betises: 2 +> [6825] betoken: 2 +> [6826] betokening: 1 +> [6827] betokens: 1 +> [6828] betook: 1 +> [6829] betray: 49 +> [6830] betrayal: 7 +> [6831] betrayed: 86 +> [6832] betraying: 23 +> [6833] betrays: 5 +> [6834] betrothal: 8 +> [6835] betrothed: 96 +> [6836] betrothed! [6837] betrothed--a: 1 +> [6838] bets: 4 +> [6839] betsy: 97 +> [6840] betsy's: 13 +> [6841] bettah: 1 +> [6842] betted: 1 +> [6843] better: 1404 +> [6844] better! [6845] better!”: 1 +> [6846] better, [6847] better--a: 1 +> [6848] better--and: 1 +> [6849] better--better--take: 1 +> [6850] better--cheap: 5 +> [6851] better--his: 1 +> [6852] better--imagine: 1 +> [6853] better--not: 1 +> [6854] better--she: 1 +> [6855] better--to: 1 +> [6856] better--to--don't: 1 +> [6857] better--will: 1 +> [6858] better--you: 1 +> [6859] better-looking: 2 +> [6860] better...where: 1 +> [6861] better. [6862] better?--leave: 1 +> [6863] bettering: 1 +> [6864] betterment: 1 +> [6865] betters: 6 +> [6866] betters. [6867] betting: 7 +> [6868] between: 993 +> [6869] betwixt: 3 +> [6870] beverage: 2 +> [6871] beveridge: 1 +> [6872] bewail: 1 +> [6873] bewailing: 1 +> [6874] bewails: 2 +> [6875] beware: 23 +> [6876] bewildered: 66 +> [6877] bewildering: 3 +> [6878] bewilderment: 46 +> [6879] bewitch: 1 +> [6880] bewitched: 3 +> [6881] bewitching: 7 +> [6882] bewitchingly: 1 +> [6883] beyond: 361 +> [6884] beyond, [6885] beyond. [6886] bezique: 1 +> [6887] bezubova: 1 +> [6888] bezukhov: 53 +> [6889] bezukhov's: 19 +> [6890] bezukhova: 18 +> [6891] bezukhova's: 7 +> [6892] bezwungen: 1 +> [6893] bezzemelny: 1 +> [6894] bezzubov: 5 +> [6895] bezzubova: 2 +> [6896] bianchi: 1 +> [6897] bias: 3 +> [6898] biased: 2 +> [6899] bibish--is: 1 +> [6900] bibl: 2 +> [6901] bible: 33 +> [6902] biblical: 2 +> [6903] biblicism: 1 +> [6904] bibliography: 2 +> [6905] bibulous: 1 +> [6906] bicarbonate: 3 +> [6907] biceps: 1 +> [6908] bichromate: 39 +> [6909] bichromate_--dissolve: 1 +> [6910] bichromates: 2 +> [6911] bickering: 1 +> [6912] bickers: 2 +> [6913] bid: 24 +> [6914] bidden: 16 +> [6915] bidden, [6916] bidding: 30 +> [6917] bidding--eh: 1 +> [6918] bidford: 1 +> [6919] biding: 1 +> [6920] bids: 7 +> [6921] bielokonski: 28 +> [6922] bielokonski's: 3 +> [6923] bielokonskis: 1 +> [6924] bielomirsky: 1 +> [6925] bien: 6 +> [6926] bienemann: 1 +> [6927] big: 266 +> [6928] big-bellied: 2 +> [6929] big-wigs: 3 +> [6930] big. [6931] bigger: 16 +> [6932] biggest: 4 +> [6933] bigot: 1 +> [6934] bigot--long: 1 +> [6935] bigoted: 4 +> [6936] bigotries: 1 +> [6937] bigotry: 4 +> [6938] bigots: 2 +> [6939] bigwigs: 3 +> [6940] bijou: 1 +> [6941] bile: 4 +> [6942] biliary: 1 +> [6943] bilibin: 55 +> [6944] bilibin's: 11 +> [6945] bilibin--he's: 1 +> [6946] bilibin--who: 1 +> [6947] bilious: 4 +> [6948] bill: 33 +> [6949] bill! [6950] bill:--"_soupe: 1 +> [6951] billet: 2 +> [6952] billet-doux: 2 +> [6953] billeted: 2 +> [6954] billets: 1 +> [6955] billiard: 15 +> [6956] billiard-room: 7 +> [6957] billiard-rooms: 2 +> [6958] billiard-table: 7 +> [6959] billiards: 8 +> [6960] billion: 3 +> [6961] billions: 1 +> [6962] billows: 1 +> [6963] bills: 6 +> [6964] bin: 1 +> [6965] binary: 19 +> [6966] bind: 29 +> [6967] binder: 1 +> [6968] binding: 21 +> [6969] bindings: 3 +> [6970] binds: 6 +> [6971] bindweed: 1 +> [6972] biographer: 1 +> [6973] biographical: 4 +> [6974] biographies: 3 +> [6975] biography: 6 +> [6976] biological: 2 +> [6977] biology: 1 +> [6978] biped: 2 +> [6979] birch: 42 +> [6980] birch-broom: 1 +> [6981] birch-buds: 1 +> [6982] birch-rod: 1 +> [6983] birch-tree: 1 +> [6984] birch-trees: 1 +> [6985] birchbark--and: 1 +> [6986] birches: 13 +> [6987] birchwood: 3 +> [6988] bird: 57 +> [6989] bird's: 3 +> [6990] bird-cage: 1 +> [6991] bird-catcher: 1 +> [6992] bird. [6993] birdie: 1 +> [6994] birdlike: 2 +> [6995] birds: 58 +> [6996] birds—sometimes: 1 +> [6997] biretta: 1 +> [6998] birmingham: 3 +> [6999] birth: 70 +> [7000] birth—isn't: 1 +> [7001] birth, [7002] birth--my: 1 +> [7003] birth. [7004] birthday: 36 +> [7005] birthday-party: 1 +> [7006] birthdays: 2 +> [7007] birthplace: 1 +> [7008] birthright: 1 +> [7009] births: 2 +> [7010] biryuzovsky: 1 +> [7011] biscuit: 8 +> [7012] biscuits: 8 +> [7013] biscup: 1 +> [7014] bisecting: 1 +> [7015] bishop: 56 +> [7016] bishop's: 11 +> [7017] bishopric: 1 +> [7018] bishops: 13 +> [7019] bismarck: 2 +> [7020] bit: 280 +> [7021] bit! [7022] bit, [7023] bit--he's: 1 +> [7024] bit--here: 1 +> [7025] bit--i'll: 1 +> [7026] bit--i'm: 1 +> [7027] bit--we'll: 1 +> [7028] bit. [7029] bit? [7030] bitch: 12 +> [7031] bitch's: 1 +> [7032] bite: 33 +> [7033] bite! [7034] biter: 1 +> [7035] bites: 1 +> [7036] bithynia: 2 +> [7037] biting: 24 +> [7038] bits: 36 +> [7039] bitski: 3 +> [7040] bitski's: 1 +> [7041] bitten: 15 +> [7042] bitter: 120 +> [7043] bitter--bitter: 1 +> [7044] bitter. [7045] bitterer: 2 +> [7046] bitterest: 10 +> [7047] bitterly: 79 +> [7048] bittern: 1 +> [7049] bitterness: 40 +> [7050] bitterness—i: 1 +> [7051] bituminous: 1 +> [7052] bivouac: 4 +> [7053] bivouacking: 5 +> [7054] bivouacs: 3 +> [7055] bixe: 1 +> [7056] bizarre: 3 +> [7057] bl: 1 +> [7058] blab: 2 +> [7059] blabbed: 2 +> [7060] blabbing: 1 +> [7061] black: 480 +> [7062] black's: 1 +> [7063] black--probably: 1 +> [7064] black-agate: 1 +> [7065] black-bearded: 1 +> [7066] black-beetle: 3 +> [7067] black-beetles: 1 +> [7068] black-eye: 3 +> [7069] black-eyed: 6 +> [7070] black-gloved: 1 +> [7071] black-haired: 9 +> [7072] black-hole: 1 +> [7073] black-mustached: 1 +> [7074] black-robed: 1 +> [7075] black-spotted: 3 +> [7076] blacken: 1 +> [7077] blackened: 20 +> [7078] blackening: 1 +> [7079] blacker: 5 +> [7080] blackest: 3 +> [7081] blackguard: 32 +> [7082] blackguards: 10 +> [7083] blackhaired: 1 +> [7084] blacking: 3 +> [7085] blackish: 2 +> [7086] blackly: 1 +> [7087] blackmail: 1 +> [7088] blackmailer: 1 +> [7089] blackmailing: 2 +> [7090] blackness: 7 +> [7091] blacks: 2 +> [7092] blacksmith: 5 +> [7093] blacksmith's: 5 +> [7094] blacksmiths: 1 +> [7095] blackstone: 1 +> [7096] blackthorns: 1 +> [7097] bladder: 1 +> [7098] blade: 22 +> [7099] blades: 12 +> [7100] blague: 1 +> [7101] blamable: 1 +> [7102] blame: 289 +> [7103] blame! [7104] blame, [7105] blame--is: 1 +> [7106] blame--no: 1 +> [7107] blame--that: 1 +> [7108] blame--the: 1 +> [7109] blameable: 5 +> [7110] blamed: 44 +> [7111] blameless: 5 +> [7112] blamelessly: 1 +> [7113] blamelessness: 1 +> [7114] blames: 9 +> [7115] blameworthy: 3 +> [7116] blaming: 17 +> [7117] blanc: 4 +> [7118] blanc-mange: 1 +> [7119] blanchard: 1 +> [7120] blanche: 3 +> [7121] blanched: 2 +> [7122] blanching: 1 +> [7123] bland: 2 +> [7124] blandly: 8 +> [7125] blank: 40 +> [7126] blanket: 14 +> [7127] blankly: 9 +> [7128] blankness: 2 +> [7129] blanks: 5 +> [7130] blare: 2 +> [7131] blared: 2 +> [7132] blaring: 1 +> [7133] blasius: 1 +> [7134] blaspheme: 1 +> [7135] blasphemed: 1 +> [7136] blasphemer: 1 +> [7137] blasphemies: 2 +> [7138] blaspheming: 1 +> [7139] blasphemous: 3 +> [7140] blasphemously: 1 +> [7141] blasphemy: 4 +> [7142] blasphemy--what: 1 +> [7143] blast: 13 +> [7144] blasted: 3 +> [7145] blatant: 1 +> [7146] blaze: 13 +> [7147] blazed: 9 +> [7148] blazing: 18 +> [7149] blazoned: 4 +> [7150] blazoning: 1 +> [7151] bleach: 6 +> [7152] bleached: 16 +> [7153] bleaches: 2 +> [7154] bleaching: 38 +> [7155] bleak: 5 +> [7156] blear-eyed: 1 +> [7157] bleared: 1 +> [7158] bleating: 2 +> [7159] bled: 12 +> [7160] bleed: 9 +> [7161] bleeding: 29 +> [7162] bleeds: 1 +> [7163] blemish: 3 +> [7164] blemishes: 1 +> [7165] blench: 2 +> [7166] blenched: 1 +> [7167] blend: 3 +> [7168] blend--and: 1 +> [7169] blended: 15 +> [7170] blending: 5 +> [7171] blends: 1 +> [7172] bless: 92 +> [7173] bless, [7174] blessed: 80 +> [7175] blessedness: 9 +> [7176] blesses: 3 +> [7177] blessing: 66 +> [7178] blessing—a: 1 +> [7179] blessing--before: 1 +> [7180] blessing. [7181] blessing? [7182] blessings: 9 +> [7183] blest: 3 +> [7184] blew: 36 +> [7185] blight: 1 +> [7186] blind: 86 +> [7187] blinded: 12 +> [7188] blindest: 1 +> [7189] blindfold: 4 +> [7190] blindfolded: 6 +> [7191] blinding: 7 +> [7192] blindly: 22 +> [7193] blindman's: 4 +> [7194] blindness: 8 +> [7195] blinds: 11 +> [7196] blink: 2 +> [7197] blinked: 8 +> [7198] blinking: 13 +> [7199] bliss: 37 +> [7200] blissful: 29 +> [7201] blissfully: 9 +> [7202] blister: 3 +> [7203] blistered: 2 +> [7204] blisters: 1 +> [7205] blithe: 1 +> [7206] blizzard: 2 +> [7207] bloated: 6 +> [7208] block: 24 +> [7209] blocked: 17 +> [7210] blockhead: 20 +> [7211] blockhead! [7212] blockheads: 4 +> [7213] blockhouses: 1 +> [7214] blocking: 20 +> [7215] blocks: 3 +> [7216] blond: 1 +> [7217] blonde: 16 +> [7218] blood: 429 +> [7219] blood! [7220] blood—grigory's: 1 +> [7221] blood—the: 1 +> [7222] blood's: 1 +> [7223] blood--it: 1 +> [7224] blood--that: 1 +> [7225] blood-colored: 1 +> [7226] blood-money: 1 +> [7227] blood-red: 1 +> [7228] blood-stained: 12 +> [7229] blood-vessels: 1 +> [7230] blood. [7231] blood? [7232] blooded: 1 +> [7233] bloodhound: 1 +> [7234] bloodhounds: 1 +> [7235] bloodless: 5 +> [7236] bloodshed: 20 +> [7237] bloodshed--often: 1 +> [7238] bloodshed. [7239] bloodshot: 13 +> [7240] bloodstained: 18 +> [7241] bloodstains: 3 +> [7242] bloodthirsty: 13 +> [7243] bloody: 6 +> [7244] bloody, [7245] bloom: 6 +> [7246] blooming: 3 +> [7247] blore: 24 +> [7248] blore--they: 1 +> [7249] blossom: 4 +> [7250] blossomed: 1 +> [7251] blossoming: 3 +> [7252] blossoms: 17 +> [7253] blot: 7 +> [7254] blotch: 4 +> [7255] blotches: 1 +> [7256] blotchy: 2 +> [7257] blotchy-faced: 1 +> [7258] blotted: 4 +> [7259] blotting: 2 +> [7260] blotting-book: 1 +> [7261] blotting-case: 1 +> [7262] blotting-paper: 1 +> [7263] blouse: 6 +> [7264] blouses: 1 +> [7265] blow: 154 +> [7266] blow—on: 1 +> [7267] blow,--i: 1 +> [7268] blow--"the: 1 +> [7269] blow--how: 1 +> [7270] blow--that: 1 +> [7271] blow--though: 4 +> [7272] blow--which: 1 +> [7273] blower: 2 +> [7274] blowing: 43 +> [7275] blown: 30 +> [7276] blows: 65 +> [7277] blows--how: 1 +> [7278] blubbered: 2 +> [7279] blubberers: 1 +> [7280] blubbering: 7 +> [7281] bludgeon: 1 +> [7282] bludgeon-men: 1 +> [7283] blue: 224 +> [7284] blue's: 1 +> [7285] blue-black: 1 +> [7286] blue-eyed: 3 +> [7287] blue-gray: 4 +> [7288] blue-purple: 1 +> [7289] blue-striped: 1 +> [7290] blue-tit. [7291] blue-veined: 1 +> [7292] bluebeard: 3 +> [7293] blues: 2 +> [7294] bluestocking: 2 +> [7295] bluff: 7 +> [7296] bluish: 6 +> [7297] bluish-gray: 1 +> [7298] blunder: 15 +> [7299] blundered: 8 +> [7300] blundering: 3 +> [7301] blunders: 12 +> [7302] blunt: 11 +> [7303] bluntly: 20 +> [7304] bluntly--staining: 1 +> [7305] bluntness: 4 +> [7306] blur: 4 +> [7307] blurred: 4 +> [7308] blurring: 1 +> [7309] blurs: 3 +> [7310] blurt: 5 +> [7311] blurted: 27 +> [7312] blurting: 2 +> [7313] blurts: 1 +> [7314] blush: 57 +> [7315] blush, [7316] blush--she: 1 +> [7317] blush? [7318] blushed: 144 +> [7319] blushed, [7320] blushed--when: 1 +> [7321] blushes: 13 +> [7322] blushing: 110 +> [7323] blushing--"of: 1 +> [7324] blushing? [7325] blushingly: 1 +> [7326] bluster: 3 +> [7327] blustered: 1 +> [7328] blusterer: 2 +> [7329] blusterers: 2 +> [7330] blustering: 2 +> [7331] blusterous: 1 +> [7332] boar: 1 +> [7333] board: 59 +> [7334] boarded: 2 +> [7335] boarders: 3 +> [7336] boarding: 7 +> [7337] boarding-school: 12 +> [7338] boardroom: 3 +> [7339] boards: 19 +> [7340] boards--a: 1 +> [7341] boast: 38 +> [7342] boasted: 20 +> [7343] boastful: 10 +> [7344] boastfulness: 1 +> [7345] boasting: 13 +> [7346] boasting? [7347] boasts: 1 +> [7348] boat: 92 +> [7349] boat's: 1 +> [7350] boat--i: 1 +> [7351] boat--she: 1 +> [7352] boating: 2 +> [7353] boatmen: 1 +> [7354] boats: 21 +> [7355] bob: 1 +> [7356] bobbed: 1 +> [7357] bobbery: 1 +> [7358] bobbing: 2 +> [7359] bobrishtchevs: 1 +> [7360] bobtail: 2 +> [7361] bobtailed: 5 +> [7362] boded: 3 +> [7363] bodice: 11 +> [7364] bodices: 2 +> [7365] bodies: 41 +> [7366] bodiless: 1 +> [7367] bodily: 22 +> [7368] bodily--or: 1 +> [7369] body: 325 +> [7370] body's: 2 +> [7371] body)--the: 1 +> [7372] body, [7373] body--it: 1 +> [7374] body-servant: 1 +> [7375] body;’: 1 +> [7376] bodyguard: 7 +> [7377] body’s: 1 +> [7378] bog: 4 +> [7379] bog-bean: 2 +> [7380] bogdanich: 14 +> [7381] bogdanitch: 2 +> [7382] bogdanovich: 1 +> [7383] bogdanovna: 9 +> [7384] bogdanovna's: 1 +> [7385] bogucharovo: 48 +> [7386] bogy: 1 +> [7387] bohemia: 8 +> [7388] bohemia--she: 1 +> [7389] bohemian: 6 +> [7390] bohun: 2 +> [7391] boil: 22 +> [7392] boileau: 2 +> [7393] boiled: 66 +> [7394] boiler: 6 +> [7395] boilers: 1 +> [7396] boiling: 78 +> [7397] boilings: 1 +> [7398] boils: 7 +> [7399] boire: 1 +> [7400] bois: 1 +> [7401] boisrosé: 2 +> [7402] boisterous: 6 +> [7403] boisterously: 1 +> [7404] bol: 2 +> [7405] bola: 3 +> [7406] bola's: 1 +> [7407] bold: 82 +> [7408] bold! [7409] bold-eyed: 1 +> [7410] bolded: 1 +> [7411] bolder: 8 +> [7412] boldest: 3 +> [7413] boldly: 63 +> [7414] boldly!)—no: 1 +> [7415] boldly--i: 1 +> [7416] boldness: 21 +> [7417] bolkhovitinov: 13 +> [7418] bolkonskaya: 9 +> [7419] bolkonskaya--that's: 1 +> [7420] bolkonski: 158 +> [7421] bolkonski's: 17 +> [7422] bolkonski--an: 1 +> [7423] bolkonski--she: 1 +> [7424] bolkonskis: 2 +> [7425] bologova: 1 +> [7426] bolotnoe: 1 +> [7427] bols: 1 +> [7428] bolshaia: 1 +> [7429] bolster: 4 +> [7430] bolt: 8 +> [7431] bolted: 7 +> [7432] bolting: 1 +> [7433] bolton: 2 +> [7434] bolts: 5 +> [7435] bombard: 1 +> [7436] bombarded: 2 +> [7437] bombarding: 1 +> [7438] bombardment: 3 +> [7439] bombs: 1 +> [7440] bon: 10 +> [7441] bon-bons: 1 +> [7442] bona: 1 +> [7443] bonaparte: 81 +> [7444] bonaparte's: 14 +> [7445] bonapartist: 3 +> [7446] bonbons: 2 +> [7447] bond: 18 +> [7448] bondage: 28 +> [7449] bondarchuk: 1 +> [7450] bondarchuk's: 1 +> [7451] bondarenko: 3 +> [7452] bonds: 13 +> [7453] bonds.’: 1 +> [7454] bondy: 1 +> [7455] bone: 30 +> [7456] bone--a: 1 +> [7457] boned: 1 +> [7458] bones: 33 +> [7459] bones--all: 1 +> [7460] bonfire: 3 +> [7461] bonfires: 4 +> [7462] bonheur: 2 +> [7463] bonhomie: 2 +> [7464] bonhomme: 1 +> [7465] bonina: 1 +> [7466] bonina's: 1 +> [7467] bonjour: 4 +> [7468] bonne: 7 +> [7469] bonner: 3 +> [7470] bonner's: 1 +> [7471] bonnet: 9 +> [7472] bonnets: 3 +> [7473] bonny: 1 +> [7474] bono: 1 +> [7475] bons: 2 +> [7476] bonus: 4 +> [7477] bonuses: 1 +> [7478] bony: 21 +> [7479] boo: 1 +> [7480] boobies: 1 +> [7481] booby: 4 +> [7482] booing: 1 +> [7483] book: 453 +> [7484] book--all: 1 +> [7485] book--and: 1 +> [7486] book--wasn't: 1 +> [7487] book-case: 1 +> [7488] book-religion: 1 +> [7489] bookcase: 13 +> [7490] bookcases: 3 +> [7491] booked: 1 +> [7492] booking: 1 +> [7493] booking-office: 1 +> [7494] bookish: 3 +> [7495] bookishly: 7 +> [7496] bookishness: 4 +> [7497] bookkeeping: 2 +> [7498] booklet: 1 +> [7499] books: 203 +> [7500] books—over: 1 +> [7501] books, [7502] books--heedless: 1 +> [7503] books--no: 1 +> [7504] books--to: 1 +> [7505] books? [7506] bookseller: 1 +> [7507] booksellers: 5 +> [7508] bookshelves: 2 +> [7509] bookshop: 1 +> [7510] boom: 19 +> [7511] boomed: 13 +> [7512] booming: 5 +> [7513] booms: 1 +> [7514] boon: 3 +> [7515] boor: 1 +> [7516] boorish: 1 +> [7517] boorishness: 3 +> [7518] boors: 1 +> [7519] boosey: 1 +> [7520] boot: 40 +> [7521] boot-black: 1 +> [7522] booted: 2 +> [7523] booth: 6 +> [7524] booths: 5 +> [7525] bootjack: 1 +> [7526] bootmaker: 1 +> [7527] bootmaker's: 1 +> [7528] bootmakers: 2 +> [7529] boots: 212 +> [7530] boots—she: 1 +> [7531] boots--and: 2 +> [7532] boots--for: 1 +> [7533] boots--was: 1 +> [7534] boots—that: 1 +> [7535] booty: 11 +> [7536] boozed: 1 +> [7537] borate: 1 +> [7538] borates: 1 +> [7539] borax: 10 +> [7540] bordeaux: 5 +> [7541] border: 15 +> [7542] bordered: 13 +> [7543] bordering: 4 +> [7544] borderland: 1 +> [7545] borders: 21 +> [7546] bore: 83 +> [7547] bore. [7548] boreas: 1 +> [7549] bored: 64 +> [7550] bored? [7551] boredom: 10 +> [7552] borer: 1 +> [7553] bores: 2 +> [7554] borghese: 3 +> [7555] boric: 2 +> [7556] boring: 8 +> [7557] borings: 1 +> [7558] boris: 290 +> [7559] boris!"--she: 1 +> [7560] boris'--ran: 1 +> [7561] boris--the: 1 +> [7562] borisov: 1 +> [7563] borisovna: 8 +> [7564] borissovitch: 32 +> [7565] borissovitch! [7566] borissovitch's: 2 +> [7567] borissovitch, [7568] borissovitch? [7569] borissovna: 5 +> [7570] borissovna's: 2 +> [7571] born: 85 +> [7572] borne: 51 +> [7573] borodino: 105 +> [7574] borodino--a: 1 +> [7575] borodino--defeated: 1 +> [7576] borodino--the: 1 +> [7577] borough: 22 +> [7578] borough--about: 1 +> [7579] borough--place: 1 +> [7580] borovikov: 1 +> [7581] borovitski: 1 +> [7582] borovsk: 2 +> [7583] borozdina: 1 +> [7584] borrow: 37 +> [7585] borrowed: 40 +> [7586] borrower: 1 +> [7587] borrowing: 11 +> [7588] borrows: 3 +> [7589] bory: 2 +> [7590] bory's: 3 +> [7591] borzoi: 17 +> [7592] borzoi's: 1 +> [7593] borzois: 34 +> [7594] borzozowska: 1 +> [7595] bosh: 2 +> [7596] bosham: 24 +> [7597] bosham's: 6 +> [7598] bosham--ben: 1 +> [7599] bosham--she: 1 +> [7600] boshams: 10 +> [7601] bosnia: 1 +> [7602] bosom: 97 +> [7603] bosom's: 1 +> [7604] bosom--which: 1 +> [7605] bosphorus: 2 +> [7606] boss: 5 +> [7607] bosse: 2 +> [7608] bosshard: 3 +> [7609] boston: 19 +> [7610] botanist: 3 +> [7611] botany: 2 +> [7612] both: 1196 +> [7613] both!"--vereshchagin's: 1 +> [7614] both—i: 1 +> [7615] both—at: 1 +> [7616] both--in: 1 +> [7617] both--the: 1 +> [7618] both...i: 1 +> [7619] both. [7620] both.”: 1 +> [7621] bother: 17 +> [7622] bothered: 6 +> [7623] bothering: 5 +> [7624] bothers: 1 +> [7625] bothnia: 1 +> [7626] botkine: 1 +> [7627] botolph's: 1 +> [7628] bottes: 2 +> [7629] bottle: 144 +> [7630] bottle! [7631] bottle's: 1 +> [7632] bottle--and: 1 +> [7633] bottle-nose: 2 +> [7634] bottle-wax: 1 +> [7635] bottles: 37 +> [7636] bottles! [7637] bottom: 154 +> [7638] bottomless: 2 +> [7639] bottoms: 2 +> [7640] bouchage: 5 +> [7641] bouchers: 1 +> [7642] bouches: 2 +> [7643] boudoir: 17 +> [7644] bouffé: 2 +> [7645] bough: 1 +> [7646] boughs: 3 +> [7647] bought: 102 +> [7648] bought--sismondi: 1 +> [7649] bouillis: 1 +> [7650] boulevard: 17 +> [7651] boulevards: 3 +> [7652] boulogne: 4 +> [7653] bounced: 1 +> [7654] bounces: 1 +> [7655] bouncing: 1 +> [7656] bound: 303 +> [7657] bound! [7658] boundaries: 4 +> [7659] boundary: 8 +> [7660] bounded: 15 +> [7661] bounding: 9 +> [7662] boundless: 14 +> [7663] boundless--but: 1 +> [7664] bounds: 22 +> [7665] bounds--it: 1 +> [7666] bounteous: 2 +> [7667] bountiful: 1 +> [7668] bountifully: 1 +> [7669] bounty: 1 +> [7670] bounty--who: 1 +> [7671] bouquet: 14 +> [7672] bouquets: 8 +> [7673] bourbon: 2 +> [7674] bourbons: 7 +> [7675] bourdaloue: 2 +> [7676] bourdon: 1 +> [7677] bourgeois: 12 +> [7678] bourienne: 112 +> [7679] bourienne's: 14 +> [7680] bourienne--a: 1 +> [7681] bourienne--had: 1 +> [7682] bourienne--i: 1 +> [7683] bourienne--who: 1 +> [7684] bout: 8 +> [7685] bouts: 3 +> [7686] bovary: 1 +> [7687] bow: 136 +> [7688] bow-shot: 1 +> [7689] bow. [7690] bowed: 220 +> [7691] bowels: 3 +> [7692] bowen: 8 +> [7693] bower: 3 +> [7694] bowing: 95 +> [7695] bowing--to: 1 +> [7696] bowl: 20 +> [7697] bowled: 6 +> [7698] bowlegged: 1 +> [7699] bowling: 2 +> [7700] bowls: 2 +> [7701] bows: 23 +> [7702] bowshot: 1 +> [7703] bowwowing: 1 +> [7704] bowyer: 1 +> [7705] box: 184 +> [7706] box--her: 1 +> [7707] box-clad: 1 +> [7708] box-keeper: 1 +> [7709] box-opener: 2 +> [7710] box-seat: 1 +> [7711] box [7712] boxed: 3 +> [7713] boxer: 15 +> [7714] boxes: 39 +> [7715] boxing: 7 +> [7716] boy: 806 +> [7717] boy! [7718] boy—and: 1 +> [7719] boy's: 48 +> [7720] boy, [7721] boy---looked: 1 +> [7722] boy--god: 3 +> [7723] boy--great: 1 +> [7724] boy--it's: 1 +> [7725] boy--that: 1 +> [7726] boy--the: 1 +> [7727] boy--their: 1 +> [7728] boy--why: 1 +> [7729] boy--will: 1 +> [7730] boy. [7731] boy [7732] boy—madame: 1 +> [7733] boy? [7734] boyard: 2 +> [7735] boyards: 1 +> [7736] boyars: 7 +> [7737] boyhood: 12 +> [7738] boyhood's: 1 +> [7739] boyish: 13 +> [7740] boyishness: 1 +> [7741] boylike: 1 +> [7742] boys: 152 +> [7743] boys! [7744] boys, [7745] boys. [7746] boys [7747] brace: 4 +> [7748] braced: 12 +> [7749] bracelet: 3 +> [7750] bracelets: 2 +> [7751] braces: 4 +> [7752] bracing: 3 +> [7753] bracken: 5 +> [7754] bracketed: 1 +> [7755] brag: 8 +> [7756] braggart: 6 +> [7757] bragged: 4 +> [7758] bragged! [7759] bragging: 5 +> [7760] braid: 1 +> [7761] braided: 5 +> [7762] braiding: 1 +> [7763] brain: 141 +> [7764] brain! [7765] brain--and: 1 +> [7766] brain--seemed: 1 +> [7767] brain--that's: 1 +> [7768] brain--there: 1 +> [7769] brain-spun: 1 +> [7770] brain. [7771] brainless: 3 +> [7772] brains: 34 +> [7773] brains—you'll: 1 +> [7774] brains, [7775] brains. [7776] brake: 2 +> [7777] bran: 2 +> [7778] branch: 34 +> [7779] branched: 1 +> [7780] branches: 43 +> [7781] branches--and: 2 +> [7782] brand: 8 +> [7783] brand-new: 5 +> [7784] branded: 9 +> [7785] brandies: 1 +> [7786] brandish: 1 +> [7787] brandished: 11 +> [7788] brandishing: 12 +> [7789] brandon: 6 +> [7790] brands: 3 +> [7791] brandy: 54 +> [7792] brandy!...what: 1 +> [7793] brandy's: 2 +> [7794] brandy, [7795] brandy. [7796] brandy [7797] brandy? [7798] brannan: 2 +> [7799] brantôme: 1 +> [7800] bras: 3 +> [7801] brass: 37 +> [7802] brass-studded: 3 +> [7803] brass-workers: 1 +> [7804] brasses: 1 +> [7805] brat: 3 +> [7806] brat. [7807] brats: 2 +> [7808] braunau: 14 +> [7809] bravado: 8 +> [7810] bravado. [7811] brave: 63 +> [7812] braved: 2 +> [7813] bravely: 23 +> [7814] bravely--and: 1 +> [7815] braver: 5 +> [7816] bravery: 3 +> [7817] bravery [7818] braves: 1 +> [7819] bravest: 9 +> [7820] bravo: 23 +> [7821] bravo!"--there: 1 +> [7822] bravoure: 1 +> [7823] brawl: 4 +> [7824] brawler: 5 +> [7825] brawlers: 2 +> [7826] brawling: 5 +> [7827] brawls: 3 +> [7828] bray: 8 +> [7829] brayer: 1 +> [7830] brazen: 4 +> [7831] brazen-faced: 1 +> [7832] brazenly: 1 +> [7833] brazier: 4 +> [7834] brazil: 6 +> [7835] breach: 63 +> [7836] breach--in: 1 +> [7837] breached: 1 +> [7838] breaches: 3 +> [7839] bread: 232 +> [7840] bread--and: 1 +> [7841] bread--he'll: 1 +> [7842] bread--to: 1 +> [7843] bread-and-butter: 2 +> [7844] bread-tax: 1 +> [7845] bread-taxes: 1 +> [7846] bread. [7847] breadth: 18 +> [7848] break: 213 +> [7849] break-up: 1 +> [7850] breakdown: 3 +> [7851] breakers: 1 +> [7852] breakers-up: 1 +> [7853] breaketh: 2 +> [7854] breakfast: 40 +> [7855] breakfast--and: 1 +> [7856] breakfasted: 2 +> [7857] breakfasting: 2 +> [7858] breakfasts: 2 +> [7859] breaking: 110 +> [7860] breaking-up: 3 +> [7861] breaks: 22 +> [7862] breakwater: 1 +> [7863] breast: 172 +> [7864] breast, [7865] breast, [7866] breast-high: 1 +> [7867] breast-piece: 1 +> [7868] breast-pocket: 2 +> [7869] breast [7870] breast? [7871] breastbone: 1 +> [7872] breasts: 7 +> [7873] breasts--for: 1 +> [7874] breastworks: 1 +> [7875] breath: 249 +> [7876] breath, [7877] breath--because: 1 +> [7878] breath--but: 1 +> [7879] breath--mad: 1 +> [7880] breathe: 54 +> [7881] breathed: 40 +> [7882] breathes: 1 +> [7883] breathing: 99 +> [7884] breathing's: 1 +> [7885] breathing--a: 1 +> [7886] breathing-space: 1 +> [7887] breathings: 1 +> [7888] breathless: 70 +> [7889] breathless--to: 1 +> [7890] breathlessly: 17 +> [7891] breathlessly--"a: 1 +> [7892] breathlessness: 1 +> [7893] breaths: 7 +> [7894] bred: 9 +> [7895] bredon: 1 +> [7896] breech-band: 1 +> [7897] breechband: 6 +> [7898] breeches: 34 +> [7899] breeches-pockets: 1 +> [7900] breeching: 4 +> [7901] breeching-straps: 1 +> [7902] breed: 6 +> [7903] breeder's: 1 +> [7904] breeding: 61 +> [7905] breeding-place: 1 +> [7906] breeding. [7907] breeding.”: 2 +> [7908] breeds: 2 +> [7909] breeze: 15 +> [7910] breezes: 1 +> [7911] breezily: 1 +> [7912] breezy: 2 +> [7913] brekhunov: 9 +> [7914] brekhunovs: 2 +> [7915] bremen: 1 +> [7916] brenda: 1 +> [7917] brenteln: 1 +> [7918] bresly: 8 +> [7919] bretagne: 9 +> [7920] brethren: 27 +> [7921] breton: 4 +> [7922] bretons: 1 +> [7923] brevity: 4 +> [7924] brew: 3 +> [7925] brewed: 1 +> [7926] brewer: 2 +> [7927] brewing: 6 +> [7928] bribe: 8 +> [7929] bribe--and: 1 +> [7930] bribe-taker: 2 +> [7931] bribed: 4 +> [7932] bribery: 4 +> [7933] bribes: 16 +> [7934] bribes. [7935] bribing: 1 +> [7936] brick: 36 +> [7937] brick! [7938] brick-red: 1 +> [7939] brick.’: 1 +> [7940] bricked: 4 +> [7941] brickfield: 1 +> [7942] bricklayers: 1 +> [7943] bricks: 14 +> [7944] brickwork: 1 +> [7945] bridal: 11 +> [7946] bridal-mother: 1 +> [7947] bride: 61 +> [7948] bride's: 6 +> [7949] bride-clothes: 1 +> [7950] bride-elect’s: 1 +> [7951] bridegroom: 32 +> [7952] bridegroom's: 1 +> [7953] bridegroom, [7954] bridegroom-to-be: 1 +> [7955] bridegrooms: 1 +> [7956] bridegroom’s: 5 +> [7957] brides: 3 +> [7958] bridesmaid: 5 +> [7959] bridesmaids: 16 +> [7960] bride’s: 2 +> [7961] bridge: 226 +> [7962] bridge. [7963] bridge. [7964] bridgehead: 3 +> [7965] bridges: 21 +> [7966] bridgewater: 2 +> [7967] bridle: 27 +> [7968] bridled: 2 +> [7969] bridles: 3 +> [7970] brief: 97 +> [7971] brief, [7972] briefest: 1 +> [7973] briefly: 37 +> [7974] brierly: 15 +> [7975] brigade: 5 +> [7976] brigade--gave: 1 +> [7977] brigadier: 1 +> [7978] brigand: 9 +> [7979] brigandage: 1 +> [7980] brigands: 17 +> [7981] brigands--he: 1 +> [7982] brigands--the: 1 +> [7983] bright: 258 +> [7984] bright--as: 1 +> [7985] bright-blue: 1 +> [7986] bright-colored: 1 +> [7987] bright-eyed: 2 +> [7988] bright-faced: 1 +> [7989] bright-red: 1 +> [7990] brighten: 4 +> [7991] brightened: 25 +> [7992] brightening: 6 +> [7993] brightens: 1 +> [7994] brighter: 26 +> [7995] brightest: 5 +> [7996] brightly: 62 +> [7997] brightly-lighted: 1 +> [7998] brightness: 29 +> [7999] brillaut: 1 +> [8000] brilliance: 19 +> [8001] brilliancy: 4 +> [8002] brilliant: 151 +> [8003] brilliantine: 1 +> [8004] brilliantly: 10 +> [8005] brilliants: 1 +> [8006] brim: 3 +> [8007] brim. [8008] brimful: 3 +> [8009] brimless: 1 +> [8010] brimming: 11 +> [8011] brin: 2 +> [8012] brindle: 1 +> [8013] brindled: 1 +> [8014] brine: 15 +> [8015] bring: 478 +> [8016] bringeth: 2 +> [8017] bringing: 119 +> [8018] bringing-up: 3 +> [8019] bringing. [8020] brings: 36 +> [8021] brink: 13 +> [8022] brisk: 9 +> [8023] brisker: 2 +> [8024] briskly: 51 +> [8025] briskness: 3 +> [8026] bristle: 4 +> [8027] bristled: 2 +> [8028] bristles: 1 +> [8029] bristling: 2 +> [8030] bristly: 1 +> [8031] bristol: 3 +> [8032] brisé: 1 +> [8033] britain: 5 +> [8034] british: 3 +> [8035] briton--and: 1 +> [8036] briton--was: 1 +> [8037] britons: 1 +> [8038] brittany: 3 +> [8039] brittle: 3 +> [8040] broach: 1 +> [8041] broaching: 2 +> [8042] broad: 125 +> [8043] broad-backed: 1 +> [8044] broad-bladed: 1 +> [8045] broad-boned: 3 +> [8046] broad-brimmed: 1 +> [8047] broad-browed: 1 +> [8048] broad-faced: 1 +> [8049] broad-haunched: 2 +> [8050] broad-hemmed: 1 +> [8051] broad-leaved: 1 +> [8052] broad-minded. [8053] broad-shouldered: 8 +> [8054] broadcast: 2 +> [8055] broadcloth: 3 +> [8056] broadened: 4 +> [8057] broadening: 1 +> [8058] broader: 6 +> [8059] broadly: 5 +> [8060] broadsheet: 7 +> [8061] broadsheets: 11 +> [8062] broadshouldered: 1 +> [8063] brocade: 2 +> [8064] brocaded: 2 +> [8065] broch: 1 +> [8066] broderie: 4 +> [8067] broidered: 1 +> [8068] broke: 327 +> [8069] broke—it: 1 +> [8070] broke--or: 1 +> [8071] broken: 270 +> [8072] broken—all: 1 +> [8073] broken-down: 3 +> [8074] broken-spirited: 2 +> [8075] brokenly: 2 +> [8076] bronnikov's: 1 +> [8077] bronnitski: 1 +> [8078] bronnitskis: 1 +> [8079] bronze: 13 +> [8080] bronzed: 1 +> [8081] bronzes: 4 +> [8082] brooch: 2 +> [8083] brood: 12 +> [8084] brooded: 17 +> [8085] brooding: 24 +> [8086] broods: 1 +> [8087] brook: 11 +> [8088] brooke: 1 +> [8089] brooked: 1 +> [8090] broom: 7 +> [8091] broom. [8092] bros: 2 +> [8093] broseley: 1 +> [8094] brosse: 2 +> [8095] broth: 8 +> [8096] brothels: 2 +> [8097] brother: 1028 +> [8098] brother! [8099] brother—it's: 1 +> [8100] brother's: 143 +> [8101] brother, [8102] brother--ach: 1 +> [8103] brother--seemed: 1 +> [8104] brother--that: 1 +> [8105] brother-in-law: 33 +> [8106] brother-in-law's: 3 +> [8107] brother-instructor: 1 +> [8108] brother-men: 1 +> [8109] brother. [8110] brother [8111] brother [8112] brother? [8113] brotherhood: 39 +> [8114] brotherhoods: 2 +> [8115] brotherly: 25 +> [8116] brothers: 151 +> [8117] brothers! [8118] brothers—others: 1 +> [8119] brothers, [8120] brothers-in-law: 3 +> [8121] brothers.--nikolay: 1 +> [8122] brothers? [8123] brought: 969 +> [8124] brought--bread: 1 +> [8125] brought-up: 3 +> [8126] broussier: 3 +> [8127] broussier's: 2 +> [8128] brow: 65 +> [8129] brow-beat: 1 +> [8130] brow-beating: 1 +> [8131] browbeat: 1 +> [8132] brown: 60 +> [8133] brown-faced: 1 +> [8134] browned: 2 +> [8135] brownie: 2 +> [8136] brownish: 4 +> [8137] browns: 2 +> [8138] brows: 74 +> [8139] brozin: 1 +> [8140] brrr: 1 +> [8141] bruges: 1 +> [8142] bruin: 2 +> [8143] bruise: 5 +> [8144] bruise--a: 1 +> [8145] bruise.’: 1 +> [8146] bruised: 13 +> [8147] bruises: 12 +> [8148] brumaire: 2 +> [8149] brummell: 2 +> [8150] brummellically: 1 +> [8151] brummell’s: 3 +> [8152] brunette: 5 +> [8153] brunn: 11 +> [8154] brunn's: 1 +> [8155] brunswick: 2 +> [8156] brunt: 5 +> [8157] brush: 28 +> [8158] brushed: 36 +> [8159] brushes: 10 +> [8160] brushing: 7 +> [8161] brushwood: 3 +> [8162] brusque: 3 +> [8163] brusquely: 6 +> [8164] brusqueness: 1 +> [8165] brutal: 31 +> [8166] brutality: 3 +> [8167] brutally: 8 +> [8168] brute: 33 +> [8169] brutes: 12 +> [8170] brutish: 5 +> [8171] brutus: 1 +> [8172] bruyere: 1 +> [8173] bryansky: 3 +> [8174] bryansky's: 6 +> [8175] bryantsev: 1 +> [8176] bu: 1 +> [8177] bubble: 2 +> [8178] bubble's: 1 +> [8179] bubble-organism: 1 +> [8180] bubbled: 1 +> [8181] bubbles: 6 +> [8182] bubbling: 5 +> [8183] buch's: 1 +> [8184] bucharest: 2 +> [8185] bucharest--where: 1 +> [8186] buck: 1 +> [8187] bucket: 3 +> [8188] bucketfuls: 1 +> [8189] buckingham: 1 +> [8190] buckinghamshire: 1 +> [8191] buckle: 8 +> [8192] buckled: 5 +> [8193] buckler: 2 +> [8194] buckles: 3 +> [8195] bucks: 3 +> [8196] buckwheat: 10 +> [8197] bud: 4 +> [8198] budded: 1 +> [8199] buddhists: 1 +> [8200] buddhists--what: 1 +> [8201] budding: 4 +> [8202] budge: 8 +> [8203] budged: 2 +> [8204] budget: 3 +> [8205] budging: 1 +> [8206] buds: 10 +> [8207] buff: 4 +> [8208] buffet: 9 +> [8209] buffeted: 2 +> [8210] buffets: 1 +> [8211] buffoon: 37 +> [8212] buffoon [8213] buffoon? [8214] buffoonery: 9 +> [8215] buffoons: 5 +> [8216] bug: 4 +> [8217] bugbear: 1 +> [8218] bugle: 2 +> [8219] bugler: 4 +> [8220] bugs: 1 +> [8221] bugs. [8222] build: 38 +> [8223] builded: 2 +> [8224] builder's: 1 +> [8225] builders: 3 +> [8226] building: 83 +> [8227] building. [8228] buildings: 30 +> [8229] buildings--schools: 1 +> [8230] builds: 3 +> [8231] built: 87 +> [8232] bulb: 7 +> [8233] bulgaria: 1 +> [8234] bulgarian: 2 +> [8235] bulged: 3 +> [8236] bulges: 2 +> [8237] bulging: 4 +> [8238] bulk: 8 +> [8239] bulkin's: 1 +> [8240] bulks: 1 +> [8241] bulky: 2 +> [8242] bull: 13 +> [8243] bull's-eye: 1 +> [8244] bull-fights: 1 +> [8245] bull-headed: 1 +> [8246] bull-pup: 1 +> [8247] bulldog: 1 +> [8248] bulldogs: 1 +> [8249] bullet: 35 +> [8250] bullet? [8251] bulletin: 2 +> [8252] bullets: 36 +> [8253] bullied: 2 +> [8254] bullies: 3 +> [8255] bullock: 1 +> [8256] bulls: 2 +> [8257] bully: 17 +> [8258] bully—was: 1 +> [8259] bully-boys: 2 +> [8260] bullying: 2 +> [8261] bulwark: 4 +> [8262] bulwarks: 2 +> [8263] bumblebee: 2 +> [8264] bumblebees: 1 +> [8265] bump: 4 +> [8266] bumped: 3 +> [8267] bumping: 6 +> [8268] bumpkins: 2 +> [8269] bun: 5 +> [8270] bunch: 16 +> [8271] bunched: 1 +> [8272] bunches: 4 +> [8273] bunching: 1 +> [8274] bundle: 55 +> [8275] bundle--your: 1 +> [8276] bundled: 2 +> [8277] bundles: 13 +> [8278] bundling: 1 +> [8279] bung: 1 +> [8280] bungay: 2 +> [8281] bunghole: 2 +> [8282] bunglers: 1 +> [8283] bungling: 1 +> [8284] bunk: 2 +> [8285] bunks: 3 +> [8286] bunsen: 1 +> [8287] bunt: 1 +> [8288] bunting: 1 +> [8289] buonaparte: 30 +> [8290] buonaparte's: 1 +> [8291] buonapartes: 1 +> [8292] buonapartists: 1 +> [8293] buoyant: 3 +> [8294] buoyed: 2 +> [8295] bur: 2 +> [8296] burden: 72 +> [8297] burden, [8298] burden--there: 1 +> [8299] burdened: 8 +> [8300] burdening: 6 +> [8301] burdens: 3 +> [8302] burdensome: 6 +> [8303] burdino: 1 +> [8304] burdocks: 3 +> [8305] burdovsky: 89 +> [8306] burdovsky's: 8 +> [8307] burdovsky--"if: 1 +> [8308] bureau: 22 +> [8309] bureau--see: 1 +> [8310] burette: 9 +> [8311] burgher: 4 +> [8312] burgher's: 1 +> [8313] burghers: 3 +> [8314] burglar: 2 +> [8315] burglaries: 1 +> [8316] burglary: 1 +> [8317] burgomeister: 2 +> [8318] burgundy: 1 +> [8319] burgundy's: 1 +> [8320] burial: 4 +> [8321] burial--and: 1 +> [8322] burial-ground: 1 +> [8323] buried: 61 +> [8324] buries: 1 +> [8325] burkitt: 2 +> [8326] burlesque: 9 +> [8327] burlesques: 1 +> [8328] burly: 7 +> [8329] burmistroff: 1 +> [8330] burn: 74 +> [8331] burn--it: 1 +> [8332] burn? [8333] burned: 132 +> [8334] burned--and: 1 +> [8335] burned--in: 1 +> [8336] burned-down: 1 +> [8337] burned-out: 1 +> [8338] burner: 4 +> [8339] burning: 184 +> [8340] burning--he: 1 +> [8341] burning--set: 1 +> [8342] burnings: 2 +> [8343] burnished: 2 +> [8344] burnley: 2 +> [8345] burnoose: 1 +> [8346] burnous: 1 +> [8347] burns: 11 +> [8348] burnt: 35 +> [8349] burnt-cork: 2 +> [8350] burnt-offering: 2 +> [8351] burnt. [8352] burst: 240 +> [8353] bursting: 30 +> [8354] bursts: 8 +> [8355] burthen: 1 +> [8356] burton: 3 +> [8357] bury: 33 +> [8358] burying: 9 +> [8359] bush: 34 +> [8360] bush. [8361] bushel: 1 +> [8362] bushels: 3 +> [8363] bushes: 52 +> [8364] bushy: 10 +> [8365] busied: 9 +> [8366] busiest: 2 +> [8367] busily: 15 +> [8368] business: 629 +> [8369] business, [8370] business--and: 1 +> [8371] business--arranged: 1 +> [8372] business--buying: 1 +> [8373] business--in: 1 +> [8374] business--that: 1 +> [8375] business-like: 3 +> [8376] business. [8377] business? [8378] business@pglaf.org: 19 +> [8379] businesslike: 10 +> [8380] businessmen: 1 +> [8381] buslaev's: 1 +> [8382] bust: 3 +> [8383] bustle: 38 +> [8384] bustle--all: 1 +> [8385] bustled: 5 +> [8386] bustling: 13 +> [8387] bustlingly: 1 +> [8388] busts: 4 +> [8389] busy: 140 +> [8390] busybody: 2 +> [8391] busying: 5 +> [8392] but: 20477 +> [8393] but"--(silence).--"but: 1 +> [8394] but— [8395] but—i: 1 +> [8396] but--and: 1 +> [8397] but--another: 1 +> [8398] but--but: 4 +> [8399] but--ha: 1 +> [8400] but--have: 1 +> [8401] but--he: 1 +> [8402] but--how: 3 +> [8403] but--i: 1 +> [8404] but--lizabetha: 1 +> [8405] but--lost: 1 +> [8406] but--madame: 1 +> [8407] but--may: 1 +> [8408] but--recollect: 1 +> [8409] but--so: 2 +> [8410] but--that: 1 +> [8411] but--the: 1 +> [8412] but--well: 1 +> [8413] but--what: 8 +> [8414] but--when: 1 +> [8415] but--who: 1 +> [8416] but--why: 1 +> [8417] but--you: 1 +> [8418] but-why: 1 +> [8419] but...and: 1 +> [8420] but...but: 1 +> [8421] butcher: 3 +> [8422] butcher's: 1 +> [8423] butchered: 1 +> [8424] butchers: 1 +> [8425] butler: 16 +> [8426] butler's: 5 +> [8427] buton: 53 +> [8428] buton's: 10 +> [8429] butons: 1 +> [8430] buts: 1 +> [8431] butt: 7 +> [8432] butter: 30 +> [8433] butter-pot: 1 +> [8434] buttered: 1 +> [8435] butterflies: 27 +> [8436] butterflies--she's: 1 +> [8437] butterfly: 16 +> [8438] buttermilk: 2 +> [8439] butters: 1 +> [8440] butterworth: 1 +> [8441] button: 19 +> [8442] button-holding: 1 +> [8443] button-hole: 2 +> [8444] button-holed: 1 +> [8445] button. [8446] button—to: 1 +> [8447] buttoned: 14 +> [8448] buttonhole: 2 +> [8449] buttonholed: 1 +> [8450] buttoning: 11 +> [8451] buttons: 25 +> [8452] buttons--red: 1 +> [8453] buttress: 2 +> [8454] buttressed: 2 +> [8455] butts: 1 +> [8456] butyric: 2 +> [8457] buxhowden: 12 +> [8458] buxhowden's: 1 +> [8459] buxom: 3 +> [8460] buy: 121 +> [8461] buyer: 3 +> [8462] buyers: 7 +> [8463] buying: 24 +> [8464] buying. [8465] buys: 2 +> [8466] buzeaud: 2 +> [8467] buzulukov: 1 +> [8468] buzulukov--simply: 1 +> [8469] buzz: 11 +> [8470] buzzed: 7 +> [8471] buzzes: 1 +> [8472] buzzing: 12 +> [8473] bweak: 3 +> [8474] bweed: 1 +> [8475] bwethwen: 1 +> [8476] bwicks: 1 +> [8477] bwing: 6 +> [8478] bwinging: 1 +> [8479] bwoken: 1 +> [8480] bwother: 2 +> [8481] bwought: 1 +> [8482] bwushed: 1 +> [8483] bwute: 2 +> [8484] by: 10043 +> [8485] by--and: 1 +> [8486] by--not: 1 +> [8487] by--somebody: 1 +> [8488] by--why: 1 +> [8489] by-and-by: 15 +> [8490] by-and-bye: 2 +> [8491] by-blow: 1 +> [8492] by-laws: 2 +> [8493] by-path: 1 +> [8494] by-play: 1 +> [8495] by-product: 8 +> [8496] by-products: 1 +> [8497] by-the-by: 6 +> [8498] by-the-way: 1 +> [8499] by-ways: 1 +> [8500] bye: 1 +> [8501] byelinsky: 3 +> [8502] byelinsky? [8503] bygone: 3 +> [8504] bygones: 2 +> [8505] bykov's: 1 +> [8506] byres: 1 +> [8507] byronic: 2 +> [8508] byronically: 1 +> [8509] bystanders: 2 +> [8510] byway: 1 +> [8511] byways: 2 +> [8512] byzantine: 1 +> [8513] byzantium: 1 +> [8514] bâton: 2 +> [8515] bête: 1 +> [8516] c: 232 +> [8517] c'est: 31 +> [8518] c----,”: 1 +> [8519] c.--and: 1 +> [8520] c._--for: 1 +> [8521] c.c: 7 +> [8522] c.h: 1 +> [8523] c.”: 1 +> [8524] c_{10}h_{20}o_{2: 1 +> [8525] c_{12}h_{24}o_{2: 1 +> [8526] c_{14}h_{28}o_{2: 1 +> [8527] c_{16}h_{32}o_{2: 1 +> [8528] c_{18}h_{28}o_{2: 1 +> [8529] c_{18}h_{30}o_{2: 1 +> [8530] c_{18}h_{32}o_{2: 1 +> [8531] c_{18}h_{34}o_{2: 2 +> [8532] c_{18}h_{34}o_{3: 1 +> [8533] c_{18}h_{36}o_{2: 2 +> [8534] c_{20}h_{40}o_{2: 1 +> [8535] c_{22}h_{42}o_{2: 1 +> [8536] c_{22}h_{44}o_{2: 1 +> [8537] c_{27}h_{54}o_{2: 1 +> [8538] c_{3: 2 +> [8539] c_{30}h_{60}o_{2: 1 +> [8540] c_{3}h_{5: 2 +> [8541] c_{4}h_{8}o_{2: 1 +> [8542] c_{6}h_{12}o_{2: 1 +> [8543] c_{8}h_{16}o_{2: 1 +> [8544] ca_{3}(po_{4})_{2: 1 +> [8545] cab: 22 +> [8546] cab-driver: 1 +> [8547] cab-drivers: 1 +> [8548] cabalistic: 5 +> [8549] cabaret: 4 +> [8550] cabarets: 2 +> [8551] cabbage: 15 +> [8552] cabbage-soup: 1 +> [8553] cabbages: 3 +> [8554] cabin: 12 +> [8555] cabin-door: 1 +> [8556] cabinet: 9 +> [8557] cabinet's: 1 +> [8558] cabinet-maker: 2 +> [8559] cabins: 1 +> [8560] cables: 1 +> [8561] cabman: 14 +> [8562] cabmen: 5 +> [8563] cabot: 1 +> [8564] cabriolet: 1 +> [8565] cabriolets: 1 +> [8566] cabs: 4 +> [8567] cacao: 2 +> [8568] cachectic: 1 +> [8569] cachet: 2 +> [8570] cackle: 2 +> [8571] cackled: 3 +> [8572] cackling: 2 +> [8573] cad: 3 +> [8574] cad's: 1 +> [8575] cad--the: 1 +> [8576] cadaverous: 2 +> [8577] caddish: 1 +> [8578] caddishly: 1 +> [8579] cadence: 1 +> [8580] cadet: 27 +> [8581] cadet's: 4 +> [8582] cadets: 1 +> [8583] cadger: 9 +> [8584] cadger--alias: 2 +> [8585] cadgers: 1 +> [8586] caeli: 1 +> [8587] caen: 3 +> [8588] caesar: 2 +> [8589] caesar's: 1 +> [8590] caesars: 2 +> [8591] caetera: 2 +> [8592] cafe: 3 +> [8593] cafes: 3 +> [8594] café: 3 +> [8595] cafés: 2 +> [8596] cage: 5 +> [8597] caged: 1 +> [8598] cagliostro's: 1 +> [8599] cahd: 2 +> [8600] cahier: 8 +> [8601] cahors: 65 +> [8602] cahors--probably: 1 +> [8603] cain: 2 +> [8604] cainites: 1 +> [8605] caisson: 1 +> [8606] caissons: 2 +> [8607] caius: 1 +> [8608] cajarc: 1 +> [8609] cajole: 2 +> [8610] cajoled: 1 +> [8611] cajolery: 3 +> [8612] cajoling: 1 +> [8613] cake: 48 +> [8614] cakelike: 1 +> [8615] cakes: 24 +> [8616] caking: 1 +> [8617] calabar: 1 +> [8618] calais: 7 +> [8619] calamities: 9 +> [8620] calamitous: 1 +> [8621] calamity: 24 +> [8622] calcium: 15 +> [8623] calculate: 47 +> [8624] calculated: 70 +> [8625] calculated--because: 2 +> [8626] calculating: 24 +> [8627] calculation: 18 +> [8628] calculations: 16 +> [8629] calculus: 2 +> [8630] calcutta: 1 +> [8631] caldrons: 3 +> [8632] caleche: 29 +> [8633] caleches: 3 +> [8634] calendar: 4 +> [8635] calf: 22 +> [8636] calf, [8637] calf-bound: 1 +> [8638] caliban: 1 +> [8639] calico: 6 +> [8640] california: 3 +> [8641] caligraphist: 4 +> [8642] caligraphists: 1 +> [8643] caligraphy: 1 +> [8644] caliphate: 1 +> [8645] call: 515 +> [8646] called: 874 +> [8647] called—or: 1 +> [8648] called--is: 1 +> [8649] caller: 1 +> [8650] callers: 4 +> [8651] calling: 132 +> [8652] calling. [8653] callous: 16 +> [8654] callously: 2 +> [8655] callousness: 2 +> [8656] calls: 66 +> [8657] calls,”: 1 +> [8658] calm: 224 +> [8659] calm--"can't: 1 +> [8660] calm--be: 1 +> [8661] calmed: 12 +> [8662] calmer: 27 +> [8663] calmest: 1 +> [8664] calming: 5 +> [8665] calmly: 96 +> [8666] calmly--he: 1 +> [8667] calmness: 11 +> [8668] calms: 1 +> [8669] calumniate: 1 +> [8670] calumniated: 3 +> [8671] calumnies: 2 +> [8672] calumny: 12 +> [8673] calvary: 4 +> [8674] calve: 1 +> [8675] calved: 2 +> [8676] calved,--he: 1 +> [8677] calverley: 2 +> [8678] calves: 14 +> [8679] calvin: 2 +> [8680] calvinists: 5 +> [8681] cambric: 9 +> [8682] cambridge: 1 +> [8683] cambrésis: 1 +> [8684] came: 2745 +> [8685] came, [8686] came--for: 1 +> [8687] came--halting: 1 +> [8688] came--i: 1 +> [8689] came--like: 1 +> [8690] came--you--you: 1 +> [8691] came. [8692] camel: 1 +> [8693] camelias: 1 +> [8694] camelias--a: 1 +> [8695] camellia: 1 +> [8696] camellias: 9 +> [8697] camels: 3 +> [8698] cameo: 2 +> [8699] camlet: 1 +> [8700] camomile: 2 +> [8701] camp: 64 +> [8702] camp--he: 1 +> [8703] camp--i: 1 +> [8704] camp--the: 2 +> [8705] camp-bed: 1 +> [8706] campaign: 107 +> [8707] campaign--that: 1 +> [8708] campaign--to: 1 +> [8709] campaign--when: 1 +> [8710] campaigner: 1 +> [8711] campaigners: 1 +> [8712] campaigning: 3 +> [8713] campaigns: 10 +> [8714] campan: 4 +> [8715] campan's: 4 +> [8716] campanulas: 1 +> [8717] campany: 1 +> [8718] camped: 2 +> [8719] campfire: 18 +> [8720] campfires: 30 +> [8721] campfires--the: 1 +> [8722] camping: 1 +> [8723] campo: 1 +> [8724] camps: 10 +> [8725] campstool: 3 +> [8726] can: 3067 +> [8727] can— [8728] can't: 973 +> [8729] can't--it: 1 +> [8730] can't. [8731] can, [8732] can--by: 2 +> [8733] can--i: 1 +> [8734] can--so: 1 +> [8735] can--that: 1 +> [8736] can--with: 1 +> [8737] can--you: 1 +> [8738] can. [8739] cana: 4 +> [8740] canada: 1 +> [8741] canadian: 2 +> [8742] canaille: 11 +> [8743] canal: 36 +> [8744] canal-bridge: 1 +> [8745] canal-side: 1 +> [8746] canals: 1 +> [8747] canaries: 1 +> [8748] canary: 5 +> [8749] cancan: 5 +> [8750] canceled: 1 +> [8751] cancellation: 1 +> [8752] cancelled: 1 +> [8753] cancelled;[15: 1 +> [8754] cancer: 1 +> [8755] cancerous: 1 +> [8756] candelite: 3 +> [8757] candid: 30 +> [8758] candidate: 20 +> [8759] candidate's: 1 +> [8760] candidates: 9 +> [8761] candidly: 14 +> [8762] candied: 1 +> [8763] candies: 1 +> [8764] candle: 167 +> [8765] candle--an: 1 +> [8766] candle--and: 1 +> [8767] candle--moved: 1 +> [8768] candle-end: 5 +> [8769] candle-ends: 1 +> [8770] candle-grease: 1 +> [8771] candlelight: 2 +> [8772] candles: 97 +> [8773] candles! [8774] candles--"i: 1 +> [8775] candles--the: 1 +> [8776] candles--was: 1 +> [8777] candlestick: 21 +> [8778] candlesticks: 2 +> [8779] candor: 6 +> [8780] candour: 8 +> [8781] candy: 2 +> [8782] cane: 29 +> [8783] caned: 1 +> [8784] canes: 2 +> [8785] canine: 1 +> [8786] canister: 1 +> [8787] canker: 1 +> [8788] canney: 1 +> [8789] cannibalism: 8 +> [8790] cannibals: 3 +> [8791] cannon: 104 +> [8792] cannon! [8793] cannon's: 3 +> [8794] cannon, [8795] cannon--still: 1 +> [8796] cannonade: 12 +> [8797] cannonading: 2 +> [8798] cannons: 3 +> [8799] cannot: 970 +> [8800] cannot! [8801] cannot--with: 1 +> [8802] cannot.... [8803] cannot...you: 1 +> [8804] cannot? [8805] canon: 36 +> [8806] canon-makers: 3 +> [8807] canonical: 6 +> [8808] canonicity: 2 +> [8809] canonization: 10 +> [8810] canonized: 5 +> [8811] canons: 2 +> [8812] canopied: 3 +> [8813] canopy: 4 +> [8814] cans: 1 +> [8815] canst: 10 +> [8816] cant: 1 +> [8817] cantal: 1 +> [8818] cantata: 2 +> [8819] canteen: 6 +> [8820] canteenkeeper: 1 +> [8821] canter: 2 +> [8822] canterbury: 2 +> [8823] cantered: 3 +> [8824] canticle: 2 +> [8825] canticle, [8826] canting: 1 +> [8827] cantos: 1 +> [8828] canut: 1 +> [8829] canvas: 7 +> [8830] canvass: 1 +> [8831] can’t: 6 +> [8832] cap: 230 +> [8833] cap--to: 1 +> [8834] cap? [8835] capabilities: 2 +> [8836] capability: 1 +> [8837] capable: 144 +> [8838] capacious: 1 +> [8839] capacities: 7 +> [8840] capacity: 64 +> [8841] caparisoned: 1 +> [8842] cape: 11 +> [8843] caped: 2 +> [8844] capella: 1 +> [8845] caper: 2 +> [8846] capered: 1 +> [8847] capering: 1 +> [8848] capernaum: 1 +> [8849] capers: 4 +> [8850] capes: 1 +> [8851] capillary: 5 +> [8852] capitaine: 19 +> [8853] capitaineries: 1 +> [8854] capital: 151 +> [8855] capital! [8856] capital--that: 1 +> [8857] capitale: 1 +> [8858] capitalist: 5 +> [8859] capitalists: 3 +> [8860] capitally: 16 +> [8861] capitals: 9 +> [8862] capitol: 1 +> [8863] capitulation: 6 +> [8864] capless: 2 +> [8865] capons: 2 +> [8866] capotes: 1 +> [8867] cappadocia: 1 +> [8868] capped: 1 +> [8869] capric: 2 +> [8870] caprice: 27 +> [8871] caprices: 5 +> [8872] caprices--that: 2 +> [8873] capricious: 12 +> [8874] capriciously: 3 +> [8875] capriciousness: 1 +> [8876] caproic: 2 +> [8877] caprylic: 1 +> [8878] caps: 31 +> [8879] caps. [8880] capsicum: 1 +> [8881] capsule: 1 +> [8882] capt: 2 +> [8883] captain: 291 +> [8884] captain—oh: 1 +> [8885] captain's: 37 +> [8886] captain. [8887] captain [8888] captaincy: 2 +> [8889] captains: 4 +> [8890] captious: 1 +> [8891] captivate: 5 +> [8892] captivated: 8 +> [8893] captivating: 2 +> [8894] captive: 14 +> [8895] captive--all: 1 +> [8896] captives: 2 +> [8897] captivity: 20 +> [8898] captors: 4 +> [8899] capture: 39 +> [8900] captured: 55 +> [8901] captures: 1 +> [8902] capturing: 4 +> [8903] capuan: 1 +> [8904] capuchin: 12 +> [8905] capuchins: 8 +> [8906] capulets: 1 +> [8907] car: 17 +> [8908] carabineers: 1 +> [8909] caravan: 1 +> [8910] caravans: 2 +> [8911] carbolic: 6 +> [8912] carbon: 30 +> [8913] carbonate: 96 +> [8914] carbonate._--prepared: 1 +> [8915] carbonate._--take: 1 +> [8916] carbonate._--this: 2 +> [8917] carbonates: 11 +> [8918] carbonic: 3 +> [8919] carcan: 5 +> [8920] carcases: 1 +> [8921] carcass: 2 +> [8922] carcass—you: 1 +> [8923] card: 75 +> [8924] card! [8925] card-playing: 1 +> [8926] card-room: 1 +> [8927] card-sharper: 5 +> [8928] card-sharper's: 2 +> [8929] card-sharper--not: 1 +> [8930] card-sharpers: 1 +> [8931] card-table: 1 +> [8932] card-tables: 2 +> [8933] cardboard: 8 +> [8934] cardinal: 22 +> [8935] cardinal's: 6 +> [8936] cardinal--my: 1 +> [8937] cardinals: 3 +> [8938] cardplayer: 1 +> [8939] cardplayers: 1 +> [8940] cards: 112 +> [8941] cards! [8942] cards--of: 1 +> [8943] cards--the: 1 +> [8944] cards? [8945] cardsharper: 2 +> [8946] care: 494 +> [8947] care, [8948] care--a: 1 +> [8949] care--but: 1 +> [8950] care--she: 1 +> [8951] care-worn: 3 +> [8952] care [8953] cared: 76 +> [8954] career: 103 +> [8955] career—must: 1 +> [8956] career. [8957] career [8958] careers: 5 +> [8959] carefree: 2 +> [8960] careful: 145 +> [8961] careful--if: 1 +> [8962] carefully: 253 +> [8963] carefulness: 2 +> [8964] careless: 32 +> [8965] carelessly: 45 +> [8966] carelessness: 29 +> [8967] cares: 51 +> [8968] cares...i: 1 +> [8969] caress: 5 +> [8970] caressed: 6 +> [8971] caresses: 7 +> [8972] caressing: 21 +> [8973] caressingly: 1 +> [8974] careth: 2 +> [8975] careworn: 5 +> [8976] carey: 41 +> [8977] carey's: 4 +> [8978] carey--an: 1 +> [8979] careys: 1 +> [8980] caricature: 3 +> [8981] caricatured: 1 +> [8982] caricatures: 1 +> [8983] caring: 16 +> [8984] carleton: 1 +> [8985] carlsbad: 4 +> [8986] carlyle's: 1 +> [8987] carnage: 1 +> [8988] carnal: 1 +> [8989] carnauba: 3 +> [8990] carnival: 8 +> [8991] carol: 2 +> [8992] caroled: 1 +> [8993] carolina: 1 +> [8994] caroline: 2 +> [8995] carousal: 3 +> [8996] carousals: 3 +> [8997] carouse: 1 +> [8998] caroused: 1 +> [8999] carousing: 4 +> [9000] carp: 4 +> [9001] carpenter: 13 +> [9002] carpenter's: 1 +> [9003] carpenters: 5 +> [9004] carpet: 30 +> [9005] carpeted: 8 +> [9006] carpets: 14 +> [9007] carriage: 448 +> [9008] carriage--all: 1 +> [9009] carriage--how: 1 +> [9010] carriage-jobbers: 1 +> [9011] carriage-springs: 1 +> [9012] carriages: 79 +> [9013] carriages--all: 1 +> [9014] carriages--see: 1 +> [9015] carried: 428 +> [9016] carrier: 1 +> [9017] carriers: 1 +> [9018] carries: 26 +> [9019] carrion: 1 +> [9020] carrosse. [9021] carrot: 2 +> [9022] carry: 265 +> [9023] carrying: 158 +> [9024] carryings: 1 +> [9025] carrée: 1 +> [9026] cars: 8 +> [9027] cart: 145 +> [9028] cart--"and: 1 +> [9029] cart-horses: 3 +> [9030] cart-tail: 1 +> [9031] carta: 1 +> [9032] carte: 3 +> [9033] carted: 9 +> [9034] carter: 1 +> [9035] carters: 1 +> [9036] cartilage: 1 +> [9037] carting: 8 +> [9038] carting--it: 1 +> [9039] cartload: 3 +> [9040] cartloads: 2 +> [9041] carton: 2 +> [9042] cartons: 1 +> [9043] cartridge: 1 +> [9044] cartridge-belt: 1 +> [9045] cartridges: 1 +> [9046] carts: 89 +> [9047] carts--on: 1 +> [9048] carve: 10 +> [9049] carved: 24 +> [9050] carver: 1 +> [9051] carves: 1 +> [9052] carving: 5 +> [9053] carving-knife: 1 +> [9054] case: 718 +> [9055] case, [9056] case--_au: 1 +> [9057] case--accidental: 1 +> [9058] case--and: 5 +> [9059] case--as: 1 +> [9060] case--however: 1 +> [9061] case--nearly: 1 +> [9062] case--one: 1 +> [9063] case--the: 2 +> [9064] case--you've: 1 +> [9065] case.... [9066] case. [9067] case [9068] case?--i: 1 +> [9069] case? [9070] casein: 1 +> [9071] casement: 10 +> [9072] casements: 2 +> [9073] cases: 167 +> [9074] cases--began: 1 +> [9075] cases--myself: 1 +> [9076] cases--that: 1 +> [9077] cases;--unlikely: 1 +> [9078] cash: 20 +> [9079] cash-box: 3 +> [9080] cash? [9081] cashbox: 1 +> [9082] cashier: 3 +> [9083] cashmere: 3 +> [9084] cask: 2 +> [9085] casket: 8 +> [9086] casks: 6 +> [9087] casks--(_a: 1 +> [9088] casque: 1 +> [9089] cassell: 3 +> [9090] casserole: 3 +> [9091] cassock: 16 +> [9092] cassock, [9093] cassock--probably: 1 +> [9094] cassocks: 1 +> [9095] cast: 146 +> [9096] cast-iron: 5 +> [9097] castanet: 1 +> [9098] castanets: 1 +> [9099] caste: 6 +> [9100] castelle: 3 +> [9101] castigate: 1 +> [9102] castile: 20 +> [9103] castilla: 1 +> [9104] castillano: 1 +> [9105] castille: 1 +> [9106] casting: 27 +> [9107] castle: 59 +> [9108] castle-builder: 1 +> [9109] castlereagh: 1 +> [9110] castles: 5 +> [9111] castor: 19 +> [9112] castres: 3 +> [9113] casts: 1 +> [9114] casual: 18 +> [9115] casually: 41 +> [9116] casuist: 2 +> [9117] casuistry: 3 +> [9118] casuists: 1 +> [9119] cat: 33 +> [9120] cat-calls: 1 +> [9121] cataclysm: 1 +> [9122] cataclysm [9123] catacombs: 4 +> [9124] catafalque: 1 +> [9125] catalogs: 2 +> [9126] catalysis: 1 +> [9127] catalytic: 1 +> [9128] catalyzer: 3 +> [9129] catalyzers: 2 +> [9130] catastrophe: 37 +> [9131] catastrophe [9132] catastrophes: 1 +> [9133] catch: 155 +> [9134] catcher: 1 +> [9135] catches: 11 +> [9136] catching: 64 +> [9137] catchplay: 1 +> [9138] catchwords: 1 +> [9139] catechetic: 1 +> [9140] catechetics: 1 +> [9141] catechism: 2 +> [9142] catechist: 3 +> [9143] catechists: 1 +> [9144] categorically: 1 +> [9145] categories: 5 +> [9146] category: 13 +> [9147] caterpillars: 1 +> [9148] cathedral: 40 +> [9149] cathedral--to: 1 +> [9150] cathedrals: 3 +> [9151] catherine: 19 +> [9152] catherine's: 8 +> [9153] catholic: 42 +> [9154] catholic'[6: 1 +> [9155] catholicism: 8 +> [9156] catholicism--it: 1 +> [9157] catholicity: 6 +> [9158] catholicizing: 1 +> [9159] catholics: 4 +> [9160] catiche: 10 +> [9161] catinot: 16 +> [9162] catinot's: 8 +> [9163] catkins: 1 +> [9164] catlike: 1 +> [9165] caton: 1 +> [9166] cats: 3 +> [9167] catskin: 1 +> [9168] catspaw: 1 +> [9169] cattle: 49 +> [9170] cattle-breeder: 1 +> [9171] cattle-market: 1 +> [9172] cattle-yard: 3 +> [9173] cattle-yard--and: 1 +> [9174] cattleyard: 2 +> [9175] caucasian: 1 +> [9176] caucasus: 12 +> [9177] caught: 375 +> [9178] caught--and: 1 +> [9179] caulaincourt: 6 +> [9180] cauldron: 2 +> [9181] causal: 1 +> [9182] causation: 2 +> [9183] cause: 428 +> [9184] cause--a: 1 +> [9185] cause--was: 1 +> [9186] cause--we: 1 +> [9187] caused: 156 +> [9188] causeless: 7 +> [9189] causes: 99 +> [9190] causes--coincided: 1 +> [9191] causes--myriads: 1 +> [9192] causes--to: 1 +> [9193] causeway: 6 +> [9194] causeway’: 1 +> [9195] causing: 21 +> [9196] caustic: 115 +> [9197] causticity: 1 +> [9198] caustique: 1 +> [9199] caustique--i: 1 +> [9200] causé: 2 +> [9201] caution: 26 +> [9202] cautioned: 1 +> [9203] cautioning: 1 +> [9204] cautious: 19 +> [9205] cautiously: 57 +> [9206] cautiousness: 1 +> [9207] cavalcade: 4 +> [9208] cavalier: 6 +> [9209] cavaliere: 3 +> [9210] cavaliers: 1 +> [9211] cavalry: 95 +> [9212] cavalry-captain: 1 +> [9213] cavalryman: 4 +> [9214] cavalryman's: 1 +> [9215] cavalrymen: 6 +> [9216] cave: 6 +> [9217] caved: 1 +> [9218] cavendishes: 1 +> [9219] cavern: 4 +> [9220] cavern [9221] caviar: 1 +> [9222] caviare: 1 +> [9223] cavil: 2 +> [9224] cavils: 1 +> [9225] cavities: 2 +> [9226] cavity: 1 +> [9227] cawing: 2 +> [9228] cc: 85 +> [9229] ccm: 1 +> [9230] ccx074@pglaf.org: 1 +> [9231] ce: 16 +> [9232] cease: 75 +> [9233] ceased: 191 +> [9234] ceaseless: 5 +> [9235] ceaselessly: 4 +> [9236] ceases: 9 +> [9237] ceasing: 19 +> [9238] cecil: 10 +> [9239] cede: 1 +> [9240] ceded: 1 +> [9241] ceiling: 40 +> [9242] ceilings: 4 +> [9243] cela: 6 +> [9244] celebrate: 13 +> [9245] celebrated: 63 +> [9246] celebrating: 6 +> [9247] celebration: 2 +> [9248] celebrities: 1 +> [9249] celebrity: 5 +> [9250] celestial: 1 +> [9251] cell: 68 +> [9252] cellar: 56 +> [9253] cellar--in: 4 +> [9254] cellar-book: 1 +> [9255] cellar. [9256] cellar? [9257] cellaret: 1 +> [9258] cellarette: 1 +> [9259] cellarius: 1 +> [9260] cellars: 5 +> [9261] celle: 1 +> [9262] cells: 5 +> [9263] cellular: 1 +> [9264] celsius: 3 +> [9265] celui: 2 +> [9266] cement: 4 +> [9267] cemented: 1 +> [9268] cemeteries: 1 +> [9269] cemetery: 14 +> [9270] cenchreæ: 1 +> [9271] censer: 5 +> [9272] censers: 2 +> [9273] censorious: 1 +> [9274] censorship: 5 +> [9275] censure: 18 +> [9276] censured: 5 +> [9277] censuring: 2 +> [9278] cent: 243 +> [9279] cent.--five: 1 +> [9280] cent.-0.15: 1 +> [9281] cent.-0.3: 1 +> [9282] cent.-95: 1 +> [9283] center: 68 +> [9284] center">by: 1 +> [9285] center">fyodor: 1 +> [9286] center">new: 1 +> [9287] center">the: 2 +> [9288] center">translated: 1 +> [9289] center--destroy: 1 +> [9290] center--the: 1 +> [9291] centered: 15 +> [9292] centering: 1 +> [9293] centers: 1 +> [9294] centi: 1 +> [9295] centi-gram: 1 +> [9296] centi-grams: 1 +> [9297] centi-liter: 1 +> [9298] centi-liters: 1 +> [9299] centi-meter: 1 +> [9300] centi-meters: 1 +> [9301] centigrade: 8 +> [9302] centigrams: 1 +> [9303] centimeter: 16 +> [9304] centimeters: 64 +> [9305] centipede: 2 +> [9306] central: 11 +> [9307] centralization: 2 +> [9308] centralizing: 1 +> [9309] centre: 31 +> [9310] centred: 1 +> [9311] centres: 7 +> [9312] centrifuging: 1 +> [9313] centripetal: 1 +> [9314] cents: 2 +> [9315] centuries: 40 +> [9316] centuries—since: 1 +> [9317] centurion's: 2 +> [9318] century: 93 +> [9319] century--you: 1 +> [9320] century-old: 2 +> [9321] cependant: 1 +> [9322] cephas: 2 +> [9323] ceremonial: 15 +> [9324] ceremonialists: 1 +> [9325] ceremonies: 19 +> [9326] ceremonious: 9 +> [9327] ceremoniously: 3 +> [9328] ceremony: 72 +> [9329] ceremony--"by: 1 +> [9330] ceremony--and: 1 +> [9331] ceres: 2 +> [9332] cerf: 1 +> [9333] cerinthus: 5 +> [9334] cerotic: 1 +> [9335] certain: 859 +> [9336] certain, [9337] certain--quite: 1 +> [9338] certain--that: 1 +> [9339] certain. [9340] certainly: 541 +> [9341] certainly--an: 1 +> [9342] certainly--are: 1 +> [9343] certainly--certainly: 1 +> [9344] certainly--with: 1 +> [9345] certains: 1 +> [9346] certainty: 56 +> [9347] certainty. [9348] certificate: 14 +> [9349] certified: 1 +> [9350] certitude: 1 +> [9351] ces: 2 +> [9352] cessation: 6 +> [9353] cessez: 1 +> [9354] cesspool: 2 +> [9355] cesspools: 1 +> [9356] cet: 1 +> [9357] cette: 8 +> [9358] cevennes: 3 +> [9359] cevennols: 5 +> [9360] ceylon: 7 +> [9361] cf: 36 +> [9362] ch: 12 +> [9363] chablis: 2 +> [9364] chabot: 1 +> [9365] chafed: 3 +> [9366] chaff: 4 +> [9367] chaffed: 6 +> [9368] chaffered: 1 +> [9369] chaffering: 1 +> [9370] chaffing: 11 +> [9371] chaffingly: 1 +> [9372] chafing: 2 +> [9373] chafing-dish: 1 +> [9374] chagrin: 11 +> [9375] chagrined: 2 +> [9376] chain: 77 +> [9377] chained: 13 +> [9378] chaining: 1 +> [9379] chains: 19 +> [9380] chains--well: 1 +> [9381] chair: 436 +> [9382] chair—thank: 1 +> [9383] chair, [9384] chair--it: 1 +> [9385] chair--stood: 1 +> [9386] chair-backs: 1 +> [9387] chair. [9388] chairing: 1 +> [9389] chairman: 11 +> [9390] chairman's: 1 +> [9391] chairs: 75 +> [9392] chairs--all: 1 +> [9393] chaise: 2 +> [9394] chaise-wheels: 1 +> [9395] chaises: 2 +> [9396] chale: 3 +> [9397] chalet: 1 +> [9398] chalice: 1 +> [9399] chalk: 19 +> [9400] chalk--as: 1 +> [9401] chalked: 3 +> [9402] chalks: 1 +> [9403] chalks’--he: 1 +> [9404] challenge: 75 +> [9405] challenged: 21 +> [9406] challenges: 2 +> [9407] challenging: 10 +> [9408] challengingly: 1 +> [9409] chalmers: 1 +> [9410] chamber: 44 +> [9411] chamber--like: 1 +> [9412] chamberlain: 4 +> [9413] chambers: 6 +> [9414] chambres: 1 +> [9415] chameleons: 1 +> [9416] chamois: 6 +> [9417] chamois-leather: 1 +> [9418] champ: 2 +> [9419] champ;_--it: 1 +> [9420] champagne: 94 +> [9421] champagne! [9422] champagne—what: 1 +> [9423] champagne's: 1 +> [9424] champagne, [9425] champagne,’--for: 1 +> [9426] champagne--gagin: 1 +> [9427] champagne--just: 1 +> [9428] champagne--pour: 1 +> [9429] champing: 2 +> [9430] champion: 17 +> [9431] championed: 2 +> [9432] championing: 1 +> [9433] champions: 7 +> [9434] championship: 1 +> [9435] chance: 255 +> [9436] chance--if: 1 +> [9437] chance--it's: 3 +> [9438] chance. [9439] chanced: 45 +> [9440] chancel: 4 +> [9441] chancellor: 20 +> [9442] chancellor's: 8 +> [9443] chancery: 2 +> [9444] chances: 33 +> [9445] chances--can: 2 +> [9446] chances--from: 1 +> [9447] chances--of: 1 +> [9448] chancing: 2 +> [9449] chandelier: 4 +> [9450] chandeliers: 3 +> [9451] chandler's: 1 +> [9452] change: 466 +> [9453] change— [9454] change—two: 1 +> [9455] change, [9456] change--no: 1 +> [9457] change. [9458] changeable. [9459] changed: 371 +> [9460] changed—thinner: 1 +> [9461] changed, [9462] changed--as: 2 +> [9463] changed--from: 1 +> [9464] changed--he: 1 +> [9465] changeling: 1 +> [9466] changes: 52 +> [9467] changing: 74 +> [9468] channel: 17 +> [9469] channels: 4 +> [9470] chant: 2 +> [9471] chantant: 1 +> [9472] chantants: 1 +> [9473] chante: 1 +> [9474] chanted: 4 +> [9475] chanter: 2 +> [9476] chanter--was: 1 +> [9477] chanters: 2 +> [9478] chanting: 6 +> [9479] chantry: 3 +> [9480] chaos: 20 +> [9481] chaotic: 7 +> [9482] chap: 21 +> [9483] chap, [9484] chapel: 9 +> [9485] chaperon: 2 +> [9486] chaperons: 1 +> [9487] chaplain: 2 +> [9488] chaps: 8 +> [9489] chapter: 860 +> [9490] chapter-house: 12 +> [9491] chapters: 13 +> [9492] char: 6 +> [9493] char-à-banc: 7 +> [9494] character: 335 +> [9495] character—he: 1 +> [9496] character—kept: 1 +> [9497] character—that's: 1 +> [9498] character, [9499] character, [9500] character--"you: 1 +> [9501] character--though: 1 +> [9502] character-dance: 1 +> [9503] character-sketch: 1 +> [9504] character. [9505] character.[1: 1 +> [9506] character [9507] characteristic: 92 +> [9508] characteristic--her: 1 +> [9509] characteristically: 8 +> [9510] characteristics: 31 +> [9511] characteristics--of: 2 +> [9512] characterize: 2 +> [9513] characterized: 8 +> [9514] characterized--to: 1 +> [9515] characterizes: 2 +> [9516] characterizing: 1 +> [9517] characterless: 2 +> [9518] characters: 34 +> [9519] charades: 1 +> [9520] charasse: 1 +> [9521] charasse's: 1 +> [9522] charcoal: 6 +> [9523] charge: 228 +> [9524] charged: 26 +> [9525] charges: 39 +> [9526] charging: 3 +> [9527] charing: 1 +> [9528] chariot: 8 +> [9529] chariot! [9530] chariot? [9531] charitable: 30 +> [9532] charitably: 1 +> [9533] charities: 20 +> [9534] charity: 39 +> [9535] charity--all: 1 +> [9536] charivari: 2 +> [9537] charlatan: 3 +> [9538] charlatanism: 2 +> [9539] charlatans: 1 +> [9540] charles: 19 +> [9541] charles's: 1 +> [9542] charlie: 4 +> [9543] charlotte: 2 +> [9544] charm: 70 +> [9545] charm--the: 1 +> [9546] charmant: 3 +> [9547] charmant [9548] charmante: 6 +> [9549] charmants: 1 +> [9550] charme: 1 +> [9551] charmed: 16 +> [9552] charmee: 1 +> [9553] charmer: 8 +> [9554] charming: 179 +> [9555] charming! [9556] charming--should: 1 +> [9557] charmingly: 5 +> [9558] charms: 16 +> [9559] charms [9560] charname>emsp [9561] charname>hellip [9562] charname>mdash [9563] charnel-house: 2 +> [9564] charon: 2 +> [9565] charpie: 1 +> [9566] charred: 13 +> [9567] charring: 1 +> [9568] chart: 3 +> [9569] charter: 1 +> [9570] charters: 1 +> [9571] chartist--he: 1 +> [9572] chartists: 1 +> [9573] chartley: 1 +> [9574] chartres: 1 +> [9575] charts: 1 +> [9576] charwoman: 3 +> [9577] chary: 1 +> [9578] chase: 34 +> [9579] chase--for: 1 +> [9580] chase--through: 1 +> [9581] chased: 11 +> [9582] chaser: 2 +> [9583] chasing: 4 +> [9584] chasm: 4 +> [9585] chasser: 1 +> [9586] chasseur: 2 +> [9587] chasseurs: 7 +> [9588] chaste: 8 +> [9589] chaste-souled: 4 +> [9590] chastened: 1 +> [9591] chastening: 2 +> [9592] chaster: 1 +> [9593] chastise: 3 +> [9594] chastisement: 3 +> [9595] chastity: 4 +> [9596] chat: 14 +> [9597] chateau: 3 +> [9598] chateaubriand: 5 +> [9599] chatrov: 1 +> [9600] chats: 2 +> [9601] chatted: 8 +> [9602] chattel: 2 +> [9603] chatter: 31 +> [9604] chatterbox: 3 +> [9605] chattered: 12 +> [9606] chattering: 22 +> [9607] chatters: 1 +> [9608] chatting: 11 +> [9609] chatty: 1 +> [9610] chaucer: 1 +> [9611] chaunters: 1 +> [9612] chauvinism: 1 +> [9613] chauvinism—two: 1 +> [9614] chaytor: 1 +> [9615] cheap: 61 +> [9616] cheap's: 1 +> [9617] cheapen: 3 +> [9618] cheapened: 1 +> [9619] cheapening: 1 +> [9620] cheaper: 31 +> [9621] cheapest: 8 +> [9622] cheaply: 6 +> [9623] cheaply-bought: 1 +> [9624] cheapness: 4 +> [9625] cheapside: 3 +> [9626] cheat: 19 +> [9627] cheated: 12 +> [9628] cheating: 13 +> [9629] cheats: 1 +> [9630] check: 90 +> [9631] checked: 50 +> [9632] checker: 1 +> [9633] checkered: 1 +> [9634] checking: 19 +> [9635] checkmate: 3 +> [9636] checks: 22 +> [9637] cheek: 115 +> [9638] cheek--"and: 1 +> [9639] cheek-bones: 1 +> [9640] cheekbones: 4 +> [9641] cheeks: 175 +> [9642] cheeks--he: 1 +> [9643] cheer: 34 +> [9644] cheered: 23 +> [9645] cheerful: 142 +> [9646] cheerful—and: 1 +> [9647] cheerful, [9648] cheerful. [9649] cheerfully: 47 +> [9650] cheerfulness: 8 +> [9651] cheerily: 5 +> [9652] cheering: 19 +> [9653] cheering--were: 1 +> [9654] cheerless: 2 +> [9655] cheers: 15 +> [9656] cheery: 3 +> [9657] cheese: 24 +> [9658] chef: 1 +> [9659] chef-d'oeuvre: 1 +> [9660] chekmar: 3 +> [9661] chem: 10 +> [9662] chemical: 38 +> [9663] chemically: 8 +> [9664] chemicals: 3 +> [9665] chemise: 3 +> [9666] chemist: 11 +> [9667] chemist's: 9 +> [9668] chemistry: 9 +> [9669] chemists: 6 +> [9670] chequered: 1 +> [9671] cher: 32 +> [9672] cherbourg: 1 +> [9673] cherbuliez: 1 +> [9674] chere: 11 +> [9675] chere"--he: 1 +> [9676] cherish: 21 +> [9677] cherished: 26 +> [9678] cherishes: 6 +> [9679] cherishing: 2 +> [9680] chernyshev: 8 +> [9681] cherry: 8 +> [9682] cherry-coloured: 2 +> [9683] cherub: 7 +> [9684] cherub. [9685] cherubim: 1 +> [9686] cherubim, [9687] cherubims: 1 +> [9688] cherubini: 1 +> [9689] cherubs: 1 +> [9690] cheshire: 1 +> [9691] chess: 11 +> [9692] chessboard: 1 +> [9693] chessmen: 3 +> [9694] chessplayer: 1 +> [9695] chest: 145 +> [9696] chest...and: 1 +> [9697] chested: 1 +> [9698] chesterfield: 14 +> [9699] chesterfield’s: 1 +> [9700] chestnut: 28 +> [9701] chestnuts: 2 +> [9702] chests: 3 +> [9703] chevaleresque. [9704] chevalier: 8 +> [9705] chevaliers: 2 +> [9706] chew: 3 +> [9707] chewed: 3 +> [9708] chewing: 6 +> [9709] chh: 8 +> [9710] chi: 1 +> [9711] chic: 1 +> [9712] chicago: 8 +> [9713] chicanery: 2 +> [9714] chichagov: 10 +> [9715] chicken: 17 +> [9716] chicken—sickly: 1 +> [9717] chicken, [9718] chicken-coops: 1 +> [9719] chicken-hearted: 1 +> [9720] chicken. [9721] chicken [9722] chickens: 10 +> [9723] chicks: 1 +> [9724] chid: 3 +> [9725] chiding: 2 +> [9726] chief: 457 +> [9727] chief's: 24 +> [9728] chief--a: 1 +> [9729] chief--also: 1 +> [9730] chiefly: 78 +> [9731] chiefs: 2 +> [9732] chieftain: 1 +> [9733] chien: 3 +> [9734] chiens: 1 +> [9735] chiffonier: 3 +> [9736] chigirin: 2 +> [9737] chignon: 4 +> [9738] chignons: 1 +> [9739] chilblains: 2 +> [9740] child: 620 +> [9741] child! [9742] child's: 51 +> [9743] child, [9744] child--"better: 1 +> [9745] child--a: 3 +> [9746] child--and: 1 +> [9747] child--i: 5 +> [9748] child--in: 1 +> [9749] child--look: 1 +> [9750] child--my: 1 +> [9751] child--she: 1 +> [9752] child--that's: 1 +> [9753] child--very: 1 +> [9754] child--was: 1 +> [9755] child--who: 1 +> [9756] child--you: 1 +> [9757] child-like: 2 +> [9758] child? [9759] childbearing--she: 1 +> [9760] childbirth: 4 +> [9761] childhood: 119 +> [9762] childhood's: 2 +> [9763] childhood--had: 1 +> [9764] childhood. [9765] childhood—just: 1 +> [9766] childish: 93 +> [9767] childish--or: 1 +> [9768] childish--silly: 1 +> [9769] childishly: 10 +> [9770] childishness: 8 +> [9771] childless: 3 +> [9772] childlike: 38 +> [9773] children: 813 +> [9774] children—according: 1 +> [9775] children—not: 1 +> [9776] children's: 48 +> [9777] children,--in: 1 +> [9778] children, [9779] children--all: 1 +> [9780] children--and: 1 +> [9781] children--oh: 1 +> [9782] children--probably: 1 +> [9783] children--that: 1 +> [9784] children--the: 1 +> [9785] children--they: 1 +> [9786] children--was: 1 +> [9787] children--we: 1 +> [9788] children. [9789] children [9790] childwen: 1 +> [9791] child’s: 1 +> [9792] chiliast: 2 +> [9793] chiliastic: 4 +> [9794] chiliasts: 2 +> [9795] chill: 58 +> [9796] chill—the: 1 +> [9797] chill, [9798] chilled: 31 +> [9799] chillily: 1 +> [9800] chilliness: 1 +> [9801] chilling: 3 +> [9802] chills: 1 +> [9803] chilly: 11 +> [9804] chilly--which: 1 +> [9805] chiltern: 1 +> [9806] chime: 3 +> [9807] chime--as: 3 +> [9808] chimed: 31 +> [9809] chimera: 1 +> [9810] chimerical: 2 +> [9811] chimes: 3 +> [9812] chiming: 1 +> [9813] chimney: 13 +> [9814] chimney-piece: 1 +> [9815] chimneys: 10 +> [9816] chin: 75 +> [9817] chin-beard: 1 +> [9818] china: 32 +> [9819] china-cupboard: 1 +> [9820] china-town: 1 +> [9821] chinaman: 1 +> [9822] chinese: 15 +> [9823] chinks: 3 +> [9824] chinoises: 1 +> [9825] chins: 1 +> [9826] chintz: 2 +> [9827] chintz-covered: 1 +> [9828] chip: 30 +> [9829] chipped: 1 +> [9830] chipper: 6 +> [9831] chipping: 1 +> [9832] chippinge: 2 +> [9833] chips: 6 +> [9834] chirped: 5 +> [9835] chirping: 3 +> [9836] chirruped: 2 +> [9837] chirruping: 3 +> [9838] chisel: 2 +> [9839] chiseled: 1 +> [9840] chiseling: 1 +> [9841] chiselled: 2 +> [9842] chiselling: 1 +> [9843] chit: 4 +> [9844] chivalric: 1 +> [9845] chivalrous: 9 +> [9846] chivalrously: 1 +> [9847] chivalry: 14 +> [9848] chives: 1 +> [9849] chloride: 21 +> [9850] chlorides: 4 +> [9851] chlorine: 12 +> [9852] chloroform: 2 +> [9853] chlorophyll: 1 +> [9854] chocolate: 8 +> [9855] chocolates? [9856] choice: 117 +> [9857] choice, [9858] choice--madame: 1 +> [9859] choice--nay: 1 +> [9860] choicest: 8 +> [9861] choir: 13 +> [9862] choirs: 2 +> [9863] choke: 7 +> [9864] choked: 37 +> [9865] chokes: 1 +> [9866] choking: 33 +> [9867] choky: 1 +> [9868] choleric: 4 +> [9869] cholesterol: 4 +> [9870] choose: 135 +> [9871] choosers: 1 +> [9872] chooses: 13 +> [9873] choosing: 23 +> [9874] chop: 2 +> [9875] chopin's: 1 +> [9876] chopped: 8 +> [9877] chopper: 1 +> [9878] choppers: 1 +> [9879] chopping: 3 +> [9880] choral: 1 +> [9881] chord: 8 +> [9882] chords: 4 +> [9883] chords, [9884] choristers: 2 +> [9885] chorus: 27 +> [9886] chorus! [9887] chose: 49 +> [9888] chosen: 97 +> [9889] choses: 1 +> [9890] christ: 220 +> [9891] christ"--he: 1 +> [9892] christ'-ening: 1 +> [9893] christ's: 29 +> [9894] christ--it: 1 +> [9895] christ-child: 8 +> [9896] christ-like: 2 +> [9897] christ-party: 2 +> [9898] christ-spirit: 1 +> [9899] christ. [9900] christendom: 16 +> [9901] christened: 7 +> [9902] christened. [9903] christening: 10 +> [9904] christhood: 2 +> [9905] christi: 1 +> [9906] christian: 130 +> [9907] christian's: 2 +> [9908] christian--and: 1 +> [9909] christian--except: 1 +> [9910] christian.’: 1 +> [9911] christianity: 65 +> [9912] christianity--and: 1 +> [9913] christianity--that: 1 +> [9914] christianized: 1 +> [9915] christians: 23 +> [9916] christmas: 52 +> [9917] christmas-eve: 1 +> [9918] christmas-tide: 1 +> [9919] christmas-time: 4 +> [9920] christmastime: 1 +> [9921] christological: 4 +> [9922] christology: 5 +> [9923] christs: 1 +> [9924] chromatic: 1 +> [9925] chrome: 15 +> [9926] chronic: 1 +> [9927] chronicle: 3 +> [9928] chronicler: 2 +> [9929] chroniclers: 1 +> [9930] chronicles: 1 +> [9931] chronological: 3 +> [9932] chronometer: 1 +> [9933] chubby: 7 +> [9934] chuck: 1 +> [9935] chucked: 5 +> [9936] chuckle: 13 +> [9937] chuckled: 14 +> [9938] chuckling: 5 +> [9939] chum: 1 +> [9940] chums: 3 +> [9941] chunk: 1 +> [9942] chunks: 2 +> [9943] church: 550 +> [9944] church—at: 1 +> [9945] church—that: 1 +> [9946] church—were: 1 +> [9947] church's: 14 +> [9948] church, [9949] church--and: 2 +> [9950] church--it: 1 +> [9951] church--the: 2 +> [9952] church--who: 1 +> [9953] church--yet: 1 +> [9954] church-porch: 1 +> [9955] church-spire.”: 1 +> [9956] church-teacher: 1 +> [9957] church-writings: 1 +> [9958] church. [9959] church.’: 1 +> [9960] churches: 117 +> [9961] churches--but: 1 +> [9962] churchman: 2 +> [9963] churchmen: 1 +> [9964] churchyard: 5 +> [9965] churchyard, [9966] churl: 2 +> [9967] churlish: 11 +> [9968] churlishly: 2 +> [9969] churlishness: 1 +> [9970] churls: 2 +> [9971] churned: 1 +> [9972] chut: 3 +> [9973] châine: 1 +> [9974] château: 22 +> [9975] château--at: 1 +> [9976] châteaux: 6 +> [9977] châtelet: 8 +> [9978] chère: 1 +> [9979] ci-devant: 1 +> [9980] cicero: 1 +> [9981] cid: 1 +> [9982] cider: 1 +> [9983] ciel: 2 +> [9984] cigar: 31 +> [9985] cigar-box: 1 +> [9986] cigar-case: 2 +> [9987] cigarette: 42 +> [9988] cigarette-box: 1 +> [9989] cigarette-case: 1 +> [9990] cigarette. [9991] cigarettes: 11 +> [9992] cigars: 12 +> [9993] cii: 1 +> [9994] cilicia: 7 +> [9995] cincinnati: 1 +> [9996] cinder: 1 +> [9997] cinder-covered: 1 +> [9998] cinder-track: 1 +> [9999] cinderella: 1 +> [10000] cinderella's: 1 +> [10001] cinders: 2 +> [10002] cinq: 6 +> [10003] cinquantaine [10004] cinque: 1 +> [10005] circassian: 13 +> [10006] circassians: 1 +> [10007] circenses [10008] circle: 152 +> [10009] circle--must: 1 +> [10010] circle--separated: 1 +> [10011] circle--though: 1 +> [10012] circled: 4 +> [10013] circles: 56 +> [10014] circles--from: 1 +> [10015] circlet: 1 +> [10016] circling: 9 +> [10017] circuit: 2 +> [10018] circuits: 1 +> [10019] circular: 7 +> [10020] circulars: 1 +> [10021] circulate: 4 +> [10022] circulated: 9 +> [10023] circulates: 1 +> [10024] circulating: 7 +> [10025] circulation: 15 +> [10026] circulation--paper: 1 +> [10027] circumcise: 1 +> [10028] circumcised: 3 +> [10029] circumcision: 13 +> [10030] circumference: 3 +> [10031] circumscribed: 2 +> [10032] circumspect: 6 +> [10033] circumspection: 1 +> [10034] circumspectly: 4 +> [10035] circumstance: 74 +> [10036] circumstance, [10037] circumstance--which: 1 +> [10038] circumstance. [10039] circumstanced: 1 +> [10040] circumstances: 217 +> [10041] circumstances, [10042] circumstances--did: 1 +> [10043] circumstances--so: 1 +> [10044] circumstances--that: 1 +> [10045] circumstances--the: 1 +> [10046] circumstances. [10047] circumstances [10048] circumstantial: 7 +> [10049] circumstantially: 4 +> [10050] circumvented: 1 +> [10051] circus: 1 +> [10052] cit: 1 +> [10053] citadel: 4 +> [10054] cite: 2 +> [10055] cited: 6 +> [10056] cities: 17 +> [10057] citing: 2 +> [10058] citizen: 22 +> [10059] citizen's: 2 +> [10060] citizen--who: 1 +> [10061] citizens: 13 +> [10062] citizenship: 4 +> [10063] citron: 1 +> [10064] citronella: 1 +> [10065] cits: 1 +> [10066] city: 189 +> [10067] city's: 1 +> [10068] city-bred: 1 +> [10069] civic: 3 +> [10070] civil: 63 +> [10071] civilian: 26 +> [10072] civilian, [10073] civilian--an: 1 +> [10074] civilians: 5 +> [10075] civilians. [10076] civilisation: 5 +> [10077] civilised: 3 +> [10078] civilities: 4 +> [10079] civility: 27 +> [10080] civilization: 24 +> [10081] civilization--to: 1 +> [10082] civilized: 3 +> [10083] civilly: 12 +> [10084] clacking: 5 +> [10085] clad: 19 +> [10086] claim: 104 +> [10087] claimant: 3 +> [10088] claimants: 1 +> [10089] claimed: 16 +> [10090] claiming: 7 +> [10091] claims: 35 +> [10092] claire: 1 +> [10093] clairvoyant: 1 +> [10094] clamant: 1 +> [10095] clamber: 2 +> [10096] clambered: 9 +> [10097] clambering: 4 +> [10098] clammy: 1 +> [10099] clamor: 6 +> [10100] clamored: 2 +> [10101] clamoring: 2 +> [10102] clamorous: 1 +> [10103] clamors: 1 +> [10104] clamour: 3 +> [10105] clamouring: 4 +> [10106] clamped: 1 +> [10107] clang: 5 +> [10108] clanged: 1 +> [10109] clanging: 6 +> [10110] clank: 5 +> [10111] clanked: 8 +> [10112] clanking: 15 +> [10113] clanks: 1 +> [10114] clap: 4 +> [10115] claparede: 2 +> [10116] claparede's: 3 +> [10117] clapped: 15 +> [10118] clapper: 1 +> [10119] clapping: 18 +> [10120] clara: 1 +> [10121] clarence: 75 +> [10122] clarence's: 5 +> [10123] clarence--clarence: 1 +> [10124] clarence--there: 1 +> [10125] clarence--which: 1 +> [10126] clarence--who: 1 +> [10127] claret: 2 +> [10128] claret-colored: 1 +> [10129] clarify: 1 +> [10130] clarion: 1 +> [10131] clarionet: 1 +> [10132] clarity.—dp: 1 +> [10133] clark: 1 +> [10134] clarke: 8 +> [10135] clash: 6 +> [10136] clashed: 4 +> [10137] clasp: 6 +> [10138] clasped: 61 +> [10139] clasping: 27 +> [10140] claspknife: 1 +> [10141] clasps: 5 +> [10142] class: 145 +> [10143] class, [10144] class--all: 1 +> [10145] class--eight: 1 +> [10146] class--is: 1 +> [10147] class--she: 1 +> [10148] class--the: 1 +> [10149] class--to: 1 +> [10150] class-room: 1 +> [10151] class. [10152] class? [10153] classed: 7 +> [10154] classes: 47 +> [10155] classes--the: 1 +> [10156] classes...at: 1 +> [10157] classic: 11 +> [10158] classical: 12 +> [10159] classically: 1 +> [10160] classics: 6 +> [10161] classification: 14 +> [10162] classifications: 2 +> [10163] classified: 5 +> [10164] classify: 2 +> [10165] classing: 1 +> [10166] clatter: 20 +> [10167] clattered: 4 +> [10168] clattering: 10 +> [10169] claude: 1 +> [10170] clause: 2 +> [10171] clausewitz: 1 +> [10172] clavichord: 22 +> [10173] claw-like: 1 +> [10174] clawed: 1 +> [10175] claws: 5 +> [10176] clay: 18 +> [10177] clay,’: 1 +> [10178] clean: 157 +> [10179] clean--he: 1 +> [10180] clean-cut: 1 +> [10181] clean-shaven: 17 +> [10182] cleaned: 11 +> [10183] cleaner: 4 +> [10184] cleaners: 1 +> [10185] cleanest: 2 +> [10186] cleaning: 13 +> [10187] cleanliness: 14 +> [10188] cleanly: 6 +> [10189] cleanness: 2 +> [10190] cleanse: 3 +> [10191] cleansed: 3 +> [10192] cleansing: 8 +> [10193] clear: 566 +> [10194] clear! [10195] clear--cut: 1 +> [10196] clear--i'll: 1 +> [10197] clear--to: 1 +> [10198] clear-cut: 2 +> [10199] clear-eyed: 1 +> [10200] clear-her: 1 +> [10201] clear-sighted: 1 +> [10202] clear-skinned: 1 +> [10203] clear-thinking: 1 +> [10204] clear? [10205] clearage: 1 +> [10206] clearcut: 1 +> [10207] cleared: 59 +> [10208] clearer: 32 +> [10209] clearest: 6 +> [10210] clearheadedness: 1 +> [10211] clearing: 25 +> [10212] clearing--much: 1 +> [10213] clearing-up: 1 +> [10214] clearly: 364 +> [10215] clearly--clearer: 1 +> [10216] clearly--the: 1 +> [10217] clearly? [10218] clearness: 36 +> [10219] cleavage: 8 +> [10220] cleave: 4 +> [10221] cleavers: 1 +> [10222] cleaving: 2 +> [10223] cleft: 4 +> [10224] clemen: 1 +> [10225] clemency: 1 +> [10226] clemens: 3 +> [10227] clement: 16 +> [10228] clementine: 2 +> [10229] clemmed: 1 +> [10230] clems: 1 +> [10231] clench: 2 +> [10232] clenched: 18 +> [10233] clenching: 14 +> [10234] cleopatra: 3 +> [10235] clergy: 16 +> [10236] clergyman: 21 +> [10237] clergyman's: 2 +> [10238] clergymen: 2 +> [10239] cleric: 2 +> [10240] clerical: 7 +> [10241] clerk: 185 +> [10242] clerk--all: 1 +> [10243] clerk.--i: 1 +> [10244] clerks: 36 +> [10245] clerks, [10246] clerk’s: 1 +> [10247] clever: 200 +> [10248] clever--cleverer: 1 +> [10249] cleverer: 21 +> [10250] cleverest: 10 +> [10251] cleverly: 20 +> [10252] cleverness: 12 +> [10253] cleverness, [10254] cleves: 14 +> [10255] clew: 8 +> [10256] click: 11 +> [10257] clicked: 7 +> [10258] clicking: 4 +> [10259] client: 24 +> [10260] client's: 3 +> [10261] clients: 5 +> [10262] cliff: 1 +> [10263] cliffs: 3 +> [10264] climate: 12 +> [10265] climates: 1 +> [10266] climatic: 1 +> [10267] climax: 13 +> [10268] climb: 22 +> [10269] climb--climb: 1 +> [10270] climbed: 40 +> [10271] climbers: 1 +> [10272] climbing: 9 +> [10273] clinch: 1 +> [10274] clinched: 1 +> [10275] clinching: 1 +> [10276] cling: 28 +> [10277] clinging: 53 +> [10278] clings: 3 +> [10279] clink: 5 +> [10280] clinking: 3 +> [10281] clip: 1 +> [10282] clipped: 3 +> [10283] clippers: 1 +> [10284] clique: 1 +> [10285] cliques: 1 +> [10286] cloak: 172 +> [10287] cloak--"a: 1 +> [10288] cloak--and: 1 +> [10289] cloak--dummy: 1 +> [10290] cloak--for: 1 +> [10291] cloak--in: 1 +> [10292] cloak--which: 1 +> [10293] cloaked: 8 +> [10294] cloaks: 23 +> [10295] clock: 58 +> [10296] clock--surely: 1 +> [10297] clocks: 1 +> [10298] clockwork: 1 +> [10299] clod: 1 +> [10300] clodhoppers: 1 +> [10301] clods: 6 +> [10302] clogging: 1 +> [10303] clogs: 7 +> [10304] cloister: 3 +> [10305] cloister-like: 1 +> [10306] cloistered: 1 +> [10307] clopas: 2 +> [10308] clopton: 12 +> [10309] clopton's: 1 +> [10310] close: 438 +> [10311] close--on: 1 +> [10312] close-clinging: 1 +> [10313] close-cropped: 2 +> [10314] close-massed: 1 +> [10315] close-packed: 1 +> [10316] close-shaven: 1 +> [10317] close-smelling: 1 +> [10318] closed: 289 +> [10319] closely: 99 +> [10320] closely--a: 1 +> [10321] closely--to: 1 +> [10322] closely-packed: 1 +> [10323] closely-shaven: 1 +> [10324] closeness: 5 +> [10325] closer: 83 +> [10326] closes: 8 +> [10327] closest: 6 +> [10328] closet: 21 +> [10329] closeted: 2 +> [10330] closets: 2 +> [10331] closing: 67 +> [10332] cloth: 93 +> [10333] cloth--"count: 1 +> [10334] cloth-covered: 5 +> [10335] clothe: 6 +> [10336] clothed: 24 +> [10337] clothed’: 1 +> [10338] clothes: 235 +> [10339] clothes! [10340] clothes--"and: 1 +> [10341] clothes--probably: 1 +> [10342] clothes--some: 1 +> [10343] clothes--what: 1 +> [10344] clothes. [10345] clothing: 11 +> [10346] clothing--of: 1 +> [10347] clothing--when: 1 +> [10348] cloths: 3 +> [10349] clothyard: 1 +> [10350] clotted: 2 +> [10351] cloud: 69 +> [10352] cloud-shell: 1 +> [10353] cloudberry: 1 +> [10354] clouded: 20 +> [10355] cloudiness: 2 +> [10356] clouding: 4 +> [10357] cloudless: 2 +> [10358] cloudlets: 4 +> [10359] clouds: 74 +> [10360] cloudy: 3 +> [10361] clove: 1 +> [10362] cloven: 1 +> [10363] clover: 16 +> [10364] clown: 10 +> [10365] clown! [10366] clown--dimmler--and: 1 +> [10367] clown. [10368] clownish: 1 +> [10369] clowns: 9 +> [10370] club: 90 +> [10371] club's: 2 +> [10372] club--it: 1 +> [10373] club-lounger: 1 +> [10374] clubbed: 1 +> [10375] clubhouse: 1 +> [10376] clubs: 10 +> [10377] cluck: 1 +> [10378] clucked: 3 +> [10379] clucking: 1 +> [10380] cludde: 66 +> [10381] cludde's: 2 +> [10382] cludde--have: 1 +> [10383] cluddes: 3 +> [10384] cluddes--i: 1 +> [10385] clue: 19 +> [10386] cluff: 1 +> [10387] clump: 6 +> [10388] clumps: 4 +> [10389] clumsily: 5 +> [10390] clumsiness: 4 +> [10391] clumsy: 34 +> [10392] clung: 44 +> [10393] clupanodonic: 3 +> [10394] cluster: 8 +> [10395] clustered: 7 +> [10396] clustering: 3 +> [10397] clusters: 3 +> [10398] clutch: 14 +> [10399] clutched: 70 +> [10400] clutches: 16 +> [10401] clutching: 52 +> [10402] clytÆmnestra: 1 +> [10403] clytæmnestra: 1 +> [10404] cm: 11 +> [10405] co: 24 +> [10406] co-co-counsel: 1 +> [10407] co-o-m-pa: 1 +> [10408] co-o-om-pa-ny: 1 +> [10409] co-operate: 4 +> [10410] co-operated: 1 +> [10411] co-operation: 3 +> [10412] co-operative: 6 +> [10413] co-ordinated: 1 +> [10414] co_{2: 1 +> [10415] co_{3: 1 +> [10416] coach: 39 +> [10417] coach--and: 1 +> [10418] coaches: 4 +> [10419] coachman: 111 +> [10420] coachman's: 8 +> [10421] coachman--a: 1 +> [10422] coachmen: 8 +> [10423] coagulate: 1 +> [10424] coagulates: 1 +> [10425] coal: 13 +> [10426] coal-black: 2 +> [10427] coal-dust: 1 +> [10428] coal-hod: 1 +> [10429] coal-pit: 1 +> [10430] coal-pits: 1 +> [10431] coalescence: 1 +> [10432] coals: 4 +> [10433] coarse: 88 +> [10434] coarse—and: 1 +> [10435] coarse--shabby: 1 +> [10436] coarsely: 11 +> [10437] coarsened: 1 +> [10438] coarseness: 15 +> [10439] coarser: 6 +> [10440] coarsest: 8 +> [10441] coast: 10 +> [10442] coasted: 1 +> [10443] coasts: 5 +> [10444] coat: 456 +> [10445] coat's: 1 +> [10446] coat, [10447] coat--something: 1 +> [10448] coat--they: 1 +> [10449] coat--you: 1 +> [10450] coat-collar: 4 +> [10451] coat-pocket: 1 +> [10452] coat-skirts: 1 +> [10453] coat-sleeve: 1 +> [10454] coat-sleeves: 1 +> [10455] coat-tail: 1 +> [10456] coat-tails: 3 +> [10457] coat. [10458] coated: 1 +> [10459] coating: 1 +> [10460] coats: 50 +> [10461] coax: 3 +> [10462] coaxed: 2 +> [10463] cob: 7 +> [10464] cobalt: 1 +> [10465] cobbler: 4 +> [10466] cobbles: 1 +> [10467] cobblestones: 1 +> [10468] cobden: 6 +> [10469] cobweb: 1 +> [10470] cobwebs: 3 +> [10471] cocheba: 2 +> [10472] cocher: 1 +> [10473] cochin: 20 +> [10474] cochon: 3 +> [10475] cochonnerie [10476] cock: 24 +> [10477] cock-and-bull: 5 +> [10478] cock-crow: 1 +> [10479] cock-crowings: 1 +> [10480] cock-sparrow: 4 +> [10481] cockade: 30 +> [10482] cockade—was: 1 +> [10483] cockade--emblems: 1 +> [10484] cockaded: 1 +> [10485] cockades: 4 +> [10486] cockcrow: 2 +> [10487] cocked: 13 +> [10488] cocking: 3 +> [10489] cockroaches: 6 +> [10490] cocks: 8 +> [10491] cocoa-nut: 2 +> [10492] cocoanut: 103 +> [10493] coconut: 12 +> [10494] cocottes: 1 +> [10495] cod: 1 +> [10496] cod-liver: 2 +> [10497] code: 20 +> [10498] codes: 24 +> [10499] codification: 1 +> [10500] codified: 2 +> [10501] coefficient: 2 +> [10502] coele-syria: 1 +> [10503] coerce: 2 +> [10504] coercion: 1 +> [10505] coeur: 4 +> [10506] coexisting: 1 +> [10507] coffee: 89 +> [10508] coffee! [10509] coffee, [10510] coffee-house: 1 +> [10511] coffee-room: 2 +> [10512] coffee. [10513] coffeepot: 2 +> [10514] coffin: 96 +> [10515] coffin's: 1 +> [10516] coffin--the: 1 +> [10517] coffins: 3 +> [10518] cogent: 3 +> [10519] cogitating: 1 +> [10520] cognac: 2 +> [10521] cognate: 1 +> [10522] cognition: 1 +> [10523] cognizable: 1 +> [10524] cognizance: 1 +> [10525] cognizant: 2 +> [10526] cogs: 1 +> [10527] cogwheel: 1 +> [10528] cogwheels: 3 +> [10529] coherence: 6 +> [10530] coherent: 2 +> [10531] coherently, [10532] coiffer: 1 +> [10533] coiffeur: 1 +> [10534] coiffeur?'_--no: 1 +> [10535] coiffure: 10 +> [10536] coiffures: 1 +> [10537] coil: 15 +> [10538] coiled: 2 +> [10539] coiling: 1 +> [10540] coils: 14 +> [10541] coin: 17 +> [10542] coinage: 2 +> [10543] coincide: 5 +> [10544] coincided: 3 +> [10545] coincidence: 19 +> [10546] coincidence, [10547] coincidence--almost: 1 +> [10548] coincidences: 1 +> [10549] coincidences—are: 1 +> [10550] coincident: 3 +> [10551] coincidently: 1 +> [10552] coincides: 8 +> [10553] coinciding: 2 +> [10554] coined: 1 +> [10555] coiners: 1 +> [10556] coins: 8 +> [10557] coke: 2 +> [10558] col: 6 +> [10559] colbran: 3 +> [10560] cold: 632 +> [10561] cold—he: 1 +> [10562] cold, [10563] cold--believe: 1 +> [10564] cold--but: 1 +> [10565] cold-blooded: 1 +> [10566] cold-hearted: 1 +> [10567] cold-looking: 1 +> [10568] cold-made: 4 +> [10569] cold-shoulder: 1 +> [10570] cold-shouldered: 1 +> [10571] cold-shouldering: 2 +> [10572] colder: 10 +> [10573] coldest: 2 +> [10574] coldly: 90 +> [10575] coldness: 24 +> [10576] coldness--they: 1 +> [10577] coldness--this: 1 +> [10578] colds: 1 +> [10579] colet: 64 +> [10580] colet's: 9 +> [10581] colet--i'm: 1 +> [10582] colet--under: 1 +> [10583] colia: 225 +> [10584] colia's: 8 +> [10585] colia,--please: 1 +> [10586] colia,--what: 1 +> [10587] colia--"i: 1 +> [10588] colic: 1 +> [10589] coll: 1 +> [10590] collaboration: 1 +> [10591] collaborative: 1 +> [10592] collahs: 1 +> [10593] collapse: 7 +> [10594] collapsed: 12 +> [10595] collapses: 1 +> [10596] collapsing: 3 +> [10597] collar: 108 +> [10598] collar--whom: 1 +> [10599] collar-grinners: 1 +> [10600] collar-strap: 1 +> [10601] collar-straps: 2 +> [10602] collarbones: 1 +> [10603] collars: 10 +> [10604] collated: 1 +> [10605] colleague: 12 +> [10606] colleague's: 1 +> [10607] colleague, [10608] colleagues: 13 +> [10609] collect: 39 +> [10610] collected: 52 +> [10611] collecting: 30 +> [10612] collection: 94 +> [10613] collections: 1 +> [10614] collective: 23 +> [10615] collectively: 2 +> [10616] collector: 4 +> [10617] collectors: 1 +> [10618] collects: 2 +> [10619] college: 8 +> [10620] college-rooms: 1 +> [10621] colleges: 2 +> [10622] collegiate: 4 +> [10623] collide: 1 +> [10624] collided: 5 +> [10625] collides: 1 +> [10626] colliding: 1 +> [10627] colliers: 4 +> [10628] collision: 17 +> [10629] collisions: 1 +> [10630] colloid: 1 +> [10631] colloidal: 2 +> [10632] collops: 1 +> [10633] colloquies: 1 +> [10634] colloquy: 1 +> [10635] colmina: 3 +> [10636] cologne: 3 +> [10637] colomna: 1 +> [10638] colon: 1 +> [10639] colonel: 177 +> [10640] colonel's: 10 +> [10641] colonel-major: 1 +> [10642] colonel. [10643] colonels: 5 +> [10644] colonial: 1 +> [10645] colonies: 1 +> [10646] colonize: 1 +> [10647] colonizing: 1 +> [10648] colony: 2 +> [10649] colophony: 3 +> [10650] color: 185 +> [10651] color--the: 1 +> [10652] color[7: 1 +> [10653] colored: 38 +> [10654] coloring: 20 +> [10655] colorless: 5 +> [10656] colors: 33 +> [10657] colossal: 3 +> [10658] colosseum: 1 +> [10659] colossian: 1 +> [10660] colossians: 17 +> [10661] colossians-ephesians: 1 +> [10662] colossus: 2 +> [10663] colossæ: 4 +> [10664] colour: 51 +> [10665] colour--yellow--could: 1 +> [10666] colour-grinder: 8 +> [10667] colour-grinders: 2 +> [10668] coloured: 10 +> [10669] colouring: 5 +> [10670] colourless: 4 +> [10671] colours: 21 +> [10672] colt: 3 +> [10673] colts: 1 +> [10674] columbus: 5 +> [10675] column: 50 +> [10676] columns: 48 +> [10677] comb: 8 +> [10678] combat: 8 +> [10679] combatant: 3 +> [10680] combatants: 5 +> [10681] combated: 2 +> [10682] combating: 1 +> [10683] combative: 1 +> [10684] combed: 20 +> [10685] combinaisons: 1 +> [10686] combination: 50 +> [10687] combinations: 14 +> [10688] combine: 13 +> [10689] combined: 38 +> [10690] combines: 4 +> [10691] combing: 6 +> [10692] combining: 12 +> [10693] combs: 4 +> [10694] combustion: 1 +> [10695] come: 4119 +> [10696] come!— [10697] come! [10698] come— [10699] come—about: 1 +> [10700] come, [10701] come--all: 1 +> [10702] come--and: 1 +> [10703] come--don't: 1 +> [10704] come--from: 1 +> [10705] come--go: 1 +> [10706] come--it's: 1 +> [10707] come--let: 2 +> [10708] come--little: 1 +> [10709] come--nonsense: 1 +> [10710] come--nothing: 1 +> [10711] come--of: 1 +> [10712] come--quite: 1 +> [10713] come--to: 2 +> [10714] come--we: 1 +> [10715] come--were: 1 +> [10716] come--you: 1 +> [10717] come-down: 2 +> [10718] come. [10719] come. [10720] come.’: 1 +> [10721] come? [10722] come?—as: 1 +> [10723] comedian: 3 +> [10724] comedies: 1 +> [10725] comedy: 12 +> [10726] comely: 8 +> [10727] comer: 3 +> [10728] comers: 5 +> [10729] comes: 320 +> [10730] comes...i: 1 +> [10731] comes. [10732] comet: 11 +> [10733] cometh: 7 +> [10734] cometh!’: 2 +> [10735] cometh--a: 1 +> [10736] cometh.’: 2 +> [10737] comfits: 1 +> [10738] comfort: 174 +> [10739] comfort, [10740] comfortable: 65 +> [10741] comfortable-looking: 1 +> [10742] comfortably: 32 +> [10743] comforted: 49 +> [10744] comforted. [10745] comforter: 3 +> [10746] comforting: 28 +> [10747] comforting—and: 1 +> [10748] comfortless: 2 +> [10749] comforts: 19 +> [10750] comic: 22 +> [10751] comical: 15 +> [10752] comicalities: 1 +> [10753] comically: 5 +> [10754] coming: 854 +> [10755] coming—heavens: 1 +> [10756] coming, [10757] coming--called: 1 +> [10758] coming--laughing: 1 +> [10759] coming--or: 1 +> [10760] coming--she: 1 +> [10761] coming. [10762] coming.’: 1 +> [10763] coming? [10764] coming?’: 1 +> [10765] comings: 2 +> [10766] comite: 1 +> [10767] comma: 2 +> [10768] command: 190 +> [10769] commandant: 1 +> [10770] commanded: 40 +> [10771] commandeered: 1 +> [10772] commander: 290 +> [10773] commander's: 10 +> [10774] commander--as: 1 +> [10775] commander-in-chief: 2 +> [10776] commanders: 56 +> [10777] commanders--not: 1 +> [10778] commanding: 35 +> [10779] commandingly: 1 +> [10780] commandment: 14 +> [10781] commandments: 9 +> [10782] commands: 43 +> [10783] comme: 6 +> [10784] commemorate: 2 +> [10785] commemoration: 2 +> [10786] commence: 7 +> [10787] commenced: 14 +> [10788] commencement: 26 +> [10789] commences: 4 +> [10790] commencing: 3 +> [10791] commend: 8 +> [10792] commendable: 3 +> [10793] commendation: 8 +> [10794] commendatory: 1 +> [10795] commended: 7 +> [10796] commending: 3 +> [10797] commends: 1 +> [10798] commensurable: 1 +> [10799] commensurate: 2 +> [10800] comment: 21 +> [10801] commentaries: 1 +> [10802] commentated: 1 +> [10803] commentator: 1 +> [10804] commented: 10 +> [10805] comments: 13 +> [10806] commerce: 7 +> [10807] commercial: 48 +> [10808] commingled: 1 +> [10809] commis: 1 +> [10810] commiserating: 2 +> [10811] commiseration: 10 +> [10812] commissariat: 23 +> [10813] commissaries: 3 +> [10814] commissary: 1 +> [10815] commission: 83 +> [10816] commission's: 1 +> [10817] commission--the: 1 +> [10818] commission. [10819] commissionaire: 3 +> [10820] commissioned: 11 +> [10821] commissioner: 3 +> [10822] commissioners: 1 +> [10823] commissioning: 1 +> [10824] commissions: 15 +> [10825] commit: 45 +> [10826] commits: 6 +> [10827] committal: 1 +> [10828] committed: 110 +> [10829] committee: 161 +> [10830] committee's: 5 +> [10831] committee-man: 2 +> [10832] committee-room: 4 +> [10833] committee-room--amid: 1 +> [10834] committeeman: 1 +> [10835] committeemen: 2 +> [10836] committees: 8 +> [10837] committees--everywhere: 1 +> [10838] committing: 11 +> [10839] commodities: 1 +> [10840] commodity: 3 +> [10841] common: 313 +> [10842] common--for: 1 +> [10843] common-looking: 1 +> [10844] common-sense: 6 +> [10845] common. [10846] commonalty: 4 +> [10847] commoner: 2 +> [10848] commonest: 5 +> [10849] commonly: 33 +> [10850] commonplace: 37 +> [10851] commonplaceness: 3 +> [10852] commonplaces: 3 +> [10853] commons: 2 +> [10854] commons--there: 1 +> [10855] commotion: 14 +> [10856] commun: 1 +> [10857] communal: 2 +> [10858] commune: 15 +> [10859] communes: 2 +> [10860] communicant: 1 +> [10861] communicate: 28 +> [10862] communicated: 17 +> [10863] communicates: 1 +> [10864] communicating: 3 +> [10865] communication: 48 +> [10866] communications: 5 +> [10867] communicative: 2 +> [10868] communing: 1 +> [10869] communion: 11 +> [10870] communion? [10871] communism: 3 +> [10872] communist: 1 +> [10873] communists: 2 +> [10874] communities: 2 +> [10875] community: 19 +> [10876] commuted: 2 +> [10877] como: 15 +> [10878] compact: 13 +> [10879] compactly: 1 +> [10880] compacts: 3 +> [10881] compagne: 2 +> [10882] compagnie: 1 +> [10883] compagnie.’: 1 +> [10884] companies: 35 +> [10885] companion: 154 +> [10886] companion's: 11 +> [10887] companion--a: 1 +> [10888] companion--i: 1 +> [10889] companion--lutugoff--from: 1 +> [10890] companionable: 1 +> [10891] companions: 88 +> [10892] companionship: 10 +> [10893] companion’s: 3 +> [10894] company: 377 +> [10895] company's: 1 +> [10896] company, [10897] company--cocottes: 1 +> [10898] company--i: 1 +> [10899] company--what: 1 +> [10900] company.... [10901] company.”: 1 +> [10902] comparable: 3 +> [10903] comparative: 10 +> [10904] comparatively: 26 +> [10905] compare: 23 +> [10906] compare...i: 1 +> [10907] compared: 55 +> [10908] compares: 3 +> [10909] comparing: 17 +> [10910] comparison: 53 +> [10911] comparisons: 4 +> [10912] compartment: 13 +> [10913] compartments: 1 +> [10914] compass: 6 +> [10915] compassed: 1 +> [10916] compasses: 1 +> [10917] compassion: 56 +> [10918] compassionate: 8 +> [10919] compassionately: 14 +> [10920] compassionately--"let: 1 +> [10921] compatriot: 2 +> [10922] compatriots: 1 +> [10923] compel: 6 +> [10924] compelled: 34 +> [10925] compelling: 4 +> [10926] compels: 4 +> [10927] compendium: 2 +> [10928] compensate: 9 +> [10929] compensated: 2 +> [10930] compensates: 2 +> [10931] compensation: 10 +> [10932] compensation—they've: 1 +> [10933] compensations: 1 +> [10934] compete: 6 +> [10935] competent: 18 +> [10936] competing: 1 +> [10937] competition: 2 +> [10938] competitors: 1 +> [10939] compilation: 29 +> [10940] compilations: 2 +> [10941] compiled: 6 +> [10942] compiler: 1 +> [10943] compilers: 1 +> [10944] compiling: 2 +> [10945] complacence: 1 +> [10946] complacency: 9 +> [10947] complacent: 11 +> [10948] complacently: 13 +> [10949] complain: 32 +> [10950] complain--i: 1 +> [10951] complained: 20 +> [10952] complaining: 27 +> [10953] complains: 2 +> [10954] complaint: 21 +> [10955] complaints: 19 +> [10956] complaisance: 8 +> [10957] complaisance.”: 1 +> [10958] complaisant: 1 +> [10959] complaisantly: 1 +> [10960] complement: 1 +> [10961] complementary: 1 +> [10962] complete: 246 +> [10963] complete—that: 1 +> [10964] completed: 37 +> [10965] completely: 320 +> [10966] completely. [10967] completeness: 5 +> [10968] completest: 2 +> [10969] completing: 5 +> [10970] completion: 4 +> [10971] complex: 37 +> [10972] complexion: 19 +> [10973] complexions: 1 +> [10974] complexity: 8 +> [10975] compliance: 98 +> [10976] compliance;”: 1 +> [10977] complicate: 1 +> [10978] complicated: 32 +> [10979] complication: 3 +> [10980] complications: 4 +> [10981] complications--i: 1 +> [10982] complicity: 3 +> [10983] complied: 11 +> [10984] compliment: 33 +> [10985] complimentary: 1 +> [10986] complimented: 2 +> [10987] compliments: 24 +> [10988] compliments—and: 1 +> [10989] compliments, [10990] compliments. [10991] compliments. [10992] compline: 1 +> [10993] compliziert: 1 +> [10994] comply: 128 +> [10995] complying: 58 +> [10996] component: 3 +> [10997] components: 9 +> [10998] comport: 1 +> [10999] compose: 3 +> [11000] composed: 66 +> [11001] composedly: 3 +> [11002] composer: 1 +> [11003] composers: 2 +> [11004] composing: 9 +> [11005] composite: 12 +> [11006] composite--hellenistic: 1 +> [11007] composites: 1 +> [11008] composition: 29 +> [11009] composition—a: 1 +> [11010] compost: 1 +> [11011] composure: 72 +> [11012] compote: 1 +> [11013] compound: 9 +> [11014] compounded: 2 +> [11015] compounds: 13 +> [11016] comprehen: 1 +> [11017] comprehend: 37 +> [11018] comprehended: 16 +> [11019] comprehending: 2 +> [11020] comprehensible: 25 +> [11021] comprehensible--it: 1 +> [11022] comprehension: 16 +> [11023] comprehensive: 5 +> [11024] comprehensiveness: 1 +> [11025] comprendre: 1 +> [11026] comprenez: 3 +> [11027] compress: 2 +> [11028] compressed: 45 +> [11029] compresses: 1 +> [11030] compressibility: 1 +> [11031] compressing: 6 +> [11032] compression: 4 +> [11033] comprise: 1 +> [11034] comprised: 1 +> [11035] comprises: 2 +> [11036] comprising: 2 +> [11037] compromettant: 1 +> [11038] compromise: 19 +> [11039] compromise--but: 1 +> [11040] compromise. [11041] compromised: 4 +> [11042] compromises: 3 +> [11043] compromising: 13 +> [11044] comptez: 1 +> [11045] compulsion: 4 +> [11046] compulsory: 5 +> [11047] compunction: 1 +> [11048] computation: 1 +> [11049] computations: 1 +> [11050] compute: 1 +> [11051] computer: 38 +> [11052] computers: 38 +> [11053] compôte: 1 +> [11054] comrade: 54 +> [11055] comrade's: 3 +> [11056] comrades: 65 +> [11057] comrades, [11058] comrades--not: 1 +> [11059] comrades-in-arms: 1 +> [11060] comradeship: 4 +> [11061] comte: 13 +> [11062] comte's: 1 +> [11063] comte--not: 1 +> [11064] comtesse: 7 +> [11065] con: 2 +> [11066] con-so-la-tion: 1 +> [11067] conceal: 94 +> [11068] concealed: 81 +> [11069] concealed--his: 1 +> [11070] concealing: 33 +> [11071] concealment: 8 +> [11072] conceals: 1 +> [11073] conceded: 3 +> [11074] concedes: 1 +> [11075] conceit: 15 +> [11076] conceit—that's: 1 +> [11077] conceited: 21 +> [11078] conceitedly: 4 +> [11079] conceivability: 1 +> [11080] conceivable: 6 +> [11081] conceivable? [11082] conceivably: 1 +> [11083] conceive: 47 +> [11084] conceived: 33 +> [11085] conceives: 2 +> [11086] conceiving: 5 +> [11087] concensus: 1 +> [11088] concentrate: 10 +> [11089] concentrated: 63 +> [11090] concentrated—and: 1 +> [11091] concentrates: 1 +> [11092] concentrating: 2 +> [11093] concentration: 14 +> [11094] concept: 40 +> [11095] conception: 127 +> [11096] conceptions: 21 +> [11097] concepts: 1 +> [11098] concern: 33 +> [11099] concern--she: 1 +> [11100] concerned: 94 +> [11101] concerned--with: 1 +> [11102] concerned.— [11103] concerning: 112 +> [11104] concerns: 19 +> [11105] concert: 18 +> [11106] concertina: 2 +> [11107] concerting: 1 +> [11108] concerts: 7 +> [11109] concession: 5 +> [11110] concessions: 5 +> [11111] concierge: 1 +> [11112] conciergerie: 2 +> [11113] conciliate: 3 +> [11114] conciliated: 1 +> [11115] conciliating: 2 +> [11116] conciliation: 7 +> [11117] conciliation-board: 1 +> [11118] conciliatory: 1 +> [11119] concini: 1 +> [11120] concise: 5 +> [11121] concisely: 1 +> [11122] concision: 2 +> [11123] conclave: 4 +> [11124] conclude: 29 +> [11125] concluded: 135 +> [11126] concludes: 3 +> [11127] concluding: 13 +> [11128] conclusion: 150 +> [11129] conclusions: 35 +> [11130] conclusions? [11131] conclusive: 15 +> [11132] conclusively: 13 +> [11133] conclusiveness: 2 +> [11134] concoct: 1 +> [11135] concord: 2 +> [11136] concordant: 3 +> [11137] concordats: 3 +> [11138] concourse: 4 +> [11139] concrete: 9 +> [11140] concubine: 2 +> [11141] concurrence: 2 +> [11142] concurrent: 1 +> [11143] concurrently: 1 +> [11144] concussion: 1 +> [11145] cond: 1 +> [11146] conde: 2 +> [11147] condemn: 31 +> [11148] condemnation: 6 +> [11149] condemnation [11150] condemnations: 1 +> [11151] condemnatory: 1 +> [11152] condemned: 49 +> [11153] condemned! [11154] condemning: 6 +> [11155] condemns: 3 +> [11156] condensation: 7 +> [11157] condensed: 5 +> [11158] condenser: 15 +> [11159] condenses: 1 +> [11160] condensor: 1 +> [11161] condescend: 9 +> [11162] condescended: 3 +> [11163] condescending: 18 +> [11164] condescendingly: 7 +> [11165] condescends: 1 +> [11166] condescension: 23 +> [11167] condition: 323 +> [11168] condition, [11169] condition--wet: 1 +> [11170] condition. [11171] conditional: 3 +> [11172] conditionally: 5 +> [11173] conditioned: 4 +> [11174] conditions: 140 +> [11175] condole: 1 +> [11176] condolence: 12 +> [11177] condolences: 3 +> [11178] conduce: 3 +> [11179] conduced: 3 +> [11180] conducing: 1 +> [11181] conducive: 2 +> [11182] conduct: 123 +> [11183] conduct--besides: 1 +> [11184] conduct [11185] conducted: 24 +> [11186] conducting: 14 +> [11187] conductivity: 1 +> [11188] conductor: 14 +> [11189] conductors: 1 +> [11190] conducts: 2 +> [11191] condé: 2 +> [11192] condé's: 1 +> [11193] condé--a: 1 +> [11194] cone: 8 +> [11195] confabulation: 1 +> [11196] confabulations: 1 +> [11197] confectioner: 1 +> [11198] confectioner's: 3 +> [11199] confederate: 2 +> [11200] confederation: 1 +> [11201] confer: 10 +> [11202] conference: 13 +> [11203] conferred: 11 +> [11204] conferring: 6 +> [11205] confers: 2 +> [11206] confess: 177 +> [11207] confess, [11208] confess--but: 1 +> [11209] confess? [11210] confessed: 73 +> [11211] confessed! [11212] confessed. [11213] confessedly: 3 +> [11214] confesses: 3 +> [11215] confessing: 18 +> [11216] confession: 88 +> [11217] confession— [11218] confession—with: 1 +> [11219] confession's: 1 +> [11220] confession, [11221] confession--good: 1 +> [11222] confession? [11223] confessional: 1 +> [11224] confessionals: 1 +> [11225] confessions: 11 +> [11226] confessor: 4 +> [11227] confessor's: 1 +> [11228] confidant: 5 +> [11229] confidante: 2 +> [11230] confide: 9 +> [11231] confided: 13 +> [11232] confidence: 105 +> [11233] confidence--belonged: 1 +> [11234] confidences: 4 +> [11235] confident: 50 +> [11236] confidential: 16 +> [11237] confidentially: 8 +> [11238] confidently: 24 +> [11239] confidently? [11240] confides: 2 +> [11241] confiding: 21 +> [11242] confidingly: 1 +> [11243] confine: 12 +> [11244] confined: 43 +> [11245] confinement: 17 +> [11246] confinements: 1 +> [11247] confining: 2 +> [11248] confirm: 29 +> [11249] confirmation: 48 +> [11250] confirmation--"that: 1 +> [11251] confirmations: 1 +> [11252] confirmatory: 2 +> [11253] confirmed: 94 +> [11254] confirming: 6 +> [11255] confirms: 5 +> [11256] confiscate: 1 +> [11257] confiscated: 1 +> [11258] confiscation: 1 +> [11259] conflagration: 8 +> [11260] conflagrations: 4 +> [11261] conflict: 70 +> [11262] conflicting: 5 +> [11263] conflicts: 5 +> [11264] confluence: 3 +> [11265] conform: 14 +> [11266] conformable: 1 +> [11267] conformed: 2 +> [11268] conforming: 1 +> [11269] conformity: 4 +> [11270] conforms: 6 +> [11271] confound: 30 +> [11272] confounded: 18 +> [11273] confoundedly: 2 +> [11274] confounding: 2 +> [11275] confront: 8 +> [11276] confronted: 31 +> [11277] confronting: 19 +> [11278] confrères: 1 +> [11279] confucians: 1 +> [11280] confuse: 3 +> [11281] confused: 162 +> [11282] confusedly: 4 +> [11283] confuses: 1 +> [11284] confusing: 7 +> [11285] confusion: 200 +> [11286] confusion, [11287] confuted: 1 +> [11288] congeal: 1 +> [11289] congealed: 3 +> [11290] congenial: 2 +> [11291] congeniality: 1 +> [11292] congenital: 2 +> [11293] congested: 1 +> [11294] congestion: 1 +> [11295] conglomerate: 1 +> [11296] congratulate: 45 +> [11297] congratulated: 11 +> [11298] congratulating: 5 +> [11299] congratulation: 14 +> [11300] congratulations: 13 +> [11301] congratulatory: 1 +> [11302] congregate: 1 +> [11303] congregation: 7 +> [11304] congregational: 1 +> [11305] congregations: 1 +> [11306] congress: 3 +> [11307] congé: 1 +> [11308] conical: 2 +> [11309] conjecturally: 2 +> [11310] conjecture: 24 +> [11311] conjectured: 1 +> [11312] conjectures: 12 +> [11313] conjecturing: 1 +> [11314] conjugal: 3 +> [11315] conjunction: 17 +> [11316] conjunctions: 1 +> [11317] conjuration: 1 +> [11318] conjure: 1 +> [11319] conjured: 1 +> [11320] conjuror: 1 +> [11321] connais: 1 +> [11322] connaissez-vous: 1 +> [11323] connect: 11 +> [11324] connected: 82 +> [11325] connecticut: 4 +> [11326] connecting: 8 +> [11327] connection: 109 +> [11328] connections: 34 +> [11329] connections--and: 1 +> [11330] connections [11331] connects: 1 +> [11332] connexion: 8 +> [11333] conning: 1 +> [11334] connoisseur: 6 +> [11335] connoisseurs: 7 +> [11336] conquer: 12 +> [11337] conquer! [11338] conquer--not: 1 +> [11339] conquer--that: 1 +> [11340] conquered: 35 +> [11341] conquering: 9 +> [11342] conqueror: 12 +> [11343] conqueror? [11344] conquerors: 7 +> [11345] conquest: 18 +> [11346] conquest! [11347] conquest's: 2 +> [11348] conquests: 9 +> [11349] conquests--are: 1 +> [11350] conscience: 219 +> [11351] conscience! [11352] conscience—oh: 1 +> [11353] conscience—the: 1 +> [11354] conscience--i: 1 +> [11355] conscience--the: 1 +> [11356] conscience-prick: 2 +> [11357] conscience-stricken: 7 +> [11358] conscience. [11359] conscience;--but: 1 +> [11360] conscience [11361] conscienceless: 1 +> [11362] consciences: 6 +> [11363] conscientious: 17 +> [11364] conscientiously: 7 +> [11365] conscientiousness: 1 +> [11366] consciouness: 1 +> [11367] conscious: 232 +> [11368] conscious--as: 1 +> [11369] consciously: 24 +> [11370] consciousness: 211 +> [11371] consciousness? [11372] conscripted: 3 +> [11373] conscription: 3 +> [11374] conscripts: 1 +> [11375] conscwiption: 1 +> [11376] consecrated: 1 +> [11377] consecutive: 6 +> [11378] consecutively: 2 +> [11379] conseil: 1 +> [11380] consent: 104 +> [11381] consent, [11382] consented: 32 +> [11383] consenting: 5 +> [11384] consents: 6 +> [11385] consequence: 123 +> [11386] consequence, [11387] consequence.... [11388] consequences: 32 +> [11389] consequences--why: 1 +> [11390] consequent: 13 +> [11391] consequential: 20 +> [11392] consequently: 91 +> [11393] conservation: 1 +> [11394] conservatism: 1 +> [11395] conservative: 14 +> [11396] conservatives: 4 +> [11397] conservatives--a: 1 +> [11398] conservator: 1 +> [11399] conservatories: 2 +> [11400] conservatory: 10 +> [11401] conserve: 1 +> [11402] conserving: 1 +> [11403] consider: 282 +> [11404] consider—goodness: 1 +> [11405] consider--if: 1 +> [11406] considerable: 127 +> [11407] considerably: 44 +> [11408] considerate: 3 +> [11409] considerately: 2 +> [11410] consideration: 98 +> [11411] consideration. [11412] consideration:--"what: 1 +> [11413] considerations: 37 +> [11414] considered: 278 +> [11415] considered--tone: 1 +> [11416] considering: 122 +> [11417] considers: 21 +> [11418] consigne: 2 +> [11419] consigned: 2 +> [11420] consignment: 1 +> [11421] consist: 37 +> [11422] consisted: 60 +> [11423] consistency: 16 +> [11424] consistent: 34 +> [11425] consistently: 6 +> [11426] consisting: 30 +> [11427] consistory: 1 +> [11428] consists: 55 +> [11429] consolation: 52 +> [11430] consolation--if: 1 +> [11431] consolation. [11432] consolations: 5 +> [11433] consolatory: 4 +> [11434] console: 24 +> [11435] consoled: 8 +> [11436] consoler: 1 +> [11437] consolidated: 3 +> [11438] consolidation: 3 +> [11439] consoling: 13 +> [11440] consonant: 1 +> [11441] consonants: 1 +> [11442] consort: 1 +> [11443] conspicuous: 49 +> [11444] conspicuously: 7 +> [11445] conspiracy: 13 +> [11446] conspirator: 4 +> [11447] conspiratorial: 1 +> [11448] conspirators: 2 +> [11449] conspired: 3 +> [11450] constable: 9 +> [11451] constables: 7 +> [11452] constance: 9 +> [11453] constancy: 2 +> [11454] constant: 97 +> [11455] constantine: 3 +> [11456] constantinople: 2 +> [11457] constantinople—this: 1 +> [11458] constantly: 84 +> [11459] constants: 10 +> [11460] constatation: 1 +> [11461] constellation: 4 +> [11462] consternation: 10 +> [11463] constituency: 1 +> [11464] constituent: 7 +> [11465] constituents: 5 +> [11466] constitute: 7 +> [11467] constituted: 18 +> [11468] constitutes: 17 +> [11469] constituting: 1 +> [11470] constitution: 13 +> [11471] constitution.’: 1 +> [11472] constitutional: 4 +> [11473] constitutions: 1 +> [11474] constrained: 11 +> [11475] constraint: 14 +> [11476] constricted: 2 +> [11477] construct: 4 +> [11478] constructed: 39 +> [11479] constructed--the: 1 +> [11480] constructing: 6 +> [11481] construction: 15 +> [11482] constructive: 4 +> [11483] constructs: 1 +> [11484] construed: 3 +> [11485] consul: 1 +> [11486] consult: 33 +> [11487] consultation: 20 +> [11488] consultation--whether: 1 +> [11489] consultations: 4 +> [11490] consulted: 14 +> [11491] consulting: 17 +> [11492] consults: 1 +> [11493] consume: 7 +> [11494] consumed: 14 +> [11495] consumer: 6 +> [11496] consumers: 4 +> [11497] consumes: 2 +> [11498] consuming: 13 +> [11499] consummate: 1 +> [11500] consummated: 1 +> [11501] consummation: 6 +> [11502] consumption: 48 +> [11503] consumptive: 22 +> [11504] consumptive-looking: 1 +> [11505] consumptives: 2 +> [11506] contact: 122 +> [11507] contagion: 1 +> [11508] contagious: 1 +> [11509] contain: 89 +> [11510] contained: 73 +> [11511] container: 5 +> [11512] containers: 1 +> [11513] containing: 96 +> [11514] contains: 42 +> [11515] contaminate: 1 +> [11516] contaminated: 1 +> [11517] contamination: 3 +> [11518] contemplate: 13 +> [11519] contemplated: 14 +> [11520] contemplates: 2 +> [11521] contemplating: 12 +> [11522] contemplation: 13 +> [11523] contemplation--he: 1 +> [11524] contemplative: 3 +> [11525] contemplative. [11526] contemporaneously: 1 +> [11527] contemporaries: 9 +> [11528] contemporary: 26 +> [11529] contemporary—a: 1 +> [11530] contempt: 183 +> [11531] contempt's: 1 +> [11532] contempt, [11533] contempt--contempt: 1 +> [11534] contempt--in: 1 +> [11535] contempt--with: 1 +> [11536] contempt.”: 1 +> [11537] contemptible: 53 +> [11538] contemptibly: 1 +> [11539] contemptuous: 59 +> [11540] contemptuously: 92 +> [11541] contend: 10 +> [11542] contending: 3 +> [11543] content: 100 +> [11544] contente: 1 +> [11545] contented: 25 +> [11546] contentedly: 6 +> [11547] contenting: 3 +> [11548] contention: 14 +> [11549] contentious: 1 +> [11550] contentment: 2 +> [11551] contents: 70 +> [11552] contents--they: 1 +> [11553] contest: 24 +> [11554] contested: 2 +> [11555] contesting: 1 +> [11556] contests: 1 +> [11557] context: 4 +> [11558] contez: 1 +> [11559] contiguous: 2 +> [11560] continence: 1 +> [11561] continent: 4 +> [11562] continental: 7 +> [11563] continents: 1 +> [11564] contingencies: 12 +> [11565] contingency: 2 +> [11566] contingent: 2 +> [11567] continual: 75 +> [11568] continually: 278 +> [11569] continually. [11570] continuance: 5 +> [11571] continuation: 6 +> [11572] continuations: 2 +> [11573] continue: 76 +> [11574] continue, [11575] continue. [11576] continued: 794 +> [11577] continued--"i: 1 +> [11578] continued--"that: 1 +> [11579] continued--and: 1 +> [11580] continued--remembering: 1 +> [11581] continued--the: 1 +> [11582] continued--using: 1 +> [11583] continued. [11584] continues: 8 +> [11585] continuing: 29 +> [11586] continuity: 7 +> [11587] continuous: 19 +> [11588] continuously: 17 +> [11589] contorted: 13 +> [11590] contorting: 1 +> [11591] contra [11592] contrabass: 1 +> [11593] contract: 42 +> [11594] contracted: 14 +> [11595] contracting: 1 +> [11596] contraction: 1 +> [11597] contractor: 5 +> [11598] contractors: 2 +> [11599] contracts: 1 +> [11600] contradict: 27 +> [11601] contradicted: 12 +> [11602] contradicting: 7 +> [11603] contradiction: 26 +> [11604] contradiction? [11605] contradictions: 18 +> [11606] contradictory: 16 +> [11607] contradicts: 4 +> [11608] contradistinction: 1 +> [11609] contraire: 1 +> [11610] contralto: 3 +> [11611] contraries: 1 +> [11612] contrariness: 1 +> [11613] contrary: 419 +> [11614] contrary...i: 1 +> [11615] contrary. [11616] contrast: 57 +> [11617] contrasted: 4 +> [11618] contrasting: 4 +> [11619] contrat: 3 +> [11620] contravention: 2 +> [11621] contre: 2 +> [11622] contribute: 6 +> [11623] contributed: 16 +> [11624] contribution: 4 +> [11625] contributions: 41 +> [11626] contributory: 2 +> [11627] contrite: 1 +> [11628] contrition: 1 +> [11629] contrive: 18 +> [11630] contrived: 17 +> [11631] contrives: 4 +> [11632] control: 135 +> [11633] control—and: 1 +> [11634] controlled: 27 +> [11635] controlledly: 1 +> [11636] controlling: 12 +> [11637] controls: 3 +> [11638] controversial: 4 +> [11639] controversy: 11 +> [11640] controversy--for: 1 +> [11641] controversy [11642] controverted: 1 +> [11643] contumacious: 2 +> [11644] contumely: 2 +> [11645] convalescence: 9 +> [11646] convalescent: 3 +> [11647] convalescents: 1 +> [11648] convenable: 1 +> [11649] convenance: 1 +> [11650] convenance_,’: 1 +> [11651] convened: 2 +> [11652] convenience: 11 +> [11653] conveniences: 1 +> [11654] convenient: 37 +> [11655] conveniently: 8 +> [11656] convent: 16 +> [11657] convent--which: 1 +> [11658] convent-bred: 1 +> [11659] convention: 6 +> [11660] conventional: 16 +> [11661] conventional--i: 1 +> [11662] conventionality: 2 +> [11663] conventionalized: 2 +> [11664] conventionally: 2 +> [11665] conventions: 2 +> [11666] convents: 2 +> [11667] conventual: 1 +> [11668] converge: 2 +> [11669] convergence: 1 +> [11670] conversant: 2 +> [11671] conversation: 729 +> [11672] conversation--"and: 1 +> [11673] conversation--"i: 1 +> [11674] conversation--count: 1 +> [11675] conversation--of: 1 +> [11676] conversation--that: 1 +> [11677] conversation--they: 1 +> [11678] conversation. [11679] conversation.”: 2 +> [11680] conversational: 6 +> [11681] conversationists: 1 +> [11682] conversations: 54 +> [11683] converse: 25 +> [11684] conversed: 6 +> [11685] conversely: 8 +> [11686] converses: 2 +> [11687] conversing: 28 +> [11688] conversion: 14 +> [11689] conversions: 1 +> [11690] convert: 31 +> [11691] converted: 18 +> [11692] converting: 7 +> [11693] converts: 4 +> [11694] convey: 29 +> [11695] conveyance: 12 +> [11696] conveyances: 1 +> [11697] conveyed: 21 +> [11698] conveying: 1 +> [11699] conveys: 3 +> [11700] convict: 20 +> [11701] convict's: 1 +> [11702] convicted: 7 +> [11703] conviction: 140 +> [11704] conviction—my: 1 +> [11705] conviction—not: 1 +> [11706] conviction--aiming: 1 +> [11707] conviction--that: 2 +> [11708] convictions: 46 +> [11709] convictions--do: 1 +> [11710] convicts: 14 +> [11711] convient: 1 +> [11712] convince: 36 +> [11713] convinced: 259 +> [11714] convinced--the: 1 +> [11715] convinces: 7 +> [11716] convincing: 17 +> [11717] convincingly: 2 +> [11718] convoy: 26 +> [11719] convoyed: 2 +> [11720] convoyman: 1 +> [11721] convoys: 1 +> [11722] convulsed: 3 +> [11723] convulsion: 8 +> [11724] convulsions: 28 +> [11725] convulsions! [11726] convulsive: 14 +> [11727] convulsively: 28 +> [11728] cooed: 1 +> [11729] cooing: 2 +> [11730] cook: 76 +> [11731] cook's: 16 +> [11732] cook-boy: 1 +> [11733] cook-maid: 1 +> [11734] cooked: 11 +> [11735] cookers: 1 +> [11736] cookery: 3 +> [11737] cookhill: 1 +> [11738] cookies: 1 +> [11739] cooking: 12 +> [11740] cooks: 8 +> [11741] cooks--and: 1 +> [11742] cooks--who: 1 +> [11743] cookshop: 2 +> [11744] cookshops: 2 +> [11745] cool: 106 +> [11746] cooled: 27 +> [11747] cooler: 9 +> [11748] coolest: 2 +> [11749] cooling: 12 +> [11750] coolly: 33 +> [11751] coolness: 18 +> [11752] cools: 5 +> [11753] cooper: 17 +> [11754] cooperate: 1 +> [11755] cooperating: 1 +> [11756] cooperation: 3 +> [11757] cooperative: 1 +> [11758] coops: 2 +> [11759] cop: 1 +> [11760] cope: 3 +> [11761] copeck: 7 +> [11762] copeck. [11763] copecks: 50 +> [11764] copecks—he: 1 +> [11765] copecks--a: 1 +> [11766] copenhagen: 1 +> [11767] copenhagen--a: 1 +> [11768] copernicus: 4 +> [11769] copied: 51 +> [11770] copies: 137 +> [11771] coping: 5 +> [11772] copious: 1 +> [11773] copiously: 2 +> [11774] copper: 21 +> [11775] copper-red: 1 +> [11776] coppers: 7 +> [11777] coppers--"run: 1 +> [11778] coppice: 3 +> [11779] copra: 3 +> [11780] copse: 53 +> [11781] copse! [11782] copse, [11783] copse. [11784] copses: 2 +> [11785] copses--ay: 1 +> [11786] copy: 261 +> [11787] copy-book: 1 +> [11788] copybooks: 1 +> [11789] copying: 88 +> [11790] copying-clerk, [11791] copyists: 1 +> [11792] copyright: 252 +> [11793] coquet: 2 +> [11794] coquetry: 5 +> [11795] coquette: 2 +> [11796] coquettish: 6 +> [11797] coquettishly: 1 +> [11798] coquettishness: 1 +> [11799] cor: 38 +> [11800] coral: 2 +> [11801] corbels: 1 +> [11802] cord: 34 +> [11803] cord-breeches: 1 +> [11804] corday: 2 +> [11805] corded: 4 +> [11806] cordelia: 2 +> [11807] cordelia's: 1 +> [11808] cordial: 26 +> [11809] cordiality: 15 +> [11810] cordially: 19 +> [11811] cording: 2 +> [11812] cordon: 1 +> [11813] cordovan: 2 +> [11814] cords: 7 +> [11815] core: 3 +> [11816] corinth: 14 +> [11817] corinthian: 4 +> [11818] corinthians: 13 +> [11819] cork: 10 +> [11820] corked: 4 +> [11821] corks: 2 +> [11822] corkscrew: 2 +> [11823] corn: 92 +> [11824] corn--all: 1 +> [11825] corn--i: 1 +> [11826] corn-dealer's: 1 +> [11827] corn-dealers: 1 +> [11828] corn-law: 2 +> [11829] corn-tax: 4 +> [11830] corn-taxes: 3 +> [11831] corndealer: 1 +> [11832] cornelius: 2 +> [11833] corner: 459 +> [11834] corner! [11835] corner,--but: 1 +> [11836] corner, [11837] corner--a: 1 +> [11838] corner--he: 1 +> [11839] corner--whence: 1 +> [11840] corner-stone: 2 +> [11841] cornered: 5 +> [11842] corners: 57 +> [11843] cornet: 8 +> [11844] cornetcy: 1 +> [11845] cornfield: 1 +> [11846] cornfields: 2 +> [11847] cornflowers: 1 +> [11848] cornhill: 1 +> [11849] cornice: 3 +> [11850] cornices: 4 +> [11851] cornish: 1 +> [11852] cornishman: 2 +> [11853] cornstacks: 1 +> [11854] coronation: 4 +> [11855] coronet: 1 +> [11856] corporal: 27 +> [11857] corporal's: 4 +> [11858] corporal--the: 1 +> [11859] corporation: 20 +> [11860] corps: 58 +> [11861] corps,...and: 1 +> [11862] corps--whom: 1 +> [11863] corpse: 26 +> [11864] corpse—retribution: 1 +> [11865] corpses: 11 +> [11866] corpulence: 2 +> [11867] corpulency: 1 +> [11868] corpulent: 5 +> [11869] corpus: 1 +> [11870] correct: 75 +> [11871] corrected: 35 +> [11872] corrected—that's: 1 +> [11873] correcting: 10 +> [11874] correction: 23 +> [11875] corrections: 6 +> [11876] corrective: 6 +> [11877] correctly: 34 +> [11878] correctly--the: 1 +> [11879] correctness: 9 +> [11880] corrects: 3 +> [11881] correlation: 1 +> [11882] correspond: 13 +> [11883] correspond? [11884] corresponded: 5 +> [11885] correspondence: 31 +> [11886] correspondences: 1 +> [11887] correspondent: 16 +> [11888] correspondents: 2 +> [11889] correspondent’s: 1 +> [11890] corresponding: 32 +> [11891] correspondingly: 3 +> [11892] corresponds: 3 +> [11893] corridor: 67 +> [11894] corridors: 2 +> [11895] corroborate: 4 +> [11896] corroborated: 1 +> [11897] corroboration: 4 +> [11898] corrosion: 1 +> [11899] corrosive: 2 +> [11900] corrupt: 34 +> [11901] corrupted: 9 +> [11902] corrupter: 1 +> [11903] corrupting: 9 +> [11904] corruption: 17 +> [11905] corruption [11906] corrupts: 1 +> [11907] corréas: 6 +> [11908] corselet: 3 +> [11909] corset: 2 +> [11910] corsets: 4 +> [11911] corsican: 1 +> [11912] corso: 1 +> [11913] corvas: 4 +> [11914] corvas--that: 1 +> [11915] corvisart: 1 +> [11916] corvées: 1 +> [11917] corydon: 1 +> [11918] cosaques: 1 +> [11919] cosey: 5 +> [11920] cosmetic: 2 +> [11921] cosmetics: 2 +> [11922] cosmic: 5 +> [11923] cosmography: 1 +> [11924] cosmological: 1 +> [11925] cosmology: 2 +> [11926] cosmopolitan: 1 +> [11927] cossack: 79 +> [11928] cossack's: 3 +> [11929] cossack--"were: 1 +> [11930] cossacks: 83 +> [11931] cossacks"--he: 1 +> [11932] cossacks--those: 1 +> [11933] cost: 158 +> [11934] cost! [11935] costermonger: 1 +> [11936] costermongers: 2 +> [11937] costing: 11 +> [11938] costliest: 1 +> [11939] costly: 12 +> [11940] costs: 58 +> [11941] costume: 31 +> [11942] costume--a: 1 +> [11943] costumes: 8 +> [11944] cot: 12 +> [11945] coterie: 4 +> [11946] coteries: 1 +> [11947] cotillion: 3 +> [11948] cotillions: 1 +> [11949] coton: 48 +> [11950] cottage: 48 +> [11951] cottage--old: 1 +> [11952] cottage [11953] cottages: 9 +> [11954] cotters: 1 +> [11955] cotton: 47 +> [11956] cotton-lord: 1 +> [11957] cotton-printers: 1 +> [11958] cotton-seed: 5 +> [11959] cotton-spawn: 1 +> [11960] cotton-spinners: 1 +> [11961] cottons: 2 +> [11962] cottonseed: 25 +> [11963] cottrell: 1 +> [11964] cotyledons: 1 +> [11965] couch: 22 +> [11966] couch-grass: 1 +> [11967] couched: 1 +> [11968] coucher: 1 +> [11969] couches: 2 +> [11970] cough: 44 +> [11971] cough--he: 1 +> [11972] cough--the: 1 +> [11973] cough-cough: 1 +> [11974] cough-cough-cough: 6 +> [11975] coughed: 26 +> [11976] coughing: 37 +> [11977] coughs: 2 +> [11978] could: 5620 +> [11979] could--for: 1 +> [11980] could--preferably: 1 +> [11981] could--she: 1 +> [11982] could. [11983] could? [11984] couldn't: 220 +> [11985] couldn't--i: 1 +> [11986] couldst: 3 +> [11987] couler: 1 +> [11988] council: 91 +> [11989] council--not: 1 +> [11990] council--the: 2 +> [11991] councillor: 2 +> [11992] councillors: 2 +> [11993] councilman: 1 +> [11994] councilor: 7 +> [11995] councilor--and: 1 +> [11996] councils: 4 +> [11997] counsel: 55 +> [11998] counsel? [11999] counseled: 1 +> [12000] counsellor: 4 +> [12001] counsellor--have: 1 +> [12002] counsellors: 6 +> [12003] counselor: 1 +> [12004] counsels: 5 +> [12005] count: 847 +> [12006] count's: 73 +> [12007] count--count: 1 +> [12008] count--if: 1 +> [12009] count--the: 1 +> [12010] count--who: 1 +> [12011] counted: 56 +> [12012] countenance: 68 +> [12013] countenances: 3 +> [12014] counter: 11 +> [12015] counteract: 4 +> [12016] counteracting: 1 +> [12017] counterattack: 1 +> [12018] counterbalanced: 2 +> [12019] counterfeit: 9 +> [12020] countermanded: 1 +> [12021] countermarches: 1 +> [12022] countermovement: 4 +> [12023] counterorders--when: 1 +> [12024] counterpane: 1 +> [12025] counterpart: 3 +> [12026] counterpoise: 1 +> [12027] counters: 2 +> [12028] countersign: 1 +> [12029] countersigned: 1 +> [12030] countess: 657 +> [12031] countess's: 4 +> [12032] countess--her: 1 +> [12033] countess--not: 1 +> [12034] countess?--a: 1 +> [12035] counties: 3 +> [12036] counting: 55 +> [12037] counting-frame: 1 +> [12038] counting-house: 6 +> [12039] countinghouse: 2 +> [12040] countless: 10 +> [12041] countries: 29 +> [12042] country: 541 +> [12043] country's: 8 +> [12044] country--and: 1 +> [12045] country--before: 1 +> [12046] country--in: 1 +> [12047] country--music: 1 +> [12048] country--rumors: 1 +> [12049] country--the: 1 +> [12050] country-bred: 1 +> [12051] country-house: 4 +> [12052] country-places: 1 +> [12053] country-side: 1 +> [12054] country-woman: 2 +> [12055] country-woman--a: 1 +> [12056] country? [12057] countryman: 3 +> [12058] countrymen: 5 +> [12059] countryside: 4 +> [12060] countryside--"see: 1 +> [12061] countrywoman: 2 +> [12062] counts: 3 +> [12063] countwy: 1 +> [12064] county: 16 +> [12065] coup: 2 +> [12066] couple: 162 +> [12067] couple--a: 1 +> [12068] coupled: 4 +> [12069] couples: 16 +> [12070] coupons: 1 +> [12071] cour: 6 +> [12072] cour_--the: 1 +> [12073] courage: 157 +> [12074] courage, [12075] courage--for: 1 +> [12076] courage--vronsky: 1 +> [12077] courageous: 3 +> [12078] courageously: 1 +> [12079] courier: 31 +> [12080] course: 1484 +> [12081] course! [12082] course—and: 1 +> [12083] course—do: 1 +> [12084] course—ivan: 1 +> [12085] course, [12086] course--a: 1 +> [12087] course--and: 2 +> [12088] course--but: 6 +> [12089] course--he: 1 +> [12090] course--in: 1 +> [12091] course--indeed: 1 +> [12092] course--quite: 1 +> [12093] course--she: 1 +> [12094] course--sticking: 1 +> [12095] course--while: 1 +> [12096] course. [12097] courses: 11 +> [12098] coursing: 2 +> [12099] court: 287 +> [12100] court's: 2 +> [12101] court--_his: 1 +> [12102] court--and: 1 +> [12103] court--i: 1 +> [12104] court-house: 3 +> [12105] court-martial: 6 +> [12106] court-martialed: 2 +> [12107] court-martialled: 1 +> [12108] court-yard: 3 +> [12109] court. [12110] court? [12111] courte: 2 +> [12112] courted: 4 +> [12113] courtenays: 2 +> [12114] courteous: 44 +> [12115] courteously: 24 +> [12116] courtesan: 1 +> [12117] courtesied: 1 +> [12118] courtesies: 5 +> [12119] courtesy: 95 +> [12120] courthouse: 1 +> [12121] courtier: 7 +> [12122] courtier's: 1 +> [12123] courtierlike: 2 +> [12124] courtiers: 19 +> [12125] courting: 7 +> [12126] courtliest: 1 +> [12127] courtly: 6 +> [12128] courts: 26 +> [12129] courtship: 4 +> [12130] courtship--and: 1 +> [12131] courtyard: 63 +> [12132] courtyards: 3 +> [12133] cousin: 91 +> [12134] cousin's: 2 +> [12135] cousin--he: 1 +> [12136] cousinage: 1 +> [12137] cousinage--dangereux: 1 +> [12138] cousine: 3 +> [12139] cousinhood: 2 +> [12140] cousins: 12 +> [12141] cousins--does: 1 +> [12142] cousinship: 1 +> [12143] coutras--i: 1 +> [12144] couture,*(3: 1 +> [12145] couveuse: 1 +> [12146] cove.’: 1 +> [12147] covenant: 10 +> [12148] coventry: 4 +> [12149] cover: 97 +> [12150] covered: 348 +> [12151] covering: 57 +> [12152] coverings: 6 +> [12153] coverlet: 4 +> [12154] coverlet--or: 1 +> [12155] covers: 17 +> [12156] covert: 9 +> [12157] covertly: 1 +> [12158] coveted: 5 +> [12159] coveting: 1 +> [12160] covetousness: 1 +> [12161] covey: 1 +> [12162] cow: 18 +> [12163] cow's: 1 +> [12164] cow-feed: 1 +> [12165] cow-keeper: 1 +> [12166] cow-keeping: 1 +> [12167] cow-stalls: 1 +> [12168] coward: 70 +> [12169] coward's: 1 +> [12170] coward--yes: 1 +> [12171] coward.”: 1 +> [12172] cowardice: 25 +> [12173] cowardice. [12174] cowardliness: 1 +> [12175] cowardly: 25 +> [12176] cowards: 10 +> [12177] cowed: 8 +> [12178] cower: 1 +> [12179] cowered: 6 +> [12180] cowering: 5 +> [12181] cowherd: 5 +> [12182] cowherd-woman: 1 +> [12183] cowhouse: 5 +> [12184] cowl: 6 +> [12185] cowman: 1 +> [12186] cows: 19 +> [12187] cows. [12188] cowshed: 4 +> [12189] coxcomb: 8 +> [12190] coxcombs: 4 +> [12191] coy: 1 +> [12192] coyness: 1 +> [12193] cozy: 3 +> [12194] coûte: 1 +> [12195] cr_{2}cl_{6: 1 +> [12196] crab: 2 +> [12197] crab-tree,”: 1 +> [12198] crack: 52 +> [12199] crack. [12200] crackbrained: 1 +> [12201] cracked: 29 +> [12202] cracking: 12 +> [12203] crackle: 4 +> [12204] crackled: 7 +> [12205] crackling: 12 +> [12206] cracknel: 2 +> [12207] cracks: 4 +> [12208] cracovienne: 1 +> [12209] cracovy: 1 +> [12210] cracow: 1 +> [12211] cradle: 7 +> [12212] cradley: 1 +> [12213] craft: 7 +> [12214] craftily: 3 +> [12215] craftiness: 1 +> [12216] craftsmanship: 1 +> [12217] craftsmen: 1 +> [12218] crafty: 27 +> [12219] cram: 1 +> [12220] crammed: 2 +> [12221] cramming: 2 +> [12222] cramp: 3 +> [12223] cramped: 11 +> [12224] cramping: 3 +> [12225] cramps: 2 +> [12226] craned: 3 +> [12227] cranes: 1 +> [12228] craning: 3 +> [12229] crank: 2 +> [12230] cranks: 3 +> [12231] cranky: 1 +> [12232] crannies: 1 +> [12233] cranny: 1 +> [12234] crape: 4 +> [12235] crash: 21 +> [12236] crashed: 2 +> [12237] crashing: 5 +> [12238] crashings: 1 +> [12239] cravat: 19 +> [12240] cravats: 1 +> [12241] crave: 5 +> [12242] craved: 4 +> [12243] craven: 3 +> [12244] craven--with: 1 +> [12245] cravens: 2 +> [12246] craves: 1 +> [12247] craving: 31 +> [12248] crawl: 16 +> [12249] crawled: 19 +> [12250] crawling: 8 +> [12251] crawls: 1 +> [12252] crayons: 1 +> [12253] craze: 4 +> [12254] crazed: 1 +> [12255] crazily: 1 +> [12256] craziness: 2 +> [12257] crazy: 58 +> [12258] crazy, [12259] crazy. [12260] creak: 23 +> [12261] creaked: 20 +> [12262] creaking: 22 +> [12263] creakings: 1 +> [12264] creaks: 1 +> [12265] creaky: 1 +> [12266] cream: 40 +> [12267] cream-pan: 1 +> [12268] creaming: 1 +> [12269] creams: 3 +> [12270] creamy: 5 +> [12271] crease: 3 +> [12272] creases: 3 +> [12273] create: 23 +> [12274] create--the: 1 +> [12275] created: 83 +> [12276] created, [12277] creates: 2 +> [12278] creating: 84 +> [12279] creation: 70 +> [12280] creation, [12281] creations: 1 +> [12282] creative: 5 +> [12283] creator: 12 +> [12284] creature: 207 +> [12285] creature! [12286] creature—that: 1 +> [12287] creature's: 3 +> [12288] creature, [12289] creature--it: 1 +> [12290] creature--that: 1 +> [12291] creature--you: 1 +> [12292] creature. [12293] creatures: 56 +> [12294] credence: 2 +> [12295] credentials: 4 +> [12296] credibility: 1 +> [12297] credible: 4 +> [12298] credibly: 1 +> [12299] credit: 81 +> [12300] credit, [12301] creditable: 2 +> [12302] credited: 1 +> [12303] crediting: 1 +> [12304] creditor: 3 +> [12305] creditors: 7 +> [12306] credits: 1 +> [12307] credulity: 5 +> [12308] credulous: 5 +> [12309] credulous. [12310] creed: 5 +> [12311] creed--contemptible: 1 +> [12312] creeds: 4 +> [12313] creek: 4 +> [12314] creep: 17 +> [12315] creep--as: 1 +> [12316] creepers: 1 +> [12317] creeping: 14 +> [12318] creeps: 4 +> [12319] crept: 53 +> [12320] crescendo: 1 +> [12321] crescent: 2 +> [12322] crescent-shaped: 1 +> [12323] cresols: 1 +> [12324] cresset: 1 +> [12325] cressets: 1 +> [12326] cressy: 1 +> [12327] crest: 12 +> [12328] crest-fallen: 1 +> [12329] crestfallen: 11 +> [12330] crests: 1 +> [12331] cretonne: 1 +> [12332] crevez: 1 +> [12333] crevice: 3 +> [12334] crevices: 3 +> [12335] crew: 18 +> [12336] crew!--"i: 1 +> [12337] crewdson: 6 +> [12338] crewdson--tell: 1 +> [12339] crews: 1 +> [12340] crib: 1 +> [12341] cribbage: 1 +> [12342] cricket: 6 +> [12343] cricket-field: 1 +> [12344] cricketer: 1 +> [12345] crickets: 1 +> [12346] cried: 2099 +> [12347] cried--"hideous: 1 +> [12348] cried--"mercy: 1 +> [12349] cried--"no: 1 +> [12350] cried--and: 1 +> [12351] cried--cried: 1 +> [12352] cried--i: 1 +> [12353] cried--indeed: 1 +> [12354] cried--so: 1 +> [12355] cries: 107 +> [12356] cries--i: 1 +> [12357] cries. [12358] crime: 176 +> [12359] crime, [12360] crime--and: 1 +> [12361] crime--murder: 1 +> [12362] crime--we: 1 +> [12363] crime. [12364] crime [12365] crime? [12366] crimea: 3 +> [12367] crimean: 8 +> [12368] crimes: 33 +> [12369] crimes--and: 1 +> [12370] crimes--make: 1 +> [12371] criminal: 122 +> [12372] criminal! [12373] criminal's: 2 +> [12374] criminality: 1 +> [12375] criminals: 31 +> [12376] criminals--more: 1 +> [12377] crimson: 87 +> [12378] crimson--but: 1 +> [12379] crimsoned: 11 +> [12380] crimsoning: 3 +> [12381] cringe: 1 +> [12382] cringed: 1 +> [12383] cringing: 14 +> [12384] cringingly: 1 +> [12385] crinoline: 3 +> [12386] crinolines: 1 +> [12387] cripple: 6 +> [12388] crippled: 13 +> [12389] cripples: 6 +> [12390] crisis: 43 +> [12391] crisis--to: 1 +> [12392] crisp: 2 +> [12393] crisply: 1 +> [12394] cristal: 5 +> [12395] criterion: 5 +> [12396] criterions: 3 +> [12397] critic: 10 +> [12398] critic's: 1 +> [12399] critical: 59 +> [12400] critically: 1 +> [12401] critically? [12402] criticise: 3 +> [12403] criticised: 2 +> [12404] criticises: 1 +> [12405] criticism: 77 +> [12406] criticism? [12407] criticisms: 9 +> [12408] criticize: 11 +> [12409] criticized: 7 +> [12410] criticized--criticized: 1 +> [12411] criticizes: 2 +> [12412] criticizing: 8 +> [12413] critics: 21 +> [12414] croak: 3 +> [12415] croaked: 2 +> [12416] croaking: 2 +> [12417] croats: 1 +> [12418] crochet: 4 +> [12419] crock: 1 +> [12420] crockery: 11 +> [12421] crocodile: 1 +> [12422] crocodile's: 1 +> [12423] crocodiles: 1 +> [12424] crois: 1 +> [12425] cromwell: 6 +> [12426] cromwell--his: 1 +> [12427] cromwells: 1 +> [12428] crone: 1 +> [12429] crone's: 1 +> [12430] crony: 1 +> [12431] crook: 4 +> [12432] crooked: 17 +> [12433] crooking: 5 +> [12434] crop: 18 +> [12435] crop's: 1 +> [12436] crop-headed: 1 +> [12437] cropped: 11 +> [12438] crops: 12 +> [12439] croquet: 8 +> [12440] croquet-ground: 1 +> [12441] crosart: 1 +> [12442] crosier: 1 +> [12443] cross: 289 +> [12444] cross—that: 1 +> [12445] cross--all: 1 +> [12446] cross-bar: 1 +> [12447] cross-claim: 1 +> [12448] cross-country: 1 +> [12449] cross-examination: 7 +> [12450] cross-examine: 4 +> [12451] cross-examined: 4 +> [12452] cross-examined, [12453] cross-examining: 11 +> [12454] cross-fire: 1 +> [12455] cross-legged: 1 +> [12456] cross-looking: 1 +> [12457] cross-piece: 1 +> [12458] cross-purposes: 1 +> [12459] cross-question: 1 +> [12460] cross-questioned: 2 +> [12461] cross-questions: 1 +> [12462] cross-road: 2 +> [12463] cross-roads: 20 +> [12464] cross.[29: 1 +> [12465] crossbeam: 1 +> [12466] crossed: 217 +> [12467] crossed--and: 1 +> [12468] crosses: 30 +> [12469] crossing: 116 +> [12470] crossings: 4 +> [12471] crossly: 15 +> [12472] crossness: 1 +> [12473] crossroad: 1 +> [12474] crossroads: 6 +> [12475] crossway: 3 +> [12476] crotchety: 1 +> [12477] croton: 2 +> [12478] crouch: 2 +> [12479] crouched: 21 +> [12480] crouches: 1 +> [12481] crouching: 17 +> [12482] croup: 3 +> [12483] croups: 1 +> [12484] crow: 6 +> [12485] crow's: 1 +> [12486] crowbar: 3 +> [12487] crowd: 576 +> [12488] crowd, [12489] crowd--a: 2 +> [12490] crowd--for: 1 +> [12491] crowd--officials: 1 +> [12492] crowd--the: 1 +> [12493] crowded: 92 +> [12494] crowding: 37 +> [12495] crowds: 54 +> [12496] crowed: 4 +> [12497] crowing: 5 +> [12498] crown: 46 +> [12499] crown--an: 1 +> [12500] crown--but: 1 +> [12501] crowned: 19 +> [12502] crowner: 1 +> [12503] crowning: 3 +> [12504] crowns: 7 +> [12505] crows: 13 +> [12506] crucial: 1 +> [12507] crucible: 14 +> [12508] crucibles: 1 +> [12509] crucified: 8 +> [12510] crucifix: 6 +> [12511] crucifixes: 1 +> [12512] crucifixion: 10 +> [12513] crucify: 3 +> [12514] crude: 45 +> [12515] crudele: 2 +> [12516] crudely: 2 +> [12517] crudeness: 1 +> [12518] cruder: 1 +> [12519] crudes: 3 +> [12520] crudest: 1 +> [12521] crudities: 2 +> [12522] crudity: 1 +> [12523] cruel: 134 +> [12524] cruel, [12525] cruel--it's: 1 +> [12526] cruel. [12527] cruelest: 2 +> [12528] cruelly: 27 +> [12529] cruelly [12530] cruelties: 4 +> [12531] cruelty: 44 +> [12532] cruelty—shut: 1 +> [12533] crumb: 2 +> [12534] crumble: 6 +> [12535] crumbled: 6 +> [12536] crumbling: 12 +> [12537] crumbly: 2 +> [12538] crumbs: 2 +> [12539] crumby: 1 +> [12540] crumple: 2 +> [12541] crumpled: 21 +> [12542] crumpled-looking: 1 +> [12543] crumpling: 4 +> [12544] crunch: 1 +> [12545] crunching: 3 +> [12546] crupper: 9 +> [12547] crusade: 3 +> [12548] crusade--the: 1 +> [12549] crusader: 1 +> [12550] crusaders: 1 +> [12551] crusades: 4 +> [12552] crush: 51 +> [12553] crushed: 127 +> [12554] crushed--crushed: 1 +> [12555] crusher: 1 +> [12556] crushes: 2 +> [12557] crushing: 22 +> [12558] crusoe: 1 +> [12559] crust: 20 +> [12560] crust! [12561] crusted: 2 +> [12562] crustily: 1 +> [12563] crusts: 1 +> [12564] crusty: 2 +> [12565] crutch: 5 +> [12566] crutched: 12 +> [12567] crutcher: 52 +> [12568] crutches: 3 +> [12569] crutching: 10 +> [12570] cry: 377 +> [12571] cry, [12572] cry--a: 1 +> [12573] cry--i: 1 +> [12574] cry--which: 1 +> [12575] cry-baby: 2 +> [12576] cry...i'm: 1 +> [12577] cry. [12578] cry? [12579] crybabies: 1 +> [12580] crybaby: 1 +> [12581] crying: 200 +> [12582] crying—she: 1 +> [12583] crying—yes: 1 +> [12584] crying. [12585] crying? [12586] crypt: 1 +> [12587] cryptic: 2 +> [12588] cryptogram: 1 +> [12589] crystal: 25 +> [12590] crystalline: 5 +> [12591] crystalline-like: 1 +> [12592] crystallization: 2 +> [12593] crystallize: 1 +> [12594] crystallized: 2 +> [12595] crystallizer: 1 +> [12596] crystallizes: 1 +> [12597] crystallizing: 2 +> [12598] crystals: 2 +> [12599] crécy: 2 +> [12600] cu: 12 +> [12601] cub: 1 +> [12602] cube: 2 +> [12603] cubes: 1 +> [12604] cubic: 86 +> [12605] cubs: 6 +> [12606] cuckoo: 5 +> [12607] cuckoo's: 1 +> [12608] cuckoo-buds: 3 +> [12609] cuckoos: 1 +> [12610] cucumber: 5 +> [12611] cucumbers: 6 +> [12612] cuddled: 1 +> [12613] cudgel: 9 +> [12614] cudgel--for: 1 +> [12615] cudgels: 2 +> [12616] cue: 6 +> [12617] cues: 8 +> [12618] cuff: 8 +> [12619] cuffs: 9 +> [12620] cui: 1 +> [12621] cuisse: 1 +> [12622] cujus: 1 +> [12623] cul-de-sac: 2 +> [12624] culled: 1 +> [12625] culminate: 1 +> [12626] culminated: 1 +> [12627] culminates: 2 +> [12628] culminating: 4 +> [12629] culmination: 1 +> [12630] culpa: 4 +> [12631] culpable: 2 +> [12632] culprit: 8 +> [12633] culprits: 3 +> [12634] cultivate: 14 +> [12635] cultivated: 38 +> [12636] cultivating: 2 +> [12637] cultivation: 7 +> [12638] culture: 52 +> [12639] culture--and: 1 +> [12640] culture--following: 1 +> [12641] culture--in: 1 +> [12642] culture--the: 2 +> [12643] culture--their: 1 +> [12644] cultured: 10 +> [12645] cumbered: 5 +> [12646] cumbering: 4 +> [12647] cumbersome: 1 +> [12648] cummin: 1 +> [12649] cumulative: 1 +> [12650] cunctators: 1 +> [12651] cunning: 76 +> [12652] cunning—he: 1 +> [12653] cunning--almost: 1 +> [12654] cunningly: 4 +> [12655] cup: 112 +> [12656] cup-bearer: 1 +> [12657] cupboard: 29 +> [12658] cupboard. [12659] cupboards: 10 +> [12660] cupful: 1 +> [12661] cupid: 1 +> [12662] cupidity: 1 +> [12663] cupids: 2 +> [12664] cupola: 4 +> [12665] cupolas: 3 +> [12666] cups: 15 +> [12667] cur: 13 +> [12668] curacies: 1 +> [12669] curacy: 3 +> [12670] curate: 15 +> [12671] curate's: 3 +> [12672] curb: 11 +> [12673] curbing: 1 +> [12674] curd: 10 +> [12675] curdling: 1 +> [12676] cure: 47 +> [12677] cured: 23 +> [12678] cures: 4 +> [12679] curieux: 1 +> [12680] curing: 7 +> [12681] curiosities: 2 +> [12682] curiosity: 221 +> [12683] curiosity,--i: 1 +> [12684] curiosity--while: 1 +> [12685] curious: 121 +> [12686] curiously: 37 +> [12687] curl: 9 +> [12688] curled: 29 +> [12689] curled-up: 3 +> [12690] curlew: 2 +> [12691] curlews: 1 +> [12692] curling: 20 +> [12693] curlpapers: 1 +> [12694] curls: 25 +> [12695] curly: 38 +> [12696] curly-brimmed: 2 +> [12697] curly-headed: 11 +> [12698] currant: 2 +> [12699] currants: 1 +> [12700] currency: 6 +> [12701] current: 94 +> [12702] currently: 1 +> [12703] currents: 2 +> [12704] curriculum: 4 +> [12705] curried: 1 +> [12706] curry: 4 +> [12707] curs: 2 +> [12708] curse: 82 +> [12709] curse--away: 1 +> [12710] cursed: 50 +> [12711] curses: 31 +> [12712] cursing: 21 +> [12713] cursorily. [12714] cursory: 3 +> [12715] curt: 4 +> [12716] curtain: 64 +> [12717] curtain—she: 1 +> [12718] curtained: 2 +> [12719] curtains: 31 +> [12720] curtains—that's: 1 +> [12721] curter: 1 +> [12722] curtesied: 1 +> [12723] curtly: 23 +> [12724] curtness: 1 +> [12725] curtsey: 5 +> [12726] curtseyed: 2 +> [12727] curtseying: 1 +> [12728] curtseys: 1 +> [12729] curtsied: 8 +> [12730] curtsy: 3 +> [12731] curtsying: 2 +> [12732] curvature: 1 +> [12733] curve: 8 +> [12734] curved: 14 +> [12735] curves: 4 +> [12736] curvetting: 1 +> [12737] curving: 4 +> [12738] curé: 33 +> [12739] curé's: 6 +> [12740] curé--who: 1 +> [12741] curés: 2 +> [12742] cushay: 1 +> [12743] cushion: 15 +> [12744] cushioned: 1 +> [12745] cushions: 10 +> [12746] cussedness: 1 +> [12747] custodian: 4 +> [12748] custodians: 1 +> [12749] custody: 9 +> [12750] custom: 63 +> [12751] customary: 30 +> [12752] customer: 4 +> [12753] customer's: 1 +> [12754] customer.’: 1 +> [12755] customers: 10 +> [12756] customs: 20 +> [12757] cut: 388 +> [12758] cut--there'll: 1 +> [12759] cut-away: 5 +> [12760] cutler's: 3 +> [12761] cutlet: 2 +> [12762] cutlets: 4 +> [12763] cutpurse: 1 +> [12764] cutpurses: 3 +> [12765] cuts: 16 +> [12766] cutter: 3 +> [12767] cutters-off: 1 +> [12768] cutthroats: 1 +> [12769] cutting: 63 +> [12770] cutting-out: 1 +> [12771] cuttingly: 3 +> [12772] cuttle-fish: 1 +> [12773] cuttlefish: 3 +> [12774] cutts: 2 +> [12775] cutup: 1 +> [12776] cweation: 1 +> [12777] cweep: 1 +> [12778] cwoss: 1 +> [12779] cx: 3 +> [12780] cycle: 1 +> [12781] cygne: 2 +> [12782] cylinder: 8 +> [12783] cylinder--the: 1 +> [12784] cylindrical: 2 +> [12785] cymbals: 3 +> [12786] cynic: 5 +> [12787] cynical: 17 +> [12788] cynically: 10 +> [12789] cynicism: 24 +> [12790] cynics: 2 +> [12791] cypress: 2 +> [12792] cyprus: 8 +> [12793] cyrenaica: 1 +> [12794] cyril: 12 +> [12795] cyril's: 1 +> [12796] cyrus: 1 +> [12797] czartoriski: 3 +> [12798] czartoriski's: 1 +> [12799] czartoryski: 4 +> [12800] czech: 1 +> [12801] cæsar: 5 +> [12802] cæsar's: 1 +> [12803] cæsarea: 11 +> [12804] cæsars: 2 +> [12805] cætera: 2 +> [12806] cécile: 2 +> [12807] cécile's: 1 +> [12808] cécile--for: 1 +> [12809] côtes: 1 +> [12810] cœlebs: 1 +> [12811] cœur: 1 +> [12812] d: 48 +> [12813] d'affaires: 2 +> [12814] d'alexandre: 1 +> [12815] d'ame: 1 +> [12816] d'ame--at: 1 +> [12817] d'amis: 1 +> [12818] d'anne: 1 +> [12819] d'argenson: 1 +> [12820] d'artois: 3 +> [12821] d'artois--grew: 1 +> [12822] d'auguste: 2 +> [12823] d'aulnoy: 3 +> [12824] d'autre: 1 +> [12825] d'azur--maison: 1 +> [12826] d'eckmuhl: 3 +> [12827] d'emblée: 1 +> [12828] d'enghien: 5 +> [12829] d'eon's: 1 +> [12830] d'estime: 1 +> [12831] d'estrées: 1 +> [12832] d'etat: 1 +> [12833] d'etre: 2 +> [12834] d'honneur: 4 +> [12835] d'honneur)--one: 3 +> [12836] d'honneur_)--one: 1 +> [12837] d'hotel: 1 +> [12838] d'ideville: 3 +> [12839] d'oeuvre: 3 +> [12840] d'oeuvres: 3 +> [12841] d'or: 4 +> [12842] d'or--judge: 1 +> [12843] d'ordre: 5 +> [12844] d's: 1 +> [12845] d'ulm: 1 +> [12846] d'un: 4 +> [12847] d'une: 3 +> [12848] d'ye: 6 +> [12849] d'you: 12 +> [12850] d'état [12851] d'être: 1 +> [12852] d----d: 1 +> [12853] d----n: 1 +> [12854] d--d: 12 +> [12855] d--l: 1 +> [12856] d--n: 25 +> [12857] d--nably: 1 +> [12858] d--ndest: 1 +> [12859] d-damn: 1 +> [12860] d-r-a-w-l--baby: 1 +> [12861] d.'s: 1 +> [12862] d.d: 1 +> [12863] da: 3 +> [12864] dabbler: 1 +> [12865] dad: 2 +> [12866] daddy: 5 +> [12867] daddy! [12868] daddy?'--'i: 1 +> [12869] daffodils: 2 +> [12870] dagestan: 2 +> [12871] dagger: 19 +> [12872] dagger-hilt: 1 +> [12873] daggers: 5 +> [12874] dagny: 2 +> [12875] dahe: 1 +> [12876] daily: 54 +> [12877] daintiest: 1 +> [12878] daintily: 5 +> [12879] daintiness: 1 +> [12880] dainty: 15 +> [12881] dairies: 1 +> [12882] dairy: 1 +> [12883] dairy-floor: 1 +> [12884] dais: 3 +> [12885] dale: 3 +> [12886] dalmatic: 1 +> [12887] dam: 24 +> [12888] dam-dam: 1 +> [12889] damage: 47 +> [12890] damaged: 24 +> [12891] damages: 77 +> [12892] damaging: 2 +> [12893] damascus: 1 +> [12894] damask: 2 +> [12895] dame: 11 +> [12896] dames: 7 +> [12897] dammed: 1 +> [12898] dammed-up: 2 +> [12899] damn: 107 +> [12900] damnable: 8 +> [12901] damnation: 4 +> [12902] damnation! [12903] damned: 31 +> [12904] damning: 5 +> [12905] damp: 60 +> [12906] damp--when: 1 +> [12907] damp-courses: 1 +> [12908] damp-stained: 1 +> [12909] damped: 2 +> [12910] dampened: 1 +> [12911] damper: 1 +> [12912] dampest: 1 +> [12913] dampness: 2 +> [12914] dams: 1 +> [12915] damsel: 2 +> [12916] damsels: 2 +> [12917] damsons: 1 +> [12918] dan: 2 +> [12919] dana: 4 +> [12920] danae: 1 +> [12921] dance: 183 +> [12922] dance, [12923] dance,’: 1 +> [12924] dance--kitty: 1 +> [12925] dance--the: 1 +> [12926] dance-tune: 1 +> [12927] dance.... [12928] dance [12929] danced: 73 +> [12930] danced—it: 1 +> [12931] dancer: 16 +> [12932] dancer's: 1 +> [12933] dancers: 13 +> [12934] dances: 31 +> [12935] dances, [12936] dancing: 129 +> [12937] dancing,’: 1 +> [12938] dancing--he: 1 +> [12939] dancing-boots: 1 +> [12940] dancing-girl: 1 +> [12941] dancing-master: 1 +> [12942] dancing-room: 1 +> [12943] dancing’s: 1 +> [12944] dandies: 4 +> [12945] dandiest: 1 +> [12946] dandified: 2 +> [12947] dandin: 3 +> [12948] dandins: 2 +> [12949] dandled: 2 +> [12950] dandling: 3 +> [12951] dandy: 20 +> [12952] dang: 9 +> [12953] danged: 1 +> [12954] danger: 202 +> [12955] danger--are: 1 +> [12956] danger--as: 1 +> [12957] danger--at: 1 +> [12958] danger--blaming: 1 +> [12959] danger--i: 1 +> [12960] danger--the: 1 +> [12961] danger-line: 1 +> [12962] dangereux: 1 +> [12963] dangerous: 117 +> [12964] dangerously: 5 +> [12965] dangers: 18 +> [12966] dangle: 1 +> [12967] dangled: 2 +> [12968] dangles: 1 +> [12969] dangling: 8 +> [12970] daniel: 55 +> [12971] daniel'll: 1 +> [12972] daniel's: 6 +> [12973] daniloff: 2 +> [12974] danilov's: 1 +> [12975] danilovna: 10 +> [12976] danilovna's: 1 +> [12977] danish: 2 +> [12978] dank: 5 +> [12979] danke: 1 +> [12980] dans: 8 +> [12981] danser: 1 +> [12982] dante: 1 +> [12983] dante's: 1 +> [12984] dantesque: 1 +> [12985] danton: 1 +> [12986] danube: 16 +> [12987] danzig: 2 +> [12988] dappled: 2 +> [12989] dar--ling: 1 +> [12990] dardanelov: 16 +> [12991] dardanelov's: 1 +> [12992] dardanus: 1 +> [12993] dare: 329 +> [12994] dare— [12995] dare—his: 1 +> [12996] dare. [12997] dared: 132 +> [12998] daredevil: 3 +> [12999] daren't: 13 +> [13000] dares: 12 +> [13001] daresay: 11 +> [13002] darest. [13003] daria: 21 +> [13004] daring: 48 +> [13005] dark: 565 +> [13006] dark--i: 2 +> [13007] dark--to: 1 +> [13008] dark--we: 1 +> [13009] dark-blue: 7 +> [13010] dark-browed: 1 +> [13011] dark-brown: 1 +> [13012] dark-clouded: 1 +> [13013] dark-colored: 1 +> [13014] dark-complexioned: 2 +> [13015] dark-eyed: 2 +> [13016] dark-faced: 3 +> [13017] dark-gray: 1 +> [13018] dark-green: 3 +> [13019] dark-haired: 6 +> [13020] dark-red: 1 +> [13021] dark-shuttered: 1 +> [13022] dark-skinned: 2 +> [13023] dark-visaged: 1 +> [13024] dark. [13025] dark [13026] dark? [13027] darken: 2 +> [13028] darkened: 25 +> [13029] darkening: 10 +> [13030] darkens: 3 +> [13031] darker: 23 +> [13032] darkest: 11 +> [13033] darkling: 1 +> [13034] darkly: 20 +> [13035] darkness: 252 +> [13036] darkness—stand: 1 +> [13037] darkness--i: 1 +> [13038] darkness--not: 1 +> [13039] darkness--unguessing: 1 +> [13040] darkness--we: 1 +> [13041] darknesss: 2 +> [13042] darling: 119 +> [13043] darling, [13044] darling--then: 1 +> [13045] darling. [13046] darling? [13047] darlings: 5 +> [13048] darmstadt: 3 +> [13049] darn: 2 +> [13050] darned: 1 +> [13051] darning: 1 +> [13052] darns: 2 +> [13053] dart: 7 +> [13054] darted: 47 +> [13055] darting: 9 +> [13056] darts: 2 +> [13057] darwinian: 1 +> [13058] darya: 213 +> [13059] daryalov: 2 +> [13060] das: 3 +> [13061] dash: 15 +> [13062] dash [13063] dashboard: 1 +> [13064] dashed: 67 +> [13065] dashes: 4 +> [13066] dashing: 13 +> [13067] dashkov: 1 +> [13068] dat: 2 +> [13069] data: 33 +> [13070] date: 138 +> [13071] date, [13072] date>february: 1 +> [13073] dated: 11 +> [13074] dates: 14 +> [13075] dating: 5 +> [13076] dato: 1 +> [13077] datum: 1 +> [13078] daubed: 1 +> [13079] daubing: 1 +> [13080] daubs: 1 +> [13081] daudet: 1 +> [13082] daughter: 400 +> [13083] daughter's: 50 +> [13084] daughter--a: 1 +> [13085] daughter--at: 1 +> [13086] daughter--both: 1 +> [13087] daughter--has: 1 +> [13088] daughter--how: 1 +> [13089] daughter--married: 1 +> [13090] daughter--vera: 1 +> [13091] daughter-in-law: 7 +> [13092] daughter.)--"my: 1 +> [13093] daughter. [13094] daughter.”: 1 +> [13095] daughters: 128 +> [13096] daughters—and: 1 +> [13097] daughters-alexandra: 1 +> [13098] daughters-in-law: 2 +> [13099] daughter’s: 2 +> [13100] daunted: 3 +> [13101] dauphin: 1 +> [13102] daventry: 1 +> [13103] david: 29 +> [13104] davidic: 1 +> [13105] davoust: 7 +> [13106] davout: 37 +> [13107] davout's: 4 +> [13108] davydov: 2 +> [13109] davydov's: 1 +> [13110] dawdling: 5 +> [13111] dawn: 73 +> [13112] dawn--i: 1 +> [13113] dawned: 21 +> [13114] dawning: 6 +> [13115] day: 2350 +> [13116] day! [13117] day—all: 1 +> [13118] day—and: 1 +> [13119] day—hate: 1 +> [13120] day—remember: 1 +> [13121] day's: 27 +> [13122] day, [13123] day--afterwards: 1 +> [13124] day--all: 2 +> [13125] day--chilled: 1 +> [13126] day--especially: 1 +> [13127] day--everybody: 1 +> [13128] day--i'm: 1 +> [13129] day--if: 2 +> [13130] day--my: 1 +> [13131] day--nor: 1 +> [13132] day--not: 1 +> [13133] day--of: 1 +> [13134] day--so: 1 +> [13135] day--that: 1 +> [13136] day--the: 3 +> [13137] day--what: 1 +> [13138] day--which: 1 +> [13139] day-dawn--look: 1 +> [13140] day-dream: 2 +> [13141] day-dreams: 8 +> [13142] day-laborers: 1 +> [13143] day-time: 1 +> [13144] day. [13145] day.’—_times: 1 +> [13146] day [13147] day? [13148] daybreak: 38 +> [13149] daybreak--or: 1 +> [13150] daydream: 1 +> [13151] daydreams: 6 +> [13152] daylight: 51 +> [13153] daylight--madame: 1 +> [13154] days: 1070 +> [13155] days! [13156] days—three: 1 +> [13157] days,--it: 1 +> [13158] days, [13159] days,”: 1 +> [13160] days--almost: 1 +> [13161] days--ever: 1 +> [13162] days--it: 1 +> [13163] days--just: 1 +> [13164] days--long: 1 +> [13165] days--perhaps: 1 +> [13166] days--she: 1 +> [13167] days--to: 1 +> [13168] days-silent: 1 +> [13169] daytime: 8 +> [13170] dazed: 19 +> [13171] dazzle: 3 +> [13172] dazzled: 18 +> [13173] dazzling: 13 +> [13174] dazzlingly: 2 +> [13175] de: 566 +> [13176] de-tra-va-ga-la: 1 +> [13177] deacon: 24 +> [13178] deacon's: 5 +> [13179] deacon-evangelists: 1 +> [13180] deacons: 2 +> [13181] dead: 468 +> [13182] dead! [13183] dead—he: 1 +> [13184] dead, [13185] dead--and: 1 +> [13186] dead--it's: 1 +> [13187] dead--lay: 1 +> [13188] dead--stiff: 1 +> [13189] dead--where: 1 +> [13190] dead--why: 1 +> [13191] dead-alive: 1 +> [13192] dead-lock: 1 +> [13193] dead-looking: 1 +> [13194] dead?--a: 1 +> [13195] dead? [13196] deadened: 3 +> [13197] deadening: 2 +> [13198] deadly: 27 +> [13199] deadly—deadly! [13200] deadness: 1 +> [13201] deaf: 29 +> [13202] deafen: 1 +> [13203] deafened: 8 +> [13204] deafening: 16 +> [13205] deafeningly: 1 +> [13206] deafness: 1 +> [13207] deah: 1 +> [13208] deal: 365 +> [13209] deal--but: 1 +> [13210] deal--forty: 1 +> [13211] deal--there: 1 +> [13212] dealer: 3 +> [13213] dealer's: 2 +> [13214] dealers: 11 +> [13215] dealing: 31 +> [13216] dealings: 4 +> [13217] deals: 3 +> [13218] dealt: 30 +> [13219] dean: 1 +> [13220] deans: 1 +> [13221] dear: 1011 +> [13222] dear!"--this: 1 +> [13223] dear! [13224] dear—that's: 1 +> [13225] dear, [13226] dear--come: 1 +> [13227] dear--i'll: 1 +> [13228] dear--luck: 1 +> [13229] dear--not: 1 +> [13230] dear-est: 2 +> [13231] dear. [13232] dear. [13233] dearer: 19 +> [13234] dearest: 26 +> [13235] dearie: 2 +> [13236] dearly: 25 +> [13237] dearly--and: 1 +> [13238] dears: 5 +> [13239] dearth: 3 +> [13240] death: 646 +> [13241] death! [13242] death—that: 1 +> [13243] death's: 8 +> [13244] death's-head: 2 +> [13245] death--and: 3 +> [13246] death--at: 1 +> [13247] death--bear: 1 +> [13248] death--he: 2 +> [13249] death--killed: 1 +> [13250] death--never: 1 +> [13251] death--the: 1 +> [13252] death--they: 1 +> [13253] death--what: 1 +> [13254] death--which: 2 +> [13255] death-bearing: 1 +> [13256] death-bed: 4 +> [13257] death-blow: 1 +> [13258] death-cry: 1 +> [13259] death-knell: 1 +> [13260] death-like: 6 +> [13261] death-mask: 1 +> [13262] death-sentence: 1 +> [13263] death-throe: 1 +> [13264] death. [13265] death.[14: 1 +> [13266] death.”: 1 +> [13267] death?--death: 1 +> [13268] death? [13269] deathbed: 8 +> [13270] deathbed—would: 1 +> [13271] deathless: 1 +> [13272] deathlike: 9 +> [13273] deathly: 3 +> [13274] deaths: 4 +> [13275] debase: 1 +> [13276] debasing: 1 +> [13277] debatable: 1 +> [13278] debate: 15 +> [13279] debated: 2 +> [13280] debaters: 1 +> [13281] debates: 3 +> [13282] debating: 2 +> [13283] debauchee: 1 +> [13284] debaucheries: 2 +> [13285] debaucheries—and: 1 +> [13286] debauchery: 20 +> [13287] debit: 3 +> [13288] debits: 1 +> [13289] debonair: 2 +> [13290] debouching: 1 +> [13291] debris: 1 +> [13292] debt: 75 +> [13293] debt. [13294] debt.”: 1 +> [13295] debtor: 1 +> [13296] debtor's: 4 +> [13297] debtors: 2 +> [13298] debts: 46 +> [13299] debts--had: 1 +> [13300] debts--heaven: 1 +> [13301] debts--to: 1 +> [13302] debut: 1 +> [13303] dec: 1 +> [13304] decabrist: 1 +> [13305] decade: 2 +> [13306] decadence: 1 +> [13307] decadent: 1 +> [13308] decades: 2 +> [13309] decamped: 1 +> [13310] decant: 2 +> [13311] decantation: 1 +> [13312] decanted: 1 +> [13313] decanter: 13 +> [13314] decanter-women: 1 +> [13315] decanters: 4 +> [13316] decanting: 1 +> [13317] decapitation: 1 +> [13318] decapolis: 2 +> [13319] decay: 30 +> [13320] decay? [13321] decayed: 3 +> [13322] decaying: 6 +> [13323] decays: 1 +> [13324] deceased: 28 +> [13325] deceased's: 3 +> [13326] deceit: 26 +> [13327] deceitful: 7 +> [13328] deceitfulness: 3 +> [13329] deceits: 2 +> [13330] deceive: 67 +> [13331] deceived: 102 +> [13332] deceiver: 8 +> [13333] deceivers: 4 +> [13334] deceives: 4 +> [13335] deceiving: 31 +> [13336] december: 28 +> [13337] decembrist: 1 +> [13338] decencies: 1 +> [13339] decency: 12 +> [13340] decent: 69 +> [13341] decently: 14 +> [13342] deception: 24 +> [13343] deceptions: 3 +> [13344] deceptive: 1 +> [13345] deci: 1 +> [13346] deci-gram: 1 +> [13347] deci-grams: 1 +> [13348] deci-liter: 1 +> [13349] deci-liters: 1 +> [13350] deci-meter: 1 +> [13351] deci-meters: 1 +> [13352] decide: 139 +> [13353] decide--from: 1 +> [13354] decide. [13355] decided: 341 +> [13356] decided"--(this: 1 +> [13357] decided--most: 1 +> [13358] decided--there's: 1 +> [13359] decidedly: 33 +> [13360] decides: 5 +> [13361] deciding: 21 +> [13362] decimal: 1 +> [13363] decimeter: 1 +> [13364] decision: 143 +> [13365] decision, [13366] decision--who: 1 +> [13367] decisions: 9 +> [13368] decisive: 32 +> [13369] decisively: 6 +> [13370] deck: 36 +> [13371] deck-house: 3 +> [13372] decked: 13 +> [13373] decking: 1 +> [13374] decks: 3 +> [13375] declaim: 1 +> [13376] declaimed: 5 +> [13377] declaiming: 1 +> [13378] declamation: 1 +> [13379] declamations: 1 +> [13380] declamatory: 1 +> [13381] declaration: 25 +> [13382] declarations: 3 +> [13383] declare: 73 +> [13384] declare—the: 1 +> [13385] declared: 171 +> [13386] declares: 13 +> [13387] declaring: 31 +> [13388] decline: 42 +> [13389] declined: 29 +> [13390] declines: 4 +> [13391] declining: 5 +> [13392] declivity: 2 +> [13393] decoction: 3 +> [13394] decompose: 6 +> [13395] decomposed: 5 +> [13396] decomposes: 2 +> [13397] decomposing: 4 +> [13398] decomposition: 14 +> [13399] decorate: 1 +> [13400] decorated: 13 +> [13401] decorating: 1 +> [13402] decoration: 9 +> [13403] decorations: 20 +> [13404] decorative: 1 +> [13405] decorous: 5 +> [13406] decorously: 2 +> [13407] decorum: 17 +> [13408] decoy: 1 +> [13409] decoyed: 1 +> [13410] decrease: 6 +> [13411] decreased: 5 +> [13412] decreases: 4 +> [13413] decreasing: 1 +> [13414] decree: 9 +> [13415] decreed: 10 +> [13416] decrees: 12 +> [13417] decrepit: 14 +> [13418] decrepitude: 1 +> [13419] decrescendo: 1 +> [13420] decrying: 1 +> [13421] dedicate: 1 +> [13422] dedicated: 5 +> [13423] dedicates: 2 +> [13424] dedication: 2 +> [13425] deduce: 4 +> [13426] deduced: 12 +> [13427] deduces: 2 +> [13428] deducing: 2 +> [13429] deduct: 7 +> [13430] deducted: 5 +> [13431] deductible: 19 +> [13432] deducting: 2 +> [13433] deduction: 12 +> [13434] deductions: 11 +> [13435] deed: 79 +> [13436] deed--interrupted: 1 +> [13437] deed--just: 1 +> [13438] deed. [13439] deeds: 52 +> [13440] deeds--i: 1 +> [13441] deeds? [13442] deem: 1 +> [13443] deemed: 10 +> [13444] deep: 292 +> [13445] deep-rooted: 1 +> [13446] deep-seated: 1 +> [13447] deep-set: 2 +> [13448] deep-toned: 1 +> [13449] deepen: 3 +> [13450] deepened: 3 +> [13451] deepening: 1 +> [13452] deeper: 48 +> [13453] deeper--before: 1 +> [13454] deepest: 21 +> [13455] deeply: 108 +> [13456] deeply-rooted: 1 +> [13457] deer: 1 +> [13458] deer's: 1 +> [13459] defeat: 34 +> [13460] defeated: 15 +> [13461] defeating: 1 +> [13462] defeats: 5 +> [13463] defect: 75 +> [13464] defect--the: 1 +> [13465] defection: 3 +> [13466] defective: 62 +> [13467] defects: 37 +> [13468] defence: 22 +> [13469] defenceless: 8 +> [13470] defences: 1 +> [13471] defend: 81 +> [13472] defendant: 1 +> [13473] defended: 29 +> [13474] defender: 6 +> [13475] defender [13476] defender—a: 1 +> [13477] defenders: 5 +> [13478] defending: 32 +> [13479] defends: 2 +> [13480] defense: 72 +> [13481] defense, [13482] defense--as: 1 +> [13483] defenseless: 4 +> [13484] defenselessness: 1 +> [13485] defenses: 1 +> [13486] defensive: 7 +> [13487] defensive--we: 1 +> [13488] defensorem: 1 +> [13489] defer: 5 +> [13490] deference: 28 +> [13491] deferential: 6 +> [13492] deferentially: 6 +> [13493] deferred: 6 +> [13494] deferring: 2 +> [13495] defiance: 29 +> [13496] defiant: 24 +> [13497] defiantly: 10 +> [13498] deficiencies: 2 +> [13499] deficiency: 1 +> [13500] deficient: 5 +> [13501] deficit: 3 +> [13502] defied: 4 +> [13503] defile: 15 +> [13504] defiled: 12 +> [13505] defilement: 1 +> [13506] defilements: 1 +> [13507] defiles: 2 +> [13508] defiling: 2 +> [13509] definable: 1 +> [13510] define: 21 +> [13511] defined: 49 +> [13512] defines: 2 +> [13513] defining: 5 +> [13514] definite: 112 +> [13515] definitely: 35 +> [13516] definiteness: 11 +> [13517] definition: 18 +> [13518] definition--is: 1 +> [13519] definitions: 3 +> [13520] deflections: 1 +> [13521] deform: 1 +> [13522] deformed: 8 +> [13523] deformed--for: 1 +> [13524] deformity: 6 +> [13525] defraud: 1 +> [13526] defrauded: 1 +> [13527] defray: 1 +> [13528] deft: 4 +> [13529] deftly: 8 +> [13530] defunct: 1 +> [13531] defy: 6 +> [13532] defying: 3 +> [13533] deg: 7 +> [13534] degenerate: 5 +> [13535] degenerated: 6 +> [13536] degenerating: 1 +> [13537] degradation: 24 +> [13538] degradation [13539] degrade: 14 +> [13540] degraded: 14 +> [13541] degrading: 21 +> [13542] degrading, [13543] degrading...don't: 1 +> [13544] degradingly: 1 +> [13545] degree: 144 +> [13546] degree--an: 1 +> [13547] degree--even: 1 +> [13548] degree.... [13549] degrees: 85 +> [13550] degrees-85: 1 +> [13551] degs: 51 +> [13552] degumming: 2 +> [13553] degwaded: 1 +> [13554] dehors.... [13555] dehors. [13556] dehydrates: 1 +> [13557] dei [13558] deign: 11 +> [13559] deigned: 21 +> [13560] deignest: 1 +> [13561] deigning: 4 +> [13562] deigns: 3 +> [13563] deite: 1 +> [13564] deity: 10 +> [13565] deity--the: 1 +> [13566] dejected: 29 +> [13567] dejectedly: 6 +> [13568] dejection: 17 +> [13569] dejection? [13570] deka: 1 +> [13571] deka-gram: 1 +> [13572] deka-grams: 1 +> [13573] deka-liter: 1 +> [13574] deka-liters: 1 +> [13575] deka-meter: 1 +> [13576] deka-meters: 1 +> [13577] dekaliter: 2 +> [13578] delaware: 2 +> [13579] delay: 79 +> [13580] delay, [13581] delay--for: 1 +> [13582] delay--to: 1 +> [13583] delay [13584] delayed: 19 +> [13585] delaying: 2 +> [13586] delays: 2 +> [13587] delays--and: 1 +> [13588] delectation: 1 +> [13589] delegate: 3 +> [13590] delegated: 4 +> [13591] delegates: 4 +> [13592] delegation: 3 +> [13593] delegations: 1 +> [13594] deletions: 19 +> [13595] deliberate: 25 +> [13596] deliberated: 3 +> [13597] deliberately: 95 +> [13598] deliberating: 7 +> [13599] deliberation: 16 +> [13600] deliberations: 3 +> [13601] delicacies: 4 +> [13602] delicacy: 46 +> [13603] delicate: 97 +> [13604] delicate--the: 1 +> [13605] delicate-looking: 4 +> [13606] delicately: 15 +> [13607] delicieux: 1 +> [13608] delicious: 25 +> [13609] deliciously: 1 +> [13610] delight: 182 +> [13611] delighted: 233 +> [13612] delighted! [13613] delighted—and: 1 +> [13614] delighted--you: 1 +> [13615] delightedly: 3 +> [13616] delightful: 107 +> [13617] delightfully: 6 +> [13618] delighting: 1 +> [13619] delights: 10 +> [13620] delinquent: 3 +> [13621] delirious: 66 +> [13622] delirious! [13623] delirious? [13624] delirium: 67 +> [13625] delirium!... [13626] delirium, [13627] delirium--for: 1 +> [13628] delirium [13629] deliver: 34 +> [13630] deliverance: 12 +> [13631] delivered: 32 +> [13632] delivered.”: 1 +> [13633] deliverer: 3 +> [13634] deliverers: 5 +> [13635] delivering: 7 +> [13636] delivers: 3 +> [13637] delivery: 6 +> [13638] dell: 2 +> [13639] dells: 1 +> [13640] delta: 5 +> [13641] delude: 2 +> [13642] deluded: 3 +> [13643] deludes: 4 +> [13644] deluding: 1 +> [13645] deluge: 3 +> [13646] deluged: 1 +> [13647] delusion: 15 +> [13648] delusion—because: 1 +> [13649] delusion--perhaps: 1 +> [13650] delusions: 2 +> [13651] delve: 1 +> [13652] delving: 1 +> [13653] demain: 2 +> [13654] demand: 86 +> [13655] demande: 3 +> [13656] demanded: 61 +> [13657] demanded--namely: 1 +> [13658] demanded--or: 1 +> [13659] demandent: 1 +> [13660] demanding: 11 +> [13661] demands: 33 +> [13662] demean: 4 +> [13663] demeanor: 9 +> [13664] demeanour: 4 +> [13665] dementat: 2 +> [13666] demented: 2 +> [13667] dementyev: 2 +> [13668] demesne: 2 +> [13669] demetrius: 1 +> [13670] demi-god: 3 +> [13671] demi-mondaine: 1 +> [13672] demi-monde: 2 +> [13673] demid: 4 +> [13674] demid--do: 1 +> [13675] demigods: 1 +> [13676] demin: 1 +> [13677] demitrievitch: 2 +> [13678] demkin: 1 +> [13679] demochkin: 1 +> [13680] democracy: 1 +> [13681] democrat: 3 +> [13682] democratic: 2 +> [13683] demolish: 1 +> [13684] demolished: 1 +> [13685] demolition: 1 +> [13686] demon: 14 +> [13687] demon! [13688] demon [13689] demoniacal: 2 +> [13690] demonic: 5 +> [13691] demonology: 4 +> [13692] demons: 7 +> [13693] demonstrable: 1 +> [13694] demonstrably: 1 +> [13695] demonstrate: 6 +> [13696] demonstrated: 4 +> [13697] demonstrating: 4 +> [13698] demonstration: 11 +> [13699] demonstrations: 7 +> [13700] demonstrative: 2 +> [13701] demoralisation: 1 +> [13702] demoralizing: 2 +> [13703] demosthenes: 1 +> [13704] demur: 6 +> [13705] demure: 1 +> [13706] demurely: 2 +> [13707] demurred: 1 +> [13708] demurring: 1 +> [13709] demyan: 2 +> [13710] den: 10 +> [13711] den--i: 1 +> [13712] denationalized: 2 +> [13713] denatured: 9 +> [13714] denial: 13 +> [13715] denials: 1 +> [13716] denied: 38 +> [13717] denied--and: 1 +> [13718] denier: 1 +> [13719] deniers: 6 +> [13720] denies: 4 +> [13721] denis: 2 +> [13722] denise: 53 +> [13723] denise's: 4 +> [13724] denise--no: 1 +> [13725] denise--not: 1 +> [13726] denisitch: 2 +> [13727] denisov: 363 +> [13728] denisov's: 55 +> [13729] denisov's--was: 1 +> [13730] denisov--"but: 1 +> [13731] denomination: 1 +> [13732] denominations: 1 +> [13733] denote: 5 +> [13734] denoted: 2 +> [13735] denoting: 1 +> [13736] denounce: 7 +> [13737] denounced: 7 +> [13738] denounces: 3 +> [13739] denouncing: 1 +> [13740] dens: 1 +> [13741] dense: 33 +> [13742] densely: 2 +> [13743] denser: 11 +> [13744] denser--he: 1 +> [13745] densities: 1 +> [13746] density: 6 +> [13747] dental: 1 +> [13748] dentifrice: 1 +> [13749] dentist: 3 +> [13750] dentists: 1 +> [13751] dentist’s: 1 +> [13752] dents: 1 +> [13753] denuded: 1 +> [13754] denuding: 1 +> [13755] denunciation: 7 +> [13756] denunciations: 2 +> [13757] deny: 65 +> [13758] deny [13759] denying: 22 +> [13760] deo: 2 +> [13761] deodorized: 1 +> [13762] deodorizing: 1 +> [13763] depart: 25 +> [13764] departed: 21 +> [13765] departed? [13766] departing: 13 +> [13767] department: 56 +> [13768] departments: 9 +> [13769] departments--knew: 1 +> [13770] departs: 3 +> [13771] departure: 130 +> [13772] departure--before: 1 +> [13773] departures: 2 +> [13774] depend: 66 +> [13775] dependant: 1 +> [13776] depended: 51 +> [13777] depended--whether: 1 +> [13778] dependence: 24 +> [13779] dependencies: 1 +> [13780] dependent: 41 +> [13781] dependents: 3 +> [13782] depending: 27 +> [13783] depends: 101 +> [13784] depends. [13785] depict: 3 +> [13786] depicted: 11 +> [13787] depicting: 1 +> [13788] depiction: 1 +> [13789] depicts: 2 +> [13790] deplorable: 3 +> [13791] deplore: 3 +> [13792] deplored: 3 +> [13793] deplores: 1 +> [13794] deploring: 1 +> [13795] deployed: 1 +> [13796] deploying: 1 +> [13797] deported: 2 +> [13798] deportment: 12 +> [13799] depose: 2 +> [13800] deposed: 3 +> [13801] deposit: 8 +> [13802] deposited: 5 +> [13803] depositing: 1 +> [13804] deposition: 2 +> [13805] deposits: 1 +> [13806] depot: 2 +> [13807] deprave: 1 +> [13808] depraved: 22 +> [13809] depraveé: 1 +> [13810] depravity: 15 +> [13811] deprecating: 5 +> [13812] deprecation: 2 +> [13813] deprecatory: 2 +> [13814] depreciate: 1 +> [13815] depreciated: 1 +> [13816] depreciation: 1 +> [13817] depress: 1 +> [13818] depressed: 55 +> [13819] depressed—depressed: 1 +> [13820] depressed--clears: 1 +> [13821] depressed. [13822] depressing: 15 +> [13823] depression: 54 +> [13824] deprive: 28 +> [13825] deprived: 36 +> [13826] deprives: 5 +> [13827] depriving: 9 +> [13828] deprè: 1 +> [13829] dept: 3 +> [13830] depth: 42 +> [13831] depth--for: 1 +> [13832] depths: 68 +> [13833] depths. [13834] depuis: 1 +> [13835] deputation: 21 +> [13836] deputations: 2 +> [13837] deputed: 1 +> [13838] deputies: 3 +> [13839] deputy: 11 +> [13840] depwavity: 1 +> [13841] der: 21 +> [13842] deranged: 8 +> [13843] derangement: 6 +> [13844] derangements: 1 +> [13845] derbyshire: 3 +> [13846] dere: 1 +> [13847] deride: 2 +> [13848] derided: 2 +> [13849] deriding: 3 +> [13850] derision: 15 +> [13851] derisive: 4 +> [13852] derisively: 3 +> [13853] derivation: 2 +> [13854] derivative: 58 +> [13855] derive: 27 +> [13856] derived: 60 +> [13857] derives: 1 +> [13858] deriving: 2 +> [13859] dernidov: 1 +> [13860] dernier: 2 +> [13861] derniere: 1 +> [13862] derogate: 1 +> [13863] derogates: 1 +> [13864] derogatory: 2 +> [13865] des: 18 +> [13866] desc>em: 2 +> [13867] desc>horizontal: 1 +> [13868] descend: 39 +> [13869] descendant: 3 +> [13870] descendants: 4 +> [13871] descendants--that's: 1 +> [13872] descended: 48 +> [13873] descended--when: 1 +> [13874] descending: 23 +> [13875] descends: 4 +> [13876] descent: 18 +> [13877] descents: 1 +> [13878] describe: 89 +> [13879] described: 174 +> [13880] describes: 10 +> [13881] describing: 38 +> [13882] descried: 6 +> [13883] description: 40 +> [13884] description--the: 1 +> [13885] descriptions: 13 +> [13886] descriptive: 3 +> [13887] descry: 1 +> [13888] desecrate: 3 +> [13889] desecrating: 1 +> [13890] desecration: 1 +> [13891] desert: 23 +> [13892] deserted: 76 +> [13893] deserted--he: 1 +> [13894] deserter: 2 +> [13895] desertest: 1 +> [13896] deserting: 8 +> [13897] desertion: 5 +> [13898] deserve: 50 +> [13899] deserve--and: 1 +> [13900] deserved: 28 +> [13901] deservedly: 1 +> [13902] deserves: 13 +> [13903] deserving: 6 +> [13904] desiccator: 3 +> [13905] desideratum: 1 +> [13906] design: 49 +> [13907] designated: 7 +> [13908] designation: 7 +> [13909] designed: 12 +> [13910] designedly: 1 +> [13911] designs: 17 +> [13912] designs--and: 1 +> [13913] desirable: 30 +> [13914] desire: 362 +> [13915] desire--he: 1 +> [13916] desire [13917] desired: 135 +> [13918] desired--to: 1 +> [13919] desires: 84 +> [13920] desires--_ennui: 1 +> [13921] desires...he: 1 +> [13922] desires. [13923] desiring: 17 +> [13924] desirous: 17 +> [13925] desist: 5 +> [13926] desisted: 5 +> [13927] desk: 13 +> [13928] desk--"it's: 1 +> [13929] desks: 1 +> [13930] desolate: 9 +> [13931] desolate--a: 1 +> [13932] desolation: 10 +> [13933] despair: 277 +> [13934] despair—for: 1 +> [13935] despair--"and: 1 +> [13936] despair. [13937] despair? [13938] despaired: 7 +> [13939] despairing: 31 +> [13940] despairingly: 6 +> [13941] despatch: 2 +> [13942] despatched: 6 +> [13943] desperadoes: 1 +> [13944] desperate: 117 +> [13945] desperately: 50 +> [13946] desperation: 13 +> [13947] despicable: 29 +> [13948] despicably: 1 +> [13949] despise: 91 +> [13950] despised: 69 +> [13951] despised--i: 1 +> [13952] despises: 15 +> [13953] despising: 21 +> [13954] despite: 114 +> [13955] despoil: 1 +> [13956] despondency: 11 +> [13957] despondent: 7 +> [13958] despondently: 8 +> [13959] despot: 4 +> [13960] despot--the: 1 +> [13961] despotic: 4 +> [13962] despotism: 8 +> [13963] despots: 1 +> [13964] dessaix's: 4 +> [13965] dessalles: 37 +> [13966] dessert: 6 +> [13967] dessicator: 1 +> [13968] dessous: 3 +> [13969] destination: 22 +> [13970] destinations: 1 +> [13971] destined: 32 +> [13972] destinies: 4 +> [13973] destiny: 44 +> [13974] destiny. [13975] destitute: 8 +> [13976] destitution: 6 +> [13977] destroy: 111 +> [13978] destroyed: 91 +> [13979] destroyed--a: 2 +> [13980] destroyed [13981] destroyers: 2 +> [13982] destroying: 22 +> [13983] destroys: 6 +> [13984] destruction: 70 +> [13985] destructions: 1 +> [13986] destructive: 7 +> [13987] desyatiins: 1 +> [13988] desyatin: 2 +> [13989] desyatins: 1 +> [13990] detach: 22 +> [13991] detached: 13 +> [13992] detaching: 2 +> [13993] detachment: 36 +> [13994] detachment--jokes: 1 +> [13995] detachments: 15 +> [13996] detail: 104 +> [13997] detail--as: 1 +> [13998] detail--was: 1 +> [13999] detailed: 18 +> [14000] detailing: 3 +> [14001] details: 168 +> [14002] details! [14003] details--to: 1 +> [14004] detain: 13 +> [14005] detained: 30 +> [14006] detaining: 6 +> [14007] detect: 20 +> [14008] detected: 47 +> [14009] detecting: 5 +> [14010] detection: 9 +> [14011] detective: 4 +> [14012] detectives: 1 +> [14013] detectives—a: 1 +> [14014] detention: 2 +> [14015] deter: 3 +> [14016] detergent: 3 +> [14017] deteriorated: 1 +> [14018] deteriorating: 1 +> [14019] determinable: 3 +> [14020] determinate: 1 +> [14021] determination: 128 +> [14022] determination--heat: 1 +> [14023] determination--the: 2 +> [14024] determination--weigh: 5 +> [14025] determinations: 8 +> [14026] determine: 67 +> [14027] determined: 153 +> [14028] determined--it: 3 +> [14029] determined.[30: 2 +> [14030] determinedly: 2 +> [14031] determines: 3 +> [14032] determining: 16 +> [14033] deterred: 1 +> [14034] deterrent: 1 +> [14035] deterring: 1 +> [14036] detest: 7 +> [14037] detestable: 11 +> [14038] detestation: 3 +> [14039] detested: 10 +> [14040] detests: 1 +> [14041] dethroned: 2 +> [14042] dethronement: 1 +> [14043] detm: 2 +> [14044] detonators: 1 +> [14045] detract: 4 +> [14046] detractors: 2 +> [14047] detracts: 1 +> [14048] detriment: 6 +> [14049] detrimental: 2 +> [14050] detruite: 1 +> [14051] deuce: 8 +> [14052] deus: 1 +> [14053] deut: 1 +> [14054] deutero-pauline: 2 +> [14055] deux: 1 +> [14056] deux-temps: 1 +> [14057] devait: 1 +> [14058] devastated: 7 +> [14059] develop: 30 +> [14060] develop--only: 1 +> [14061] develope: 1 +> [14062] developed: 54 +> [14063] developed--could: 1 +> [14064] developing: 18 +> [14065] development: 83 +> [14066] developments: 2 +> [14067] develops: 10 +> [14068] devenu: 1 +> [14069] deviated: 3 +> [14070] deviates: 1 +> [14071] deviating: 3 +> [14072] deviation: 5 +> [14073] deviation--were: 1 +> [14074] deviations: 3 +> [14075] device: 12 +> [14076] device--a: 1 +> [14077] devices: 6 +> [14078] devient: 1 +> [14079] devil: 231 +> [14080] devil! [14081] devil—a: 1 +> [14082] devil's: 13 +> [14083] devil, [14084] devil--and: 1 +> [14085] devil--he's: 1 +> [14086] devil-may-care: 1 +> [14087] devil-ridden: 1 +> [14088] devil. [14089] devilish: 9 +> [14090] devilishly: 1 +> [14091] devilries: 1 +> [14092] devilry: 1 +> [14093] devils: 26 +> [14094] devils. [14095] devil’s: 1 +> [14096] devious: 1 +> [14097] devise: 9 +> [14098] devised: 23 +> [14099] devises: 1 +> [14100] devising: 1 +> [14101] devoid: 9 +> [14102] devoir: 1 +> [14103] devoirs: 1 +> [14104] devon: 1 +> [14105] devote: 24 +> [14106] devoted: 80 +> [14107] devotedly: 3 +> [14108] devotee: 2 +> [14109] devotees: 2 +> [14110] devotes: 2 +> [14111] devoting: 4 +> [14112] devotion: 60 +> [14113] devotional: 5 +> [14114] devotions: 4 +> [14115] devour: 7 +> [14116] devoured: 11 +> [14117] devourer: 3 +> [14118] devourers: 1 +> [14119] devouring: 7 +> [14120] devours: 2 +> [14121] devout: 15 +> [14122] devoutly: 8 +> [14123] devoutness: 1 +> [14124] devriez: 1 +> [14125] dew: 15 +> [14126] dew-besprinkled: 1 +> [14127] dewdrops: 1 +> [14128] dews: 1 +> [14129] dewy: 7 +> [14130] dexterity: 4 +> [14131] dexterous: 1 +> [14132] dexterously: 2 +> [14133] dextrously: 1 +> [14134] diable: 12 +> [14135] diablerie: 1 +> [14136] diabolical: 4 +> [14137] diabolically: 1 +> [14138] diagnose: 1 +> [14139] diagnose, [14140] diagnosed: 3 +> [14141] diagonal: 1 +> [14142] diagonally: 1 +> [14143] diagonally--prohor: 1 +> [14144] dial: 2 +> [14145] dial-plate: 1 +> [14146] dialectical: 1 +> [14147] dialogue: 4 +> [14148] diamanten: 1 +> [14149] diameter: 28 +> [14150] diameters: 2 +> [14151] diametrically: 1 +> [14152] diamond: 23 +> [14153] diamonds: 18 +> [14154] dian: 1 +> [14155] diana: 5 +> [14156] diana's: 2 +> [14157] diana-like: 1 +> [14158] diane: 3 +> [14159] diaphanous: 1 +> [14160] diary: 21 +> [14161] dice: 3 +> [14162] dice_,’: 1 +> [14163] dick: 1 +> [14164] dickens: 1 +> [14165] dictate: 7 +> [14166] dictated: 15 +> [14167] dictates: 6 +> [14168] dictating: 5 +> [14169] dictation: 2 +> [14170] dictatorial: 1 +> [14171] dictatorship: 2 +> [14172] dictionaries: 2 +> [14173] dictionary: 6 +> [14174] dictum: 1 +> [14175] did: 5978 +> [14176] did--_cui: 1 +> [14177] did--indeed: 1 +> [14178] did--it: 1 +> [14179] did--there: 1 +> [14180] did--were: 1 +> [14181] did--you: 2 +> [14182] did. [14183] didactics: 1 +> [14184] diderot: 9 +> [14185] diderot! [14186] diderot's: 1 +> [14187] diderot? [14188] didn't: 629 +> [14189] didn't! [14190] didn't. [14191] didn’t: 2 +> [14192] didst: 57 +> [14193] die: 359 +> [14194] die! [14195] die,--is: 1 +> [14196] die, [14197] die--all: 1 +> [14198] die--and: 1 +> [14199] die--not: 1 +> [14200] die--this: 1 +> [14201] die. [14202] die.’: 2 +> [14203] died: 312 +> [14204] died--and: 1 +> [14205] died--at: 1 +> [14206] died--she: 1 +> [14207] died--she's: 1 +> [14208] died--that's: 1 +> [14209] died--this: 2 +> [14210] died. [14211] diegeses: 3 +> [14212] diem: 2 +> [14213] dies: 18 +> [14214] dies--but: 1 +> [14215] diese: 1 +> [14216] diet: 4 +> [14217] dietary: 1 +> [14218] dieu: 48 +> [14219] differ: 15 +> [14220] differed: 8 +> [14221] difference: 126 +> [14222] difference--and: 1 +> [14223] difference--i: 3 +> [14224] difference. [14225] differences: 27 +> [14226] different: 606 +> [14227] different! [14228] different, [14229] different--an: 1 +> [14230] different--you: 3 +> [14231] different-colored: 1 +> [14232] different. [14233] differential: 1 +> [14234] differentiate: 3 +> [14235] differentiated: 1 +> [14236] differentiates: 1 +> [14237] differentiating: 1 +> [14238] differently: 80 +> [14239] differently--now: 1 +> [14240] differently. [14241] differing: 2 +> [14242] differs: 9 +> [14243] difficult: 311 +> [14244] difficulties: 75 +> [14245] difficulties--the: 1 +> [14246] difficultly: 2 +> [14247] difficulty: 191 +> [14248] diffidence: 3 +> [14249] diffident: 4 +> [14250] diffidently: 1 +> [14251] diffidently--i: 1 +> [14252] diffuse: 2 +> [14253] diffused: 6 +> [14254] diffusely: 1 +> [14255] diffusing: 4 +> [14256] diffusion: 2 +> [14257] dig: 17 +> [14258] digest: 8 +> [14259] digested: 3 +> [14260] digestion: 6 +> [14261] digestive: 2 +> [14262] digestor: 7 +> [14263] digger: 1 +> [14264] digging: 5 +> [14265] diglycerides: 1 +> [14266] dignified: 61 +> [14267] dignitaries: 4 +> [14268] dignitary: 25 +> [14269] dignitary's: 2 +> [14270] dignitary--the: 1 +> [14271] dignity: 214 +> [14272] dignity's: 1 +> [14273] dignity,”: 1 +> [14274] dignity--napoleon: 1 +> [14275] dignity--which: 1 +> [14276] digress: 1 +> [14277] digression: 9 +> [14278] dikanka [14279] dike: 1 +> [14280] dilapidated: 4 +> [14281] dilate: 1 +> [14282] dilated: 2 +> [14283] dilating: 1 +> [14284] dilatory: 1 +> [14285] dilemma: 11 +> [14286] dilettanti: 4 +> [14287] dilettantism: 1 +> [14288] diligence: 5 +> [14289] diligent: 5 +> [14290] diligently: 4 +> [14291] dilly-dallying: 1 +> [14292] dilu: 1 +> [14293] dilute: 23 +> [14294] diluted: 6 +> [14295] dilution: 1 +> [14296] dim: 48 +> [14297] dim-eyed: 1 +> [14298] dimensions: 14 +> [14299] dimer-bartnyansky: 1 +> [14300] diminish: 12 +> [14301] diminished: 21 +> [14302] diminishes: 3 +> [14303] diminishing: 5 +> [14304] diminution: 2 +> [14305] diminutive: 3 +> [14306] dimity: 2 +> [14307] dimly: 49 +> [14308] dimly-lighted: 1 +> [14309] dimly-lit: 1 +> [14310] dimmed: 4 +> [14311] dimmer: 2 +> [14312] dimmler: 16 +> [14313] dimmler--isn't: 1 +> [14314] dimness: 1 +> [14315] dimple: 4 +> [14316] dimpled: 2 +> [14317] dimples: 3 +> [14318] din: 12 +> [14319] dine: 52 +> [14320] dined: 38 +> [14321] dined--looking: 1 +> [14322] dined? [14323] diners-out: 1 +> [14324] dines: 3 +> [14325] ding: 4 +> [14326] dingily: 1 +> [14327] dinginess: 1 +> [14328] dingle: 1 +> [14329] dingy: 15 +> [14330] dining: 88 +> [14331] dining-room: 27 +> [14332] dinner: 510 +> [14333] dinner! [14334] dinner—we: 1 +> [14335] dinner, [14336] dinner--i: 1 +> [14337] dinner--soup: 1 +> [14338] dinner-hour: 2 +> [14339] dinner-napkin: 2 +> [14340] dinner-party: 2 +> [14341] dinner-table: 4 +> [14342] dinner-time. [14343] dinnerless: 1 +> [14344] dinners: 31 +> [14345] dinnertime: 5 +> [14346] dint: 1 +> [14347] dio: 1 +> [14348] diocesan: 2 +> [14349] diocese: 1 +> [14350] diogenes: 3 +> [14351] dionysius: 4 +> [14352] diotrephes: 5 +> [14353] dioxide: 25 +> [14354] dioxide-free: 1 +> [14355] dip: 19 +> [14356] dip-candle: 1 +> [14357] diphthong: 2 +> [14358] diploma: 1 +> [14359] diplomacy: 6 +> [14360] diplomat: 10 +> [14361] diplomat's: 1 +> [14362] diplomatic: 37 +> [14363] diplomatist: 9 +> [14364] diplomatist--"a: 1 +> [14365] diplomatist--you: 1 +> [14366] diplomatists: 10 +> [14367] diplomats: 2 +> [14368] dipped: 4 +> [14369] dipper: 3 +> [14370] dippers: 2 +> [14371] dipping: 2 +> [14372] dire: 3 +> [14373] direct: 171 +> [14374] directed: 84 +> [14375] directeur: 2 +> [14376] directing: 20 +> [14377] direction: 238 +> [14378] direction--along: 1 +> [14379] direction--that: 1 +> [14380] direction. [14381] direction? [14382] directions: 69 +> [14383] directive: 1 +> [14384] directly: 297 +> [14385] directly, [14386] directly--and: 3 +> [14387] directly--he: 1 +> [14388] directly-that: 1 +> [14389] directly. [14390] directness: 5 +> [14391] director: 38 +> [14392] directors: 3 +> [14393] directory: 2 +> [14394] directress: 1 +> [14395] directs: 4 +> [14396] direst: 1 +> [14397] dirge: 1 +> [14398] dirk: 1 +> [14399] dirt: 34 +> [14400] dirtier: 1 +> [14401] dirtiest: 1 +> [14402] dirtily: 1 +> [14403] dirtiness: 1 +> [14404] dirty: 127 +> [14405] dirty--it: 1 +> [14406] disabilities: 1 +> [14407] disabled: 2 +> [14408] disablement: 1 +> [14409] disadvantage: 10 +> [14410] disadvantageous: 6 +> [14411] disadvantages: 7 +> [14412] disadvise: 1 +> [14413] disaffected: 1 +> [14414] disagree: 5 +> [14415] disagreeable: 87 +> [14416] disagreeable.”: 1 +> [14417] disagreeably: 12 +> [14418] disagreed: 7 +> [14419] disagreeing: 1 +> [14420] disagreement: 7 +> [14421] disagreements: 4 +> [14422] disagrees: 1 +> [14423] disappear: 35 +> [14424] disappearance: 22 +> [14425] disappearances: 1 +> [14426] disappeared: 119 +> [14427] disappearing: 9 +> [14428] disappears: 2 +> [14429] disappoint: 11 +> [14430] disappointed: 22 +> [14431] disappointed, [14432] disappointing: 4 +> [14433] disappointment: 29 +> [14434] disappointment--and: 1 +> [14435] disappointment--as: 1 +> [14436] disappointments: 4 +> [14437] disapprobation: 3 +> [14438] disapproval: 13 +> [14439] disapprove: 5 +> [14440] disapproved: 7 +> [14441] disapproves: 1 +> [14442] disapproving: 5 +> [14443] disapprovingly: 15 +> [14444] disarm: 4 +> [14445] disarmed: 6 +> [14446] disarming: 3 +> [14447] disarranging: 1 +> [14448] disarray: 1 +> [14449] disaster: 9 +> [14450] disasters: 3 +> [14451] disastrous: 10 +> [14452] disastrously: 1 +> [14453] disavow: 1 +> [14454] disavowal: 2 +> [14455] disbanded: 2 +> [14456] disbanding: 1 +> [14457] disbelief: 8 +> [14458] disbelief—is: 1 +> [14459] disbelieve: 8 +> [14460] disbelieved: 7 +> [14461] disbelieving: 3 +> [14462] discard: 4 +> [14463] discarded: 8 +> [14464] discarding: 1 +> [14465] discern: 14 +> [14466] discerned: 24 +> [14467] discernible: 5 +> [14468] discerning: 8 +> [14469] discernment: 1 +> [14470] discerns: 1 +> [14471] discharge: 14 +> [14472] discharged: 26 +> [14473] discharging: 1 +> [14474] disciple: 22 +> [14475] disciples: 29 +> [14476] disciplinary: 2 +> [14477] discipline: 34 +> [14478] disciplined: 1 +> [14479] disclaim: 21 +> [14480] disclaimer: 57 +> [14481] disclaimers: 19 +> [14482] disclose: 14 +> [14483] disclosed: 23 +> [14484] disclosing: 4 +> [14485] disclosure: 1 +> [14486] disclosures: 1 +> [14487] discolor: 1 +> [14488] discoloration: 2 +> [14489] discolored: 2 +> [14490] discoloured: 3 +> [14491] discomfit: 1 +> [14492] discomfited: 1 +> [14493] discomfiture: 9 +> [14494] discomfort: 8 +> [14495] discomforting: 2 +> [14496] discomforts: 1 +> [14497] discomposure: 3 +> [14498] disconcert: 7 +> [14499] disconcerted: 49 +> [14500] disconcerting: 2 +> [14501] disconnected: 23 +> [14502] disconnectedly: 12 +> [14503] disconnectedness: 1 +> [14504] disconsolate: 7 +> [14505] disconsolately: 6 +> [14506] discontent: 8 +> [14507] discontented: 6 +> [14508] discontentedly: 6 +> [14509] discontinue: 19 +> [14510] discontinued: 2 +> [14511] discontinuous: 2 +> [14512] discord: 11 +> [14513] discordant: 5 +> [14514] discordantly: 1 +> [14515] discount: 2 +> [14516] discountenanced: 1 +> [14517] discounters: 1 +> [14518] discouraged: 4 +> [14519] discouragement: 1 +> [14520] discouraging: 1 +> [14521] discourse: 28 +> [14522] discoursed: 1 +> [14523] discourses: 3 +> [14524] discourteous: 3 +> [14525] discover: 68 +> [14526] discovered: 126 +> [14527] discoverer: 1 +> [14528] discoverers: 1 +> [14529] discoveries: 6 +> [14530] discoveries--you: 1 +> [14531] discovering: 8 +> [14532] discovers: 1 +> [14533] discovery: 63 +> [14534] discredit: 1 +> [14535] discreditable: 4 +> [14536] discreditably: 1 +> [14537] discredited: 3 +> [14538] discredits: 1 +> [14539] discreet: 10 +> [14540] discreetly: 10 +> [14541] discrepancy: 1 +> [14542] discretion: 17 +> [14543] discriminate: 3 +> [14544] discrimination: 3 +> [14545] discuss: 49 +> [14546] discussed: 40 +> [14547] discusses: 3 +> [14548] discussing: 47 +> [14549] discussion: 86 +> [14550] discussion, [14551] discussions: 26 +> [14552] discussions, [14553] disdain: 21 +> [14554] disdained: 10 +> [14555] disdainful: 13 +> [14556] disdainfully: 24 +> [14557] disdaining: 2 +> [14558] disease: 54 +> [14559] disease--looked: 1 +> [14560] disease--to: 1 +> [14561] disease. [14562] disease.”: 1 +> [14563] diseased: 8 +> [14564] diseases: 11 +> [14565] disenchantment: 1 +> [14566] disendowment: 1 +> [14567] disengaged: 9 +> [14568] disengaging: 3 +> [14569] disent: 1 +> [14570] disentangle: 5 +> [14571] disentangled: 2 +> [14572] disestablish: 1 +> [14573] disfavor: 3 +> [14574] disfavor--to: 1 +> [14575] disfigure: 1 +> [14576] disfigured: 10 +> [14577] disfigurement: 1 +> [14578] disfigures: 1 +> [14579] disgrace: 89 +> [14580] disgrace! [14581] disgrace? [14582] disgraced: 26 +> [14583] disgraced--and: 1 +> [14584] disgraced--it: 1 +> [14585] disgraceful: 31 +> [14586] disgraceful! [14587] disgracefully: 1 +> [14588] disgraces: 3 +> [14589] disgracing: 3 +> [14590] disguise: 17 +> [14591] disguised: 4 +> [14592] disguises: 1 +> [14593] disguising: 5 +> [14594] disgust: 69 +> [14595] disgust--and: 1 +> [14596] disgusted: 16 +> [14597] disgusting: 56 +> [14598] disgustingly: 4 +> [14599] disgusts: 5 +> [14600] dish: 67 +> [14601] dish-clout: 5 +> [14602] dish-water, [14603] dish;’: 1 +> [14604] dish_--a: 1 +> [14605] disharmony: 1 +> [14606] disheartened: 1 +> [14607] disheartening: 2 +> [14608] dished: 2 +> [14609] dishes: 35 +> [14610] disheveled: 11 +> [14611] dishevelled: 14 +> [14612] dishevelled--what: 4 +> [14613] dishonest: 33 +> [14614] dishonest, [14615] dishonestly: 1 +> [14616] dishonesty: 6 +> [14617] dishonesty--it: 1 +> [14618] dishonor: 6 +> [14619] dishonorable: 24 +> [14620] dishonorable, [14621] dishonorable--but: 1 +> [14622] dishonorably: 1 +> [14623] dishonored: 8 +> [14624] dishonoring: 2 +> [14625] dishonour: 8 +> [14626] dishonourable: 5 +> [14627] dishonoured: 4 +> [14628] disillusion: 3 +> [14629] disillusioned: 4 +> [14630] disillusionment: 5 +> [14631] disillusionment—still: 1 +> [14632] disillusionments: 1 +> [14633] disinclination: 2 +> [14634] disinclined: 8 +> [14635] disinclining: 1 +> [14636] disinfectant: 2 +> [14637] disinfected: 1 +> [14638] disinfecting: 1 +> [14639] disinheriting: 1 +> [14640] disintegrated: 2 +> [14641] disintegrating: 2 +> [14642] disintegration: 8 +> [14643] disintegrator: 1 +> [14644] disintegrators: 1 +> [14645] disinterested: 7 +> [14646] disinterestedly: 5 +> [14647] disinterestedness: 2 +> [14648] disjointed: 8 +> [14649] disk: 19 +> [14650] disks: 1 +> [14651] dislike: 62 +> [14652] disliked: 83 +> [14653] dislikes: 5 +> [14654] disliking: 2 +> [14655] dislocate: 1 +> [14656] dislocated: 3 +> [14657] dislocation: 1 +> [14658] dislodge: 2 +> [14659] disloyal: 1 +> [14660] disloyally: 1 +> [14661] disloyalty: 2 +> [14662] dismal: 10 +> [14663] dismally: 5 +> [14664] dismantled: 2 +> [14665] dismay: 71 +> [14666] dismayed: 12 +> [14667] dismiss: 19 +> [14668] dismissal: 6 +> [14669] dismissals: 1 +> [14670] dismissed: 37 +> [14671] dismisses: 3 +> [14672] dismissing: 6 +> [14673] dismount: 7 +> [14674] dismounted: 38 +> [14675] dismounting: 9 +> [14676] disobedience: 5 +> [14677] disobedient: 4 +> [14678] disobedient—and: 1 +> [14679] disobey: 4 +> [14680] disobeyed: 2 +> [14681] disobeying: 2 +> [14682] disobeys: 1 +> [14683] disobliging: 1 +> [14684] disorder: 56 +> [14685] disorder--everything: 1 +> [14686] disorder--to: 1 +> [14687] disorder. [14688] disorder? [14689] disordered: 18 +> [14690] disorderly: 19 +> [14691] disorderly--it's: 1 +> [14692] disorders: 7 +> [14693] disorganization: 1 +> [14694] disorganized: 9 +> [14695] disown: 3 +> [14696] disowned: 1 +> [14697] disparagement: 2 +> [14698] disparagingly: 1 +> [14699] disparity: 3 +> [14700] dispassionate: 1 +> [14701] dispatch: 21 +> [14702] dispatch-boxes: 1 +> [14703] dispatched: 11 +> [14704] dispatches: 3 +> [14705] dispatching: 4 +> [14706] dispel: 5 +> [14707] dispelled: 1 +> [14708] dispelled--looked: 1 +> [14709] dispensaries: 2 +> [14710] dispensary: 2 +> [14711] dispensation: 10 +> [14712] dispensations: 2 +> [14713] dispense: 9 +> [14714] dispensed: 4 +> [14715] disperse: 14 +> [14716] dispersed: 20 +> [14717] disperses: 1 +> [14718] dispersing: 7 +> [14719] dispersion: 3 +> [14720] dispirited: 5 +> [14721] displace: 1 +> [14722] displaced: 2 +> [14723] displacement: 2 +> [14724] displacing: 2 +> [14725] display: 62 +> [14726] displayed: 45 +> [14727] displaying: 84 +> [14728] displays: 5 +> [14729] displays. [14730] displease: 5 +> [14731] displeased: 51 +> [14732] displeased-looking: 2 +> [14733] displeases: 2 +> [14734] displeasing: 2 +> [14735] displeasure: 25 +> [14736] displeasure--said: 1 +> [14737] disport: 1 +> [14738] disposal: 19 +> [14739] dispose: 15 +> [14740] disposed: 52 +> [14741] disposing: 2 +> [14742] disposition: 44 +> [14743] dispositions: 37 +> [14744] disproof: 1 +> [14745] disproportionate: 7 +> [14746] disproportionately: 2 +> [14747] disprove: 1 +> [14748] disproved: 2 +> [14749] disproving: 3 +> [14750] disputable: 1 +> [14751] disputandum. [14752] disputants: 2 +> [14753] disputation: 3 +> [14754] disputations: 3 +> [14755] dispute: 61 +> [14756] dispute, [14757] disputed: 22 +> [14758] disputes: 18 +> [14759] disputing: 28 +> [14760] disputing--pierre: 1 +> [14761] disquiet: 3 +> [14762] disquieted: 1 +> [14763] disquieting: 3 +> [14764] disquietingly: 1 +> [14765] disquisition: 1 +> [14766] disquisition.”: 1 +> [14767] disquisitions: 2 +> [14768] disraeli: 1 +> [14769] disraeli--those: 1 +> [14770] disregard: 18 +> [14771] disregarded: 12 +> [14772] disregarding: 16 +> [14773] disregards: 2 +> [14774] disreputable: 8 +> [14775] disreputable-looking: 1 +> [14776] disrespect: 7 +> [14777] disrespectful: 10 +> [14778] disrespectfully: 5 +> [14779] disrobe: 1 +> [14780] disruption: 3 +> [14781] disruptive: 1 +> [14782] dissatisfaction: 36 +> [14783] dissatisfied: 53 +> [14784] dissect: 2 +> [14785] dissecting: 3 +> [14786] dissection: 1 +> [14787] dissembled: 1 +> [14788] dissembler: 1 +> [14789] disseminate: 1 +> [14790] disseminated: 1 +> [14791] dissemination: 4 +> [14792] dissension: 10 +> [14793] dissensions: 2 +> [14794] dissent: 7 +> [14795] dissented: 1 +> [14796] dissenter: 2 +> [14797] dissenting: 1 +> [14798] dissertation: 1 +> [14799] dissimulation: 1 +> [14800] dissipate: 3 +> [14801] dissipated: 16 +> [14802] dissipation: 18 +> [14803] dissipation, [14804] dissipation--in: 3 +> [14805] dissipation. [14806] dissipations: 2 +> [14807] dissociate: 1 +> [14808] dissociation: 4 +> [14809] dissolute: 7 +> [14810] dissolution: 10 +> [14811] dissolve: 13 +> [14812] dissolved: 44 +> [14813] dissolves: 3 +> [14814] dissolving: 12 +> [14815] dissonant: 1 +> [14816] dissuade: 4 +> [14817] dissuaded: 2 +> [14818] dissuasions: 1 +> [14819] distance: 226 +> [14820] distance--and: 2 +> [14821] distance--at: 1 +> [14822] distance--feeling: 1 +> [14823] distances: 5 +> [14824] distant: 122 +> [14825] distant--in: 1 +> [14826] distantly: 1 +> [14827] distaste: 10 +> [14828] distasteful: 23 +> [14829] distended: 6 +> [14830] distillate: 3 +> [14831] distillates: 1 +> [14832] distillation: 32 +> [14833] distilled: 31 +> [14834] distilling: 3 +> [14835] distinct: 48 +> [14836] distinction: 58 +> [14837] distinction, [14838] distinctions: 25 +> [14839] distinctive: 10 +> [14840] distinctively: 3 +> [14841] distinctly: 113 +> [14842] distinctness: 10 +> [14843] distinguee: 1 +> [14844] distinguish: 62 +> [14845] distinguishable: 4 +> [14846] distinguished: 97 +> [14847] distinguishes: 11 +> [14848] distinguishing: 9 +> [14849] distinguons: 1 +> [14850] distort: 7 +> [14851] distorted: 54 +> [14852] distorted, [14853] distorting: 3 +> [14854] distortion: 6 +> [14855] distract: 17 +> [14856] distracted: 31 +> [14857] distractedly: 4 +> [14858] distracting: 7 +> [14859] distraction: 20 +> [14860] distractions: 5 +> [14861] distracts: 2 +> [14862] distraught: 9 +> [14863] distress: 79 +> [14864] distress--he: 1 +> [14865] distressed: 59 +> [14866] distresses: 1 +> [14867] distressful: 1 +> [14868] distressing: 9 +> [14869] distribute: 119 +> [14870] distributed: 107 +> [14871] distributes: 1 +> [14872] distributing: 138 +> [14873] distribution: 122 +> [14874] distributor: 19 +> [14875] distributors: 1 +> [14876] district: 114 +> [14877] district's: 1 +> [14878] districts: 6 +> [14879] distrust: 29 +> [14880] distrust--but: 1 +> [14881] distrusted: 4 +> [14882] distrustful: 4 +> [14883] distrustfully: 6 +> [14884] distrustfulness: 1 +> [14885] disturb: 53 +> [14886] disturbance: 19 +> [14887] disturbances: 1 +> [14888] disturbed: 80 +> [14889] disturbed--he: 1 +> [14890] disturber: 1 +> [14891] disturbers: 3 +> [14892] disturbing: 28 +> [14893] disturbs: 3 +> [14894] disulfide: 1 +> [14895] disulphide: 1 +> [14896] disused: 1 +> [14897] ditch: 31 +> [14898] ditches: 4 +> [14899] dites: 2 +> [14900] dites-lui: 1 +> [14901] ditty: 1 +> [14902] div: 238 +> [14903] diva: 1 +> [14904] divagating: 2 +> [14905] divan: 6 +> [14906] dived: 3 +> [14907] diverge: 2 +> [14908] divergence: 5 +> [14909] divergent: 3 +> [14910] diverging: 1 +> [14911] divers: 1 +> [14912] diverse: 20 +> [14913] diversion: 15 +> [14914] diversions: 1 +> [14915] diversity: 5 +> [14916] divert: 15 +> [14917] diverted: 18 +> [14918] diverting: 7 +> [14919] divest: 2 +> [14920] divested: 2 +> [14921] divgen: 5 +> [14922] divide: 18 +> [14923] divide.’: 1 +> [14924] divided: 84 +> [14925] divided--not: 1 +> [14926] divided.’: 1 +> [14927] dividing: 13 +> [14928] divine: 74 +> [14929] divine,’: 1 +> [14930] divined: 20 +> [14931] divinely: 5 +> [14932] divining: 9 +> [14933] divinities: 1 +> [14934] divinity: 22 +> [14935] division: 79 +> [14936] division-stipulates: 1 +> [14937] divisions: 17 +> [14938] divorce: 97 +> [14939] divorce--another: 1 +> [14940] divorce--at: 1 +> [14941] divorce--yes: 1 +> [14942] divorced: 24 +> [14943] divorces: 2 +> [14944] divulge: 1 +> [14945] divum: 1 +> [14946] dix: 1 +> [14947] dizzier: 1 +> [14948] dizzy: 6 +> [14949] dió: 1 +> [14950] dmitri: 414 +> [14951] dmitri! [14952] dmitri—despises: 1 +> [14953] dmitri—they: 1 +> [14954] dmitri's: 10 +> [14955] dmitri, [14956] dmitri? [14957] dmitrich: 12 +> [14958] dmitrievitch: 46 +> [14959] dmitrievitch's: 1 +> [14960] dmitrievna: 93 +> [14961] dmitrievna's: 15 +> [14962] dmitrov: 1 +> [14963] dmitrovsk: 1 +> [14964] dmitrovsky: 1 +> [14965] dnieper: 6 +> [14966] dnieper--which: 1 +> [14967] do: 6360 +> [14968] do! [14969] do, [14970] do--and: 1 +> [14971] do--by: 1 +> [14972] do--combed: 1 +> [14973] do--depression: 4 +> [14974] do--did: 1 +> [14975] do--does: 1 +> [14976] do--his: 1 +> [14977] do--if: 1 +> [14978] do--it: 1 +> [14979] do--nonsense: 1 +> [14980] do--only: 1 +> [14981] do--perished: 1 +> [14982] do--tact: 1 +> [14983] do--that: 1 +> [14984] do--that's: 1 +> [14985] do--themselves: 1 +> [14986] do--this: 1 +> [14987] do--though: 1 +> [14988] do--to: 1 +> [14989] do--with: 1 +> [14990] do-ne: 1 +> [14991] do-own: 1 +> [14992] do-stop-smoking: 1 +> [14993] do...not: 1 +> [14994] do. [14995] do.”: 1 +> [14996] do?--and: 1 +> [14997] do?--yell: 1 +> [14998] do? [14999] dobroe: 3 +> [15000] doch: 1 +> [15001] dochots: 1 +> [15002] docile: 1 +> [15003] docility: 1 +> [15004] dock: 2 +> [15005] docket: 1 +> [15006] docks: 1 +> [15007] doctor: 463 +> [15008] doctor! [15009] doctor's: 45 +> [15010] doctor, [15011] doctor--a: 1 +> [15012] doctor--metivier--who: 1 +> [15013] doctor--probably: 1 +> [15014] doctor--sleep: 1 +> [15015] doctor? [15016] doctored: 3 +> [15017] doctoring: 4 +> [15018] doctors: 75 +> [15019] doctors--one: 1 +> [15020] doctors...why: 1 +> [15021] doctrinal: 10 +> [15022] doctrine: 127 +> [15023] doctrines: 13 +> [15024] doctype: 1 +> [15025] document: 32 +> [15026] document! [15027] documentary: 5 +> [15028] documents: 27 +> [15029] dodge: 2 +> [15030] dodged: 4 +> [15031] dodges: 2 +> [15032] dodging: 1 +> [15033] does: 1087 +> [15034] does—i: 1 +> [15035] does. [15036] doesn't: 274 +> [15037] doesn't. [15038] doffed: 8 +> [15039] doffing: 4 +> [15040] dog: 189 +> [15041] dog! [15042] dog's: 8 +> [15043] dog's-eared: 1 +> [15044] dog--anywhere: 1 +> [15045] dog-boys: 2 +> [15046] dog-boys—all: 1 +> [15047] dog-fight: 1 +> [15048] dog-rose: 2 +> [15049] dog-star: 1 +> [15050] dog. [15051] dog. [15052] dog [15053] dog? [15054] dogcart: 2 +> [15055] dogcarts: 1 +> [15056] dogged: 11 +> [15057] doggedly: 10 +> [15058] doggerel: 2 +> [15059] doggerel, [15060] dogging: 3 +> [15061] doglike: 1 +> [15062] dogma: 2 +> [15063] dogmas: 1 +> [15064] dogmatic: 2 +> [15065] dogmatical: 1 +> [15066] dogmatists: 1 +> [15067] dogmatize: 1 +> [15068] dogs: 93 +> [15069] dogs—all—all: 1 +> [15070] dogs--my: 1 +> [15071] dogs--you: 1 +> [15072] dohkturov: 2 +> [15073] doing: 659 +> [15074] doing! [15075] doing, [15076] doing--go: 1 +> [15077] doing--that: 1 +> [15078] doing [15079] doing?--she: 1 +> [15080] doing? [15081] doings: 26 +> [15082] dokesis: 1 +> [15083] doketic: 7 +> [15084] doketism: 11 +> [15085] doketist: 2 +> [15086] doketists: 5 +> [15087] dokhturov: 23 +> [15088] dokhturov's: 2 +> [15089] dokhturov--kutuzov: 1 +> [15090] dokhturov--that: 1 +> [15091] doktorenko: 8 +> [15092] doktorenko's: 1 +> [15093] dole: 1 +> [15094] doled: 1 +> [15095] doleful: 3 +> [15096] dolefully: 3 +> [15097] doles: 2 +> [15098] dolgorukov: 43 +> [15099] dolgorukov's: 2 +> [15100] dolgovushin's: 1 +> [15101] doling: 1 +> [15102] dolinka: 2 +> [15103] doll: 24 +> [15104] doll's: 2 +> [15105] doll-like: 1 +> [15106] dollar: 1 +> [15107] dollars: 3 +> [15108] dolls: 3 +> [15109] dolly: 283 +> [15110] dolly's: 27 +> [15111] dolokhov: 284 +> [15112] dolokhov's: 42 +> [15113] dolokhov--"you: 1 +> [15114] dolokhov--now: 1 +> [15115] dolokhov--who: 1 +> [15116] dolokhova: 1 +> [15117] dolorosa: 1 +> [15118] dolphin: 2 +> [15119] dolt: 3 +> [15120] domain: 162 +> [15121] dome: 3 +> [15122] domes: 6 +> [15123] domestic: 54 +> [15124] domestics: 4 +> [15125] domestiques--such: 1 +> [15126] domestiques_--such: 1 +> [15127] dominant: 4 +> [15128] dominate: 2 +> [15129] dominated: 8 +> [15130] dominates: 1 +> [15131] dominating: 6 +> [15132] domination: 3 +> [15133] domination—something: 1 +> [15134] domine: 2 +> [15135] domineer: 1 +> [15136] domineering: 6 +> [15137] domineers: 1 +> [15138] domini: 1 +> [15139] dominical: 1 +> [15140] dominican: 1 +> [15141] dominion: 15 +> [15142] dominions: 5 +> [15143] dominus: 1 +> [15144] domitian: 9 +> [15145] domitian's: 1 +> [15146] domitian.[26: 1 +> [15147] dommed: 2 +> [15148] don: 18 +> [15149] don't: 3410 +> [15150] don't! [15151] don't, [15152] don't--and: 1 +> [15153] don't--not: 1 +> [15154] don't--that: 1 +> [15155] don't--think: 1 +> [15156] don't--what: 1 +> [15157] don't...yes: 1 +> [15158] don't. [15159] donate: 57 +> [15160] donation: 21 +> [15161] donations: 285 +> [15162] donc: 2 +> [15163] doncaster: 1 +> [15164] done: 1280 +> [15165] done! [15166] done!’: 1 +> [15167] done, [15168] done--did: 1 +> [15169] done--it: 1 +> [15170] done--no: 1 +> [15171] done--not: 1 +> [15172] done--our: 1 +> [15173] done--to: 1 +> [15174] done--what: 2 +> [15175] done--you: 1 +> [15176] done. [15177] done;--i: 1 +> [15178] done? [15179] donets: 4 +> [15180] donkey: 17 +> [15181] donkeys: 5 +> [15182] donne: 1 +> [15183] donned: 7 +> [15184] donnez-lui: 1 +> [15185] donning: 3 +> [15186] donors: 20 +> [15187] dont: 2 +> [15188] don’t: 23 +> [15189] doom: 12 +> [15190] doomed: 16 +> [15191] doomsday: 2 +> [15192] door: 1682 +> [15193] door, [15194] door--a: 1 +> [15195] door--always: 1 +> [15196] door--another: 1 +> [15197] door--but: 1 +> [15198] door--closed: 1 +> [15199] door--exactly: 1 +> [15200] door--i: 1 +> [15201] door--not: 1 +> [15202] door--ready: 1 +> [15203] door--speaking: 1 +> [15204] door--the: 2 +> [15205] door--there: 1 +> [15206] door--this: 1 +> [15207] door--was: 1 +> [15208] door--what: 1 +> [15209] door--which: 1 +> [15210] door--you: 1 +> [15211] door-handle: 5 +> [15212] door-keeper: 3 +> [15213] door-keepers: 1 +> [15214] door-nail: 1 +> [15215] door-post: 3 +> [15216] door-steps: 1 +> [15217] door-way: 1 +> [15218] door.... [15219] door.”: 1 +> [15220] door? [15221] doorkeeper: 5 +> [15222] doorpost: 4 +> [15223] doors: 125 +> [15224] doors.’: 1 +> [15225] doorstep: 1 +> [15226] doorsteps: 2 +> [15227] doorway: 135 +> [15228] doorway. [15229] doorways: 7 +> [15230] doppelkummel: 1 +> [15231] dormer: 1 +> [15232] dormer-window: 1 +> [15233] dormir: 1 +> [15234] dormitory: 2 +> [15235] dormouse: 1 +> [15236] dorogobuzh: 3 +> [15237] dorogomilov: 9 +> [15238] dorokhov's: 4 +> [15239] dort: 3 +> [15240] dortoir: 1 +> [15241] dose: 6 +> [15242] dosed: 1 +> [15243] doses: 3 +> [15244] dost: 10 +> [15245] dostoevsky: 27 +> [15246] dostoevsky's: 1 +> [15247] dostoyevsky: 5 +> [15248] dostoyevsky [15249] dostoyevsky [15250] dot: 1 +> [15251] dotage: 1 +> [15252] dotard: 2 +> [15253] doth: 8 +> [15254] doting: 1 +> [15255] dots: 3 +> [15256] dotted: 7 +> [15257] double: 71 +> [15258] double! [15259] double-barreled: 1 +> [15260] double-dealing: 1 +> [15261] double-fronted: 2 +> [15262] double-mindedness: 1 +> [15263] doubled: 17 +> [15264] doubles: 2 +> [15265] doubles! [15266] doublet: 7 +> [15267] doubling: 4 +> [15268] doubly: 10 +> [15269] doubt: 530 +> [15270] doubt—under: 1 +> [15271] doubt--doubt: 1 +> [15272] doubt--it: 1 +> [15273] doubt--kept: 1 +> [15274] doubt--that: 2 +> [15275] doubted: 41 +> [15276] doubter: 1 +> [15277] doubtful: 52 +> [15278] doubtfully: 15 +> [15279] doubting: 16 +> [15280] doubtless: 72 +> [15281] doubtlessly: 2 +> [15282] doubts: 82 +> [15283] doubts. [15284] doubts. [15285] douceur: 1 +> [15286] douche: 1 +> [15287] douches: 1 +> [15288] dough: 2 +> [15289] douleurs: 1 +> [15290] dounia: 300 +> [15291] dounia'a: 1 +> [15292] dounia's: 22 +> [15293] dounia--then: 1 +> [15294] dour: 1 +> [15295] dourbie: 1 +> [15296] dourov: 1 +> [15297] doury: 21 +> [15298] doury's: 6 +> [15299] doury--the: 1 +> [15300] doute: 1 +> [15301] dove: 5 +> [15302] dove-colored: 1 +> [15303] dove-like: 1 +> [15304] dove? [15305] dovecot: 5 +> [15306] dovecote: 1 +> [15307] dovelike: 1 +> [15308] dover: 2 +> [15309] doves: 2 +> [15310] doves—let: 1 +> [15311] dovetailed: 1 +> [15312] dovey: 1 +> [15313] dowager: 7 +> [15314] dowerless: 2 +> [15315] down: 3224 +> [15316] down! [15317] down,--i: 1 +> [15318] down, [15319] down, [15320] down--a: 1 +> [15321] down--and: 1 +> [15322] down--bend: 1 +> [15323] down--capitally: 1 +> [15324] down--i: 1 +> [15325] down--if: 1 +> [15326] down--leaving: 1 +> [15327] down--until: 1 +> [15328] down--vasya: 1 +> [15329] down-looking: 3 +> [15330] down-right: 1 +> [15331] down-stairs: 1 +> [15332] down-town: 1 +> [15333] down-trodden: 1 +> [15334] down. [15335] down [15336] down? [15337] downcast: 31 +> [15338] downfall: 7 +> [15339] downhearted: 1 +> [15340] downhill: 14 +> [15341] downing: 1 +> [15342] downloading: 19 +> [15343] downpour: 3 +> [15344] downright: 6 +> [15345] downs: 1 +> [15346] downstairs: 89 +> [15347] downstairs? [15348] downstrokes: 1 +> [15349] downward: 10 +> [15350] downwards: 36 +> [15351] downy: 10 +> [15352] dowry: 31 +> [15353] doze: 5 +> [15354] dozed: 16 +> [15355] dozen: 175 +> [15356] dozens: 17 +> [15357] dozens--perhaps: 1 +> [15358] dozhoyveyko: 1 +> [15359] dozing: 13 +> [15360] dr: 69 +> [15361] drab: 2 +> [15362] drabanti: 1 +> [15363] draft: 7 +> [15364] drafts: 2 +> [15365] drag: 38 +> [15366] dragged: 95 +> [15367] dragging: 37 +> [15368] draggle-tailed: 1 +> [15369] draggled: 4 +> [15370] draggletails: 3 +> [15371] dragnet: 1 +> [15372] dragon: 7 +> [15373] dragon, [15374] dragon-fly: 1 +> [15375] dragon? [15376] dragons: 1 +> [15377] dragoon: 8 +> [15378] dragooned: 1 +> [15379] dragooning: 1 +> [15380] dragoonings: 1 +> [15381] dragoons: 27 +> [15382] drags: 3 +> [15383] draht: 1 +> [15384] drain: 10 +> [15385] drainage: 2 +> [15386] drained: 4 +> [15387] draining: 2 +> [15388] drains: 2 +> [15389] dram: 10 +> [15390] dram--that: 1 +> [15391] dram-da-da-dam: 1 +> [15392] dram-shop: 1 +> [15393] drama: 14 +> [15394] dramatic: 3 +> [15395] dramatically: 3 +> [15396] drammed: 3 +> [15397] drams: 6 +> [15398] dramshop: 2 +> [15399] drank: 88 +> [15400] drap: 3 +> [15401] drape: 1 +> [15402] draped: 2 +> [15403] draper: 1 +> [15404] draper's: 1 +> [15405] draping: 1 +> [15406] dratted: 1 +> [15407] drauf: 1 +> [15408] draught: 16 +> [15409] draughts: 2 +> [15410] draw: 150 +> [15411] draw-off: 1 +> [15412] drawback: 8 +> [15413] drawbacks: 4 +> [15414] drawbridge: 6 +> [15415] drawer: 31 +> [15416] drawers: 18 +> [15417] draweth: 4 +> [15418] drawing: 348 +> [15419] drawing-room: 94 +> [15420] drawing-room [15421] drawingroom: 2 +> [15422] drawings: 6 +> [15423] drawl: 6 +> [15424] drawled: 16 +> [15425] drawling: 10 +> [15426] drawn: 219 +> [15427] drawn-in: 1 +> [15428] drawn-out: 1 +> [15429] drawn-up: 1 +> [15430] drawn?--just: 1 +> [15431] draws: 6 +> [15432] dray: 1 +> [15433] dray-horses: 1 +> [15434] dray-horses--they: 1 +> [15435] dread: 80 +> [15436] dread— [15437] dread—for: 1 +> [15438] dreaded: 45 +> [15439] dreadful: 196 +> [15440] dreadful-looking: 2 +> [15441] dreadfully: 62 +> [15442] dreadfully--and: 1 +> [15443] dreadfully? [15444] dreading: 4 +> [15445] dreads: 2 +> [15446] dream: 267 +> [15447] dream! [15448] dream—it's: 1 +> [15449] dream, [15450] dream--and: 1 +> [15451] dream--fresh: 1 +> [15452] dream--i've: 1 +> [15453] dream. [15454] dream? [15455] dreamed: 80 +> [15456] dreamer: 26 +> [15457] dreamer's: 2 +> [15458] dreamer--if: 1 +> [15459] dreamers: 2 +> [15460] dreamest: 1 +> [15461] dreamily: 19 +> [15462] dreaminess: 4 +> [15463] dreaming: 80 +> [15464] dreamless: 1 +> [15465] dreams: 154 +> [15466] dreams, [15467] dreams--and: 2 +> [15468] dreams--impossible: 1 +> [15469] dreams. [15470] dreamt: 21 +> [15471] dreamy: 19 +> [15472] dreariest: 3 +> [15473] drearily: 5 +> [15474] dreariness: 1 +> [15475] dreary: 39 +> [15476] dredynge: 1 +> [15477] dregs: 3 +> [15478] drench: 1 +> [15479] drenched: 19 +> [15480] drenching: 2 +> [15481] dresden: 4 +> [15482] dress: 403 +> [15483] dress! [15484] dress— [15485] dress, [15486] dress--an: 1 +> [15487] dress--that: 1 +> [15488] dress-coat: 5 +> [15489] dress-coats: 2 +> [15490] dress.’: 1 +> [15491] dressed: 294 +> [15492] dressed,’: 4 +> [15493] dressed’: 2 +> [15494] dresser: 7 +> [15495] dressers: 5 +> [15496] dresses: 60 +> [15497] dressing: 116 +> [15498] dressing--gown: 1 +> [15499] dressing-case: 2 +> [15500] dressing-cases: 1 +> [15501] dressing-down: 1 +> [15502] dressing-gown: 47 +> [15503] dressing-gown--exactly: 3 +> [15504] dressing-jacket: 1 +> [15505] dressing-room: 10 +> [15506] dressing-table: 3 +> [15507] dressings: 1 +> [15508] dressmaker: 8 +> [15509] dressmakers: 2 +> [15510] dressoir: 1 +> [15511] dressy—top-knots: 1 +> [15512] drew: 386 +> [15513] dried: 59 +> [15514] dried-up: 4 +> [15515] dries: 3 +> [15516] drift: 15 +> [15517] drifted: 14 +> [15518] drifting: 7 +> [15519] drill: 4 +> [15520] drilling: 4 +> [15521] drills: 3 +> [15522] drily: 20 +> [15523] drink: 344 +> [15524] drink—is: 1 +> [15525] drink, [15526] drink--delirium: 1 +> [15527] drink--especially: 1 +> [15528] drink--to: 1 +> [15529] drink-money: 1 +> [15530] drink.... [15531] drink...kostya: 1 +> [15532] drink. [15533] drink? [15534] drinker: 1 +> [15535] drinkers: 1 +> [15536] drinking: 152 +> [15537] drinking, [15538] drinking-bar: 1 +> [15539] drinking-song: 1 +> [15540] drinks: 18 +> [15541] drinks.--as: 1 +> [15542] drip: 5 +> [15543] dripped: 3 +> [15544] dripping: 6 +> [15545] dripping! [15546] drissa: 22 +> [15547] drive: 229 +> [15548] driveling: 2 +> [15549] driven: 134 +> [15550] driver: 74 +> [15551] driver's: 10 +> [15552] driver? [15553] drivers: 13 +> [15554] drives: 16 +> [15555] driving: 124 +> [15556] driving-coat: 1 +> [15557] drizzle: 2 +> [15558] drizzling: 3 +> [15559] droit: 3 +> [15560] droite: 1 +> [15561] droits: 1 +> [15562] droll: 7 +> [15563] droll-looking: 1 +> [15564] drollery: 1 +> [15565] drolly: 1 +> [15566] dron: 51 +> [15567] dron's: 2 +> [15568] dron--"and: 1 +> [15569] drone: 5 +> [15570] droned: 1 +> [15571] drones: 5 +> [15572] droning: 2 +> [15573] dronushka: 10 +> [15574] droop: 5 +> [15575] drooped: 9 +> [15576] drooping: 21 +> [15577] drop: 148 +> [15578] drop--if: 1 +> [15579] drop...this: 1 +> [15580] dropped: 249 +> [15581] dropping: 61 +> [15582] droppings: 1 +> [15583] drops: 74 +> [15584] dropsy: 2 +> [15585] droshky: 3 +> [15586] drought: 1 +> [15587] drove: 288 +> [15588] drown: 27 +> [15589] drowned: 37 +> [15590] drowning: 25 +> [15591] drowns: 2 +> [15592] drowsed: 4 +> [15593] drowsily: 2 +> [15594] drowsiness: 12 +> [15595] drowsing: 5 +> [15596] drowsy: 14 +> [15597] drubbing: 6 +> [15598] drubetskaya: 9 +> [15599] drubetskaya's: 1 +> [15600] drubetskoy: 18 +> [15601] drubetskoy--awaited: 1 +> [15602] drubetskoys: 1 +> [15603] drudge: 1 +> [15604] drudgery: 2 +> [15605] drudges: 1 +> [15606] drug: 6 +> [15607] drugget: 21 +> [15608] drugs: 1 +> [15609] drugstores: 1 +> [15610] drum: 31 +> [15611] drum's: 1 +> [15612] drum-man: 1 +> [15613] drummed: 5 +> [15614] drummer: 15 +> [15615] drummer--a: 1 +> [15616] drummers: 1 +> [15617] drumming: 9 +> [15618] drummond: 1 +> [15619] drums: 18 +> [15620] drums--samples: 1 +> [15621] drunk: 317 +> [15622] drunk! [15623] drunk, [15624] drunk--but: 4 +> [15625] drunk--he: 1 +> [15626] drunk--i'll: 1 +> [15627] drunk--the: 1 +> [15628] drunk.... [15629] drunk. [15630] drunk: [15631] drunk? [15632] drunkard: 30 +> [15633] drunkard! [15634] drunkard's: 2 +> [15635] drunkards: 10 +> [15636] drunkards--the: 1 +> [15637] drunken: 124 +> [15638] drunken-looking: 2 +> [15639] drunkenness: 24 +> [15640] drunkenness—that's: 1 +> [15641] dry: 181 +> [15642] dry-as-dust: 1 +> [15643] dry-eyed: 3 +> [15644] dry-looking: 1 +> [15645] dry-steam: 1 +> [15646] dryads: 1 +> [15647] dryden: 1 +> [15648] dryer: 1 +> [15649] drying: 54 +> [15650] drying-up: 1 +> [15651] dryings: 1 +> [15652] dryly: 33 +> [15653] dryness: 8 +> [15654] du: 59 +> [15655] dual: 1 +> [15656] dualism: 1 +> [15657] dub: 1 +> [15658] dubbed: 3 +> [15659] dubious: 10 +> [15660] dubiously: 6 +> [15661] dubois: 1 +> [15662] duc: 12 +> [15663] duc's: 1 +> [15664] duc--or: 1 +> [15665] ducal: 1 +> [15666] duchenois: 1 +> [15667] duchess: 155 +> [15668] duchess's: 11 +> [15669] duchess--were: 1 +> [15670] duchies: 1 +> [15671] duchy: 4 +> [15672] duck: 6 +> [15673] duck-pond: 1 +> [15674] ducked: 5 +> [15675] ducking: 3 +> [15676] ducks: 5 +> [15677] duckweed: 1 +> [15678] duclida: 2 +> [15679] dudgeon: 1 +> [15680] dudley: 3 +> [15681] due: 217 +> [15682] due--if: 1 +> [15683] due--that: 1 +> [15684] duel: 116 +> [15685] duel! [15686] duel, [15687] duel--inevitable: 1 +> [15688] duel--would: 1 +> [15689] duel. [15690] duel [15691] duel [15692] dueling: 5 +> [15693] duelist: 2 +> [15694] duels: 13 +> [15695] dues: 3 +> [15696] duets: 2 +> [15697] dug: 19 +> [15698] dugdale: 1 +> [15699] dugout: 2 +> [15700] duke: 75 +> [15701] duke's: 10 +> [15702] duke--it: 1 +> [15703] duke--whom: 1 +> [15704] dukes: 6 +> [15705] dukes--whose: 1 +> [15706] dulcet: 1 +> [15707] dull: 176 +> [15708] dull-witted: 5 +> [15709] dullards: 2 +> [15710] dulled: 5 +> [15711] duller: 2 +> [15712] dullest: 5 +> [15713] dullness: 2 +> [15714] dulls: 2 +> [15715] dully: 13 +> [15716] dully--"by: 1 +> [15717] dulness: 2 +> [15718] duly: 11 +> [15719] dumas-fils: 1 +> [15720] dumb: 49 +> [15721] dumb-bells: 1 +> [15722] dumbbells: 2 +> [15723] dumbfounded: 4 +> [15724] dumbfoundered: 1 +> [15725] dumbly: 6 +> [15726] dumbness: 1 +> [15727] dumfound: 1 +> [15728] dumfounded: 1 +> [15729] dumfoundered--for: 1 +> [15730] dummy: 4 +> [15731] dumped: 1 +> [15732] dumps: 1 +> [15733] dun: 2 +> [15734] dun-colored: 2 +> [15735] dung: 6 +> [15736] dung-heaps: 1 +> [15737] dung-hill: 1 +> [15738] dung-strewn: 3 +> [15739] dungeon: 1 +> [15740] dungeons: 2 +> [15741] dunno: 6 +> [15742] dunquerque: 2 +> [15743] dunsmoor: 1 +> [15744] dunstable: 1 +> [15745] dunyasha: 34 +> [15746] dunyasha's: 3 +> [15747] dupe: 4 +> [15748] duped: 2 +> [15749] duping: 2 +> [15750] duplicate: 1 +> [15751] duplicated: 1 +> [15752] duplication: 2 +> [15753] duplicity: 4 +> [15754] duport: 7 +> [15755] duport--the: 1 +> [15756] duration: 8 +> [15757] duration--first: 1 +> [15758] durchlaucht: 2 +> [15759] durham: 1 +> [15760] during: 608 +> [15761] duroc: 2 +> [15762] durosnel's: 1 +> [15763] durrenstein: 3 +> [15764] dushkin: 4 +> [15765] dushkin's: 4 +> [15766] dusk: 50 +> [15767] dusky: 5 +> [15768] dussauts: 1 +> [15769] dussek: 1 +> [15770] dussot's: 3 +> [15771] dust: 109 +> [15772] dust--i: 1 +> [15773] dust-coat: 1 +> [15774] dust-heap: 1 +> [15775] dust-stained: 1 +> [15776] dustier: 1 +> [15777] dusting: 1 +> [15778] dustmen: 1 +> [15779] dusty: 35 +> [15780] dutch: 32 +> [15781] dutch--and: 1 +> [15782] dutch--hungry: 1 +> [15783] dutchman: 28 +> [15784] dutchman's: 4 +> [15785] dutchmen: 3 +> [15786] dutchwoman: 1 +> [15787] duties: 110 +> [15788] dutiful: 8 +> [15789] dutifully: 1 +> [15790] duty: 289 +> [15791] duty--germans: 1 +> [15792] duty--so: 1 +> [15793] duty...but: 1 +> [15794] duty. [15795] dvigailov: 1 +> [15796] dvina: 1 +> [15797] dvor: 3 +> [15798] dwagging: 1 +> [15799] dwarf: 7 +> [15800] dwarfed: 1 +> [15801] dwarfish: 2 +> [15802] dwarfs: 1 +> [15803] dwell: 11 +> [15804] dwelled: 1 +> [15805] dweller: 1 +> [15806] dwelling: 18 +> [15807] dwellings: 1 +> [15808] dwells: 1 +> [15809] dwelt: 22 +> [15810] dwindled: 3 +> [15811] dwindled--dwindled: 1 +> [15812] dwink: 3 +> [15813] dwive: 1 +> [15814] dwown: 1 +> [15815] dwy: 1 +> [15816] dy: 2 +> [15817] dyas: 4 +> [15818] dyas's: 1 +> [15819] dye: 2 +> [15820] dyed: 7 +> [15821] dyeing: 12 +> [15822] dyes: 2 +> [15823] dyestuff: 2 +> [15824] dyestuffs: 5 +> [15825] dying: 197 +> [15826] dying! [15827] dying—had: 1 +> [15828] dying--first: 1 +> [15829] dying--moved: 1 +> [15830] dying--yes: 1 +> [15831] dying.... [15832] dying. [15833] dyke: 4 +> [15834] dykes: 1 +> [15835] dymphna: 63 +> [15836] dymphna's: 12 +> [15837] dymphna,--as: 1 +> [15838] dymphna--of: 1 +> [15839] dynamite: 1 +> [15840] dynasty: 2 +> [15841] dysentery: 1 +> [15842] dyspeptic: 2 +> [15843] débris: 2 +> [15844] décharge [15845] déluge [15846] dénouement: 4 +> [15847] dévotes: 1 +> [15848] d’enfer’: 1 +> [15849] d’ussede: 1 +> [15850] e: 55 +> [15851] e—ech! [15852] e'en: 1 +> [15853] e-mail: 19 +> [15854] e-vi-dent: 1 +> [15855] e.c: 1 +> [15856] e.g: 8 +> [15857] ea: 1 +> [15858] each: 805 +> [15859] each—only: 1 +> [15860] each—that: 1 +> [15861] eager: 121 +> [15862] eagerly: 124 +> [15863] eagerly--some: 1 +> [15864] eagerness: 40 +> [15865] eagle: 10 +> [15866] eagles: 2 +> [15867] ear: 130 +> [15868] ear-piercing: 1 +> [15869] ear-rings: 15 +> [15870] earlier: 92 +> [15871] earlier! [15872] earlier.[16: 1 +> [15873] earliest: 27 +> [15874] early: 290 +> [15875] early--before: 1 +> [15876] early-rising: 1 +> [15877] earn: 23 +> [15878] earned: 23 +> [15879] earned--he: 1 +> [15880] earnest: 79 +> [15881] earnest— [15882] earnest, [15883] earnest--"why: 1 +> [15884] earnest--and: 1 +> [15885] earnest. [15886] earnest [15887] earnest? [15888] earnestly: 48 +> [15889] earnestly--'god: 1 +> [15890] earnestness: 11 +> [15891] earning: 6 +> [15892] earnings: 4 +> [15893] earrings: 12 +> [15894] ears: 228 +> [15895] ears--and: 1 +> [15896] ears. [15897] earshot: 2 +> [15898] earth: 380 +> [15899] earth—and: 1 +> [15900] earth—rulers: 1 +> [15901] earth—that: 1 +> [15902] earth's: 1 +> [15903] earth, [15904] earth--as: 4 +> [15905] earth--gone: 1 +> [15906] earth--to: 1 +> [15907] earth. [15908] earth. [15909] earth.’: 1 +> [15910] earth? [15911] earthed: 1 +> [15912] earthen: 7 +> [15913] earthenware: 2 +> [15914] earthly: 64 +> [15915] earthly--"but: 1 +> [15916] earthquake: 6 +> [15917] earths: 1 +> [15918] earthwork: 4 +> [15919] earthworks: 1 +> [15920] earthy: 2 +> [15921] ease: 163 +> [15922] eased: 1 +> [15923] easel: 3 +> [15924] eases: 1 +> [15925] easier: 68 +> [15926] easiest: 11 +> [15927] easiest--instantaneous: 1 +> [15928] easily: 229 +> [15929] easily-ignited: 1 +> [15930] easiness: 3 +> [15931] easing: 2 +> [15932] east: 74 +> [15933] east! [15934] easter: 14 +> [15935] easter-tide: 1 +> [15936] easterly: 1 +> [15937] eastern: 6 +> [15938] eastern--much: 1 +> [15939] eastern-most: 1 +> [15940] eastward: 5 +> [15941] eastwards: 2 +> [15942] easy: 273 +> [15943] easy--as: 1 +> [15944] easy--but: 1 +> [15945] easy-chair: 3 +> [15946] easy-going: 2 +> [15947] easygoing: 1 +> [15948] eat: 185 +> [15949] eat?’: 1 +> [15950] eatables: 1 +> [15951] eaten: 42 +> [15952] eater: 1 +> [15953] eaters: 3 +> [15954] eating: 85 +> [15955] eating--but: 1 +> [15956] eating--eating: 1 +> [15957] eating--in: 1 +> [15958] eating--no: 1 +> [15959] eating-house: 3 +> [15960] eating-houses: 1 +> [15961] eating-room: 2 +> [15962] eats: 8 +> [15963] eau: 3 +> [15964] eaves: 7 +> [15965] eaves--for: 1 +> [15966] eavesdropping: 1 +> [15967] ebb: 5 +> [15968] ebbed: 4 +> [15969] ebbing: 3 +> [15970] ebbs: 1 +> [15971] ebionite: 1 +> [15972] ebionites: 2 +> [15973] ebony: 1 +> [15974] ebook: 195 +> [15975] ebooks: 133 +> [15976] eccentric: 29 +> [15977] eccentric--something: 1 +> [15978] eccentricities: 4 +> [15979] eccentricity: 16 +> [15980] ecclesiastic: 8 +> [15981] ecclesiastic! [15982] ecclesiastic's: 1 +> [15983] ecclesiastical: 20 +> [15984] ecclesiasticism: 1 +> [15985] ecclesiastics: 3 +> [15986] ecclesiæ: 1 +> [15987] ech: 13 +> [15988] echelons: 1 +> [15989] echkino: 2 +> [15990] echo: 19 +> [15991] echoed: 30 +> [15992] echoes: 4 +> [15993] echoing: 4 +> [15994] ecka'tshausen: 1 +> [15995] eckmuhl: 1 +> [15996] eclairaient: 1 +> [15997] eclipse: 4 +> [15998] eclipsed: 2 +> [15999] eclipses: 1 +> [16000] economic: 21 +> [16001] economical: 12 +> [16002] economically: 2 +> [16003] economist: 2 +> [16004] economists: 1 +> [16005] economized: 2 +> [16006] economizing: 1 +> [16007] economy: 24 +> [16008] economy--in: 1 +> [16009] ecossaise: 8 +> [16010] ecstacy: 1 +> [16011] ecstasies: 6 +> [16012] ecstasy: 66 +> [16013] ecstasy. [16014] ecstatic: 32 +> [16015] ecstatically: 15 +> [16016] ecu: 2 +> [16017] ed: 6 +> [16018] eddied: 8 +> [16019] eddies: 3 +> [16020] eddy: 2 +> [16021] eddying: 2 +> [16022] eden: 2 +> [16023] edge: 105 +> [16024] edged: 9 +> [16025] edges: 8 +> [16026] edging: 3 +> [16027] edible: 9 +> [16028] edibles: 1 +> [16029] edict: 1 +> [16030] edicts: 1 +> [16031] edification: 4 +> [16032] edifice: 22 +> [16033] edifices: 4 +> [16034] edifying: 9 +> [16035] edifying, [16036] edinburgh: 1 +> [16037] edited: 2 +> [16038] edition: 42 +> [16039] editions: 79 +> [16040] editionstmt: 2 +> [16041] editor: 5 +> [16042] editorial: 3 +> [16043] editors: 4 +> [16044] edmonds: 1 +> [16045] educate: 15 +> [16046] educated: 60 +> [16047] educated--business: 1 +> [16048] educating: 1 +> [16049] education: 156 +> [16050] education--the: 1 +> [16051] educational: 25 +> [16052] educators: 1 +> [16053] edward: 15 +> [16054] edward's: 1 +> [16055] edwarde: 1 +> [16056] edwards: 5 +> [16057] eel: 12 +> [16058] eel-skins: 1 +> [16059] eels: 1 +> [16060] eeriness: 1 +> [16061] efface: 5 +> [16062] effaced: 7 +> [16063] effacing: 1 +> [16064] effect: 276 +> [16065] effect— [16066] effect—all: 1 +> [16067] effected: 14 +> [16068] effecting: 3 +> [16069] effective: 16 +> [16070] effective--a: 1 +> [16071] effective--and: 1 +> [16072] effective--the: 1 +> [16073] effectively: 3 +> [16074] effectiveness: 4 +> [16075] effects: 27 +> [16076] effects--the: 1 +> [16077] effectual: 3 +> [16078] effectually: 10 +> [16079] effeminacy: 1 +> [16080] effeminate: 2 +> [16081] effervescing: 1 +> [16082] effete: 1 +> [16083] efficacy: 2 +> [16084] efficiency: 3 +> [16085] efficient: 8 +> [16086] effie: 1 +> [16087] effigy: 2 +> [16088] efflorescing: 1 +> [16089] efflux: 1 +> [16090] effort: 300 +> [16091] effort--"possible: 1 +> [16092] effort--for: 1 +> [16093] effort--in: 1 +> [16094] effort--someone: 1 +> [16095] efforts: 176 +> [16096] efforts--in: 1 +> [16097] efforts--which: 1 +> [16098] effrayee: 1 +> [16099] effrontery: 4 +> [16100] effusion: 2 +> [16101] effusions: 2 +> [16102] effusive: 2 +> [16103] effusively: 3 +> [16104] efim: 3 +> [16105] efimovitch: 1 +> [16106] efimovna: 1 +> [16107] egerton: 1 +> [16108] egg: 22 +> [16109] egg-shells: 4 +> [16110] egged: 4 +> [16111] egging: 3 +> [16112] eggs: 14 +> [16113] eggshell: 1 +> [16114] eggshells: 1 +> [16115] eglises: 2 +> [16116] ego: 2 +> [16117] egoism: 5 +> [16118] egoist: 14 +> [16119] egoistic: 2 +> [16120] egoists: 1 +> [16121] egotism: 13 +> [16122] egotist: 2 +> [16123] egotistic: 1 +> [16124] egotistical: 1 +> [16125] egotists: 2 +> [16126] egress: 1 +> [16127] egypt: 23 +> [16128] egypt—and: 1 +> [16129] egypt's: 1 +> [16130] egypt--where: 1 +> [16131] egyptian: 9 +> [16132] egyptians: 2 +> [16133] eh: 259 +> [16134] eh!--that: 1 +> [16135] eh? [16136] eheu: 1 +> [16137] ei: 1 +> [16138] eiffels: 1 +> [16139] eight: 204 +> [16140] eight--not: 1 +> [16141] eight-cornered: 1 +> [16142] eight-page: 1 +> [16143] eighteen: 50 +> [16144] eighteen--exhausted: 1 +> [16145] eighteenth: 9 +> [16146] eighth: 14 +> [16147] eightpence: 1 +> [16148] eighty: 33 +> [16149] ein: 21 +> [16150] einfaches: 1 +> [16151] eirenicon: 1 +> [16152] eisenschmidt: 1 +> [16153] either: 664 +> [16154] either, [16155] either--but: 1 +> [16156] either--in: 1 +> [16157] either--nothing: 1 +> [16158] either. [16159] either [16160] ejaculate: 6 +> [16161] ejaculated: 20 +> [16162] ejaculating: 1 +> [16163] ejaculations: 1 +> [16164] ejected: 2 +> [16165] ejus: 3 +> [16166] ekaterina: 4 +> [16167] ekaterinenburg: 1 +> [16168] ekaterinhof: 4 +> [16169] ekaterininsky: 1 +> [16170] eked: 2 +> [16171] ekonomov: 3 +> [16172] ekshaisk: 1 +> [16173] ekshaisky: 1 +> [16174] elaborate: 14 +> [16175] elaborated: 2 +> [16176] elaborately: 2 +> [16177] elaborateness: 1 +> [16178] elaboration: 1 +> [16179] elaborations: 1 +> [16180] elaine: 1 +> [16181] elapse: 3 +> [16182] elapsed: 13 +> [16183] elapses: 1 +> [16184] elastic: 4 +> [16185] elasticity: 2 +> [16186] elated: 5 +> [16187] elation: 5 +> [16188] elba: 1 +> [16189] elbow: 82 +> [16190] elbow--and: 1 +> [16191] elbow--as: 1 +> [16192] elbow-chair: 1 +> [16193] elbow-room: 1 +> [16194] elbowed: 4 +> [16195] elbowing: 4 +> [16196] elbows: 73 +> [16197] elchingen: 1 +> [16198] elder: 310 +> [16199] elder! [16200] elder's: 33 +> [16201] elder's--hens: 1 +> [16202] elder, [16203] elder-brotherly: 1 +> [16204] elder. [16205] elder? [16206] elderly: 62 +> [16207] elderly, [16208] elders: 57 +> [16209] elders [16210] eldership: 2 +> [16211] eldest: 66 +> [16212] eldritch: 1 +> [16213] elect: 39 +> [16214] elected: 13 +> [16215] electing: 1 +> [16216] election: 48 +> [16217] election's: 1 +> [16218] elections: 36 +> [16219] elections--drat: 1 +> [16220] electoral: 1 +> [16221] electors: 3 +> [16222] electric: 9 +> [16223] electrical: 1 +> [16224] electricity: 11 +> [16225] electrified: 2 +> [16226] electrochemical: 1 +> [16227] electrolysis: 1 +> [16228] electrolytic: 3 +> [16229] electronic: 513 +> [16230] electronically: 39 +> [16231] electrotyped: 1 +> [16232] elegance: 24 +> [16233] elegancies: 1 +> [16234] elegant: 47 +> [16235] elegant--well: 1 +> [16236] elegant.’: 1 +> [16237] elegantly: 12 +> [16238] element: 44 +> [16239] elemental: 5 +> [16240] elementary: 4 +> [16241] elements: 54 +> [16242] elements--sulphur: 1 +> [16243] elephant: 6 +> [16244] elets: 1 +> [16245] eletsky: 1 +> [16246] elevate: 7 +> [16247] elevated: 18 +> [16248] elevates: 1 +> [16249] elevating: 2 +> [16250] elevation: 11 +> [16251] elevation--the: 1 +> [16252] eleven: 90 +> [16253] eleven. [16254] eleventh: 10 +> [16255] elfish: 1 +> [16256] elias: 1 +> [16257] elicit: 1 +> [16258] elicited: 6 +> [16259] elided: 1 +> [16260] eligible: 5 +> [16261] elijah: 4 +> [16262] eliminate: 4 +> [16263] eliminated: 5 +> [16264] eliminates: 2 +> [16265] elimination,[36: 1 +> [16266] elipses: 1 +> [16267] elisabeth: 1 +> [16268] elisaveta: 1 +> [16269] eliseyev: 1 +> [16270] eliseyev, [16271] elisha: 1 +> [16272] elite: 1 +> [16273] elizabeth: 12 +> [16274] elizabetha: 6 +> [16275] elizabethgrad: 1 +> [16276] elizaveta: 1 +> [16277] elks: 1 +> [16278] elle: 4 +> [16279] elliot's: 1 +> [16280] ellipse: 1 +> [16281] ellipsis: 1 +> [16282] ellipsis [16283] ellis: 1 +> [16284] elm: 6 +> [16285] elm-tree: 1 +> [16286] elms: 2 +> [16287] elocution: 2 +> [16288] elohim: 1 +> [16289] elongated: 1 +> [16290] elope: 9 +> [16291] eloped: 1 +> [16292] elopement: 4 +> [16293] elopements: 1 +> [16294] eloquence: 23 +> [16295] eloquent: 21 +> [16296] eloquently: 10 +> [16297] else: 739 +> [16298] else's: 9 +> [16299] else,--oh: 1 +> [16300] else, [16301] else--and: 1 +> [16302] else--but: 1 +> [16303] else--evolution: 1 +> [16304] else--formed: 1 +> [16305] else--he: 1 +> [16306] else--i: 1 +> [16307] else--in: 1 +> [16308] else--indefinite: 1 +> [16309] else--ourselves: 1 +> [16310] else--some: 1 +> [16311] else--something: 1 +> [16312] else--the: 1 +> [16313] else--then: 1 +> [16314] else--to: 1 +> [16315] else--yet: 1 +> [16316] else.... [16317] else. [16318] else.’: 1 +> [16319] else [16320] else? [16321] elsewhere: 25 +> [16322] elsewhere--at: 1 +> [16323] elsewhere--in: 1 +> [16324] elstree: 2 +> [16325] elucidate: 2 +> [16326] elucidation: 1 +> [16327] elude: 3 +> [16328] eluded: 2 +> [16329] elusive--the: 1 +> [16330] elymas: 1 +> [16331] elysium: 1 +> [16332] elzevir: 1 +> [16333] em: 19 +> [16334] emaciated: 14 +> [16335] emaciation: 5 +> [16336] email: 58 +> [16337] emanate: 2 +> [16338] emanated: 1 +> [16339] emanates: 2 +> [16340] emanating: 5 +> [16341] emanation: 1 +> [16342] emancipate: 1 +> [16343] emancipated: 1 +> [16344] emancipating: 1 +> [16345] emancipation: 20 +> [16346] emasculate: 3 +> [16347] embalmed: 1 +> [16348] embankment: 13 +> [16349] embankments: 1 +> [16350] embarked: 3 +> [16351] embarras: 1 +> [16352] embarrass: 7 +> [16353] embarrassed: 75 +> [16354] embarrassed—god: 1 +> [16355] embarrasses: 1 +> [16356] embarrassing: 18 +> [16357] embarrassment: 68 +> [16358] embarrassment--after: 1 +> [16359] embarrassments: 2 +> [16360] embassage: 1 +> [16361] embassies: 1 +> [16362] embassy: 9 +> [16363] embedded: 1 +> [16364] embellished: 1 +> [16365] embellishments: 4 +> [16366] ember: 1 +> [16367] embers: 16 +> [16368] embezzlement: 1 +> [16369] embitter: 1 +> [16370] embittered: 13 +> [16371] embitters: 1 +> [16372] emblem: 5 +> [16373] emblems: 1 +> [16374] embodied: 11 +> [16375] embodies: 1 +> [16376] embodiment: 5 +> [16377] embody: 3 +> [16378] embodying: 2 +> [16379] emboldened: 1 +> [16380] embossed: 2 +> [16381] embossing: 1 +> [16382] embrace: 62 +> [16383] embrace--the: 1 +> [16384] embraced: 78 +> [16385] embraces: 4 +> [16386] embracing: 32 +> [16387] embrasure: 1 +> [16388] embroidered: 24 +> [16389] embroidering: 1 +> [16390] embroiders: 1 +> [16391] embroidery: 10 +> [16392] embryo: 3 +> [16393] emerald: 1 +> [16394] emeralds: 4 +> [16395] emerge: 5 +> [16396] emerged: 22 +> [16397] emergence: 1 +> [16398] emergencies: 7 +> [16399] emergency: 20 +> [16400] emergency? [16401] emerges: 2 +> [16402] emerges--by: 1 +> [16403] emerging: 10 +> [16404] emery: 1 +> [16405] emigrant: 2 +> [16406] emigrate: 2 +> [16407] emigrated: 1 +> [16408] emigre: 2 +> [16409] emigree: 1 +> [16410] emigres: 1 +> [16411] emigrés: 1 +> [16412] emilie: 1 +> [16413] eminence: 5 +> [16414] eminent: 17 +> [16415] eminently: 1 +> [16416] emissaries: 1 +> [16417] emissary: 2 +> [16418] emit: 1 +> [16419] emitted: 7 +> [16420] emitting: 4 +> [16421] emmaus: 1 +> [16422] emmerich: 12 +> [16423] emmets: 1 +> [16424] emmy: 2 +> [16425] emotion: 145 +> [16426] emotional: 10 +> [16427] emotionalism: 1 +> [16428] emotions: 22 +> [16429] empereur: 1 +> [16430] emperor: 554 +> [16431] emperor's: 106 +> [16432] emperor--and: 1 +> [16433] emperor--frantically: 1 +> [16434] emperor--he: 1 +> [16435] emperor--more: 1 +> [16436] emperor--most: 1 +> [16437] emperor--to: 1 +> [16438] emperor--without: 1 +> [16439] emperor-worship: 1 +> [16440] emperors: 35 +> [16441] emperors--that: 1 +> [16442] emperors--the: 1 +> [16443] empewah: 2 +> [16444] empewo: 2 +> [16445] emph>all [16446] emph>allow [16447] emph>another [16448] emph>any: 1 +> [16449] emph>as: 1 +> [16450] emph>authority [16451] emph>awful [16452] emph>because: 1 +> [16453] emph>beyond—i: 1 +> [16454] emph>community [16455] emph>escaping [16456] emph>even: 2 +> [16457] emph>feigned [16458] emph>first: 1 +> [16459] emph>free [16460] emph>half [16461] emph>happy [16462] emph>have: 1 +> [16463] emph>he [16464] emph>he? [16465] emph>her [16466] emph>him [16467] emph>him—that: 1 +> [16468] emph>him, [16469] emph>his: 1 +> [16470] emph>his [16471] emph>i: 1 +> [16472] emph>if: 1 +> [16473] emph>in: 2 +> [16474] emph>is [16475] emph>knew [16476] emph>living [16477] emph>me! [16478] emph>miracle [16479] emph>must [16480] emph>must [16481] emph>my: 1 +> [16482] emph>mystery [16483] emph>not: 1 +> [16484] emph>now [16485] emph>on: 4 +> [16486] emph>only [16487] emph>particularly [16488] emph>pity [16489] emph>she [16490] emph>something [16491] emph>soon: 1 +> [16492] emph>such: 1 +> [16493] emph>that: 1 +> [16494] emph>that [16495] emph>this [16496] emph>together [16497] emph>virtue [16498] emph>was [16499] emph>who: 1 +> [16500] emph>with: 1 +> [16501] emph>you [16502] emph>your [16503] emphasis: 31 +> [16504] emphasise: 1 +> [16505] emphasising: 1 +> [16506] emphasize: 6 +> [16507] emphasized: 4 +> [16508] emphasizes: 2 +> [16509] emphasizing: 5 +> [16510] emphatic: 9 +> [16511] emphatically: 34 +> [16512] empia: 1 +> [16513] empire: 63 +> [16514] empires: 5 +> [16515] empirical: 1 +> [16516] employ: 23 +> [16517] employed: 90 +> [16518] employed,—political: 1 +> [16519] employee: 19 +> [16520] employees: 38 +> [16521] employees.--never: 1 +> [16522] employer: 13 +> [16523] employer's: 4 +> [16524] employers: 2 +> [16525] employing: 6 +> [16526] employment: 19 +> [16527] employments: 3 +> [16528] employs: 5 +> [16529] empowered: 2 +> [16530] empress: 31 +> [16531] empresses: 1 +> [16532] emptied: 31 +> [16533] emptier: 1 +> [16534] empties: 1 +> [16535] emptiest: 1 +> [16536] emptiness: 5 +> [16537] empty: 194 +> [16538] empty--the: 2 +> [16539] empty-handed: 6 +> [16540] empty-handed--they: 1 +> [16541] empty-headed: 1 +> [16542] emptying: 9 +> [16543] empyrean: 1 +> [16544] emulating: 1 +> [16545] emulation: 2 +> [16546] emulsification: 1 +> [16547] emulsified: 2 +> [16548] emulsify: 1 +> [16549] emulsion: 6 +> [16550] emulsions: 2 +> [16551] en: 15 +> [16552] enable: 23 +> [16553] enabled: 14 +> [16554] enables: 6 +> [16555] enabling: 6 +> [16556] enacted: 3 +> [16557] enactments: 1 +> [16558] enamel: 1 +> [16559] enameled: 4 +> [16560] enamelled: 2 +> [16561] enamoured: 1 +> [16562] encamped: 5 +> [16563] encampment: 3 +> [16564] encased: 1 +> [16565] enchained: 1 +> [16566] enchant: 1 +> [16567] enchanted: 21 +> [16568] enchanting: 21 +> [16569] enchantingly: 1 +> [16570] enchantment: 3 +> [16571] enchantments: 1 +> [16572] enchantress: 9 +> [16573] enchants: 1 +> [16574] encircle: 1 +> [16575] encircled: 6 +> [16576] encircles: 1 +> [16577] enclose: 5 +> [16578] enclosed: 12 +> [16579] enclosing: 3 +> [16580] enclosure: 5 +> [16581] enclosures: 2 +> [16582] encoding: 2 +> [16583] encoding="utf-8: 1 +> [16584] encodingdesc: 2 +> [16585] encompass: 1 +> [16586] encompassed: 5 +> [16587] encompassing: 1 +> [16588] encore: 1 +> [16589] encounter: 32 +> [16590] encounter--for: 1 +> [16591] encountered: 9 +> [16592] encountering: 4 +> [16593] encounters: 7 +> [16594] encourage: 22 +> [16595] encouraged: 24 +> [16596] encouragement: 17 +> [16597] encouragement.--these: 1 +> [16598] encourages: 3 +> [16599] encouraging: 15 +> [16600] encouragingly: 1 +> [16601] encroach: 2 +> [16602] encroaching: 4 +> [16603] encroachment: 2 +> [16604] encroachments: 3 +> [16605] encumbered: 2 +> [16606] encumbering: 2 +> [16607] encyclical: 1 +> [16608] encyclopaedias: 1 +> [16609] encyclopaedic: 1 +> [16610] encyclopædic: 1 +> [16611] end: 1088 +> [16612] end"--he: 1 +> [16613] end--a: 1 +> [16614] end--about: 1 +> [16615] end--but: 1 +> [16616] end--it: 1 +> [16617] end--it's: 1 +> [16618] end--no: 1 +> [16619] end--quietly: 1 +> [16620] end--should: 1 +> [16621] end-point: 4 +> [16622] end. [16623] end.’: 2 +> [16624] end;’: 1 +> [16625] end [16626] end? [16627] endanger: 7 +> [16628] endangered: 2 +> [16629] endangering: 1 +> [16630] endear: 1 +> [16631] endeared: 2 +> [16632] endearing: 2 +> [16633] endearment: 1 +> [16634] endearments: 3 +> [16635] endears: 1 +> [16636] endeavor: 34 +> [16637] endeavored: 4 +> [16638] endeavoring: 4 +> [16639] endeavors: 8 +> [16640] endeavour: 6 +> [16641] endeavoured: 10 +> [16642] endeavouring: 6 +> [16643] endeavours: 1 +> [16644] ended: 153 +> [16645] ending: 30 +> [16646] endings: 2 +> [16647] endless: 32 +> [16648] endlessly: 4 +> [16649] endorse: 1 +> [16650] endorsed: 1 +> [16651] endorsement: 2 +> [16652] endow: 1 +> [16653] endowed: 18 +> [16654] endowment: 11 +> [16655] endowments: 1 +> [16656] ends: 70 +> [16657] ends--or: 1 +> [16658] ends--the: 1 +> [16659] enduce: 1 +> [16660] endurance: 27 +> [16661] endurance--acknowledged: 1 +> [16662] endure: 102 +> [16663] endure! [16664] endured: 30 +> [16665] endured. [16666] endures: 3 +> [16667] endureth: 1 +> [16668] enduring: 11 +> [16669] enemies: 95 +> [16670] enemies--ha: 1 +> [16671] enemy: 276 +> [16672] enemy's: 64 +> [16673] enemy--that: 1 +> [16674] enemy--with: 1 +> [16675] enemy’s: 1 +> [16676] enendons: 1 +> [16677] energetic: 21 +> [16678] energetically: 9 +> [16679] energies: 12 +> [16680] energique: 1 +> [16681] energy: 75 +> [16682] energy--"the: 1 +> [16683] enervated: 1 +> [16684] enfant: 6 +> [16685] enfants: 3 +> [16686] enfeebled: 5 +> [16687] enfers: 1 +> [16688] enfin: 1 +> [16689] enfin, [16690] enflammé.’: 1 +> [16691] enfold: 1 +> [16692] enfolded: 2 +> [16693] enforce: 3 +> [16694] enforced: 2 +> [16695] enforcement: 1 +> [16696] enforces: 1 +> [16697] eng: 1 +> [16698] engage: 17 +> [16699] engaged: 135 +> [16700] engaged--engaged: 1 +> [16701] engagement: 84 +> [16702] engagement--intervened: 1 +> [16703] engagement [16704] engagements: 10 +> [16705] engages: 2 +> [16706] engaging: 8 +> [16707] engin: 1 +> [16708] engine: 9 +> [16709] engine-driver: 1 +> [16710] engineer: 1 +> [16711] engineered: 1 +> [16712] engineering: 5 +> [16713] engineering--that: 2 +> [16714] engineers: 4 +> [16715] engines: 3 +> [16716] engl: 15 +> [16717] england: 129 +> [16718] england'll: 1 +> [16719] england's: 4 +> [16720] englandward: 1 +> [16721] english: 208 +> [16722] english-speaking: 1 +> [16723] englishman: 44 +> [16724] englishman's: 3 +> [16725] englishman--ay: 1 +> [16726] englishmen: 8 +> [16727] englishmen, [16728] englishmen--some: 1 +> [16729] englishwoman: 4 +> [16730] engouement: 1 +> [16731] engouements: 1 +> [16732] engrafted: 1 +> [16733] engrave: 1 +> [16734] engraved: 7 +> [16735] engravings: 6 +> [16736] engrele: 1 +> [16737] engross: 2 +> [16738] engrossed: 28 +> [16739] engrossing: 2 +> [16740] engulfed: 1 +> [16741] engulfing: 1 +> [16742] enhance: 2 +> [16743] enhanced: 2 +> [16744] enigma: 9 +> [16745] enigmatic: 14 +> [16746] enigmatical: 2 +> [16747] enigmatically: 4 +> [16748] enjoin: 3 +> [16749] enjoined: 5 +> [16750] enjoining: 2 +> [16751] enjoy: 69 +> [16752] enjoyable: 5 +> [16753] enjoyed: 69 +> [16754] enjoyed--that: 1 +> [16755] enjoyers: 1 +> [16756] enjoying: 55 +> [16757] enjoyment: 115 +> [16758] enjoyment--the: 2 +> [16759] enjoyments: 4 +> [16760] enjoys: 7 +> [16761] enlarge: 7 +> [16762] enlarged: 18 +> [16763] enlargement: 5 +> [16764] enlarges: 2 +> [16765] enlarging: 3 +> [16766] enlighten: 4 +> [16767] enlightened: 22 +> [16768] enlightened--people: 1 +> [16769] enlighteners: 1 +> [16770] enlightenment: 18 +> [16771] enlist: 1 +> [16772] enlisted: 1 +> [16773] enliven: 5 +> [16774] enlivened: 4 +> [16775] enlivening: 1 +> [16776] enlivens: 1 +> [16777] enmeshed: 3 +> [16778] enmities: 1 +> [16779] enmity: 7 +> [16780] ennoble: 2 +> [16781] ennobled: 3 +> [16782] ennobles: 1 +> [16783] enns: 10 +> [16784] ennui: 9 +> [16785] enoch: 9 +> [16786] enoch's: 1 +> [16787] enormous: 65 +> [16788] enormously: 11 +> [16789] enos: 1 +> [16790] enough: 832 +> [16791] enough! [16792] enough—but: 2 +> [16793] enough, [16794] enough--"i: 1 +> [16795] enough--enough: 1 +> [16796] enough--have: 1 +> [16797] enough--i: 1 +> [16798] enough--let: 1 +> [16799] enough--taking: 1 +> [16800] enough--that: 1 +> [16801] enough--that's: 1 +> [16802] enough--this: 1 +> [16803] enough. [16804] enough.’: 1 +> [16805] enquire: 7 +> [16806] enquiries: 1 +> [16807] enrage: 1 +> [16808] enraged: 11 +> [16809] enragée: 1 +> [16810] enraptured: 9 +> [16811] enrich: 5 +> [16812] enriched: 5 +> [16813] enrichment: 1 +> [16814] enrolled: 9 +> [16815] enrollment: 4 +> [16816] enshrined: 3 +> [16817] ensign: 7 +> [16818] ensigns--their: 1 +> [16819] enslave: 1 +> [16820] enslaved: 2 +> [16821] ensnared: 2 +> [16822] ensue: 3 +> [16823] ensued: 10 +> [16824] ensuing: 4 +> [16825] ensure: 9 +> [16826] ensured: 1 +> [16827] ensures: 1 +> [16828] ensuring: 20 +> [16829] entailed: 1 +> [16830] entailing: 1 +> [16831] entangled: 10 +> [16832] entanglements: 2 +> [16833] entangles: 1 +> [16834] entangling: 1 +> [16835] enter: 202 +> [16836] enter--but: 1 +> [16837] entered: 468 +> [16838] entered--"absurdity: 1 +> [16839] entered--a: 1 +> [16840] entering: 140 +> [16841] enterprise: 22 +> [16842] enterprise--as: 1 +> [16843] enterprises: 5 +> [16844] enterprising: 2 +> [16845] enters: 25 +> [16846] entertain: 36 +> [16847] entertained: 28 +> [16848] entertainer: 1 +> [16849] entertainers: 2 +> [16850] entertaining: 12 +> [16851] entertainingly--only: 1 +> [16852] entertainment: 22 +> [16853] entertainments: 12 +> [16854] entertains: 2 +> [16855] enthronement: 1 +> [16856] enthusiasm: 88 +> [16857] enthusiasm--news: 1 +> [16858] enthusiasm--was: 1 +> [16859] enthusiasms: 5 +> [16860] enthusiast: 3 +> [16861] enthusiast's: 1 +> [16862] enthusiastic: 33 +> [16863] enthusiastically: 14 +> [16864] enthusiastically,--"and: 1 +> [16865] enthusiastically--followed: 1 +> [16866] enthusiasts: 1 +> [16867] entice: 2 +> [16868] enticed: 2 +> [16869] enticing: 3 +> [16870] enticingly: 1 +> [16871] entire: 44 +> [16872] entirely: 200 +> [16873] entirely, [16874] entirely--that: 1 +> [16875] entirety: 5 +> [16876] entitle: 2 +> [16877] entitled: 17 +> [16878] entitles: 2 +> [16879] entitling: 1 +> [16880] entity: 58 +> [16881] entr'acte: 5 +> [16882] entrails: 1 +> [16883] entrance: 169 +> [16884] entrance-door: 1 +> [16885] entrance-hall: 4 +> [16886] entrance. [16887] entrances: 3 +> [16888] entrancing: 1 +> [16889] entrap: 1 +> [16890] entrapped: 2 +> [16891] entreat: 24 +> [16892] entreated: 17 +> [16893] entreaties: 16 +> [16894] entreating: 7 +> [16895] entreatingly: 1 +> [16896] entreats: 2 +> [16897] entreaty: 21 +> [16898] entree: 1 +> [16899] entrench: 1 +> [16900] entrenched: 4 +> [16901] entrenchment: 5 +> [16902] entrenchments: 8 +> [16903] entrez: 4 +> [16904] entries: 2 +> [16905] entrust: 3 +> [16906] entrusted: 45 +> [16907] entrusting: 2 +> [16908] entrusts: 1 +> [16909] entry: 46 +> [16910] entrée: 2 +> [16911] entweat: 1 +> [16912] enumerate: 4 +> [16913] enumerated: 3 +> [16914] enumerating: 1 +> [16915] enumeration: 1 +> [16916] enunciated: 5 +> [16917] enunciation: 2 +> [16918] envelope: 108 +> [16919] envelope—they: 1 +> [16920] envelope. [16921] envelope [16922] envelope? [16923] enveloped: 13 +> [16924] envelopes: 3 +> [16925] envelopes—one: 1 +> [16926] enveloping: 3 +> [16927] envenomed: 1 +> [16928] enviable: 1 +> [16929] envied: 22 +> [16930] envied.”: 1 +> [16931] envies: 2 +> [16932] envious: 35 +> [16933] enviously: 3 +> [16934] environment: 24 +> [16935] environment, [16936] environment. [16937] environs: 3 +> [16938] envisagez: 1 +> [16939] envoy: 12 +> [16940] envoy--especially: 1 +> [16941] envoys: 2 +> [16942] envy: 52 +> [16943] envying: 4 +> [16944] enwich: 1 +> [16945] enzyme: 2 +> [16946] enzymes: 8 +> [16947] eolus: 1 +> [16948] eosine: 1 +> [16949] ep: 1 +> [16950] epanchin: 188 +> [16951] epanchin's: 17 +> [16952] epanchin--oh: 1 +> [16953] epanchins: 65 +> [16954] epanchins',--and: 1 +> [16955] epanchins;--which: 1 +> [16956] epaphras: 3 +> [16957] epaulet: 2 +> [16958] epaulets: 8 +> [16959] epaulettes: 7 +> [16960] eph: 4 +> [16961] ephemeral: 3 +> [16962] ephesian: 3 +> [16963] ephesians: 16 +> [16964] ephesus: 43 +> [16965] epic: 2 +> [16966] epicure: 3 +> [16967] epigram: 6 +> [16968] epigrammatic: 1 +> [16969] epigrams: 3 +> [16970] epilepsy: 9 +> [16971] epileptic: 21 +> [16972] epileptics—messengers: 1 +> [16973] epileptics. [16974] epilogue: 24 +> [16975] epilogue! [16976] epilogues: 4 +> [16977] epiphanius: 4 +> [16978] epiphany: 1 +> [16979] episode: 38 +> [16980] episodes: 3 +> [16981] epistle: 37 +> [16982] epistles: 125 +> [16983] epistolary: 4 +> [16984] epitaph: 1 +> [16985] epithet: 4 +> [16986] epithets: 4 +> [16987] epitome: 2 +> [16988] epoch: 14 +> [16989] epoch—that: 1 +> [16990] epoch-making: 2 +> [16991] eprouver: 1 +> [16992] equable: 5 +> [16993] equal: 136 +> [16994] equal. [16995] equaled: 1 +> [16996] equality: 30 +> [16997] equalizes: 1 +> [16998] equalled: 2 +> [16999] equally: 101 +> [17000] equally. [17001] equals: 15 +> [17002] equanimity: 2 +> [17003] equation: 3 +> [17004] equations: 5 +> [17005] equerry's: 1 +> [17006] equestrian: 1 +> [17007] equip: 2 +> [17008] equipage: 3 +> [17009] equipages: 1 +> [17010] equipment: 89 +> [17011] equipped: 8 +> [17012] equitable: 1 +> [17013] equity: 3 +> [17014] equivalence: 1 +> [17015] equivalent: 22 +> [17016] equivalents: 3 +> [17017] era: 2 +> [17018] eradicate: 8 +> [17019] eradicated: 1 +> [17020] eradicating: 1 +> [17021] erase: 3 +> [17022] erased: 3 +> [17023] erasures: 1 +> [17024] ere: 5 +> [17025] erect: 37 +> [17026] erected: 7 +> [17027] erection: 4 +> [17028] eresby: 3 +> [17029] erfurt: 6 +> [17030] ergushovo: 9 +> [17031] erith: 1 +> [17032] erlaucht: 2 +> [17033] erlenmeyer: 6 +> [17034] ermine: 2 +> [17035] ermishin: 1 +> [17036] ermolov: 28 +> [17037] ermolov's: 4 +> [17038] ermolovs: 1 +> [17039] ernest: 1 +> [17040] eropegoff: 10 +> [17041] eropegoff!--kapiton--major: 1 +> [17042] eropegoff--eroshka: 1 +> [17043] eropegoff--not: 1 +> [17044] eroshka: 3 +> [17045] err: 6 +> [17046] errand: 24 +> [17047] errand--or: 1 +> [17048] errand-boy: 2 +> [17049] errands: 2 +> [17050] errands. [17051] errant: 3 +> [17052] errare: 1 +> [17053] erratic: 3 +> [17054] erred: 1 +> [17055] erring: 4 +> [17056] erroneous: 3 +> [17057] erroneousness: 1 +> [17058] error: 65 +> [17059] error's: 4 +> [17060] error.”: 1 +> [17061] error [17062] errorists: 1 +> [17063] errors: 35 +> [17064] errors.’: 1 +> [17065] erucic: 1 +> [17066] erudition: 1 +> [17067] eruption: 1 +> [17068] erza: 9 +> [17069] es: 2 +> [17070] esaul: 31 +> [17071] esaul's: 1 +> [17072] escaladed: 1 +> [17073] escapade: 6 +> [17074] escape: 238 +> [17075] escape!"--from: 1 +> [17076] escape—a: 1 +> [17077] escape--i: 1 +> [17078] escape--if: 1 +> [17079] escape [17080] escaped: 74 +> [17081] escapes: 5 +> [17082] escaping: 22 +> [17083] escaping--going: 1 +> [17084] eschatological: 2 +> [17085] eschatologist: 1 +> [17086] eschatology: 8 +> [17087] escheaters: 1 +> [17088] eschew: 2 +> [17089] eschewed: 1 +> [17090] eschweger: 6 +> [17091] escort: 54 +> [17092] escorted: 22 +> [17093] escorting: 12 +> [17094] escorts: 1 +> [17095] escutcheon: 1 +> [17096] esdraelon: 1 +> [17097] esdras: 4 +> [17098] especial: 9 +> [17099] especially: 612 +> [17100] especially—and: 1 +> [17101] especially—often: 1 +> [17102] especially. [17103] esper: 1 +> [17104] espied: 9 +> [17105] espoused: 1 +> [17106] espy: 1 +> [17107] espying: 1 +> [17108] esq: 2 +> [17109] esquire: 2 +> [17110] essay: 1 +> [17111] essayist: 1 +> [17112] essays: 1 +> [17113] essen: 1 +> [17114] essence: 43 +> [17115] essence's: 1 +> [17116] essence--of: 1 +> [17117] essential: 125 +> [17118] essential, [17119] essential--would: 1 +> [17120] essential [17121] essentially: 14 +> [17122] essentials: 3 +> [17123] essex: 1 +> [17124] est: 24 +> [17125] est-ce: 1 +> [17126] est_--you: 1 +> [17127] establish: 14 +> [17128] established: 66 +> [17129] establishing: 3 +> [17130] establishment: 20 +> [17131] establishment--ardalion: 1 +> [17132] establishment--devil: 1 +> [17133] establishments: 9 +> [17134] estate: 129 +> [17135] estate—was: 1 +> [17136] estates: 54 +> [17137] estates--and: 1 +> [17138] estates--such: 1 +> [17139] esteem: 42 +> [17140] esteemed: 25 +> [17141] esteeming: 3 +> [17142] esteems: 6 +> [17143] ester: 1 +> [17144] esters: 3 +> [17145] esther: 1 +> [17146] esthetic: 2 +> [17147] esthetically: 1 +> [17148] estimable: 7 +> [17149] estimate: 9 +> [17150] estimated: 4 +> [17151] estimates: 1 +> [17152] estimation: 6 +> [17153] estime: 1 +> [17154] estrange: 3 +> [17155] estranged: 1 +> [17156] estrangement: 9 +> [17157] et: 48 +> [17158] etait: 1 +> [17159] etats: 1 +> [17160] etc: 76 +> [17161] etc.--morality: 1 +> [17162] etcetera: 1 +> [17163] etched: 1 +> [17164] eternal: 82 +> [17165] eternally: 6 +> [17166] eternity: 24 +> [17167] eternity! [17168] eternity? [17169] etes: 2 +> [17170] etext: 6 +> [17171] ether: 26 +> [17172] ether--redistilled: 1 +> [17173] ethereal: 2 +> [17174] etherealised: 1 +> [17175] ethical: 6 +> [17176] ethics: 5 +> [17177] ethics? [17178] ethiopia: 1 +> [17179] ethnographic: 2 +> [17180] ethnographical: 2 +> [17181] ethyl: 7 +> [17182] etienne: 1 +> [17183] etiquette: 76 +> [17184] etiquette--to: 1 +> [17185] etiquettes: 1 +> [17186] etranger: 2 +> [17187] etre: 1 +> [17188] etruria: 132 +> [17189] etruria'd: 1 +> [17190] etruria's: 20 +> [17191] etruria--beautiful: 1 +> [17192] etymological: 1 +> [17193] eucharist: 1 +> [17194] euclid: 2 +> [17195] euclid's: 1 +> [17196] euclidian: 4 +> [17197] euer: 1 +> [17198] eugene: 1 +> [17199] eulogy: 1 +> [17200] euphrates: 28 +> [17201] euphratian: 1 +> [17202] eureka: 1 +> [17203] europe: 124 +> [17204] europe--except: 1 +> [17205] europe--which: 1 +> [17206] europe? [17207] european: 64 +> [17208] europeans: 2 +> [17209] eusebius: 12 +> [17210] euston: 2 +> [17211] eut: 1 +> [17212] eutectic: 2 +> [17213] ev'wything: 1 +> [17214] eva: 2 +> [17215] evacuate: 2 +> [17216] evacuated: 1 +> [17217] evacuation: 3 +> [17218] evade: 4 +> [17219] evaded: 4 +> [17220] evading: 3 +> [17221] evaleen: 5 +> [17222] evaleen·stein·: 1 +> [17223] evangelic: 10 +> [17224] evangelical: 2 +> [17225] evangelist: 19 +> [17226] evangelist's: 2 +> [17227] evangelistic: 1 +> [17228] evangelists: 6 +> [17229] evangelization: 3 +> [17230] evangelized: 2 +> [17231] evangelizes: 1 +> [17232] evans: 1 +> [17233] evaporate: 13 +> [17234] evaporated: 20 +> [17235] evaporates: 1 +> [17236] evaporating: 3 +> [17237] evaporation: 9 +> [17238] evaporator: 11 +> [17239] evasion: 3 +> [17240] evasions: 1 +> [17241] evasively: 4 +> [17242] evasiveness: 1 +> [17243] eve: 46 +> [17244] eveille: 1 +> [17245] even: 3433 +> [17246] even! [17247] even—have: 1 +> [17248] even, [17249] even--all: 1 +> [17250] even--anything: 1 +> [17251] even--as: 1 +> [17252] even--he: 1 +> [17253] even--no: 1 +> [17254] even--speak: 1 +> [17255] even-tempered: 1 +> [17256] even-thudding: 1 +> [17257] even [17258] evening: 867 +> [17259] evening! [17260] evening—though: 1 +> [17261] evening's: 2 +> [17262] evening, [17263] evening--after: 1 +> [17264] evening--again: 1 +> [17265] evening--and: 1 +> [17266] evening--do: 1 +> [17267] evening--evening: 1 +> [17268] evening--i: 1 +> [17269] evening--if: 1 +> [17270] evening--in: 1 +> [17271] evening--particularly: 1 +> [17272] evening--that's: 1 +> [17273] evening--the: 1 +> [17274] evening--to: 1 +> [17275] evening--without: 2 +> [17276] evening-dress: 1 +> [17277] evening. [17278] evenings: 40 +> [17279] evenings--they: 1 +> [17280] evening’s: 1 +> [17281] evenly: 20 +> [17282] evenness: 1 +> [17283] event: 158 +> [17284] event—it: 1 +> [17285] event--from: 1 +> [17286] event--the: 2 +> [17287] event--which: 1 +> [17288] eventful: 3 +> [17289] events: 289 +> [17290] events!--twelve: 1 +> [17291] events--again: 1 +> [17292] events--if: 1 +> [17293] events--sometimes: 1 +> [17294] events--the: 2 +> [17295] eventual: 1 +> [17296] eventualities: 4 +> [17297] eventuality: 3 +> [17298] eventually: 26 +> [17299] ever: 935 +> [17300] ever! [17301] ever—he: 1 +> [17302] ever—his: 1 +> [17303] ever—katerina: 1 +> [17304] ever, [17305] ever--entered: 1 +> [17306] ever--it: 1 +> [17307] ever--not: 1 +> [17308] ever--the: 2 +> [17309] ever--you: 1 +> [17310] ever-burning: 1 +> [17311] ever-changing: 1 +> [17312] ever-faithful: 1 +> [17313] ever-glowing: 1 +> [17314] ever-growing: 2 +> [17315] ever-increasing: 6 +> [17316] ever-living: 1 +> [17317] ever-lucky: 1 +> [17318] ever-manifest: 1 +> [17319] ever-present: 2 +> [17320] ever-quickening: 1 +> [17321] ever-recurring: 1 +> [17322] ever. [17323] ever.”: 1 +> [17324] ever [17325] ever? [17326] evergreen: 2 +> [17327] evergreens: 2 +> [17328] everhart: 2 +> [17329] everlasting: 44 +> [17330] everlastingly: 4 +> [17331] every: 2000 +> [17332] every-day: 4 +> [17333] everybody: 217 +> [17334] everybody's: 8 +> [17335] everybody--and: 1 +> [17336] everybody--both: 1 +> [17337] everybody--tired: 1 +> [17338] everybody’s: 1 +> [17339] everyday: 21 +> [17340] everyone: 570 +> [17341] everyone's: 14 +> [17342] everyone--especially: 1 +> [17343] everyone--even: 1 +> [17344] everyone--he: 1 +> [17345] everyone--i'd: 1 +> [17346] everyone--that: 1 +> [17347] everyone--the: 2 +> [17348] everything: 1554 +> [17349] everything! [17350] everything— [17351] everything—even: 1 +> [17352] everything—every: 2 +> [17353] everything—everything! [17354] everything'll: 1 +> [17355] everything's: 14 +> [17356] everything, [17357] everything--a: 1 +> [17358] everything--at: 1 +> [17359] everything--everything: 1 +> [17360] everything--far: 1 +> [17361] everything--freedom: 1 +> [17362] everything--i: 1 +> [17363] everything--in: 1 +> [17364] everything--lebedeff: 1 +> [17365] everything--magnitski: 1 +> [17366] everything--my: 3 +> [17367] everything--only: 1 +> [17368] everything--that: 4 +> [17369] everything--that's: 1 +> [17370] everything--the: 2 +> [17371] everything--well: 1 +> [17372] everything...told: 1 +> [17373] everything. [17374] everything? [17375] everywhere: 154 +> [17376] everywhere--at: 1 +> [17377] everywhere--on: 2 +> [17378] everywhere--that: 1 +> [17379] everywhere...a--a--a: 1 +> [17380] evewybody: 1 +> [17381] evewyone: 1 +> [17382] evewything: 1 +> [17383] evgenie: 217 +> [17384] evgenie's: 10 +> [17385] evidence: 259 +> [17386] evidence—the: 1 +> [17387] evidence, [17388] evidence--that's: 1 +> [17389] evidence. [17390] evidence? [17391] evidenced: 2 +> [17392] evidences: 11 +> [17393] evident: 177 +> [17394] evident. [17395] evidently: 591 +> [17396] evil: 187 +> [17397] evil--the: 1 +> [17398] evil-doer: 2 +> [17399] evil-doers: 2 +> [17400] evil-doing: 4 +> [17401] evil-intentioned: 1 +> [17402] evil-minded: 1 +> [17403] evil-smelling: 1 +> [17404] evil-star: 1 +> [17405] evil? [17406] evildoer: 2 +> [17407] evilly: 1 +> [17408] evils: 19 +> [17409] evince: 3 +> [17410] evinced: 5 +> [17411] evinces: 4 +> [17412] evoke: 3 +> [17413] evoked: 17 +> [17414] evokes: 1 +> [17415] evoking: 3 +> [17416] evolution: 9 +> [17417] evolutions: 1 +> [17418] evolved: 1 +> [17419] evolved [17420] evreux: 2 +> [17421] evstafey's: 1 +> [17422] evstafey--his: 1 +> [17423] ewig: 1 +> [17424] ex: 1 +> [17425] ex'len-lency: 1 +> [17426] ex-captain: 2 +> [17427] ex-elder: 1 +> [17428] ex-ex-excellency: 1 +> [17429] ex-lieutenant: 2 +> [17430] ex-minister: 2 +> [17431] ex-patient: 1 +> [17432] exact: 54 +> [17433] exacted: 3 +> [17434] exacting: 7 +> [17435] exactions: 1 +> [17436] exactitude: 6 +> [17437] exactly: 226 +> [17438] exactly, [17439] exactly? [17440] exactness: 3 +> [17441] exacts: 1 +> [17442] exaggerate: 18 +> [17443] exaggerated: 52 +> [17444] exaggerating: 18 +> [17445] exaggerating--if: 1 +> [17446] exaggeration: 19 +> [17447] exaggerations: 1 +> [17448] exalt: 7 +> [17449] exaltation: 14 +> [17450] exalted: 50 +> [17451] exalting: 1 +> [17452] examination: 50 +> [17453] examinations: 7 +> [17454] examine: 51 +> [17455] examine:—: 1 +> [17456] examined: 93 +> [17457] examiner: 1 +> [17458] examines: 4 +> [17459] examining: 63 +> [17460] example: 122 +> [17461] example! [17462] example--simply: 1 +> [17463] examples: 25 +> [17464] exasperate: 3 +> [17465] exasperated: 51 +> [17466] exasperating: 7 +> [17467] exasperation: 16 +> [17468] excavations: 1 +> [17469] exceed: 14 +> [17470] exceeded: 7 +> [17471] exceeding: 7 +> [17472] exceedingly: 75 +> [17473] exceedingly--he: 1 +> [17474] exceedingly.’: 1 +> [17475] exceeds: 4 +> [17476] excel: 3 +> [17477] excelled: 1 +> [17478] excellence: 9 +> [17479] excellence.”: 1 +> [17480] excellences: 2 +> [17481] excellency: 208 +> [17482] excellency's: 12 +> [17483] excellency, [17484] excellency--i: 1 +> [17485] excellent: 142 +> [17486] excellent--but: 1 +> [17487] except: 367 +> [17488] except--except: 1 +> [17489] excepted: 9 +> [17490] excepting: 24 +> [17491] exception: 45 +> [17492] exceptional: 39 +> [17493] exceptionally: 17 +> [17494] exceptionalness: 1 +> [17495] exceptions: 11 +> [17496] exceptions--and: 1 +> [17497] excess: 70 +> [17498] excess--to: 1 +> [17499] excess_--the: 1 +> [17500] excesses: 7 +> [17501] excessive: 18 +> [17502] excessive, [17503] excessively: 22 +> [17504] excessivement: 1 +> [17505] exchange: 29 +> [17506] exchange--it's: 1 +> [17507] exchanged: 65 +> [17508] exchanging: 19 +> [17509] exchequer: 4 +> [17510] excise: 4 +> [17511] excitability: 1 +> [17512] excitable: 4 +> [17513] excite: 31 +> [17514] excited: 250 +> [17515] excited--"good: 1 +> [17516] excited--for: 1 +> [17517] excited--that's: 1 +> [17518] excitedly: 30 +> [17519] excitement: 307 +> [17520] excitement--and: 1 +> [17521] excitements: 1 +> [17522] excites: 6 +> [17523] exciting: 19 +> [17524] exclaim: 9 +> [17525] exclaim. [17526] exclaimed: 277 +> [17527] exclaimed--for: 1 +> [17528] exclaiming: 14 +> [17529] exclaims: 2 +> [17530] exclamation: 28 +> [17531] exclamations: 46 +> [17532] exclude: 7 +> [17533] excluded: 6 +> [17534] excludes: 4 +> [17535] excluding: 4 +> [17536] exclusion: 32 +> [17537] exclusive: 8 +> [17538] exclusively: 18 +> [17539] exclusiveness: 1 +> [17540] excommunicate: 1 +> [17541] excommunication: 3 +> [17542] excommunication.’: 1 +> [17543] excrement: 2 +> [17544] excruciating: 1 +> [17545] excursion: 4 +> [17546] excursions: 9 +> [17547] excusable: 7 +> [17548] excuse: 241 +> [17549] excused: 13 +> [17550] excuses: 10 +> [17551] excusing: 8 +> [17552] execrable: 2 +> [17553] execrated: 2 +> [17554] execration: 2 +> [17555] execute: 17 +> [17556] executed: 38 +> [17557] executed—a: 1 +> [17558] executing: 7 +> [17559] execution: 44 +> [17560] executioner: 6 +> [17561] executions: 7 +> [17562] executive: 20 +> [17563] executor: 4 +> [17564] exegesis: 2 +> [17565] exegetics: 1 +> [17566] exemplary: 9 +> [17567] exemplified: 2 +> [17568] exempt: 43 +> [17569] exempted: 3 +> [17570] exemption: 1 +> [17571] exemptions: 8 +> [17572] exercise: 94 +> [17573] exercise--the: 1 +> [17574] exercise-book: 3 +> [17575] exercised: 12 +> [17576] exercises: 14 +> [17577] exercising: 5 +> [17578] exert: 6 +> [17579] exerted: 10 +> [17580] exerting: 2 +> [17581] exertion: 16 +> [17582] exertions: 13 +> [17583] exertions--the: 1 +> [17584] exerts: 1 +> [17585] exeter: 1 +> [17586] exhaled: 1 +> [17587] exhales: 1 +> [17588] exhaling: 1 +> [17589] exhaust: 4 +> [17590] exhausted: 117 +> [17591] exhausting: 3 +> [17592] exhaustion: 28 +> [17593] exhaustive: 1 +> [17594] exhaustively: 1 +> [17595] exhibit: 15 +> [17596] exhibit.”: 1 +> [17597] exhibited: 12 +> [17598] exhibiting: 2 +> [17599] exhibition: 6 +> [17600] exhibitions: 2 +> [17601] exhibits: 6 +> [17602] exhilarated: 4 +> [17603] exhilarating: 3 +> [17604] exhilaration: 3 +> [17605] exhort: 3 +> [17606] exhortation: 25 +> [17607] exhortations: 5 +> [17608] exhorted: 2 +> [17609] exhorting: 1 +> [17610] exhorts: 1 +> [17611] exile: 22 +> [17612] exile--at: 1 +> [17613] exiled: 5 +> [17614] exiles: 2 +> [17615] exist: 126 +> [17616] exist, [17617] exist--just: 1 +> [17618] exist--never: 1 +> [17619] exist.... [17620] exist. [17621] exist? [17622] exist[12: 1 +> [17623] existe: 1 +> [17624] existed: 83 +> [17625] existence: 148 +> [17626] existence! [17627] existence, [17628] existence--and: 2 +> [17629] existence. [17630] existing: 30 +> [17631] exists: 72 +> [17632] exists--the: 1 +> [17633] exit: 6 +> [17634] exodus: 1 +> [17635] exonerate: 1 +> [17636] exorcise: 2 +> [17637] exorcism: 3 +> [17638] exorcisms: 1 +> [17639] exorcists: 2 +> [17640] exotic: 1 +> [17641] expand: 8 +> [17642] expanded: 6 +> [17643] expands: 1 +> [17644] expanse: 12 +> [17645] expanses: 1 +> [17646] expansion: 4 +> [17647] expansive: 5 +> [17648] expect: 234 +> [17649] expect...thee: 1 +> [17650] expect? [17651] expectancy: 5 +> [17652] expectant: 12 +> [17653] expectantly: 2 +> [17654] expectation: 73 +> [17655] expectation--the: 1 +> [17656] expectations: 25 +> [17657] expected: 402 +> [17658] expected— [17659] expected--neither: 1 +> [17660] expected--was: 1 +> [17661] expected?--why: 1 +> [17662] expecting: 216 +> [17663] expecting--from: 1 +> [17664] expects: 18 +> [17665] expediency: 1 +> [17666] expedient: 3 +> [17667] expedient--that: 1 +> [17668] expedite: 1 +> [17669] expedition: 36 +> [17670] expeditions: 3 +> [17671] expeditiously: 1 +> [17672] expel: 3 +> [17673] expelled: 9 +> [17674] expend: 19 +> [17675] expended: 6 +> [17676] expenditure: 14 +> [17677] expenditures: 1 +> [17678] expense: 84 +> [17679] expense. [17680] expenses: 66 +> [17681] expenses;--food: 1 +> [17682] expensive: 43 +> [17683] experience: 143 +> [17684] experience, [17685] experience--the: 1 +> [17686] experienced: 146 +> [17687] experiences: 16 +> [17688] experiencing: 17 +> [17689] experiment: 27 +> [17690] experimental: 2 +> [17691] experimentally: 1 +> [17692] experimented: 1 +> [17693] experiments: 12 +> [17694] expert: 6 +> [17695] experts: 13 +> [17696] expiate: 7 +> [17697] expiated: 4 +> [17698] expiating: 2 +> [17699] expiation: 3 +> [17700] expiration: 1 +> [17701] expire: 2 +> [17702] expired: 3 +> [17703] expiring: 2 +> [17704] explain: 321 +> [17705] explain— [17706] explain--though: 1 +> [17707] explained: 233 +> [17708] explained— [17709] explained. [17710] explaining: 78 +> [17711] explains: 16 +> [17712] explanation: 196 +> [17713] explanation--either: 1 +> [17714] explanation--moved: 4 +> [17715] explanation. [17716] explanations: 40 +> [17717] expletives: 2 +> [17718] explicable: 1 +> [17719] explicit: 5 +> [17720] explicitly: 7 +> [17721] explode: 2 +> [17722] exploded: 4 +> [17723] exploding: 3 +> [17724] exploit: 13 +> [17725] exploited: 1 +> [17726] exploiting: 1 +> [17727] exploits: 15 +> [17728] exploration: 2 +> [17729] explorations: 1 +> [17730] explore: 4 +> [17731] exploring: 1 +> [17732] explosion: 12 +> [17733] explosive: 10 +> [17734] explosives: 1 +> [17735] exponent: 1 +> [17736] exponents: 3 +> [17737] export: 2 +> [17738] exporting: 19 +> [17739] expose: 28 +> [17740] exposed: 51 +> [17741] exposed--and: 1 +> [17742] exposed--beckoned: 1 +> [17743] exposes: 1 +> [17744] exposing: 8 +> [17745] exposition: 15 +> [17746] expositors: 1 +> [17747] expository: 2 +> [17748] expostulated: 1 +> [17749] expostulating: 1 +> [17750] expostulations: 1 +> [17751] exposure: 14 +> [17752] expound: 13 +> [17753] expounded: 5 +> [17754] expounding: 5 +> [17755] express: 220 +> [17756] expressed: 250 +> [17757] expressed)--this: 1 +> [17758] expresses: 16 +> [17759] expressing: 70 +> [17760] expression: 765 +> [17761] expression, [17762] expression--a: 1 +> [17763] expression--as: 1 +> [17764] expression--is: 1 +> [17765] expression--of: 1 +> [17766] expression--the: 1 +> [17767] expression. [17768] expression? [17769] expressionless: 4 +> [17770] expressions: 47 +> [17771] expressive: 24 +> [17772] expressively: 1 +> [17773] expressly: 16 +> [17774] express’d: 1 +> [17775] expulsion: 1 +> [17776] expurgated: 1 +> [17777] exquisite: 58 +> [17778] exquisite--almost: 1 +> [17779] exquisite--such: 1 +> [17780] exquisitely: 11 +> [17781] exsection: 1 +> [17782] extant: 2 +> [17783] extend: 20 +> [17784] extended: 32 +> [17785] extending: 15 +> [17786] extends: 6 +> [17787] extension: 6 +> [17788] extensive: 4 +> [17789] extensively: 27 +> [17790] extent: 110 +> [17791] extent--were: 1 +> [17792] extenuate: 2 +> [17793] extenuates: 1 +> [17794] extenuating: 4 +> [17795] exterior: 8 +> [17796] exterior--he: 1 +> [17797] exterminate: 2 +> [17798] exterminated: 2 +> [17799] extermination: 1 +> [17800] external: 101 +> [17801] externally: 8 +> [17802] externals: 1 +> [17803] extinct: 7 +> [17804] extinction: 1 +> [17805] extinguish: 3 +> [17806] extinguished: 10 +> [17807] extinguisher: 1 +> [17808] extinguishing: 2 +> [17809] extol: 1 +> [17810] extolled: 1 +> [17811] extolling: 2 +> [17812] extort: 2 +> [17813] extorted: 1 +> [17814] extorting: 1 +> [17815] extortion: 2 +> [17816] extortionate: 1 +> [17817] extortions: 1 +> [17818] extra: 21 +> [17819] extract: 16 +> [17820] extracted: 11 +> [17821] extracting: 5 +> [17822] extraction: 11 +> [17823] extractions: 2 +> [17824] extractor: 1 +> [17825] extracts: 4 +> [17826] extraneous: 7 +> [17827] extraordinarily: 51 +> [17828] extraordinary: 195 +> [17829] extraordinary, [17830] extras: 1 +> [17831] extravagance: 12 +> [17832] extravagance--that: 1 +> [17833] extravagances: 2 +> [17834] extravagant: 11 +> [17835] extreme: 133 +> [17836] extreme--we: 1 +> [17837] extremely: 172 +> [17838] extremely--whether: 1 +> [17839] extremes: 20 +> [17840] extremest: 1 +> [17841] extremites: 2 +> [17842] extremities: 1 +> [17843] extremity: 9 +> [17844] extricate: 9 +> [17845] extricated: 3 +> [17846] extricating: 1 +> [17847] extrication: 1 +> [17848] exuberant: 4 +> [17849] exuded: 2 +> [17850] exult: 1 +> [17851] exultant: 4 +> [17852] exultation: 7 +> [17853] exulted: 1 +> [17854] exulting: 3 +> [17855] eydkuhnen: 1 +> [17856] eye: 278 +> [17857] eye--gania: 1 +> [17858] eye--which: 1 +> [17859] eye-glass: 2 +> [17860] eye-shot: 1 +> [17861] eye-witness: 5 +> [17862] eye-witnesses: 3 +> [17863] eyeball: 1 +> [17864] eyebrows: 73 +> [17865] eyed: 11 +> [17866] eyeglass: 2 +> [17867] eyeing: 7 +> [17868] eyelash: 1 +> [17869] eyelashes: 19 +> [17870] eyelid: 2 +> [17871] eyelids: 16 +> [17872] eyes: 3222 +> [17873] eyes— [17874] eyes—told: 1 +> [17875] eyes—a: 1 +> [17876] eyes—so: 1 +> [17877] eyes,--by: 1 +> [17878] eyes, [17879] eyes--"will: 1 +> [17880] eyes--and: 4 +> [17881] eyes--before: 1 +> [17882] eyes--but: 4 +> [17883] eyes--child's: 1 +> [17884] eyes--for: 1 +> [17885] eyes--had: 1 +> [17886] eyes--how: 1 +> [17887] eyes--large: 1 +> [17888] eyes--met: 1 +> [17889] eyes--only: 1 +> [17890] eyes--she: 2 +> [17891] eyes--showing: 1 +> [17892] eyes--stood: 3 +> [17893] eyes--the: 4 +> [17894] eyes--though: 1 +> [17895] eyes--to: 1 +> [17896] eyes--under: 1 +> [17897] eyes--was: 1 +> [17898] eyes--yes: 1 +> [17899] eyes. [17900] eyewitnesses: 1 +> [17901] eying: 12 +> [17902] eykhen: 2 +> [17903] eylau: 1 +> [17904] eyrie: 1 +> [17905] ezekiel: 1 +> [17906] ezra: 1 +> [17907] ezra's: 1 +> [17908] f: 160 +> [17909] f-f-flop: 1 +> [17910] f.).[30: 1 +> [17911] f.b.a: 2 +> [17912] f3: 10 +> [17913] fable: 10 +> [17914] fables: 1 +> [17915] fabric: 2 +> [17916] fabrication: 3 +> [17917] fabrics: 1 +> [17918] fabrikoid: 2 +> [17919] fabulous: 2 +> [17920] fabvier: 5 +> [17921] fabvier's: 1 +> [17922] facade: 1 +> [17923] face: 3316 +> [17924] face!--it: 1 +> [17925] face! [17926] face—half: 1 +> [17927] face—what's: 1 +> [17928] face)--"who: 1 +> [17929] face, [17930] face--"i: 1 +> [17931] face--"nevertheless: 1 +> [17932] face--"of: 1 +> [17933] face--"the: 1 +> [17934] face--a: 5 +> [17935] face--always: 1 +> [17936] face--and: 1 +> [17937] face--fair: 1 +> [17938] face--he: 1 +> [17939] face--i: 1 +> [17940] face--it: 1 +> [17941] face--look: 1 +> [17942] face--my: 1 +> [17943] face--so: 1 +> [17944] face--to: 1 +> [17945] face--twice: 1 +> [17946] face--was: 1 +> [17947] face--which: 1 +> [17948] face--why: 2 +> [17949] face. [17950] face? [17951] faced: 49 +> [17952] faces: 394 +> [17953] faces! [17954] faces--"that: 1 +> [17955] faces--an: 1 +> [17956] faces--and: 1 +> [17957] faces--for: 1 +> [17958] faces--i: 1 +> [17959] faces--one: 1 +> [17960] faces--staring: 1 +> [17961] faces--that: 2 +> [17962] faces--when: 1 +> [17963] faces. [17964] faceted: 2 +> [17965] facetious: 3 +> [17966] fachons: 1 +> [17967] facile: 1 +> [17968] facilitate: 1 +> [17969] facilitating: 1 +> [17970] facilities: 5 +> [17971] facility: 24 +> [17972] facing: 103 +> [17973] facings: 5 +> [17974] fact: 1111 +> [17975] fact—and: 1 +> [17976] fact—established: 1 +> [17977] fact—takes: 1 +> [17978] fact—that: 1 +> [17979] fact—the: 1 +> [17980] fact—we: 1 +> [17981] fact, [17982] fact--and: 1 +> [17983] fact--informs: 1 +> [17984] fact--resting: 1 +> [17985] fact--that: 2 +> [17986] fact. [17987] faction: 3 +> [17988] factions: 2 +> [17989] factious: 1 +> [17990] factiousness: 1 +> [17991] factor: 22 +> [17992] factor--the: 1 +> [17993] factories: 14 +> [17994] factors: 8 +> [17995] factory: 22 +> [17996] factotum: 1 +> [17997] facts: 180 +> [17998] facts--i: 1 +> [17999] facts--or: 1 +> [18000] facts--that: 2 +> [18001] facts. [18002] faculties: 24 +> [18003] faculties. [18004] faculty: 28 +> [18005] fad: 1 +> [18006] fade: 6 +> [18007] faded: 29 +> [18008] fading: 9 +> [18009] fagged: 3 +> [18010] fagging: 1 +> [18011] faggot-stack: 1 +> [18012] fagots: 1 +> [18013] fahrenheit: 10 +> [18014] fahrion: 1 +> [18015] fahrion's: 3 +> [18016] fail: 92 +> [18017] fail, [18018] fail--my: 1 +> [18019] fail. [18020] failed: 127 +> [18021] failed--i: 1 +> [18022] failing: 37 +> [18023] failings: 7 +> [18024] fails: 21 +> [18025] failure: 38 +> [18026] failure,--and: 1 +> [18027] failure--as: 1 +> [18028] failure--this: 1 +> [18029] failure. [18030] failures: 8 +> [18031] fain: 17 +> [18032] faint: 137 +> [18033] faint-hearted: 1 +> [18034] faint-heartedness: 1 +> [18035] fainted: 18 +> [18036] fainter: 4 +> [18037] faintest: 23 +> [18038] faintest! [18039] fainthearted: 4 +> [18040] faintheartedness: 1 +> [18041] fainting: 30 +> [18042] faintly: 69 +> [18043] faintness: 2 +> [18044] faints: 1 +> [18045] fair: 155 +> [18046] fair-ground: 1 +> [18047] fair-haired: 16 +> [18048] fair-skinned: 1 +> [18049] fairbanks: 19 +> [18050] faire: 10 +> [18051] fairer: 1 +> [18052] fairest: 2 +> [18053] fairing: 1 +> [18054] fairly: 82 +> [18055] fairness: 3 +> [18056] fairs: 3 +> [18057] fairy: 13 +> [18058] fairy's: 1 +> [18059] fairy-land: 1 +> [18060] fairy-tale: 1 +> [18061] fairy-tales: 3 +> [18062] fairyland: 4 +> [18063] fais: 2 +> [18064] faisait: 1 +> [18065] fait: 12 +> [18066] faites: 1 +> [18067] faith: 303 +> [18068] faith! [18069] faith,--about: 1 +> [18070] faith, [18071] faith--i: 1 +> [18072] faith--not: 1 +> [18073] faith--or: 2 +> [18074] faith--we: 1 +> [18075] faith. [18076] faith [18077] faith [18078] faith? [18079] faithful: 44 +> [18080] faithful-by: 1 +> [18081] faithful;’: 1 +> [18082] faithfully: 12 +> [18083] faithfulness: 3 +> [18084] faithless: 3 +> [18085] faithlessness: 5 +> [18086] faithlessness—not: 1 +> [18087] faiths: 1 +> [18088] faiwy: 1 +> [18089] fake: 1 +> [18090] falcon: 7 +> [18091] falconet: 1 +> [18092] fall: 364 +> [18093] fall--familiar: 1 +> [18094] fall--i: 1 +> [18095] fall--kuzovlev's: 1 +> [18096] fall--you: 1 +> [18097] fall. [18098] fall? [18099] fallacious: 2 +> [18100] fallacy: 4 +> [18101] fallen: 220 +> [18102] fallen--money: 1 +> [18103] falleth: 2 +> [18104] fallibility: 2 +> [18105] falling: 158 +> [18106] fallow: 9 +> [18107] fallows: 1 +> [18108] falls: 55 +> [18109] false: 167 +> [18110] false—those: 1 +> [18111] false? [18112] falsehood: 39 +> [18113] falsehoods: 2 +> [18114] falsely: 6 +> [18115] falsely--for: 1 +> [18116] falseness: 1 +> [18117] falsetto: 3 +> [18118] falsified: 1 +> [18119] falsify: 1 +> [18120] falsity: 13 +> [18121] falstaff: 2 +> [18122] falstaffs: 1 +> [18123] falter: 1 +> [18124] faltered: 37 +> [18125] faltering: 12 +> [18126] falteringly: 1 +> [18127] fame: 15 +> [18128] fame--i: 1 +> [18129] famed: 1 +> [18130] fameuse: 1 +> [18131] fameux: 1 +> [18132] familiar: 192 +> [18133] familiar--a: 1 +> [18134] familiarised: 1 +> [18135] familiarity: 33 +> [18136] familiarized: 1 +> [18137] familiarly: 4 +> [18138] familiarly, [18139] families: 46 +> [18140] families--the: 1 +> [18141] family: 661 +> [18142] family—an: 1 +> [18143] family's: 8 +> [18144] family)--when: 1 +> [18145] family,--had: 1 +> [18146] family, [18147] family--a: 1 +> [18148] family--addressed: 1 +> [18149] family--and: 1 +> [18150] family--general: 1 +> [18151] family--her: 1 +> [18152] family--i: 3 +> [18153] family--mine: 1 +> [18154] family--one: 1 +> [18155] family--that: 1 +> [18156] family--the: 2 +> [18157] family.’: 1 +> [18158] family [18159] family? [18160] famine: 22 +> [18161] famine--and: 1 +> [18162] famines: 3 +> [18163] famished: 8 +> [18164] famling: 1 +> [18165] famous: 62 +> [18166] famously: 1 +> [18167] famusov: 1 +> [18168] fan: 28 +> [18169] fan--"that: 1 +> [18170] fan-shaped: 1 +> [18171] fanatic: 4 +> [18172] fanatical: 1 +> [18173] fanatically: 1 +> [18174] fanaticism: 9 +> [18175] fanatics: 4 +> [18176] fancied: 231 +> [18177] fancied—just: 1 +> [18178] fancied—that: 1 +> [18179] fancied--eyes: 1 +> [18180] fancier: 1 +> [18181] fancies: 34 +> [18182] fancies--indeed: 1 +> [18183] fanciful: 11 +> [18184] fancy: 311 +> [18185] fancy! [18186] fancy, [18187] fancy--as: 1 +> [18188] fancy--he: 1 +> [18189] fancy--of: 1 +> [18190] fancy--pitied: 1 +> [18191] fancy--was: 1 +> [18192] fancy. [18193] fancying: 23 +> [18194] fancywork: 1 +> [18195] fanned: 6 +> [18196] fanning: 5 +> [18197] fanny: 2 +> [18198] fans: 4 +> [18199] fantasia: 6 +> [18200] fantasies: 1 +> [18201] fantastic: 83 +> [18202] fantastical: 7 +> [18203] fantastical--that's: 3 +> [18204] fantastically: 9 +> [18205] fantastyk: 1 +> [18206] fantasy: 11 +> [18207] fantasy. [18208] fantods: 1 +> [18209] fanwise: 1 +> [18210] far: 935 +> [18211] far! [18212] far, [18213] far--and: 2 +> [18214] far--in: 1 +> [18215] far--she: 1 +> [18216] far-away: 9 +> [18217] far-distant: 1 +> [18218] far-off: 3 +> [18219] far-reaching: 1 +> [18220] far-sighted: 1 +> [18221] far-stretching: 1 +> [18222] far. [18223] far? [18224] faraway: 4 +> [18225] farce: 20 +> [18226] farce! [18227] farces: 1 +> [18228] fardeau: 4 +> [18229] fare: 17 +> [18230] fare, [18231] fared: 6 +> [18232] fares: 3 +> [18233] farewell: 71 +> [18234] farewell, [18235] farfetched: 1 +> [18236] farinaceous: 1 +> [18237] farincourt: 3 +> [18238] farincourt's: 1 +> [18239] farm: 45 +> [18240] farm--especially: 1 +> [18241] farm-house: 1 +> [18242] farm-labourer: 1 +> [18243] farm-steading: 1 +> [18244] farmer: 37 +> [18245] farmer's: 1 +> [18246] farmers: 37 +> [18247] farmhouse: 4 +> [18248] farming: 26 +> [18249] farming--you: 1 +> [18250] farms: 8 +> [18251] farms--in: 1 +> [18252] farmyard: 4 +> [18253] faro: 4 +> [18254] farrago: 1 +> [18255] farriers: 1 +> [18256] farther: 236 +> [18257] farther--that: 1 +> [18258] farther--to: 1 +> [18259] farthest: 23 +> [18260] farthing: 38 +> [18261] farthing. [18262] farthingale: 15 +> [18263] farthingale's: 2 +> [18264] farthings: 7 +> [18265] fas: 1 +> [18266] fascinate: 8 +> [18267] fascinated: 37 +> [18268] fascinates: 1 +> [18269] fascinating: 38 +> [18270] fascinating! [18271] fascination: 10 +> [18272] fascination--or: 1 +> [18273] fashion: 185 +> [18274] fashion,--most: 1 +> [18275] fashion, [18276] fashion--a: 1 +> [18277] fashion--and: 1 +> [18278] fashion--laying: 1 +> [18279] fashion--of: 1 +> [18280] fashion.”: 1 +> [18281] fashion;’: 1 +> [18282] fashionable: 60 +> [18283] fashionably: 6 +> [18284] fashioned: 2 +> [18285] fashions: 7 +> [18286] fast: 160 +> [18287] fasted: 1 +> [18288] fasten: 13 +> [18289] fastened: 66 +> [18290] fastened--a: 1 +> [18291] fastening: 21 +> [18292] fastenings: 2 +> [18293] faster: 40 +> [18294] fastest: 1 +> [18295] fastidious: 2 +> [18296] fastidiousness: 10 +> [18297] fasting: 13 +> [18298] fasting's: 1 +> [18299] fastness: 4 +> [18300] fasts: 10 +> [18301] fasts? [18302] fat: 266 +> [18303] fat-faced: 1 +> [18304] fat-stock: 1 +> [18305] fatal: 78 +> [18306] fatale: 1 +> [18307] fatalism: 1 +> [18308] fatality: 1 +> [18309] fatally: 7 +> [18310] fate: 206 +> [18311] fate! [18312] fate—that's: 1 +> [18313] fate--(the: 1 +> [18314] fate;’: 1 +> [18315] fated: 7 +> [18316] fateful: 12 +> [18317] fates: 1 +> [18318] father: 1642 +> [18319] father! [18320] father—a: 2 +> [18321] father—fyodor: 1 +> [18322] father—it: 1 +> [18323] father—mother's: 1 +> [18324] father—my: 1 +> [18325] father—that's: 1 +> [18326] father's: 289 +> [18327] father's--you: 1 +> [18328] father's [18329] father, [18330] father--alas: 1 +> [18331] father--and: 1 +> [18332] father--heaven: 1 +> [18333] father--i: 2 +> [18334] father--if: 1 +> [18335] father--prince: 1 +> [18336] father--that: 1 +> [18337] father--went: 1 +> [18338] father--who: 1 +> [18339] father--yes: 1 +> [18340] father--your: 1 +> [18341] father-in-law: 10 +> [18342] father-in-law's: 1 +> [18343] father.... [18344] father. [18345] father.’: 1 +> [18346] father [18347] father?—that's: 1 +> [18348] father? [18349] fathering: 1 +> [18350] fatherland: 36 +> [18351] fatherland--now: 1 +> [18352] fatherland--something: 1 +> [18353] fatherless: 2 +> [18354] fatherly: 13 +> [18355] fathers: 99 +> [18356] fathers, [18357] fathers. [18358] father’s: 3 +> [18359] fathom: 9 +> [18360] fathomed: 4 +> [18361] fathomless: 2 +> [18362] fatigue: 37 +> [18363] fatigued: 9 +> [18364] fatigues: 3 +> [18365] fatiguing: 5 +> [18366] fatima: 1 +> [18367] fatness: 1 +> [18368] fats: 170 +> [18369] fatted: 1 +> [18370] fattened: 5 +> [18371] fattening: 1 +> [18372] fatter: 3 +> [18373] fattish: 1 +> [18374] fatty: 230 +> [18375] fatuity: 1 +> [18376] faubourgs: 2 +> [18377] faudrait: 2 +> [18378] faugh: 4 +> [18379] fault: 194 +> [18380] fault! [18381] fault, [18382] fault--all: 1 +> [18383] fault--that: 1 +> [18384] fault-finding: 2 +> [18385] faultfinding: 1 +> [18386] faultless: 4 +> [18387] faults: 29 +> [18388] faults.”: 1 +> [18389] fauns: 1 +> [18390] faust: 1 +> [18391] faut: 9 +> [18392] fauxbourgs: 1 +> [18393] favor: 107 +> [18394] favor. [18395] favor? [18396] favorable: 31 +> [18397] favorably: 10 +> [18398] favored: 6 +> [18399] favorers: 1 +> [18400] favoring: 2 +> [18401] favorite: 79 +> [18402] favorites: 4 +> [18403] favors: 18 +> [18404] favour: 60 +> [18405] favour--affection: 1 +> [18406] favour--and: 1 +> [18407] favourable: 11 +> [18408] favoured: 7 +> [18409] favourite: 24 +> [18410] favourite's: 2 +> [18411] favourites: 1 +> [18412] favours: 1 +> [18413] favras: 2 +> [18414] favras--who: 1 +> [18415] fawn: 1 +> [18416] fawned: 2 +> [18417] fawning: 3 +> [18418] fawningly: 1 +> [18419] façade: 1 +> [18420] façon: 1 +> [18421] fcap: 4 +> [18422] fe_{2}o_{3: 1 +> [18423] fear: 498 +> [18424] fear—oh: 1 +> [18425] fear—which: 1 +> [18426] fear's: 1 +> [18427] fear,--_absolutely: 1 +> [18428] fear, [18429] fear--in: 1 +> [18430] fear--not: 1 +> [18431] fear--poor: 1 +> [18432] fear--resembling: 1 +> [18433] fear--these: 1 +> [18434] fear--though: 1 +> [18435] fear--to: 1 +> [18436] fear--was: 1 +> [18437] fear. [18438] feared: 103 +> [18439] feared--and: 1 +> [18440] feared--though: 1 +> [18441] fearful: 85 +> [18442] fearfully: 65 +> [18443] fearing: 32 +> [18444] fearless: 7 +> [18445] fearlessly: 4 +> [18446] fearlessness: 3 +> [18447] fears: 59 +> [18448] fears--all: 1 +> [18449] fears--in: 1 +> [18450] feasibility: 1 +> [18451] feasible: 8 +> [18452] feast: 43 +> [18453] feast-days: 1 +> [18454] feasted: 4 +> [18455] feasting: 3 +> [18456] feasting. [18457] feasts: 4 +> [18458] feasts, [18459] feat: 9 +> [18460] feather: 45 +> [18461] feather--while: 1 +> [18462] feather-bed: 1 +> [18463] feather-end: 1 +> [18464] feather-head: 2 +> [18465] feather-headed: 2 +> [18466] featherbeds: 1 +> [18467] feathered: 1 +> [18468] featherhead: 1 +> [18469] feathers: 9 +> [18470] feathers--the: 1 +> [18471] feathery: 2 +> [18472] feats: 3 +> [18473] feature: 24 +> [18474] features: 75 +> [18475] february: 13 +> [18476] fecundity: 1 +> [18477] fed: 46 +> [18478] fedchenko: 1 +> [18479] federal: 38 +> [18480] federovna: 1 +> [18481] fedeshon: 1 +> [18482] fedor: 4 +> [18483] fedoritch: 1 +> [18484] fedorovich's: 1 +> [18485] fedorovitch: 33 +> [18486] fedorovitch's: 2 +> [18487] fedorovitch--never: 1 +> [18488] fedorovna: 14 +> [18489] fedorovna's: 3 +> [18490] fedosey: 30 +> [18491] fedosya: 2 +> [18492] fedosyevna: 2 +> [18493] fedot: 1 +> [18494] fedotov: 1 +> [18495] fedotovs: 1 +> [18496] fedya: 6 +> [18497] fedyaev's: 1 +> [18498] fee: 154 +> [18499] feeble: 56 +> [18500] feeble-looking: 1 +> [18501] feeble-mindedness: 1 +> [18502] feebleness: 6 +> [18503] feebler: 2 +> [18504] feeblest: 1 +> [18505] feebly: 25 +> [18506] feed: 29 +> [18507] feed--on: 1 +> [18508] feeder: 1 +> [18509] feedeth: 1 +> [18510] feeding: 26 +> [18511] feeding-stuff: 1 +> [18512] feeding.’: 1 +> [18513] feeds: 5 +> [18514] feel: 797 +> [18515] feel--especially: 1 +> [18516] feel--see: 1 +> [18517] feel--too: 1 +> [18518] feeler: 1 +> [18519] feeling: 1238 +> [18520] feeling—i: 1 +> [18521] feeling--a: 1 +> [18522] feeling--at: 1 +> [18523] feeling--her: 1 +> [18524] feeling--if: 1 +> [18525] feeling--perhaps: 1 +> [18526] feeling--said: 1 +> [18527] feeling--they: 1 +> [18528] feeling...it's: 1 +> [18529] feeling? [18530] feelings: 324 +> [18531] feelings, [18532] feels: 89 +> [18533] fees: 79 +> [18534] feet: 538 +> [18535] feet—not: 1 +> [18536] feet, [18537] feet--a: 1 +> [18538] feet--in: 1 +> [18539] feet--though: 1 +> [18540] feet? [18541] feign: 3 +> [18542] feigned: 10 +> [18543] feigned--or: 1 +> [18544] feigning: 4 +> [18545] feind: 1 +> [18546] fekla: 4 +> [18547] feldspar: 1 +> [18548] felicitations: 3 +> [18549] felicitous: 1 +> [18550] felix: 1 +> [18551] fell: 643 +> [18552] fell--not: 1 +> [18553] fell--on: 1 +> [18554] felled: 6 +> [18555] feller: 1 +> [18556] felling: 2 +> [18557] fellow: 638 +> [18558] fellow's: 10 +> [18559] fellow, [18560] fellow--and--and--and--well: 1 +> [18561] fellow--are: 1 +> [18562] fellow--very: 1 +> [18563] fellow--worthy: 1 +> [18564] fellow--your: 1 +> [18565] fellow-being: 1 +> [18566] fellow-christians: 2 +> [18567] fellow-clerk: 1 +> [18568] fellow-clerks: 1 +> [18569] fellow-conspirator: 1 +> [18570] fellow-creature: 5 +> [18571] fellow-creatures: 9 +> [18572] fellow-disciples: 1 +> [18573] fellow-guest: 1 +> [18574] fellow-jews: 2 +> [18575] fellow-lodgers: 1 +> [18576] fellow-men: 4 +> [18577] fellow-mortal: 1 +> [18578] fellow-officials: 1 +> [18579] fellow-passengers: 1 +> [18580] fellow-prisoner: 2 +> [18581] fellow-townsmen: 1 +> [18582] fellow-traveller: 2 +> [18583] fellow-travellers: 2 +> [18584] fellow-worker: 1 +> [18585] fellow-workers: 1 +> [18586] fellow-you: 1 +> [18587] fellow...semyonov: 1 +> [18588] fellow. [18589] fellow [18590] fellows: 133 +> [18591] fellows"--(he: 1 +> [18592] fellows--the: 1 +> [18593] fellowship: 15 +> [18594] felon: 1 +> [18595] felt: 2214 +> [18596] felt--and: 1 +> [18597] felt--as: 1 +> [18598] felted: 1 +> [18599] felts: 1 +> [18600] felty: 1 +> [18601] female: 36 +> [18602] female? [18603] females: 4 +> [18604] femgalka: 1 +> [18605] feminine: 41 +> [18606] femme: 6 +> [18607] femmes: 2 +> [18608] fen: 1 +> [18609] fenardi: 3 +> [18610] fence: 80 +> [18611] fence. [18612] fenced: 3 +> [18613] fenced-in: 1 +> [18614] fenced-off: 1 +> [18615] fencer: 3 +> [18616] fences: 15 +> [18617] fencing: 9 +> [18618] fencing-masters: 1 +> [18619] fencing-school: 1 +> [18620] fend: 2 +> [18621] fender: 1 +> [18622] fenya: 53 +> [18623] fenya's: 8 +> [18624] fenya, [18625] feodor: 9 +> [18626] feoklitych: 1 +> [18627] feoktist: 2 +> [18628] fer: 1 +> [18629] fera: 3 +> [18630] ferai: 1 +> [18631] ferapont: 33 +> [18632] ferapont's: 1 +> [18633] ferapont [18634] ferapontov: 12 +> [18635] ferapontov's: 7 +> [18636] ferd-ferd: 1 +> [18637] ferdinand: 38 +> [18638] ferdinand's: 4 +> [18639] ferdishenko: 92 +> [18640] ferdishenko's: 2 +> [18641] ferdishenko--and: 1 +> [18642] ferdishenko--either: 1 +> [18643] ferfitchkin: 102 +> [18644] feria: 3 +> [18645] ferme: 1 +> [18646] ferment: 8 +> [18647] fermentable: 1 +> [18648] fermentation: 2 +> [18649] fermentative: 2 +> [18650] fermenting: 2 +> [18651] fermentive: 1 +> [18652] ferments: 9 +> [18653] fermier: 1 +> [18654] fern: 1 +> [18655] fern-clad: 1 +> [18656] ferns: 1 +> [18657] feroce: 2 +> [18658] ferocious: 5 +> [18659] ferociously: 5 +> [18660] ferocity: 5 +> [18661] ferocity! [18662] ferocity—they: 1 +> [18663] ferons: 1 +> [18664] ferreting: 1 +> [18665] ferrets: 1 +> [18666] ferricyanide: 1 +> [18667] ferricyanide._--a: 1 +> [18668] ferrous: 4 +> [18669] ferry: 6 +> [18670] ferry-boat: 2 +> [18671] ferrymen: 1 +> [18672] fertile: 5 +> [18673] fertility: 1 +> [18674] fertilizes: 1 +> [18675] fertinghof: 1 +> [18676] fervent: 10 +> [18677] fervently: 12 +> [18678] fervor: 15 +> [18679] fervour: 2 +> [18680] festal: 2 +> [18681] fester: 1 +> [18682] festering: 4 +> [18683] festival: 7 +> [18684] festive: 10 +> [18685] festively: 1 +> [18686] festivities: 4 +> [18687] festivity: 6 +> [18688] festooned: 1 +> [18689] festus: 3 +> [18690] fetch: 106 +> [18691] fetch--fetch: 1 +> [18692] fetched: 21 +> [18693] fetches: 2 +> [18694] fetching: 15 +> [18695] fete: 15 +> [18696] fetes: 2 +> [18697] fetlocks: 1 +> [18698] fett-u: 1 +> [18699] fetter: 1 +> [18700] fettered: 3 +> [18701] fetters: 3 +> [18702] fetyukovitch: 50 +> [18703] fetyukovitch's: 5 +> [18704] feu: 1 +> [18705] feud: 11 +> [18706] feudal: 4 +> [18707] feudatory: 1 +> [18708] feuds: 2 +> [18709] fever: 147 +> [18710] fever! [18711] fever— [18712] fever—and: 1 +> [18713] fever--wake: 1 +> [18714] fever. [18715] fevered: 4 +> [18716] feverish: 77 +> [18717] feverish--for: 1 +> [18718] feverish--very: 1 +> [18719] feverish-looking: 1 +> [18720] feverishly: 30 +> [18721] feverishness: 2 +> [18722] fevers: 2 +> [18723] fevronya: 1 +> [18724] few: 930 +> [18725] few--gentlemen: 1 +> [18726] fewer: 9 +> [18727] fewest: 3 +> [18728] fewness: 1 +> [18729] fey: 1 +> [18730] fez: 1 +> [18731] ff: 35 +> [18732] ff.[34: 1 +> [18733] fiance: 6 +> [18734] fiancee: 4 +> [18735] fiancee's: 2 +> [18736] fiancé: 10 +> [18737] fiancée: 1 +> [18738] fiancés: 1 +> [18739] fiat: 2 +> [18740] fib: 1 +> [18741] fibbing: 3 +> [18742] fibre: 3 +> [18743] fibroin: 1 +> [18744] fibrous: 2 +> [18745] fibs: 1 +> [18746] fichte: 2 +> [18747] fichu: 3 +> [18748] fickle: 4 +> [18749] fickleness: 2 +> [18750] fiction: 5 +> [18751] fictions: 1 +> [18752] fictitious: 8 +> [18753] fiddle: 1 +> [18754] fiddles: 2 +> [18755] fiddlestick: 1 +> [18756] fiddlesticks: 1 +> [18757] fide: 1 +> [18758] fidelity: 14 +> [18759] fidget: 2 +> [18760] fidgeted: 10 +> [18761] fidgetiness: 1 +> [18762] fidgeting: 9 +> [18763] fidgets: 1 +> [18764] fidgety: 3 +> [18765] fido: 2 +> [18766] fie: 11 +> [18767] field: 210 +> [18768] field-fares: 1 +> [18769] field-flowers: 2 +> [18770] field-marshal: 1 +> [18771] field-roses: 1 +> [18772] fieldfares: 1 +> [18773] fieldglass: 1 +> [18774] fielding: 1 +> [18775] fields: 109 +> [18776] fieldwork: 1 +> [18777] fiend: 8 +> [18778] fiendish: 7 +> [18779] fiendishly: 1 +> [18780] fiends: 6 +> [18781] fierce: 43 +> [18782] fierce-eyed: 1 +> [18783] fiercely: 40 +> [18784] fiercely--with: 1 +> [18785] fierceness: 1 +> [18786] fiercer: 3 +> [18787] fiercest: 3 +> [18788] fiery: 20 +> [18789] fiew: 1 +> [18790] fifes: 1 +> [18791] fifteen: 180 +> [18792] fifteen-kopeck: 1 +> [18793] fifteen-year-old: 1 +> [18794] fifteenth: 12 +> [18795] fifteenth-century: 1 +> [18796] fifth: 49 +> [18797] fifth's: 1 +> [18798] fifth--after: 1 +> [18799] fifthly: 1 +> [18800] fifties: 2 +> [18801] fiftieth: 1 +> [18802] fifty: 142 +> [18803] fifty--all: 1 +> [18804] fifty-eight: 1 +> [18805] fifty-five: 5 +> [18806] fifty-four: 1 +> [18807] fifty-rouble: 1 +> [18808] fifty-six: 7 +> [18809] fifty-three: 1 +> [18810] fifty-year-old: 2 +> [18811] fig: 6 +> [18812] fig-tree: 1 +> [18813] figaro: 1 +> [18814] figeac: 2 +> [18815] figging: 1 +> [18816] fight: 200 +> [18817] fight--we'll: 1 +> [18818] fighter: 1 +> [18819] fighters: 1 +> [18820] fighting: 122 +> [18821] fights: 5 +> [18822] figner: 1 +> [18823] figurative: 1 +> [18824] figuratively: 3 +> [18825] figure: 345 +> [18826] figure—the: 1 +> [18827] figure's: 1 +> [18828] figure--in: 1 +> [18829] figure--yesterday's: 1 +> [18830] figured: 3 +> [18831] figurehead: 1 +> [18832] figures: 104 +> [18833] figurez-vous: 1 +> [18834] figuring: 2 +> [18835] filbert-shaped: 1 +> [18836] filch: 2 +> [18837] file: 59 +> [18838] file--of: 1 +> [18839] file-firing: 1 +> [18840] filed: 2 +> [18841] filedesc: 2 +> [18842] filers: 2 +> [18843] files: 38 +> [18844] filez: 3 +> [18845] fili: 9 +> [18846] filial: 9 +> [18847] filigree: 1 +> [18848] filip: 1 +> [18849] filippov: 1 +> [18850] filisoff: 2 +> [18851] filka: 2 +> [18852] fill: 52 +> [18853] fille: 1 +> [18854] fille_;’: 1 +> [18855] filled: 265 +> [18856] filled--admitting: 1 +> [18857] filled--filled: 1 +> [18858] filler: 18 +> [18859] fillers: 9 +> [18860] filles: 1 +> [18861] filles [18862] filling: 65 +> [18863] fillip: 5 +> [18864] fills: 7 +> [18865] film: 3 +> [18866] filmy: 1 +> [18867] fils: 2 +> [18868] filter: 36 +> [18869] filtered: 20 +> [18870] filtered-off: 1 +> [18871] filtering: 10 +> [18872] filth: 19 +> [18873] filthiest: 7 +> [18874] filthiness: 5 +> [18875] filthy: 48 +> [18876] filtrate: 14 +> [18877] filtration: 4 +> [18878] fin: 1 +> [18879] final: 100 +> [18880] final--maybe: 2 +> [18881] finale: 2 +> [18882] finality: 1 +> [18883] finally: 154 +> [18884] finally--like: 1 +> [18885] finally--okeanov: 1 +> [18886] finally. [18887] finance: 2 +> [18888] finances: 4 +> [18889] financial: 29 +> [18890] financiers: 1 +> [18891] find: 1074 +> [18892] find--the: 2 +> [18893] finder: 1 +> [18894] finding: 151 +> [18895] finds: 54 +> [18896] fine: 376 +> [18897] fine--the: 1 +> [18898] fine--well: 1 +> [18899] fine-looking: 4 +> [18900] fined: 1 +> [18901] finely: 12 +> [18902] fineness: 4 +> [18903] finer: 3 +> [18904] finery: 9 +> [18905] fines: 6 +> [18906] finesse: 3 +> [18907] finesses: 1 +> [18908] finessing: 2 +> [18909] finest: 15 +> [18910] finger: 184 +> [18911] finger—but: 1 +> [18912] finger, [18913] finger-glasses: 1 +> [18914] finger-tips: 1 +> [18915] finger. [18916] finger? [18917] fingerboard: 1 +> [18918] fingered: 4 +> [18919] fingering: 9 +> [18920] fingers: 254 +> [18921] fingers, [18922] fingers--absolutely: 3 +> [18923] fingers--come: 1 +> [18924] fingers--see: 1 +> [18925] fini [18926] finish: 169 +> [18927] finish!--the: 1 +> [18928] finished: 334 +> [18929] finishes: 5 +> [18930] finishing: 59 +> [18931] finite: 1 +> [18932] finland: 3 +> [18933] finn: 1 +> [18934] finnish: 5 +> [18935] finogen: 1 +> [18936] fir: 4 +> [18937] fir-seed: 2 +> [18938] fire: 486 +> [18939] fire!--we: 1 +> [18940] fire—a: 1 +> [18941] fire--always: 1 +> [18942] fire--and: 1 +> [18943] fire--it: 1 +> [18944] fire--namely: 1 +> [18945] fire--shrank: 1 +> [18946] fire--we'll: 1 +> [18947] fire-hose: 1 +> [18948] fire-place: 1 +> [18949] fire-wood: 1 +> [18950] fire. [18951] fire.’: 1 +> [18952] firebrand: 3 +> [18953] firebrands: 1 +> [18954] fired: 63 +> [18955] fireless: 2 +> [18956] firelight: 6 +> [18957] firemen: 2 +> [18958] fireplace: 7 +> [18959] fireplaces: 2 +> [18960] fires: 44 +> [18961] fires--the: 1 +> [18962] fires [18963] firescreen: 1 +> [18964] fireside: 5 +> [18965] firesides: 1 +> [18966] firewood: 3 +> [18967] fireworks: 4 +> [18968] firhoff: 2 +> [18969] firing: 97 +> [18970] firm: 136 +> [18971] firm. [18972] firm [18973] firma: 1 +> [18974] firmament: 3 +> [18975] firmament, [18976] firmer: 8 +> [18977] firmest: 2 +> [18978] firmly: 206 +> [18979] firmly--"that: 1 +> [18980] firmness: 32 +> [18981] firmness--this: 1 +> [18982] firs: 3 +> [18983] first: 2750 +> [18984] first! [18985] first—a: 1 +> [18986] first—he'd: 1 +> [18987] first—the: 1 +> [18988] first's: 1 +> [18989] first, [18990] first,”: 1 +> [18991] first--determine: 1 +> [18992] first--fifteen: 1 +> [18993] first--he: 1 +> [18994] first--long: 1 +> [18995] first--shall: 1 +> [18996] first--stepped: 1 +> [18997] first--“suppose: 1 +> [18998] first-born: 1 +> [18999] first-class: 5 +> [19000] first-hand: 1 +> [19001] first-named: 2 +> [19002] first-rate: 33 +> [19003] first. [19004] first? [19005] firstborn: 2 +> [19006] firstfruits: 2 +> [19007] firstly: 7 +> [19008] fiscal: 1 +> [19009] fischer: 1 +> [19010] fish: 72 +> [19011] fish's: 1 +> [19012] fish-pies: 2 +> [19013] fish-pond: 1 +> [19014] fish-pool: 1 +> [19015] fish-pools: 1 +> [19016] fish-soup: 1 +> [19017] fished: 3 +> [19018] fisher: 1 +> [19019] fisherman: 2 +> [19020] fishermen: 2 +> [19021] fishers: 1 +> [19022] fishery: 1 +> [19023] fishes: 6 +> [19024] fishing: 13 +> [19025] fishing-pole: 1 +> [19026] fishmonger: 1 +> [19027] fishwife: 1 +> [19028] fishwives: 1 +> [19029] fishy: 2 +> [19030] fist: 64 +> [19031] fist, [19032] fist. [19033] fists: 22 +> [19034] fists--at: 1 +> [19035] fists--these: 1 +> [19036] fit: 214 +> [19037] fit— [19038] fit—you: 1 +> [19039] fit—and: 1 +> [19040] fit—with: 1 +> [19041] fit--that: 1 +> [19042] fit? [19043] fitful: 2 +> [19044] fitly: 2 +> [19045] fitness: 22 +> [19046] fits: 62 +> [19047] fitted: 28 +> [19048] fittest: 1 +> [19049] fitting: 30 +> [19050] fittingly: 1 +> [19051] fittings: 1 +> [19052] five: 552 +> [19053] five--the: 1 +> [19054] five-and-sixty: 1 +> [19055] five-and-thirty: 6 +> [19056] five-and-twenty: 1 +> [19057] five-kopeck: 1 +> [19058] five-o'clock: 2 +> [19059] five-per-cent: 3 +> [19060] five-rouble: 6 +> [19061] five-sided: 1 +> [19062] five-storied: 1 +> [19063] fives: 1 +> [19064] fix: 51 +> [19065] fixative: 1 +> [19066] fixed: 308 +> [19067] fixedly: 30 +> [19068] fixes: 5 +> [19069] fixing: 20 +> [19070] fixity: 4 +> [19071] fizzing: 1 +> [19072] fizzle: 2 +> [19073] fl: 7 +> [19074] flabbergasted: 1 +> [19075] flabby: 5 +> [19076] flaccid: 4 +> [19077] flag: 21 +> [19078] flag-flowers: 1 +> [19079] flagellants: 2 +> [19080] flagged: 7 +> [19081] flagging: 5 +> [19082] flagon: 1 +> [19083] flagrant: 6 +> [19084] flagrantly: 1 +> [19085] flags: 12 +> [19086] flagstaff: 2 +> [19087] flagstones: 1 +> [19088] flail: 1 +> [19089] flailed: 1 +> [19090] flake: 1 +> [19091] flakes: 12 +> [19092] flam: 2 +> [19093] flamande: 1 +> [19094] flambeaux: 1 +> [19095] flame: 34 +> [19096] flame-coloured: 3 +> [19097] flame. [19098] flamed: 14 +> [19099] flames: 41 +> [19100] flaming: 10 +> [19101] flammes: 1 +> [19102] flandre: 10 +> [19103] flandre's: 2 +> [19104] flandrin--it: 1 +> [19105] flange: 1 +> [19106] flank: 95 +> [19107] flank--and: 1 +> [19108] flank--had: 1 +> [19109] flank--still: 1 +> [19110] flanked: 8 +> [19111] flanking: 3 +> [19112] flanks: 5 +> [19113] flannel: 10 +> [19114] flap: 1 +> [19115] flap-hat: 1 +> [19116] flapped: 4 +> [19117] flapping: 10 +> [19118] flaps: 2 +> [19119] flare: 7 +> [19120] flare-up: 1 +> [19121] flared: 23 +> [19122] flares: 4 +> [19123] flaring: 9 +> [19124] flash: 66 +> [19125] flash--that: 1 +> [19126] flashed: 117 +> [19127] flashes: 6 +> [19128] flashing: 59 +> [19129] flashy: 2 +> [19130] flask: 71 +> [19131] flasks: 2 +> [19132] flat: 171 +> [19133] flat-foot: 2 +> [19134] flatirons: 1 +> [19135] flatly: 7 +> [19136] flats: 11 +> [19137] flatten: 2 +> [19138] flatter: 19 +> [19139] flattered: 36 +> [19140] flatterer: 1 +> [19141] flatterer"----a: 1 +> [19142] flatterers: 2 +> [19143] flattering: 38 +> [19144] flattering--quite: 1 +> [19145] flatters: 5 +> [19146] flattery: 23 +> [19147] flaunt: 3 +> [19148] flaunting: 1 +> [19149] flavor: 5 +> [19150] flavour: 2 +> [19151] flavourless: 1 +> [19152] flaw: 2 +> [19153] flax: 1 +> [19154] flaxen: 13 +> [19155] flaxen-headed: 3 +> [19156] flay: 7 +> [19157] flayed: 4 +> [19158] flaying: 1 +> [19159] flea: 1 +> [19160] fleas: 3 +> [19161] fleches: 20 +> [19162] fleck: 1 +> [19163] flecked: 4 +> [19164] fled: 61 +> [19165] fled--experienced: 1 +> [19166] fled--if: 1 +> [19167] fled--without: 1 +> [19168] flee: 9 +> [19169] fleece: 1 +> [19170] fleecy: 3 +> [19171] fleeing: 14 +> [19172] fleering: 1 +> [19173] fleet: 4 +> [19174] fleeting: 8 +> [19175] fleetingly: 1 +> [19176] fleissig: 1 +> [19177] fleming: 1 +> [19178] flemish: 1 +> [19179] flensburg: 2 +> [19180] flerov: 4 +> [19181] flerov's: 3 +> [19182] flesh: 59 +> [19183] fleshless: 1 +> [19184] fleshly: 5 +> [19185] fleshly"--resurrection: 1 +> [19186] fleshy: 8 +> [19187] flesselles: 2 +> [19188] fleurs: 4 +> [19189] flew: 216 +> [19190] flexibility: 1 +> [19191] flexible: 4 +> [19192] flexibly: 1 +> [19193] flick: 1 +> [19194] flicked: 6 +> [19195] flicker: 7 +> [19196] flickered: 8 +> [19197] flickering: 10 +> [19198] flicking: 3 +> [19199] flies: 36 +> [19200] flight: 76 +> [19201] flight--if: 1 +> [19202] flights: 6 +> [19203] flighty: 1 +> [19204] flinch: 4 +> [19205] flinch--passed: 1 +> [19206] flinched: 3 +> [19207] flinching: 8 +> [19208] fling: 37 +> [19209] flinging: 47 +> [19210] flings: 12 +> [19211] flint: 3 +> [19212] flints: 5 +> [19213] flip: 1 +> [19214] flippant: 1 +> [19215] flippantly: 3 +> [19216] flips: 1 +> [19217] flirt: 6 +> [19218] flirtation: 6 +> [19219] flirtatiousness: 1 +> [19220] flirted: 6 +> [19221] flirting: 4 +> [19222] flit: 2 +> [19223] flitch: 1 +> [19224] flitches: 2 +> [19225] flitted: 23 +> [19226] flitting: 16 +> [19227] float: 15 +> [19228] floated: 34 +> [19229] floating: 42 +> [19230] floats: 5 +> [19231] flock: 37 +> [19232] flock! [19233] flock? [19234] flocked: 12 +> [19235] flocking: 4 +> [19236] flocks: 4 +> [19237] flog: 9 +> [19238] flogged: 14 +> [19239] flogged. [19240] flogging: 6 +> [19241] flood: 34 +> [19242] flood-water: 1 +> [19243] flooded: 24 +> [19244] floodgates: 3 +> [19245] flooding: 8 +> [19246] floods: 9 +> [19247] floor: 303 +> [19248] floor? [19249] flooring: 1 +> [19250] floors: 15 +> [19251] floors--all: 1 +> [19252] flop: 3 +> [19253] flopped: 8 +> [19254] flopping: 1 +> [19255] floppy: 1 +> [19256] florence: 1 +> [19257] florentine: 1 +> [19258] florid: 2 +> [19259] flounce: 1 +> [19260] flounced: 1 +> [19261] flounces: 2 +> [19262] flounder: 2 +> [19263] floundered: 1 +> [19264] floundering: 6 +> [19265] flour: 13 +> [19266] flour-mill: 1 +> [19267] flourish: 10 +> [19268] flourish [19269] flourished: 12 +> [19270] flourishes: 6 +> [19271] flourishes--just: 1 +> [19272] flourishing: 23 +> [19273] flout: 2 +> [19274] flouted: 2 +> [19275] flow: 48 +> [19276] flow--they: 1 +> [19277] flowed: 34 +> [19278] flower: 48 +> [19279] flower! [19280] flower-beds: 2 +> [19281] flower-bordered: 1 +> [19282] flower-decked: 1 +> [19283] flower-show: 1 +> [19284] flower-shows: 1 +> [19285] flowerbeds: 1 +> [19286] flowered: 4 +> [19287] flowering: 5 +> [19288] flowerpots: 1 +> [19289] flowers: 109 +> [19290] flowers, [19291] flowers--at: 1 +> [19292] flowery: 9 +> [19293] flowing: 25 +> [19294] flown: 19 +> [19295] flows: 11 +> [19296] fluctuating: 2 +> [19297] fluctuation: 1 +> [19298] fluent: 3 +> [19299] fluently: 4 +> [19300] fluff: 3 +> [19301] fluffles: 1 +> [19302] fluffy: 10 +> [19303] fluid: 8 +> [19304] fluidity: 2 +> [19305] fluids: 1 +> [19306] flung: 194 +> [19307] flunkey: 10 +> [19308] flunkey! [19309] flurried: 9 +> [19310] flurried--compose: 1 +> [19311] flurry: 1 +> [19312] flurry--for: 1 +> [19313] flurrying: 1 +> [19314] flush: 53 +> [19315] flushed: 205 +> [19316] flushes: 1 +> [19317] flushing: 54 +> [19318] fluster: 1 +> [19319] flustered: 6 +> [19320] flutter: 11 +> [19321] fluttered: 18 +> [19322] fluttering: 23 +> [19323] fly: 124 +> [19324] fly--more: 4 +> [19325] fly-away: 1 +> [19326] flying: 127 +> [19327] fo: 1 +> [19328] fo'gotten: 1 +> [19329] fo'ward: 2 +> [19330] foal: 1 +> [19331] foam: 12 +> [19332] foam-flecked: 2 +> [19333] foaming: 9 +> [19334] foams: 1 +> [19335] fobby: 1 +> [19336] focus: 1 +> [19337] focused: 2 +> [19338] fodder: 9 +> [19339] foe: 29 +> [19340] foes: 12 +> [19341] fog: 55 +> [19342] fog--which: 1 +> [19343] fogey: 1 +> [19344] fogeys: 1 +> [19345] fogging: 1 +> [19346] foggy: 6 +> [19347] foggy--we: 1 +> [19348] fogs: 1 +> [19349] foh: 1 +> [19350] foi: 6 +> [19351] foi [19352] foible: 1 +> [19353] foibles: 1 +> [19354] foie: 1 +> [19355] foil: 7 +> [19356] foiled: 3 +> [19357] foils: 2 +> [19358] foisting: 1 +> [19359] foka: 3 +> [19360] fokanitch: 3 +> [19361] fold: 13 +> [19362] folded: 63 +> [19363] folding: 25 +> [19364] folding-doors: 1 +> [19365] folds: 24 +> [19366] foliage: 10 +> [19367] folio: 1 +> [19368] folios: 2 +> [19369] folk: 51 +> [19370] folk--the: 1 +> [19371] folks: 30 +> [19372] folle: 1 +> [19373] follies: 4 +> [19374] follow: 268 +> [19375] followed: 564 +> [19376] followed—one: 1 +> [19377] followed--long: 1 +> [19378] followed--that: 1 +> [19379] followedst: 1 +> [19380] follower: 8 +> [19381] follower's: 1 +> [19382] followers: 30 +> [19383] followers--such: 2 +> [19384] followeth: 1 +> [19385] following: 317 +> [19386] following--oh: 1 +> [19387] follows: 66 +> [19388] folly: 52 +> [19389] folly [19390] foma: 7 +> [19391] foma's: 1 +> [19392] foment: 2 +> [19393] fomentations: 1 +> [19394] fomin: 1 +> [19395] fomin's: 3 +> [19396] fominishna: 2 +> [19397] fomitch: 26 +> [19398] fomitch's: 1 +> [19399] fomitch--start: 1 +> [19400] fond: 276 +> [19401] fond--and: 1 +> [19402] fondant: 1 +> [19403] fondants: 4 +> [19404] fonder: 5 +> [19405] fondest: 1 +> [19406] fondle: 1 +> [19407] fondling: 1 +> [19408] fondly: 4 +> [19409] fondness: 5 +> [19410] font: 5 +> [19411] font-style: 1 +> [19412] font-variant: 1 +> [19413] font-weight: 1 +> [19414] fontainebleau: 1 +> [19415] fontanka: 5 +> [19416] foo: 14 +> [19417] foo!--what: 1 +> [19418] food: 140 +> [19419] food-consuming: 1 +> [19420] foodless: 2 +> [19421] fooh: 1 +> [19422] fool: 335 +> [19423] fool!--and: 1 +> [19424] fool's: 8 +> [19425] fool, [19426] fool--but: 1 +> [19427] fool--he: 1 +> [19428] fool--knows: 1 +> [19429] fool--that: 1 +> [19430] fool--who: 1 +> [19431] fool--you: 1 +> [19432] fool? [19433] fooled: 8 +> [19434] foolery: 6 +> [19435] foolery—it: 1 +> [19436] foolery, [19437] foolhardy: 1 +> [19438] fooling: 6 +> [19439] foolish: 142 +> [19440] foolish, [19441] foolish--but: 1 +> [19442] foolish--it: 1 +> [19443] foolish--like: 1 +> [19444] foolish--to: 1 +> [19445] foolishly: 11 +> [19446] foolishness: 35 +> [19447] foolishness! [19448] foolishness, [19449] fools: 90 +> [19450] foot: 391 +> [19451] foot, [19452] foot--which: 1 +> [19453] foot-hills: 1 +> [19454] foot-hold: 2 +> [19455] foot-passenger: 1 +> [19456] foot-passengers: 1 +> [19457] foot. [19458] foot [19459] footboard: 2 +> [19460] footbridge: 5 +> [19461] footgear: 2 +> [19462] foothold: 3 +> [19463] footing: 51 +> [19464] footing. [19465] footing [19466] footlights: 6 +> [19467] footman: 105 +> [19468] footman's: 1 +> [19469] footmen: 43 +> [19470] footmen--one: 1 +> [19471] footnote: 40 +> [19472] footnotes: 7 +> [19473] footpace: 8 +> [19474] footpath: 1 +> [19475] footpaths: 1 +> [19476] footprints: 3 +> [19477] foots: 26 +> [19478] footsore: 1 +> [19479] footstep: 18 +> [19480] footsteps: 78 +> [19481] footsteps--his: 1 +> [19482] footsteps--the: 1 +> [19483] footstool: 3 +> [19484] footway: 1 +> [19485] fop: 1 +> [19486] fopperies: 1 +> [19487] foppish: 3 +> [19488] foppishness: 1 +> [19489] fops: 1 +> [19490] for: 20647 +> [19491] for! [19492] for! [19493] for, [19494] for--a: 1 +> [19495] for--always: 1 +> [19496] for--as: 1 +> [19497] for--divorce: 1 +> [19498] for--do: 1 +> [19499] for--for: 4 +> [19500] for--he: 1 +> [19501] for--human: 1 +> [19502] for--i: 1 +> [19503] for--shall: 1 +> [19504] for--some: 1 +> [19505] for--was: 1 +> [19506] for--well: 1 +> [19507] for--what: 1 +> [19508] for--your: 1 +> [19509] for. [19510] for.’: 1 +> [19511] for? [19512] forage: 9 +> [19513] forage-cap: 1 +> [19514] foragers: 1 +> [19515] foraging: 5 +> [19516] forasmuch: 3 +> [19517] foray: 2 +> [19518] forays: 1 +> [19519] forbade: 18 +> [19520] forbear: 1 +> [19521] forbearance: 7 +> [19522] forbears: 3 +> [19523] forbid: 37 +> [19524] forbid!—that: 1 +> [19525] forbid! [19526] forbid—yet: 1 +> [19527] forbid--it: 1 +> [19528] forbid--should: 1 +> [19529] forbid? [19530] forbidden: 39 +> [19531] forbidding: 10 +> [19532] forbids: 3 +> [19533] force: 333 +> [19534] force--a: 1 +> [19535] force--october: 1 +> [19536] force--the: 2 +> [19537] force [19538] forced: 167 +> [19539] forced--forced: 1 +> [19540] forceful: 1 +> [19541] forcer: 1 +> [19542] forces: 108 +> [19543] forces,--she: 1 +> [19544] forces--millions: 1 +> [19545] forcible: 8 +> [19546] forcibly: 20 +> [19547] forcing: 28 +> [19548] forcé: 1 +> [19549] ford: 7 +> [19550] fords: 1 +> [19551] fore: 8 +> [19552] fore-legs: 2 +> [19553] forearm: 1 +> [19554] forearmed: 1 +> [19555] foreboding: 15 +> [19556] foreboding--the: 1 +> [19557] forebodings: 7 +> [19558] forecast: 3 +> [19559] forecasts: 2 +> [19560] foredoomed: 1 +> [19561] forefather: 2 +> [19562] forefathers: 8 +> [19563] forefathers--that: 1 +> [19564] forefinger: 8 +> [19565] forefoot: 1 +> [19566] forefront: 1 +> [19567] foregathered: 1 +> [19568] foregleams: 1 +> [19569] forego: 5 +> [19570] foregoing: 3 +> [19571] foregone: 3 +> [19572] foreground: 7 +> [19573] forehead: 143 +> [19574] foreheads: 4 +> [19575] foreign: 213 +> [19576] foreign-looking: 1 +> [19577] foreigner: 22 +> [19578] foreigner—just: 1 +> [19579] foreigners: 18 +> [19580] foreigners--in: 1 +> [19581] foreknowledge: 1 +> [19582] foreleg: 2 +> [19583] forelegs: 4 +> [19584] forelock: 4 +> [19585] foreman: 2 +> [19586] foremen: 1 +> [19587] foremost: 46 +> [19588] foremost--it: 1 +> [19589] foremost--screamed: 1 +> [19590] forenoon: 1 +> [19591] foreordained: 1 +> [19592] forepart: 5 +> [19593] forepaws: 2 +> [19594] forer: 1 +> [19595] forerunner: 1 +> [19596] foresail: 1 +> [19597] foresaw: 35 +> [19598] foresee: 24 +> [19599] foreseeing: 18 +> [19600] foreseen: 46 +> [19601] foreseen—that: 1 +> [19602] foreseen--are: 1 +> [19603] foresees: 3 +> [19604] foreshadowing: 1 +> [19605] foreshore: 2 +> [19606] foreshortened: 1 +> [19607] foresight: 9 +> [19608] forest: 175 +> [19609] forest's: 1 +> [19610] forest, [19611] forest--and: 1 +> [19612] forest--that: 1 +> [19613] forestall: 7 +> [19614] forestalled: 4 +> [19615] forestalling: 2 +> [19616] forester: 11 +> [19617] forester's: 5 +> [19618] forests: 19 +> [19619] foretaste: 8 +> [19620] foretell: 3 +> [19621] foretelling: 1 +> [19622] foretells: 1 +> [19623] forethought: 2 +> [19624] foretold: 28 +> [19625] forever: 68 +> [19626] forever--not: 1 +> [19627] forever.”: 1 +> [19628] forewarned: 4 +> [19629] forewarns: 1 +> [19630] forfeit: 11 +> [19631] forfeited: 1 +> [19632] forfeits: 2 +> [19633] forgave: 24 +> [19634] forge: 19 +> [19635] forged: 4 +> [19636] forgeries: 1 +> [19637] forgery: 2 +> [19638] forget: 312 +> [19639] forget--his: 1 +> [19640] forget--i: 1 +> [19641] forget--that: 1 +> [19642] forget-me-nots: 1 +> [19643] forgetful: 7 +> [19644] forgetfulness: 13 +> [19645] forgets: 17 +> [19646] forgets—an: 1 +> [19647] forgetting: 117 +> [19648] forging: 2 +> [19649] forgive: 460 +> [19650] forgive--have: 1 +> [19651] forgive--kind: 1 +> [19652] forgive...remember: 1 +> [19653] forgiven: 68 +> [19654] forgiven— [19655] forgiven--that: 1 +> [19656] forgiven--they: 1 +> [19657] forgiven. [19658] forgiveness: 116 +> [19659] forgiveness—it's: 1 +> [19660] forgiveness, [19661] forgiveness. [19662] forgiveness. [19663] forgives: 5 +> [19664] forgiving: 12 +> [19665] forgo: 2 +> [19666] forgot: 167 +> [19667] forgot— [19668] forgotten: 333 +> [19669] forgotten—one: 1 +> [19670] forgotten--"accidentally: 1 +> [19671] forgotten--absolutely: 1 +> [19672] forgotten--death: 1 +> [19673] forgotten--gazed: 1 +> [19674] forgotten--why: 1 +> [19675] fork: 39 +> [19676] forkfuls: 1 +> [19677] forks: 5 +> [19678] forlorn: 12 +> [19679] form: 428 +> [19680] form--all: 1 +> [19681] form--i: 2 +> [19682] form--the: 1 +> [19683] form? [19684] formal: 50 +> [19685] formaldehyde: 4 +> [19686] formalities: 14 +> [19687] formality: 17 +> [19688] formally: 12 +> [19689] format: 76 +> [19690] formation: 22 +> [19691] formative: 2 +> [19692] formats: 38 +> [19693] formats="txt.iso-8859-1: 1 +> [19694] forme: 1 +> [19695] formed: 196 +> [19696] former: 291 +> [19697] former's: 2 +> [19698] formerly: 79 +> [19699] formidable: 18 +> [19700] forming: 46 +> [19701] forminsk: 8 +> [19702] formio: 1 +> [19703] formless: 1 +> [19704] forms: 101 +> [19705] forms--a: 3 +> [19706] formula: 21 +> [19707] formula--then: 2 +> [19708] formulae: 23 +> [19709] formulae[10: 1 +> [19710] formulas: 5 +> [19711] formulate: 5 +> [19712] formulated: 8 +> [19713] formulating: 3 +> [19714] fornication: 8 +> [19715] fornicator: 1 +> [19716] fornicators: 1 +> [19717] forsake: 5 +> [19718] forsaken: 12 +> [19719] forsakes: 2 +> [19720] forsaking: 4 +> [19721] forschung: 1 +> [19722] forsook: 3 +> [19723] forsooth: 2 +> [19724] forth: 271 +> [19725] forth! [19726] forthcoming: 9 +> [19727] forthwith: 3 +> [19728] forties: 12 +> [19729] fortieth: 2 +> [19730] fortification: 4 +> [19731] fortifications: 4 +> [19732] fortified: 9 +> [19733] fortify: 6 +> [19734] fortifying: 2 +> [19735] fortitude: 3 +> [19736] fortitude, [19737] fortitude--i: 1 +> [19738] fortnight: 89 +> [19739] fortnight's: 1 +> [19740] fortnight, [19741] fortnight--that: 1 +> [19742] fortnight...and: 1 +> [19743] fortress: 10 +> [19744] fortresses: 5 +> [19745] fortuitously: 1 +> [19746] fortunate: 34 +> [19747] fortunate! [19748] fortunately: 41 +> [19749] fortunately--for: 1 +> [19750] fortune: 152 +> [19751] fortune's: 2 +> [19752] fortune--how: 1 +> [19753] fortune--money--do: 1 +> [19754] fortune--young: 1 +> [19755] fortune? [19756] fortunes: 29 +> [19757] forty: 146 +> [19758] forty--forty--i: 1 +> [19759] forty--looked: 1 +> [19760] forty--onion: 1 +> [19761] forty--thirty-seven: 1 +> [19762] forty-eight: 5 +> [19763] forty-five: 18 +> [19764] forty-seven: 1 +> [19765] forty-three: 8 +> [19766] forty-two: 4 +> [19767] forty-year-old: 2 +> [19768] forward: 537 +> [19769] forward! [19770] forward--and: 1 +> [19771] forward--then: 1 +> [19772] forwarded: 4 +> [19773] forwarder: 2 +> [19774] forwardness: 2 +> [19775] forwards: 13 +> [19776] forçats: 1 +> [19777] foster: 1 +> [19778] fostered: 3 +> [19779] fostereth [19780] fostering: 1 +> [19781] fosters: 1 +> [19782] fouche: 2 +> [19783] fought: 73 +> [19784] foul: 34 +> [19785] foul-mouthed: 2 +> [19786] foulde's: 2 +> [19787] fouled: 1 +> [19788] foullest: 1 +> [19789] foulness: 7 +> [19790] foulon: 1 +> [19791] foulon's: 1 +> [19792] foulons: 1 +> [19793] found: 1275 +> [19794] found--a: 1 +> [19795] foundation: 476 +> [19796] foundation's: 57 +> [19797] foundation-stones: 1 +> [19798] foundations: 17 +> [19799] foundations--has: 1 +> [19800] founded: 42 +> [19801] founder: 4 +> [19802] foundered: 2 +> [19803] founderous: 1 +> [19804] founders: 5 +> [19805] founding: 6 +> [19806] foundling: 5 +> [19807] foundry: 1 +> [19808] fount: 1 +> [19809] fountain: 8 +> [19810] fountains: 5 +> [19811] four: 496 +> [19812] four—no: 1 +> [19813] four--and: 1 +> [19814] four--for: 1 +> [19815] four--here: 1 +> [19816] four--it's: 1 +> [19817] four--she: 1 +> [19818] four--the: 1 +> [19819] four-fifths: 4 +> [19820] four-gospel: 1 +> [19821] four-in-hand: 2 +> [19822] four-lined: 1 +> [19823] four-mullioned: 1 +> [19824] four-poster: 1 +> [19825] four-storied: 1 +> [19826] four-year-old: 3 +> [19827] fourier: 2 +> [19828] fourpence: 2 +> [19829] fourpence--it's: 1 +> [19830] fours: 6 +> [19831] fourteen: 44 +> [19832] fourteen—that: 1 +> [19833] fourteen-year-old: 2 +> [19834] fourteenth: 10 +> [19835] fourth: 134 +> [19836] fourth--the: 1 +> [19837] fourth-hand: 1 +> [19838] fourth. [19839] fourthly: 6 +> [19840] fourths: 1 +> [19841] fowey: 2 +> [19842] fowl: 6 +> [19843] fowls: 10 +> [19844] fox: 22 +> [19845] fox-chase: 1 +> [19846] fox-fur: 1 +> [19847] fox-like: 1 +> [19848] fox-lined: 1 +> [19849] foxes: 2 +> [19850] foxgloves: 1 +> [19851] foxy: 3 +> [19852] foyer: 1 +> [19853] fr: 5 +> [19854] fracas: 2 +> [19855] fraction: 3 +> [19856] fractional: 1 +> [19857] fractions: 1 +> [19858] fractiously: 1 +> [19859] fractured: 2 +> [19860] fragile: 2 +> [19861] fragment: 17 +> [19862] fragmentary: 5 +> [19863] fragments: 25 +> [19864] fragrance: 12 +> [19865] fragrance, [19866] fragrant: 24 +> [19867] frail: 6 +> [19868] frailty: 2 +> [19869] frame: 102 +> [19870] framed: 26 +> [19871] frames: 25 +> [19872] framework: 9 +> [19873] framing: 4 +> [19874] framlingham: 4 +> [19875] franc: 1 +> [19876] francais: 3 +> [19877] francaise: 1 +> [19878] france: 165 +> [19879] france--at: 1 +> [19880] france--the: 1 +> [19881] francis: 82 +> [19882] francs: 5 +> [19883] frank: 42 +> [19884] frankest: 1 +> [19885] frankfort: 2 +> [19886] franklin: 3 +> [19887] frankly: 64 +> [19888] frankness: 27 +> [19889] frantic: 37 +> [19890] frantically: 25 +> [19891] frantsovna: 3 +> [19892] frantsovnas: 1 +> [19893] franz: 5 +> [19894] français: 1 +> [19895] française: 2 +> [19896] françoise: 2 +> [19897] fraternal: 4 +> [19898] fraternal--i: 1 +> [19899] fraternite: 1 +> [19900] fraternity: 5 +> [19901] fraternity. [19902] fraud: 22 +> [19903] fraud? [19904] frauds: 1 +> [19905] fraudulent: 1 +> [19906] fraudulently: 2 +> [19907] fraught: 4 +> [19908] fraulein: 1 +> [19909] fray: 1 +> [19910] frayed: 9 +> [19911] freak: 8 +> [19912] freaks: 2 +> [19913] freckled: 5 +> [19914] frederic: 1 +> [19915] frederica: 1 +> [19916] frederick: 4 +> [19917] free: 683 +> [19918] free--and: 1 +> [19919] free--free: 1 +> [19920] free-and-easy: 10 +> [19921] free-mason: 1 +> [19922] free-thinker: 1 +> [19923] free-thinkers: 2 +> [19924] free-thinking: 6 +> [19925] free-thought: 1 +> [19926] free-tongued: 1 +> [19927] free-trade: 1 +> [19928] free-will: 1 +> [19929] free [19930] free?’: 1 +> [19931] freed: 28 +> [19932] freedom: 266 +> [19933] freedom--if: 1 +> [19934] freedom--now: 1 +> [19935] freedom--that: 1 +> [19936] freedom [19937] freedom? [19938] freeing: 2 +> [19939] freely: 149 +> [19940] freely--and: 1 +> [19941] freeman: 4 +> [19942] freemason: 6 +> [19943] freemasonry: 18 +> [19944] freemasons: 12 +> [19945] freemen: 4 +> [19946] freer: 4 +> [19947] frees: 1 +> [19948] freest: 1 +> [19949] freethinker: 2 +> [19950] freethinkers: 1 +> [19951] freethinking: 1 +> [19952] freewill: 2 +> [19953] freeze: 12 +> [19954] freezes: 1 +> [19955] freezing: 10 +> [19956] freezing, [19957] freight: 1 +> [19958] freighted: 2 +> [19959] french: 1052 +> [19960] french--all: 1 +> [19961] french--and: 1 +> [19962] french--are: 1 +> [19963] french--graceful: 1 +> [19964] french--having: 1 +> [19965] french--in: 1 +> [19966] french--on: 4 +> [19967] french--through: 1 +> [19968] french--who: 1 +> [19969] frenchie: 1 +> [19970] frenchies: 2 +> [19971] frenchified: 1 +> [19972] frenchman: 115 +> [19973] frenchman's: 6 +> [19974] frenchman, [19975] frenchmen: 58 +> [19976] frenchwoman: 22 +> [19977] frenchwoman's: 1 +> [19978] frenchy: 3 +> [19979] frenzied: 26 +> [19980] frenziedly: 1 +> [19981] frenzy: 69 +> [19982] frenzy--"accept: 1 +> [19983] frenzy--is: 2 +> [19984] frequency: 2 +> [19985] frequent: 42 +> [19986] frequented: 10 +> [19987] frequenters: 2 +> [19988] frequenting: 1 +> [19989] frequently: 78 +> [19990] frequents: 1 +> [19991] frere: 2 +> [19992] frescoes: 1 +> [19993] fresh: 306 +> [19994] fresh--as: 1 +> [19995] fresh-baked: 1 +> [19996] fresh-colored: 1 +> [19997] fresh-laid: 1 +> [19998] fresh-looking: 2 +> [19999] freshen: 2 +> [20000] freshened: 2 +> [20001] fresher: 3 +> [20002] fresher--more: 1 +> [20003] freshest: 1 +> [20004] freshly: 32 +> [20005] freshly-cut: 1 +> [20006] freshness: 32 +> [20007] fret: 15 +> [20008] fretful: 3 +> [20009] fretfully: 4 +> [20010] fretted: 11 +> [20011] fretting: 20 +> [20012] fretting's: 1 +> [20013] freude [20014] freudenberg: 1 +> [20015] friant: 1 +> [20016] friant's: 5 +> [20017] friction: 5 +> [20018] friday: 14 +> [20019] fried: 2 +> [20020] friedland: 4 +> [20021] friedland--yet: 1 +> [20022] friedrich: 1 +> [20023] friedrichs: 1 +> [20024] friend: 775 +> [20025] friend! [20026] friend's: 38 +> [20027] friend,--to: 1 +> [20028] friend, [20029] friend,”: 4 +> [20030] friend--'suffer: 1 +> [20031] friend--(he: 1 +> [20032] friend--and: 2 +> [20033] friend--as: 1 +> [20034] friend--for: 2 +> [20035] friend--i: 2 +> [20036] friend--if: 1 +> [20037] friend--is: 1 +> [20038] friend--it: 1 +> [20039] friend--life: 1 +> [20040] friend--look: 1 +> [20041] friend--my: 1 +> [20042] friend--such: 1 +> [20043] friend--the: 1 +> [20044] friend--to: 1 +> [20045] friend--when: 1 +> [20046] friend--you: 1 +> [20047] friend. [20048] friend [20049] friend—and: 1 +> [20050] friendless: 2 +> [20051] friendliest: 2 +> [20052] friendliness: 15 +> [20053] friendly: 167 +> [20054] friends: 542 +> [20055] friends, [20056] friends--and: 2 +> [20057] friends--but: 1 +> [20058] friends--come: 1 +> [20059] friends--had: 1 +> [20060] friends--how: 1 +> [20061] friends--i: 1 +> [20062] friends--it: 1 +> [20063] friends--see: 1 +> [20064] friends--that: 1 +> [20065] friends--this: 1 +> [20066] friends--to: 1 +> [20067] friends--you: 1 +> [20068] friends. [20069] friends [20070] friends? [20071] friends_--was: 1 +> [20072] friendship: 124 +> [20073] friendship's: 2 +> [20074] friendship,--the: 1 +> [20075] friendship--if: 1 +> [20076] friendships: 5 +> [20077] friend’s: 12 +> [20078] frieze: 10 +> [20079] fright: 58 +> [20080] fright--if: 1 +> [20081] fright. [20082] frighten: 43 +> [20083] frightened: 377 +> [20084] frightened, [20085] frightened--you: 3 +> [20086] frightened-looking: 1 +> [20087] frightened. [20088] frightened? [20089] frightening: 9 +> [20090] frightens: 8 +> [20091] frightful: 8 +> [20092] frightfully: 15 +> [20093] frigid: 17 +> [20094] frigidity: 1 +> [20095] frigidly: 2 +> [20096] frill: 4 +> [20097] frills: 2 +> [20098] frill’: 1 +> [20099] fringe: 15 +> [20100] fringed: 7 +> [20101] fripons: 1 +> [20102] frippery: 4 +> [20103] frise: 1 +> [20104] frisked: 4 +> [20105] frivolity: 9 +> [20106] frivolous: 37 +> [20107] frivolously: 2 +> [20108] fro: 67 +> [20109] fro,--as: 1 +> [20110] frock: 15 +> [20111] frock--an: 1 +> [20112] frock-coat: 15 +> [20113] frock-coat--black: 1 +> [20114] frock-coats: 1 +> [20115] frockcoats: 1 +> [20116] frocks: 7 +> [20117] frocks--grew: 1 +> [20118] frog: 3 +> [20119] frogs: 9 +> [20120] frog’s: 1 +> [20121] frola: 3 +> [20122] frolic: 2 +> [20123] frolicked: 2 +> [20124] frolicking: 1 +> [20125] frolicsome: 1 +> [20126] from: 10739 +> [20127] from—ah: 1 +> [20128] from—somewhere: 1 +> [20129] from—what: 1 +> [20130] from--from: 1 +> [20131] from--pardon: 1 +> [20132] from? [20133] froment: 61 +> [20134] froment's: 10 +> [20135] froment--on: 1 +> [20136] froment--who: 1 +> [20137] fronde: 2 +> [20138] front: 521 +> [20139] frontier: 25 +> [20140] frontier--which: 1 +> [20141] frontiers: 6 +> [20142] fronting: 1 +> [20143] frontispiece: 4 +> [20144] frost: 60 +> [20145] frost, [20146] frost-bitten: 3 +> [20147] frost-bound: 3 +> [20148] frost-smitten: 1 +> [20149] frosts: 5 +> [20150] frosts--and: 1 +> [20151] frosty: 16 +> [20152] froth: 2 +> [20153] frothing: 3 +> [20154] frothy: 1 +> [20155] frottait: 1 +> [20156] frou-frou: 19 +> [20157] frou-frou's: 3 +> [20158] frown: 43 +> [20159] frowned: 117 +> [20160] frowned—it: 1 +> [20161] frowned--partly: 1 +> [20162] frowning: 142 +> [20163] frowning--give: 1 +> [20164] frowningly: 2 +> [20165] frowns: 5 +> [20166] frowsy: 4 +> [20167] froze: 8 +> [20168] frozen: 81 +> [20169] frozen, [20170] fructify: 1 +> [20171] fructifying: 1 +> [20172] frugal: 3 +> [20173] frugality: 1 +> [20174] fruhstuck: 1 +> [20175] fruit: 36 +> [20176] fruit. [20177] fruitful: 7 +> [20178] fruitful--probably: 1 +> [20179] fruitfulness: 1 +> [20180] fruition: 3 +> [20181] fruitless: 8 +> [20182] fruitlessly: 1 +> [20183] fruits: 12 +> [20184] fruits_...etc: 1 +> [20185] fruschtique: 1 +> [20186] frustra: 1 +> [20187] frustrate: 1 +> [20188] frustrated: 4 +> [20189] frustrating: 1 +> [20190] fry: 3 +> [20191] frying-pan: 3 +> [20192] fuddled: 1 +> [20193] fuel: 10 +> [20194] fugitive: 7 +> [20195] fugitives: 13 +> [20196] fuglemen: 2 +> [20197] fugue: 1 +> [20198] fugue--though: 1 +> [20199] ful: 1 +> [20200] fulfil: 10 +> [20201] fulfill: 22 +> [20202] fulfilled: 34 +> [20203] fulfilled.’: 2 +> [20204] fulfilling: 8 +> [20205] fulfillment: 11 +> [20206] fulfilment: 16 +> [20207] fulfilments: 1 +> [20208] full: 974 +> [20209] full--twenty-three: 1 +> [20210] full-armed: 1 +> [20211] full-blooded: 2 +> [20212] full-blown: 1 +> [20213] full-boiled: 1 +> [20214] full-dress: 2 +> [20215] full-faced: 1 +> [20216] full-fledged: 1 +> [20217] full-grown: 4 +> [20218] full-length: 2 +> [20219] full-page: 1 +> [20220] full-skirted: 6 +> [20221] full-toned: 1 +> [20222] fuller: 12 +> [20223] fuller's: 9 +> [20224] fullers: 4 +> [20225] fullest: 11 +> [20226] fulling: 7 +> [20227] fullness: 10 +> [20228] fully: 215 +> [20229] fully-developed: 1 +> [20230] fulminations: 1 +> [20231] fulness: 6 +> [20232] fumble: 1 +> [20233] fumbled: 9 +> [20234] fumbled--but: 1 +> [20235] fumbling: 23 +> [20236] fume: 8 +> [20237] fumed: 1 +> [20238] fumes: 14 +> [20239] fuming: 7 +> [20240] fun: 56 +> [20241] fun. [20242] funambulists: 1 +> [20243] function: 11 +> [20244] functional: 1 +> [20245] functionaries: 7 +> [20246] functionary: 4 +> [20247] functions: 7 +> [20248] functions--the: 1 +> [20249] fund: 5 +> [20250] fundamental: 38 +> [20251] fundamentally: 2 +> [20252] fundamentals: 1 +> [20253] funds: 7 +> [20254] funeral: 78 +> [20255] funeral--he: 1 +> [20256] funerals: 1 +> [20257] funereal: 5 +> [20258] fungus: 3 +> [20259] funguses: 1 +> [20260] funk: 7 +> [20261] funke: 3 +> [20262] funked: 14 +> [20263] funking: 1 +> [20264] funks: 1 +> [20265] funnel: 14 +> [20266] funnier: 2 +> [20267] funniest: 3 +> [20268] funnily: 1 +> [20269] funny: 72 +> [20270] funny--bringing: 1 +> [20271] funny--but: 1 +> [20272] funny-looking: 1 +> [20273] funny? [20274] funèbre: 1 +> [20275] fur: 63 +> [20276] fur--or: 1 +> [20277] fur-lined: 8 +> [20278] fur-robed: 1 +> [20279] fur-trimmed: 1 +> [20280] furies: 1 +> [20281] furieuse: 1 +> [20282] furious: 70 +> [20283] furious--took: 1 +> [20284] furious? [20285] furiously: 41 +> [20286] furlong: 2 +> [20287] furlong’s: 1 +> [20288] furlough: 3 +> [20289] furnace: 8 +> [20290] furnaces: 2 +> [20291] furnish: 17 +> [20292] furnish?”: 1 +> [20293] furnished: 33 +> [20294] furnishes: 2 +> [20295] furnishing: 3 +> [20296] furniture: 54 +> [20297] furore: 2 +> [20298] furrow: 2 +> [20299] furrows: 6 +> [20300] furry: 1 +> [20301] furry-looking: 1 +> [20302] furs: 3 +> [20303] furs--so: 1 +> [20304] further: 312 +> [20305] further.”: 1 +> [20306] furthermore: 7 +> [20307] furthest: 13 +> [20308] furtive: 4 +> [20309] furtively: 15 +> [20310] fury: 132 +> [20311] fuse: 1 +> [20312] fused: 2 +> [20313] fuses: 1 +> [20314] fusillade: 1 +> [20315] fusion: 3 +> [20316] fuss: 42 +> [20317] fuss! [20318] fussed: 3 +> [20319] fussily: 4 +> [20320] fussiness: 1 +> [20321] fussing: 12 +> [20322] fussy: 8 +> [20323] fustian: 2 +> [20324] fut: 1 +> [20325] futile: 10 +> [20326] futility: 3 +> [20327] future: 378 +> [20328] future—that: 1 +> [20329] future—that's: 1 +> [20330] future, [20331] future--in: 1 +> [20332] future--that: 1 +> [20333] future--there: 1 +> [20334] future--though: 1 +> [20335] future--was: 1 +> [20336] future--what: 1 +> [20337] future--your: 1 +> [20338] future. [20339] future [20340] fuzzy: 2 +> [20341] fwashing: 1 +> [20342] fwiend: 4 +> [20343] fwo: 1 +> [20344] fwom: 6 +> [20345] fyodor: 328 +> [20346] fyodor">fyodor: 1 +> [20347] fyodor's: 1 +> [20348] fyodorovitch: 283 +> [20349] fyodorovitch! [20350] fyodorovitch—be: 1 +> [20351] fyodorovitch—such: 1 +> [20352] fyodorovitch—to: 1 +> [20353] fyodorovitch's: 8 +> [20354] fyodorovitch, [20355] fyodorovitch. [20356] fyodorovitch. [20357] fyodorovitch? [20358] fyodorovna: 16 +> [20359] fyodorovna's: 5 +> [20360] fyokla: 2 +> [20361] fé [20362] fécamp: 9 +> [20363] fécamp--fécamp: 1 +> [20364] fête: 8 +> [20365] fêtes: 1 +> [20366] fürst: 1 +> [20367] fürstin: 1 +> [20368] g: 57 +> [20369] g--d: 13 +> [20370] g.l: 1 +> [20371] ga: 1 +> [20372] ga. [20373] gabbled: 3 +> [20374] gabions: 1 +> [20375] gable: 2 +> [20376] gable-ends: 1 +> [20377] gabled: 4 +> [20378] gables: 7 +> [20379] gables--the: 1 +> [20380] gabriel: 170 +> [20381] gabriel's: 35 +> [20382] gabrielle: 1 +> [20383] gaby: 4 +> [20384] gachina: 1 +> [20385] gad: 5 +> [20386] gadflies: 1 +> [20387] gaffer: 1 +> [20388] gaffer'll: 1 +> [20389] gag: 1 +> [20390] gagin: 4 +> [20391] gagin's: 1 +> [20392] gaiety: 30 +> [20393] gaily: 79 +> [20394] gaily--"we: 1 +> [20395] gaily-dressed: 1 +> [20396] gain: 107 +> [20397] gain—if: 1 +> [20398] gain. [20399] gain—would: 1 +> [20400] gained: 123 +> [20401] gainer: 1 +> [20402] gaining: 27 +> [20403] gains: 15 +> [20404] gainsaid: 2 +> [20405] gainsay: 2 +> [20406] gait: 20 +> [20407] gaitered: 2 +> [20408] gaiters: 13 +> [20409] gaiters--still--if: 1 +> [20410] gaius: 13 +> [20411] gal: 22 +> [20412] galacia: 1 +> [20413] galant: 1 +> [20414] galatia: 9 +> [20415] galatian: 3 +> [20416] galatians: 16 +> [20417] galere: 1 +> [20418] galicia: 1 +> [20419] galilean: 13 +> [20420] galilee: 13 +> [20421] galilee; [20422] galilee [20423] galitsyn: 1 +> [20424] gall: 1 +> [20425] gallant: 31 +> [20426] gallant-looking: 2 +> [20427] gallantly: 12 +> [20428] gallantry: 8 +> [20429] gallantry--a: 1 +> [20430] gallants: 4 +> [20431] galled: 2 +> [20432] galleries: 7 +> [20433] gallery: 25 +> [20434] gallicism: 1 +> [20435] gallicisms: 1 +> [20436] galling: 3 +> [20437] gallon: 6 +> [20438] gallons: 7 +> [20439] gallop: 68 +> [20440] gallop--that: 1 +> [20441] gallop--the: 1 +> [20442] galloped: 117 +> [20443] galloping: 52 +> [20444] gallops: 1 +> [20445] gallows: 7 +> [20446] gallows-bird: 1 +> [20447] gallus: 3 +> [20448] galop: 3 +> [20449] galoshes: 7 +> [20450] galtsin: 1 +> [20451] galère: 1 +> [20452] gambetta: 1 +> [20453] gamble: 1 +> [20454] gambled: 1 +> [20455] gambler: 11 +> [20456] gambler's: 1 +> [20457] gambling: 9 +> [20458] gambling-hell: 1 +> [20459] gambol: 3 +> [20460] gambolled: 1 +> [20461] gambols: 1 +> [20462] gambrinus: 1 +> [20463] game: 150 +> [20464] game's: 1 +> [20465] game--marking: 1 +> [20466] game--play: 1 +> [20467] game-bag: 1 +> [20468] game-keepers: 1 +> [20469] gamekeeper's: 1 +> [20470] games: 18 +> [20471] gaming-table: 1 +> [20472] gaming-tables: 1 +> [20473] gander: 2 +> [20474] gandering: 1 +> [20475] gang: 9 +> [20476] ganges: 6 +> [20477] gangrene: 1 +> [20478] gangs: 2 +> [20479] gangway: 5 +> [20480] gangways: 1 +> [20481] gania: 327 +> [20482] gania's: 43 +> [20483] gania--confused: 1 +> [20484] gania--especially: 1 +> [20485] gania--it: 1 +> [20486] gania--might: 1 +> [20487] gania--no: 1 +> [20488] gania--oh: 1 +> [20489] ganz: 2 +> [20490] ganze: 2 +> [20491] gaol: 3 +> [20492] gaol--'tis: 1 +> [20493] gaol-birds: 1 +> [20494] gap: 13 +> [20495] gap-toothed: 1 +> [20496] gape: 1 +> [20497] gaped: 8 +> [20498] gapers: 1 +> [20499] gaping: 14 +> [20500] gaps: 4 +> [20501] garb: 3 +> [20502] garbage: 2 +> [20503] garbled: 1 +> [20504] garbs: 1 +> [20505] garcon: 3 +> [20506] gard: 1 +> [20507] garde: 2 +> [20508] garden: 268 +> [20509] garden—the: 1 +> [20510] garden's: 1 +> [20511] garden, [20512] garden,’: 1 +> [20513] garden--that: 1 +> [20514] garden--we: 1 +> [20515] garden-seat: 2 +> [20516] garden.... [20517] garden? [20518] gardener: 10 +> [20519] gardeners: 1 +> [20520] gardenias: 1 +> [20521] gardening: 1 +> [20522] gardens: 43 +> [20523] gardiner: 22 +> [20524] gardiner's: 5 +> [20525] gare: 1 +> [20526] gargantuan: 1 +> [20527] gargouf: 34 +> [20528] gargouf's: 1 +> [20529] garland: 1 +> [20530] garland's: 1 +> [20531] garlands: 3 +> [20532] garment: 12 +> [20533] garments: 24 +> [20534] garnered: 1 +> [20535] garnering: 1 +> [20536] garnett: 8 +> [20537] garnett [20538] garnies: 1 +> [20539] garnish: 1 +> [20540] garret: 20 +> [20541] garrison: 9 +> [20542] garrisoned: 1 +> [20543] garrulous: 2 +> [20544] garrulously: 1 +> [20545] garter: 1 +> [20546] gas: 9 +> [20547] gas-heated: 1 +> [20548] gascon: 1 +> [20549] gasconades: 1 +> [20550] gascons: 2 +> [20551] gascoyne: 2 +> [20552] gase: 1 +> [20553] gash: 2 +> [20554] gashed: 1 +> [20555] gasket: 1 +> [20556] gasoline: 13 +> [20557] gasp: 13 +> [20558] gasp [20559] gasped: 32 +> [20560] gasping: 40 +> [20561] gasps: 7 +> [20562] gaston: 1 +> [20563] gastronomic: 1 +> [20564] gate: 193 +> [20565] gate--about: 1 +> [20566] gate-pillars: 1 +> [20567] gate-seizing: 1 +> [20568] gate. [20569] gate? [20570] gatehouse: 67 +> [20571] gatehouse--into: 1 +> [20572] gatehouse--there: 1 +> [20573] gatepost: 1 +> [20574] gates: 73 +> [20575] gateway: 50 +> [20576] gateway--the: 1 +> [20577] gath: 1 +> [20578] gather: 28 +> [20579] gathered: 133 +> [20580] gathering: 59 +> [20581] gathering [20582] gatherings: 7 +> [20583] gathers: 4 +> [20584] gauche: 1 +> [20585] gaudy: 7 +> [20586] gauge: 5 +> [20587] gauged: 1 +> [20588] gauls: 1 +> [20589] gaunt: 8 +> [20590] gauntlet: 4 +> [20591] gauntlets: 3 +> [20592] gautier's: 1 +> [20593] gauze: 10 +> [20594] gauzy: 2 +> [20595] gave: 1115 +> [20596] gave--that: 1 +> [20597] gavest: 2 +> [20598] gavril: 1 +> [20599] gavrila: 61 +> [20600] gawky: 1 +> [20601] gawpin: 1 +> [20602] gay: 131 +> [20603] gay [20604] gayest: 1 +> [20605] gayety: 10 +> [20606] gayly: 21 +> [20607] gaze: 87 +> [20608] gaze, [20609] gaze--he: 1 +> [20610] gazed: 316 +> [20611] gazer: 1 +> [20612] gazers: 3 +> [20613] gazes: 3 +> [20614] gazetny: 1 +> [20615] gazetoy: 1 +> [20616] gazette: 7 +> [20617] gazettes: 1 +> [20618] gazing: 239 +> [20619] gbnewby@pglaf.org: 19 +> [20620] gdrard's: 1 +> [20621] gear: 1 +> [20622] gears: 1 +> [20623] geben: 1 +> [20624] gee: 3 +> [20625] gee-up: 1 +> [20626] geese: 9 +> [20627] geist [20628] geist. [20629] gelatine: 8 +> [20630] gelding: 4 +> [20631] gelungen: 1 +> [20632] gem: 3 +> [20633] gemahlin: 1 +> [20634] gems: 2 +> [20635] gen: 2 +> [20636] gendarme's: 1 +> [20637] gendarmes: 2 +> [20638] genealogical: 2 +> [20639] genealogies: 1 +> [20640] genealogy: 2 +> [20641] genera: 1 +> [20642] general: 1341 +> [20643] general's: 59 +> [20644] general, [20645] general--a: 1 +> [20646] general--could: 1 +> [20647] general--mourning: 1 +> [20648] general--of: 1 +> [20649] general-in-chief: 1 +> [20650] general?--the: 1 +> [20651] generaldom: 1 +> [20652] generalised: 4 +> [20653] generalities: 5 +> [20654] generality: 1 +> [20655] generalization: 3 +> [20656] generalizations: 1 +> [20657] generalized: 3 +> [20658] generalizing: 1 +> [20659] generally: 195 +> [20660] generally--if: 1 +> [20661] generally--just: 1 +> [20662] generally--we: 1 +> [20663] generals: 123 +> [20664] generals--as: 1 +> [20665] generals--davout: 1 +> [20666] generate: 1 +> [20667] generated: 3 +> [20668] generation: 54 +> [20669] generation—to: 1 +> [20670] generations: 66 +> [20671] generations--all: 1 +> [20672] generaux: 1 +> [20673] generic: 1 +> [20674] generosity: 44 +> [20675] generosity, [20676] generosity--my: 1 +> [20677] generosity. [20678] generous: 77 +> [20679] generous, [20680] generous-hearted: 1 +> [20681] generously: 23 +> [20682] generously— [20683] geneva: 4 +> [20684] genevese: 1 +> [20685] geneviève: 1 +> [20686] genewal: 1 +> [20687] genial: 9 +> [20688] geniality: 1 +> [20689] genially: 8 +> [20690] genius: 96 +> [20691] genius,--nay: 1 +> [20692] genius,--so: 1 +> [20693] genius--napoleon: 1 +> [20694] genius--now: 1 +> [20695] genius--of: 1 +> [20696] genius--speranski: 1 +> [20697] genius--that's: 1 +> [20698] geniuses: 5 +> [20699] genlis: 6 +> [20700] gennesaret: 1 +> [20701] genoa: 5 +> [20702] genre: 2 +> [20703] genteel: 20 +> [20704] genteelly: 3 +> [20705] gentian: 1 +> [20706] gentil: 1 +> [20707] gentile: 58 +> [20708] gentile-christian: 1 +> [20709] gentiles: 60 +> [20710] gentiles.’: 1 +> [20711] gentility: 9 +> [20712] gentille: 2 +> [20713] gentle: 134 +> [20714] gentlefolk: 6 +> [20715] gentlefolks: 1 +> [20716] gentleman: 542 +> [20717] gentleman! [20718] gentleman"--and: 1 +> [20719] gentleman's: 23 +> [20720] gentleman,--drive: 1 +> [20721] gentleman,’: 5 +> [20722] gentleman,”: 2 +> [20723] gentleman--evidently: 1 +> [20724] gentleman--ivan: 1 +> [20725] gentleman--that: 1 +> [20726] gentleman--who: 2 +> [20727] gentleman-errant: 1 +> [20728] gentleman-in-waiting: 6 +> [20729] gentleman-ranker--"that: 1 +> [20730] gentlemanliness: 1 +> [20731] gentlemanly: 33 +> [20732] gentleman’s: 15 +> [20733] gentleman”: 1 +> [20734] gentlemen: 615 +> [20735] gentlemen! [20736] gentlemen—smerdyakov: 1 +> [20737] gentlemen—this: 1 +> [20738] gentlemen's: 6 +> [20739] gentlemen,"--and: 1 +> [20740] gentlemen,--sit: 1 +> [20741] gentlemen, [20742] gentlemen--and: 1 +> [20743] gentlemen--but: 1 +> [20744] gentlemen--i: 1 +> [20745] gentlemen--is: 1 +> [20746] gentlemen--on: 1 +> [20747] gentlemen--that: 2 +> [20748] gentlemen--the: 1 +> [20749] gentlemen--two: 1 +> [20750] gentlemen--very: 1 +> [20751] gentlemen--wonderful: 1 +> [20752] gentlemen-in-waiting: 7 +> [20753] gentlemen. [20754] gentlemen—mitya: 1 +> [20755] gentlemen? [20756] gentlemen’s: 4 +> [20757] gentleness: 22 +> [20758] gentleness--_gentle_-man: 1 +> [20759] gentlest: 1 +> [20760] gentlewoman: 5 +> [20761] gentlewoman's: 1 +> [20762] gently: 123 +> [20763] gently--calmly: 1 +> [20764] gentry: 47 +> [20765] gentry's: 1 +> [20766] genug: 1 +> [20767] genuine: 86 +> [20768] genuinely: 50 +> [20769] genuineness: 6 +> [20770] genus: 1 +> [20771] geographer: 1 +> [20772] geographic: 2 +> [20773] geographical: 4 +> [20774] geography: 5 +> [20775] geological: 2 +> [20776] geology: 1 +> [20777] geometric: 1 +> [20778] geometrical: 4 +> [20779] geometricians: 1 +> [20780] geometry: 7 +> [20781] george: 40 +> [20782] george's: 12 +> [20783] george--i: 1 +> [20784] georges: 3 +> [20785] georgia: 1 +> [20786] georgian: 4 +> [20787] gerakov: 1 +> [20788] geranium: 1 +> [20789] geraniums: 2 +> [20790] gerard: 6 +> [20791] gerasim: 26 +> [20792] gerasim's: 1 +> [20793] gerlach: 1 +> [20794] germ: 2 +> [20795] germain: 2 +> [20796] german: 219 +> [20797] german's: 1 +> [20798] german--a: 3 +> [20799] german--i: 1 +> [20800] german--now: 1 +> [20801] german--sent: 1 +> [20802] germans: 45 +> [20803] germany: 26 +> [20804] germicidal: 1 +> [20805] germs: 1 +> [20806] gervais: 7 +> [20807] gervinus: 2 +> [20808] geschichte: 1 +> [20809] gesticulate: 1 +> [20810] gesticulated: 6 +> [20811] gesticulating: 15 +> [20812] gesticulations: 4 +> [20813] gesture: 160 +> [20814] gesture--"one: 1 +> [20815] gesture--terrible: 1 +> [20816] gestures: 39 +> [20817] gestures--and: 1 +> [20818] gestures--inappropriate: 1 +> [20819] get: 1814 +> [20820] get--secretary: 1 +> [20821] get-up: 4 +> [20822] get-up! [20823] gethsemane: 3 +> [20824] gets: 65 +> [20825] getting: 510 +> [20826] gew-gaws: 1 +> [20827] gewgaws: 1 +> [20828] gewiss: 1 +> [20829] ghastlier: 1 +> [20830] ghastliest: 1 +> [20831] ghastly: 9 +> [20832] ghenghis-khans: 1 +> [20833] ghetto: 1 +> [20834] ghost: 22 +> [20835] ghost.’: 1 +> [20836] ghost? [20837] ghost?’: 1 +> [20838] ghostly: 7 +> [20839] ghosts: 11 +> [20840] gi: 2 +> [20841] giant: 13 +> [20842] giant-killer: 1 +> [20843] giants: 6 +> [20844] gibber: 1 +> [20845] gibbering: 3 +> [20846] gibbet: 1 +> [20847] gibbet-ropes: 1 +> [20848] gibbets: 2 +> [20849] gibbon: 1 +> [20850] gibe: 6 +> [20851] gibed: 1 +> [20852] gibes: 5 +> [20853] gibing: 5 +> [20854] gibrard's: 1 +> [20855] giddiness: 7 +> [20856] giddiness--not: 1 +> [20857] giddy: 25 +> [20858] gideon: 2 +> [20859] gies: 1 +> [20860] gift: 71 +> [20861] gift--it's: 1 +> [20862] gift.”: 1 +> [20863] gifted: 8 +> [20864] gifts: 41 +> [20865] gig: 12 +> [20866] gig--a: 1 +> [20867] gigantic: 17 +> [20868] giggle: 4 +> [20869] giggled: 3 +> [20870] giggler: 2 +> [20871] giggles: 1 +> [20872] giggling: 7 +> [20873] gil: 14 +> [20874] gilbert: 1 +> [20875] gilbert's: 1 +> [20876] gilded: 8 +> [20877] gilding: 1 +> [20878] gillot: 1 +> [20879] gilt: 11 +> [20880] gilt-backed: 1 +> [20881] gilt-edged: 1 +> [20882] gimme: 1 +> [20883] gin: 1 +> [20884] gingerbread: 5 +> [20885] giovanni,’: 1 +> [20886] gipsies: 1 +> [20887] girchik: 1 +> [20888] gird: 1 +> [20889] girding: 1 +> [20890] girdle: 16 +> [20891] girdled: 8 +> [20892] girdles: 2 +> [20893] girl: 737 +> [20894] girl"--(she: 1 +> [20895] girl's: 52 +> [20896] girl, [20897] girl--_his: 1 +> [20898] girl--almost: 1 +> [20899] girl--and: 2 +> [20900] girl--he: 2 +> [20901] girl--he'd: 1 +> [20902] girl--it: 1 +> [20903] girl--sixteen: 1 +> [20904] girl--virtuous: 1 +> [20905] girl--what: 2 +> [20906] girl--you: 1 +> [20907] girl...i: 1 +> [20908] girl. [20909] girl? [20910] girl?”: 1 +> [20911] girlhood: 2 +> [20912] girlish: 13 +> [20913] girlishly: 1 +> [20914] girls: 223 +> [20915] girls--"tomorrow: 1 +> [20916] girls--a: 1 +> [20917] girls--and: 1 +> [20918] girls--i: 1 +> [20919] girls--such: 1 +> [20920] girls--the: 1 +> [20921] girls--two: 1 +> [20922] girls--who: 1 +> [20923] girls. [20924] girls: [20925] girl’s: 1 +> [20926] giron: 6 +> [20927] girt: 6 +> [20928] girth: 1 +> [20929] girths: 7 +> [20930] gist: 11 +> [20931] give: 1672 +> [20932] give--and: 1 +> [20933] give--with: 1 +> [20934] given: 846 +> [20935] given—to: 1 +> [20936] given, [20937] given--almost: 1 +> [20938] giver: 4 +> [20939] gives: 147 +> [20940] giving: 375 +> [20941] gizzard: 1 +> [20942] glace: 1 +> [20943] glacial: 3 +> [20944] glad: 604 +> [20945] glad--i: 1 +> [20946] glad--or: 1 +> [20947] glad--she: 1 +> [20948] glad--to: 1 +> [20949] glad...i: 1 +> [20950] glad? [20951] gladden: 2 +> [20952] gladdened: 4 +> [20953] gladdening: 2 +> [20954] gladding: 1 +> [20955] glade: 7 +> [20956] glades: 2 +> [20957] gladiator: 15 +> [20958] gladiator's: 6 +> [20959] gladiators: 1 +> [20960] gladly: 38 +> [20961] gladness: 24 +> [20962] gladsome: 1 +> [20963] gladstone: 1 +> [20964] glafira: 2 +> [20965] glamour: 3 +> [20966] glance: 319 +> [20967] glance--friendly: 1 +> [20968] glanced: 345 +> [20969] glanced--not: 1 +> [20970] glances: 77 +> [20971] glancing: 172 +> [20972] glare: 22 +> [20973] glared: 28 +> [20974] glaring: 27 +> [20975] glass: 340 +> [20976] glass! [20977] glass--started: 1 +> [20978] glass-fronted: 1 +> [20979] glass-stoppered: 4 +> [20980] glasses: 63 +> [20981] glassful: 10 +> [20982] glassy: 3 +> [20983] glass’: 1 +> [20984] glazed: 4 +> [20985] glazing: 1 +> [20986] gleam: 65 +> [20987] gleam--a: 1 +> [20988] gleamed: 58 +> [20989] gleaming: 13 +> [20990] gleams: 5 +> [20991] glean: 1 +> [20992] gleboff: 2 +> [20993] gleboff--but: 1 +> [20994] gleboff--eh: 1 +> [20995] glee: 10 +> [20996] gleeful: 6 +> [20997] gleefully: 17 +> [20998] gleg: 1 +> [20999] glib: 3 +> [21000] glibly: 4 +> [21001] glibness: 1 +> [21002] glide: 4 +> [21003] glided: 10 +> [21004] glides: 1 +> [21005] gliding: 10 +> [21006] glimmer: 12 +> [21007] glimmered: 2 +> [21008] glimmering: 1 +> [21009] glimpse: 46 +> [21010] glimpses: 14 +> [21011] glinka: 1 +> [21012] glint: 3 +> [21013] glissez: 2 +> [21014] glistened: 12 +> [21015] glistening: 11 +> [21016] glistens: 1 +> [21017] glitter: 14 +> [21018] glittered: 40 +> [21019] glittering: 61 +> [21020] glitters: 1 +> [21021] gloat: 4 +> [21022] gloated: 7 +> [21023] gloating: 4 +> [21024] globe: 10 +> [21025] globe--to: 1 +> [21026] glogau: 2 +> [21027] gloom: 49 +> [21028] gloom--a: 1 +> [21029] gloom--by: 1 +> [21030] gloom--remained: 1 +> [21031] gloomed: 1 +> [21032] gloomier: 3 +> [21033] gloomiest: 2 +> [21034] gloomily: 72 +> [21035] gloomily--and: 1 +> [21036] gloominess: 2 +> [21037] gloomy: 205 +> [21038] gloomy-faced: 1 +> [21039] gloomy-looking: 2 +> [21040] gloria: 1 +> [21041] gloriam: 1 +> [21042] gloried: 3 +> [21043] glories: 3 +> [21044] glorification: 1 +> [21045] glorified: 11 +> [21046] glorify: 7 +> [21047] glorifying: 3 +> [21048] glorious: 27 +> [21049] gloriously: 1 +> [21050] gloriously.’: 1 +> [21051] glory: 109 +> [21052] glory!’: 1 +> [21053] glory—that: 1 +> [21054] glory--it: 1 +> [21055] glory.--and: 1 +> [21056] glory. [21057] glory.’: 1 +> [21058] glorying: 1 +> [21059] gloss: 2 +> [21060] glosses: 1 +> [21061] glossy: 10 +> [21062] gloucester: 2 +> [21063] glove: 40 +> [21064] glove-colors: 1 +> [21065] glove;’: 1 +> [21066] gloved: 7 +> [21067] gloves: 89 +> [21068] gloves.”: 1 +> [21069] glow: 54 +> [21070] glowed: 34 +> [21071] glowed--the: 1 +> [21072] glower: 2 +> [21073] glowered: 3 +> [21074] glowering: 7 +> [21075] glowing: 50 +> [21076] glows: 1 +> [21077] glue: 3 +> [21078] glued: 11 +> [21079] glued-up: 1 +> [21080] gluey: 1 +> [21081] gluing: 4 +> [21082] glum: 4 +> [21083] glumly: 2 +> [21084] glut: 1 +> [21085] glutted: 1 +> [21086] glutton: 3 +> [21087] gluttons: 1 +> [21088] gluttony: 3 +> [21089] glyceride: 2 +> [21090] glycerides: 13 +> [21091] glycerin: 3 +> [21092] glycerine: 210 +> [21093] glycerines: 1 +> [21094] glycerol: 27 +> [21095] glycerol-caustic: 2 +> [21096] glycol: 1 +> [21097] glycols: 1 +> [21098] gnarled: 6 +> [21099] gnashed: 2 +> [21100] gnashing: 6 +> [21101] gnaw: 3 +> [21102] gnawed: 4 +> [21103] gnawing: 15 +> [21104] gnaws: 2 +> [21105] gnosis: 4 +> [21106] gnostic: 12 +> [21107] gnosticism: 2 +> [21108] gnostics: 4 +> [21109] go: 3944 +> [21110] go!... [21111] go! [21112] go—about: 1 +> [21113] go—ah—i'll: 1 +> [21114] go, [21115] go--foot: 1 +> [21116] go--go: 1 +> [21117] go--it's: 1 +> [21118] go--that: 1 +> [21119] go--you: 1 +> [21120] go-ahead: 1 +> [21121] go-carts: 1 +> [21122] go-od: 4 +> [21123] go. [21124] go? [21125] goad: 1 +> [21126] goaded: 2 +> [21127] goading: 3 +> [21128] goal: 42 +> [21129] goal—such: 1 +> [21130] goal--moscow: 1 +> [21131] goal--their: 1 +> [21132] goals: 19 +> [21133] goat: 1 +> [21134] goat-weed: 2 +> [21135] goats: 1 +> [21136] goatskin: 4 +> [21137] gobble: 3 +> [21138] gobelin: 1 +> [21139] gobion: 1 +> [21140] goblins: 1 +> [21141] god: 1355 +> [21142] god!"--voices: 1 +> [21143] god!--every: 1 +> [21144] god! [21145] god! [21146] god—an: 1 +> [21147] god—and: 1 +> [21148] god—that's: 1 +> [21149] god's: 165 +> [21150] god, [21151] god--nothing: 1 +> [21152] god--thank: 2 +> [21153] god-father: 1 +> [21154] god-fearing: 4 +> [21155] god-forsaken: 1 +> [21156] god-given: 2 +> [21157] god-head: 1 +> [21158] god-man: 2 +> [21159] god-sent: 1 +> [21160] god. [21161] god [21162] god? [21163] god? [21164] god?’: 1 +> [21165] goddaughter: 1 +> [21166] goddess: 3 +> [21167] goddess! [21168] goddess [21169] godfather: 9 +> [21170] godfather's: 1 +> [21171] godfather--and: 1 +> [21172] godfather. [21173] godfathers: 1 +> [21174] godfrey: 1 +> [21175] godfreys: 4 +> [21176] godless: 3 +> [21177] godliness: 2 +> [21178] godly: 1 +> [21179] godmother: 5 +> [21180] gods: 14 +> [21181] gods! [21182] gods. [21183] gods. [21184] godsend: 4 +> [21185] godson: 1 +> [21186] godson--you: 1 +> [21187] godspeed: 1 +> [21188] god’s: 17 +> [21189] goers: 1 +> [21190] goes: 179 +> [21191] goeth: 2 +> [21192] goethe: 1 +> [21193] goffered: 1 +> [21194] goggles: 1 +> [21195] gogol: 11 +> [21196] gogol's: 6 +> [21197] going: 1824 +> [21198] going, [21199] going--he: 1 +> [21200] going--sheltered: 3 +> [21201] going--to: 1 +> [21202] going--well: 1 +> [21203] going...such: 1 +> [21204] going. [21205] going? [21206] goings: 5 +> [21207] goiter: 2 +> [21208] gold: 173 +> [21209] gold,"--here: 1 +> [21210] gold--ay: 1 +> [21211] gold--i: 1 +> [21212] gold-colored: 1 +> [21213] gold-embroidered: 4 +> [21214] gold-headed: 2 +> [21215] gold-mine: 1 +> [21216] gold-mine? [21217] gold-mines: 12 +> [21218] gold-mines! [21219] gold-mines.... [21220] gold-mines. [21221] gold-mines [21222] gold-mines? [21223] gold-rimmed: 1 +> [21224] gold-trimmings: 1 +> [21225] gold. [21226] goldbach: 1 +> [21227] golden: 58 +> [21228] golden-haired: 2 +> [21229] golden-haired, [21230] goldfinch: 1 +> [21231] goldsmith’s: 1 +> [21232] golenishtchev: 57 +> [21233] golenishtchev's: 10 +> [21234] golf: 4 +> [21235] golgotha: 1 +> [21236] goliath: 4 +> [21237] golistin: 1 +> [21238] golitsyn: 6 +> [21239] golitzina: 1 +> [21240] goloshes: 5 +> [21241] golubtsov's: 1 +> [21242] golukhovski: 1 +> [21243] gone: 960 +> [21244] gone, [21245] gone--to: 1 +> [21246] gone. [21247] gone? [21248] gonesse: 1 +> [21249] gontaut: 24 +> [21250] gontaut's: 4 +> [21251] gontauts: 1 +> [21252] gooch: 5 +> [21253] good: 2498 +> [21254] good! [21255] good"--again: 1 +> [21256] good"--and: 1 +> [21257] good—that's: 1 +> [21258] good, [21259] good--and: 2 +> [21260] good--if: 1 +> [21261] good--rose: 1 +> [21262] good--so: 1 +> [21263] good--that: 1 +> [21264] good--why: 1 +> [21265] good-afternoon: 2 +> [21266] good-breeding: 9 +> [21267] good-by: 91 +> [21268] good-by! [21269] good-by. [21270] good-bye: 163 +> [21271] good-bye--are: 1 +> [21272] good-bye--i: 1 +> [21273] good-bye--what: 1 +> [21274] good-day: 5 +> [21275] good-evening: 1 +> [21276] good-feeling: 1 +> [21277] good-fellowship: 1 +> [21278] good-for-nothing: 6 +> [21279] good-for-nought: 1 +> [21280] good-hearted: 23 +> [21281] good-humor: 5 +> [21282] good-humored: 51 +> [21283] good-humored-looking: 1 +> [21284] good-humoredly: 22 +> [21285] good-humour: 5 +> [21286] good-humoured: 9 +> [21287] good-humouredly: 2 +> [21288] good-looking: 32 +> [21289] good-mannered: 1 +> [21290] good-morning: 10 +> [21291] good-nature: 8 +> [21292] good-natured: 100 +> [21293] good-naturedly: 13 +> [21294] good-night: 32 +> [21295] good-night"--casually: 1 +> [21296] good-sized: 2 +> [21297] good-tempered: 6 +> [21298] good-wife's: 1 +> [21299] good-will: 2 +> [21300] good-will, [21301] good. [21302] good? [21303] goodbye: 9 +> [21304] goodhearted: 3 +> [21305] goodhumored: 2 +> [21306] goodhumoredly: 1 +> [21307] goodies: 1 +> [21308] goodman: 1 +> [21309] goodness: 167 +> [21310] goodness--please: 1 +> [21311] goodness--surely: 1 +> [21312] goodness. [21313] goodnight: 2 +> [21314] goods: 44 +> [21315] goods--and: 1 +> [21316] goodwill: 4 +> [21317] goody-goody: 1 +> [21318] goose: 22 +> [21319] goose! [21320] goose's: 2 +> [21321] goose, [21322] goose-flesh: 2 +> [21323] goose-quill: 2 +> [21324] goose. [21325] gooseberries: 1 +> [21326] gooseberry: 1 +> [21327] goot: 3 +> [21328] gorbunov: 1 +> [21329] gorchakov: 1 +> [21330] gorcum: 1 +> [21331] gore: 3 +> [21332] gorge: 2 +> [21333] gorgeous: 11 +> [21334] gorgeously: 1 +> [21335] gorgeously-dressed: 1 +> [21336] gorges: 3 +> [21337] gorging: 1 +> [21338] goring: 1 +> [21339] gorki: 9 +> [21340] gorohovaya: 5 +> [21341] gorse: 3 +> [21342] gorsky: 2 +> [21343] gorstkin: 7 +> [21344] gory: 4 +> [21345] goryachkin: 13 +> [21346] gosling: 1 +> [21347] gosp: 1 +> [21348] gospel: 280 +> [21349] gospel--it: 1 +> [21350] gospel--transfiguration: 1 +> [21351] gospelers: 2 +> [21352] gospels: 31 +> [21353] gossamer: 1 +> [21354] gossip: 62 +> [21355] gossip-mongers--those: 1 +> [21356] gossiped: 3 +> [21357] gossiping: 4 +> [21358] gossips: 2 +> [21359] gostiny: 3 +> [21360] got: 1260 +> [21361] got--a: 1 +> [21362] got--for: 1 +> [21363] got? [21364] gothic: 1 +> [21365] gott: 4 +> [21366] gotten: 2 +> [21367] goulard's: 1 +> [21368] gourmand: 2 +> [21369] gout: 1 +> [21370] gouvernement: 1 +> [21371] gov: 1 +> [21372] govern: 35 +> [21373] governed: 13 +> [21374] governess: 63 +> [21375] governess's: 4 +> [21376] governesses: 15 +> [21377] governing: 8 +> [21378] government: 182 +> [21379] government"--this: 1 +> [21380] government's: 2 +> [21381] government--an: 1 +> [21382] government--be: 1 +> [21383] government--this: 1 +> [21384] governmental: 3 +> [21385] governments: 3 +> [21386] governor: 70 +> [21387] governor's: 35 +> [21388] governor,--merely: 1 +> [21389] governor--with: 1 +> [21390] governor-general: 4 +> [21391] governors: 5 +> [21392] governorship: 1 +> [21393] governs: 3 +> [21394] gown: 83 +> [21395] gowns: 5 +> [21396] gr: 16 +> [21397] gra--gra--gratitude: 1 +> [21398] grab: 2 +> [21399] grabbed: 7 +> [21400] grabern: 13 +> [21401] grabern--and: 1 +> [21402] grabovsky: 1 +> [21403] grace: 94 +> [21404] grace! [21405] grace's: 4 +> [21406] grace--came: 1 +> [21407] grace. [21408] graced: 1 +> [21409] graceful: 54 +> [21410] gracefully: 16 +> [21411] gracefulness: 1 +> [21412] graceless: 3 +> [21413] graces: 16 +> [21414] graces_--but: 1 +> [21415] gracieuse: 1 +> [21416] gracieux: 1 +> [21417] gracious: 53 +> [21418] gracious! [21419] graciously: 24 +> [21420] graciousness: 1 +> [21421] grade: 32 +> [21422] grades: 18 +> [21423] gradual: 8 +> [21424] gradually: 107 +> [21425] gradually--just: 1 +> [21426] graduate: 1 +> [21427] graduated: 13 +> [21428] graduation: 2 +> [21429] graduations: 1 +> [21430] grafted: 1 +> [21431] graham: 2 +> [21432] grain: 62 +> [21433] grain—that: 1 +> [21434] grain--who: 1 +> [21435] grain-store: 1 +> [21436] grain. [21437] grained: 8 +> [21438] graining: 11 +> [21439] grains: 14 +> [21440] graisses: 1 +> [21441] gram: 20 +> [21442] grammar: 11 +> [21443] grammar—that's: 1 +> [21444] grammatical: 4 +> [21445] grams: 61 +> [21446] granaries: 2 +> [21447] granaries--for: 1 +> [21448] granary: 3 +> [21449] grand: 125 +> [21450] grand-patience: 1 +> [21451] grandchild: 4 +> [21452] grandchildren: 6 +> [21453] grandchlid: 1 +> [21454] granddad: 6 +> [21455] granddaughter: 5 +> [21456] grande: 5 +> [21457] grandee: 4 +> [21458] grandee's: 1 +> [21459] grandees: 2 +> [21460] grander: 3 +> [21461] grandest: 1 +> [21462] grandeur: 22 +> [21463] grandeur--for: 1 +> [21464] grandeur--which: 1 +> [21465] grandfather: 19 +> [21466] grandfather's: 5 +> [21467] grandfathers: 3 +> [21468] grandiloquent: 2 +> [21469] grandiloquently: 2 +> [21470] grandly: 7 +> [21471] grandmamma's: 1 +> [21472] grandmother: 72 +> [21473] grandmother! [21474] grandmother's: 7 +> [21475] grandmother--are: 1 +> [21476] grands: 1 +> [21477] grandsire: 1 +> [21478] grandson: 6 +> [21479] grandsons: 1 +> [21480] grandure: 1 +> [21481] grange: 1 +> [21482] granite: 5 +> [21483] granny: 11 +> [21484] granny, [21485] grant: 52 +> [21486] granted: 62 +> [21487] granting: 6 +> [21488] grants: 2 +> [21489] granular: 3 +> [21490] granvelle: 1 +> [21491] granvelle--no: 1 +> [21492] granville: 1 +> [21493] grape: 2 +> [21494] grape-shot: 1 +> [21495] grapes: 2 +> [21496] grapeshot: 13 +> [21497] graphic: 1 +> [21498] graphically: 1 +> [21499] grapple: 3 +> [21500] grappling: 1 +> [21501] gras: 1 +> [21502] grasp: 71 +> [21503] grasped: 43 +> [21504] grasping: 23 +> [21505] grass: 140 +> [21506] grass-grown: 1 +> [21507] grasseyement: 1 +> [21508] grasshoppers: 1 +> [21509] grassland: 1 +> [21510] grasslands: 1 +> [21511] grassy: 3 +> [21512] grate: 3 +> [21513] grated: 1 +> [21514] grateful: 99 +> [21515] grateful, [21516] grateful. [21517] gratefully: 39 +> [21518] gratification: 25 +> [21519] gratified: 13 +> [21520] gratify: 10 +> [21521] gratifying: 1 +> [21522] grating: 8 +> [21523] grating-but: 1 +> [21524] gratings: 3 +> [21525] gratis: 4 +> [21526] gratitude: 83 +> [21527] gratitude— [21528] gratitude, [21529] gratitude--this: 1 +> [21530] gratuities: 2 +> [21531] gratuitous: 5 +> [21532] gratuity: 1 +> [21533] grave: 147 +> [21534] grave! [21535] grave-diggers: 1 +> [21536] grave. [21537] grave [21538] grave? [21539] graveclothes: 1 +> [21540] gravediggers: 3 +> [21541] gravel: 8 +> [21542] graveled: 1 +> [21543] gravely: 89 +> [21544] graven: 1 +> [21545] graver: 5 +> [21546] graves: 6 +> [21547] gravest: 4 +> [21548] graveyard: 10 +> [21549] gravimetric: 1 +> [21550] gravimetrically: 1 +> [21551] gravitate: 1 +> [21552] gravitation: 6 +> [21553] gravities: 2 +> [21554] gravity: 57 +> [21555] gravy: 1 +> [21556] gray: 169 +> [21557] gray-bearded: 2 +> [21558] gray-blue: 2 +> [21559] gray-faced: 1 +> [21560] gray-green: 2 +> [21561] gray-haired: 6 +> [21562] gray-headed: 2 +> [21563] gray-whiskered: 3 +> [21564] grayer: 1 +> [21565] grayish: 3 +> [21566] grayness: 3 +> [21567] grays: 3 +> [21568] graze: 1 +> [21569] grazed: 8 +> [21570] grazing: 2 +> [21571] grease: 66 +> [21572] greased: 2 +> [21573] greases: 6 +> [21574] greasy: 25 +> [21575] great: 1991 +> [21576] great—expectations: 1 +> [21577] great—too: 1 +> [21578] great's: 3 +> [21579] great--and: 1 +> [21580] great--ideas: 1 +> [21581] great--in: 1 +> [21582] great-coat: 11 +> [21583] great-coats: 2 +> [21584] great-grandchildren: 2 +> [21585] great-grandfather: 4 +> [21586] great-hearted: 1 +> [21587] greatcoat: 19 +> [21588] greatcoats: 10 +> [21589] greater: 261 +> [21590] greatest: 191 +> [21591] greatly: 156 +> [21592] greatness: 33 +> [21593] greatness! [21594] grecian: 1 +> [21595] grecizing: 2 +> [21596] grecque: 2 +> [21597] greece: 7 +> [21598] greed: 3 +> [21599] greedily: 30 +> [21600] greediness: 6 +> [21601] greedy: 12 +> [21602] greek: 67 +> [21603] greek's: 2 +> [21604] greek-christian: 1 +> [21605] greek-speaking: 5 +> [21606] greeks: 3 +> [21607] green: 183 +> [21608] greened: 1 +> [21609] greener: 2 +> [21610] greenery: 1 +> [21611] greenhorn: 1 +> [21612] greenhouse: 1 +> [21613] greenish: 6 +> [21614] greenish-hazel: 1 +> [21615] greenland: 1 +> [21616] greenness: 3 +> [21617] greens: 3 +> [21618] greenwich: 6 +> [21619] greenwood: 1 +> [21620] greet: 29 +> [21621] greeted: 75 +> [21622] greeting: 52 +> [21623] greetings: 27 +> [21624] gregory: 21 +> [21625] grekov: 5 +> [21626] grenade: 2 +> [21627] grenadier: 5 +> [21628] grenadier's: 1 +> [21629] grenadiers: 8 +> [21630] grenadiers--fine: 1 +> [21631] grenfell: 1 +> [21632] gretchen: 1 +> [21633] grethan: 1 +> [21634] greville: 10 +> [21635] greville's--"and: 1 +> [21636] grew: 423 +> [21637] grew--and: 1 +> [21638] grewsome: 1 +> [21639] grey: 50 +> [21640] grey-and-rainbow-coloured: 1 +> [21641] grey-haired: 2 +> [21642] grey-headed: 4 +> [21643] greyhounds: 1 +> [21644] greyish: 3 +> [21645] greyness: 1 +> [21646] grid: 3 +> [21647] gridneva: 1 +> [21648] gridyenko: 1 +> [21649] gridyenko's: 1 +> [21650] grief: 136 +> [21651] grief, [21652] grief,”: 1 +> [21653] grief--i: 1 +> [21654] grief-stricken: 1 +> [21655] grief. [21656] griefs: 1 +> [21657] grievance: 10 +> [21658] grievances: 3 +> [21659] grieve: 27 +> [21660] grieve, [21661] grieved: 35 +> [21662] grieves: 3 +> [21663] grieving: 19 +> [21664] grievous: 9 +> [21665] grievously: 7 +> [21666] griffiths: 1 +> [21667] grigorievitch: 2 +> [21668] grigory: 167 +> [21669] grigory! [21670] grigory—grigory: 1 +> [21671] grigory—that: 1 +> [21672] grigory's: 18 +> [21673] grigory. [21674] grigoryev: 1 +> [21675] grigoryevitch: 1 +> [21676] grille: 4 +> [21677] grim: 39 +> [21678] grim--visaged: 1 +> [21679] grim-faced: 1 +> [21680] grimace: 19 +> [21681] grimaced: 1 +> [21682] grimaces: 6 +> [21683] grime: 2 +> [21684] grimed: 1 +> [21685] grimly: 25 +> [21686] grimly,--for: 1 +> [21687] grimm's: 1 +> [21688] grimmer: 2 +> [21689] grimmest: 1 +> [21690] grimy: 11 +> [21691] grimy-handed: 1 +> [21692] grin: 35 +> [21693] grind: 17 +> [21694] grinder: 4 +> [21695] grinders: 1 +> [21696] grinding: 26 +> [21697] grinds: 2 +> [21698] grindstone: 2 +> [21699] grinevitch: 5 +> [21700] grinevitch"--and: 1 +> [21701] grinevitch's: 3 +> [21702] grinned: 23 +> [21703] grinning: 21 +> [21704] grins—he: 1 +> [21705] grip: 17 +> [21706] grippe: 2 +> [21707] gripped: 22 +> [21708] gripping: 8 +> [21709] grips: 2 +> [21710] grisha: 34 +> [21711] grisha's: 2 +> [21712] grishkino: 14 +> [21713] grisly: 5 +> [21714] grit: 2 +> [21715] gritsky's: 1 +> [21716] gritting: 1 +> [21717] grizzled: 8 +> [21718] grizzly-haired: 1 +> [21719] groan: 25 +> [21720] groaned: 34 +> [21721] groaned-and: 1 +> [21722] groaning: 26 +> [21723] groanings: 2 +> [21724] groans: 28 +> [21725] groat: 4 +> [21726] groats: 1 +> [21727] grocer: 4 +> [21728] grocer's: 1 +> [21729] grocery: 3 +> [21730] groggy: 1 +> [21731] groin: 1 +> [21732] groined: 1 +> [21733] groom: 32 +> [21734] groomed: 2 +> [21735] grooms: 5 +> [21736] groomsman: 1 +> [21737] groomsman’s: 1 +> [21738] groomsmen: 2 +> [21739] groove: 2 +> [21740] grooved: 3 +> [21741] grope: 6 +> [21742] groped: 10 +> [21743] groping: 8 +> [21744] gros: 2 +> [21745] gross: 37 +> [21746] grossest: 4 +> [21747] grossly: 5 +> [21748] grossness: 2 +> [21749] grossvater: 1 +> [21750] grotesque: 17 +> [21751] grotesque-looking: 1 +> [21752] grottoes: 1 +> [21753] ground: 388 +> [21754] ground! [21755] ground, [21756] ground--"that's: 1 +> [21757] ground--a: 1 +> [21758] ground--she: 1 +> [21759] ground-floor: 2 +> [21760] ground.”: 1 +> [21761] ground? [21762] grounded: 2 +> [21763] groundless: 7 +> [21764] groundlessness: 1 +> [21765] grounds: 47 +> [21766] group: 215 +> [21767] grouped: 8 +> [21768] grouping: 4 +> [21769] groups: 58 +> [21770] groups--those: 1 +> [21771] grouse: 19 +> [21772] grouse-marsh: 1 +> [21773] grouse-shooting: 1 +> [21774] grove: 13 +> [21775] grovel: 3 +> [21776] groveling: 1 +> [21777] grovelled: 7 +> [21778] grovelling: 2 +> [21779] grovels: 1 +> [21780] groves: 3 +> [21781] grow: 121 +> [21782] grower: 1 +> [21783] growing: 236 +> [21784] growing--look: 1 +> [21785] growing-pains: 1 +> [21786] growl: 3 +> [21787] growled: 28 +> [21788] growling: 3 +> [21789] growls: 1 +> [21790] grown: 237 +> [21791] grown-up: 42 +> [21792] grown-ups: 1 +> [21793] grownup: 3 +> [21794] grows: 26 +> [21795] growth: 24 +> [21796] growths: 1 +> [21797] grudge: 26 +> [21798] grudged: 6 +> [21799] grudges: 4 +> [21800] grudgingly: 5 +> [21801] gruel: 1 +> [21802] gruff: 5 +> [21803] gruffly: 8 +> [21804] grumble: 3 +> [21805] grumbled: 13 +> [21806] grumbling: 17 +> [21807] grumpily: 1 +> [21808] grumpy: 2 +> [21809] grundy: 1 +> [21810] grunt: 4 +> [21811] grunted: 8 +> [21812] gruntersdorf: 1 +> [21813] grunth: 4 +> [21814] grunting: 2 +> [21815] grunts: 2 +> [21816] grusha: 14 +> [21817] grusha, [21818] grushenka: 311 +> [21819] grushenka's: 35 +> [21820] grushenka's [21821] grushenka, [21822] grushenka? [21823] gruzinski: 1 +> [21824] gruzinski's: 1 +> [21825] grève: 4 +> [21826] grétry: 1 +> [21827] grévys: 1 +> [21828] guai: 1 +> [21829] guarantee: 13 +> [21830] guarantee?--to: 1 +> [21831] guaranteed: 5 +> [21832] guaranteeing: 5 +> [21833] guarantees: 6 +> [21834] guard: 111 +> [21835] guard's: 4 +> [21836] guard--both: 1 +> [21837] guard--i: 1 +> [21838] guard--if: 1 +> [21839] guard-room: 2 +> [21840] guard. [21841] guarded: 14 +> [21842] guardedly: 1 +> [21843] guardhouse: 3 +> [21844] guardian: 11 +> [21845] guardians: 3 +> [21846] guardianship: 2 +> [21847] guarding: 6 +> [21848] guards: 124 +> [21849] guards--that: 1 +> [21850] guardsman: 5 +> [21851] guardsman's: 3 +> [21852] guardsmen: 1 +> [21853] gudgeon: 4 +> [21854] gudgeon. [21855] guelder-rose: 1 +> [21856] guelders: 1 +> [21857] guerre: 6 +> [21858] guerrilla: 11 +> [21859] guerrillas: 3 +> [21860] guess: 101 +> [21861] guess--for: 1 +> [21862] guess-work: 1 +> [21863] guess. [21864] guessed: 139 +> [21865] guessed! [21866] guessed, [21867] guessed--let's: 1 +> [21868] guesses: 3 +> [21869] guessing: 24 +> [21870] guest: 99 +> [21871] guest! [21872] guest's: 1 +> [21873] guest--and: 1 +> [21874] guest-room: 1 +> [21875] guest. [21876] guest? [21877] guests: 201 +> [21878] guests--an: 1 +> [21879] guests--chiefly: 1 +> [21880] guests--not: 1 +> [21881] guests--sergey: 1 +> [21882] guests--the: 1 +> [21883] guests--who: 1 +> [21884] guet: 3 +> [21885] gueules: 2 +> [21886] guffaw: 13 +> [21887] guffawed: 2 +> [21888] guffawing: 1 +> [21889] guffaws: 1 +> [21890] guidance: 28 +> [21891] guidance. [21892] guide: 61 +> [21893] guide-book: 1 +> [21894] guidebook: 1 +> [21895] guided: 40 +> [21896] guides: 12 +> [21897] guiding: 15 +> [21898] guido: 1 +> [21899] guienne: 3 +> [21900] guild: 3 +> [21901] guile: 2 +> [21902] guileless: 2 +> [21903] guillaume: 2 +> [21904] guillotine: 5 +> [21905] guillotine--i: 1 +> [21906] guillotine-it: 1 +> [21907] guillotined: 2 +> [21908] guilt: 46 +> [21909] guilt? [21910] guiltily: 1 +> [21911] guiltless: 4 +> [21912] guiltlessness: 1 +> [21913] guilty: 151 +> [21914] guilty! [21915] guilty--a: 1 +> [21916] guilty--oh: 1 +> [21917] guilty. [21918] guilty? [21919] guinea: 5 +> [21920] guineas: 5 +> [21921] guinegate: 1 +> [21922] guipure: 1 +> [21923] guise: 9 +> [21924] guitar: 17 +> [21925] guitar [21926] guizot: 2 +> [21927] gules: 3 +> [21928] gulf: 6 +> [21929] gulf-stream: 1 +> [21930] gullies: 2 +> [21931] gulls: 1 +> [21932] gully: 8 +> [21933] gulp: 6 +> [21934] gulped: 5 +> [21935] gulping: 4 +> [21936] gulps: 1 +> [21937] gum: 2 +> [21938] gummed: 1 +> [21939] gummy: 2 +> [21940] gums: 1 +> [21941] gun: 88 +> [21942] gun's: 1 +> [21943] gun-barrel: 2 +> [21944] gun?--it: 1 +> [21945] gunner: 8 +> [21946] gunners: 2 +> [21947] gunpowder: 17 +> [21948] gunpowder, [21949] gunpowder. [21950] guns: 112 +> [21951] guns--should: 1 +> [21952] guns--the: 1 +> [21953] gurgle: 1 +> [21954] gurgle--half: 1 +> [21955] gurgles: 1 +> [21956] gurgling: 2 +> [21957] gurin's: 1 +> [21958] gurot: 2 +> [21959] guryev: 1 +> [21960] guryev's: 1 +> [21961] gush: 1 +> [21962] gushed: 10 +> [21963] gushing: 6 +> [21964] gussets: 1 +> [21965] gust: 11 +> [21966] gusto: 2 +> [21967] gusts: 4 +> [21968] gut: 2 +> [21969] gutenberg: 560 +> [21970] gutenberg's: 11 +> [21971] gutenberg-tm: 1064 +> [21972] gutenberg-tm's: 19 +> [21973] gutenberg [21974] gutter: 10 +> [21975] guttered: 2 +> [21976] guttering: 3 +> [21977] gutters: 1 +> [21978] guttural: 10 +> [21979] gutturally: 1 +> [21980] guzzling: 1 +> [21981] gvozdyov: 4 +> [21982] gwace: 1 +> [21983] gweat: 1 +> [21984] gwief: 1 +> [21985] gwiska--my: 1 +> [21986] gwovel: 1 +> [21987] gwown: 1 +> [21988] gwudge: 1 +> [21989] gymnasium: 8 +> [21990] gymnast: 2 +> [21991] gymnastic: 3 +> [21992] gymnastics: 4 +> [21993] gypsies: 19 +> [21994] gypsum: 2 +> [21995] gypsy: 17 +> [21996] gzhat: 1 +> [21997] géol: 24 +> [21998] géol's: 1 +> [21999] h: 29 +> [22000] h'm: 91 +> [22001] h'm!--no: 1 +> [22002] h'm!... [22003] h'm! [22004] h'm--nice: 1 +> [22005] h'm--well: 1 +> [22006] h-a: 1 +> [22007] h-o-o-w: 1 +> [22008] h_{2}o: 1 +> [22009] h_{2}so_{4: 1 +> [22010] h_{5: 2 +> [22011] ha: 253 +> [22012] ha!--i: 1 +> [22013] ha! [22014] ha'p'orth: 1 +> [22015] ha'porth: 2 +> [22016] ha--that's: 1 +> [22017] ha-ave: 4 +> [22018] ha-ha: 12 +> [22019] ha-ha-ha: 15 +> [22020] ha-ve: 1 +> [22021] habiliments: 1 +> [22022] habit: 153 +> [22023] habit. [22024] habitation: 4 +> [22025] habitations: 1 +> [22026] habits: 86 +> [22027] habits.”: 1 +> [22028] habitual: 61 +> [22029] habitually: 10 +> [22030] habla: 1 +> [22031] hack: 11 +> [22032] hack-drivers: 1 +> [22033] hacked: 1 +> [22034] hacking: 2 +> [22035] hackle: 1 +> [22036] hackney: 3 +> [22037] hackneyed: 4 +> [22038] hacks: 1 +> [22039] had: 22694 +> [22040] had!’: 1 +> [22041] had--a: 1 +> [22042] had--for: 1 +> [22043] had--four: 1 +> [22044] had--he: 1 +> [22045] had--i: 2 +> [22046] had--if: 1 +> [22047] had--it: 1 +> [22048] had--once: 1 +> [22049] had--to: 1 +> [22050] had--unless: 1 +> [22051] had. [22052] hadn't: 109 +> [22053] hadrian: 1 +> [22054] hadst: 6 +> [22055] haemorrhage: 1 +> [22056] hag: 4 +> [22057] hag's: 1 +> [22058] hagar: 1 +> [22059] haggard: 8 +> [22060] haggle: 3 +> [22061] haggled: 1 +> [22062] haggling: 4 +> [22063] hail: 16 +> [22064] hailed: 12 +> [22065] hailing: 2 +> [22066] hails: 2 +> [22067] hailstones: 1 +> [22068] hailstorm: 1 +> [22069] hainault: 3 +> [22070] haines: 4 +> [22071] hair: 478 +> [22072] hair's: 8 +> [22073] hair's-breadth: 3 +> [22074] hair--a: 1 +> [22075] hair--her: 2 +> [22076] hair-dresser: 2 +> [22077] hair-dresser's: 1 +> [22078] hair-dressing: 1 +> [22079] hair-shirt: 1 +> [22080] hair. [22081] hairdresser's: 1 +> [22082] hairdressing: 1 +> [22083] haired: 1 +> [22084] hairpins: 3 +> [22085] hairs: 12 +> [22086] hairy: 12 +> [22087] hal: 1 +> [22088] halacha: 1 +> [22089] halberds: 1 +> [22090] halbert: 6 +> [22091] halcyon: 2 +> [22092] haled: 2 +> [22093] hales: 1 +> [22094] half: 765 +> [22095] half! [22096] half--hour: 1 +> [22097] half--past: 1 +> [22098] half--so: 1 +> [22099] half-a-dozen: 5 +> [22100] half-an-hour: 1 +> [22101] half-animate: 1 +> [22102] half-asleep: 1 +> [22103] half-asleep--and: 1 +> [22104] half-awake: 2 +> [22105] half-barbarous: 1 +> [22106] half-bottle: 1 +> [22107] half-broken-down: 1 +> [22108] half-brother: 4 +> [22109] half-burned: 3 +> [22110] half-choked: 1 +> [22111] half-circle: 1 +> [22112] half-closed: 10 +> [22113] half-closing: 3 +> [22114] half-clothed: 1 +> [22115] half-conscious: 3 +> [22116] half-contemptuous: 1 +> [22117] half-convinced: 1 +> [22118] half-crazy: 3 +> [22119] half-crop: 2 +> [22120] half-cut: 1 +> [22121] half-dark: 1 +> [22122] half-desperate: 1 +> [22123] half-dozen: 6 +> [22124] half-drunken: 1 +> [22125] half-dying: 1 +> [22126] half-eaten: 2 +> [22127] half-educated: 1 +> [22128] half-enjoy: 1 +> [22129] half-fainting: 2 +> [22130] half-fierce: 1 +> [22131] half-frozen: 2 +> [22132] half-glass: 2 +> [22133] half-gone: 1 +> [22134] half-grown: 2 +> [22135] half-hall: 1 +> [22136] half-hearted: 2 +> [22137] half-heartedly: 1 +> [22138] half-heathen: 1 +> [22139] half-hidden: 4 +> [22140] half-hour: 14 +> [22141] half-hour's: 1 +> [22142] half-hour--and: 1 +> [22143] half-imbecile: 2 +> [22144] half-inclined: 1 +> [22145] half-insane: 2 +> [22146] half-instructions: 1 +> [22147] half-jew: 1 +> [22148] half-joking: 1 +> [22149] half-light: 3 +> [22150] half-long: 1 +> [22151] half-minded: 2 +> [22152] half-mirthful: 1 +> [22153] half-moon: 1 +> [22154] half-mown: 1 +> [22155] half-naked: 12 +> [22156] half-open: 4 +> [22157] half-opened: 3 +> [22158] half-parlour: 1 +> [22159] half-past: 44 +> [22160] half-pence: 1 +> [22161] half-penny: 2 +> [22162] half-pike: 1 +> [22163] half-playful: 1 +> [22164] half-price: 1 +> [22165] half-profits: 1 +> [22166] half-reclining: 2 +> [22167] half-risen: 1 +> [22168] half-rising: 1 +> [22169] half-rouble: 2 +> [22170] half-ruined: 2 +> [22171] half-second: 1 +> [22172] half-senseless: 1 +> [22173] half-severed: 1 +> [22174] half-shaven: 2 +> [22175] half-shrouded: 2 +> [22176] half-shut: 2 +> [22177] half-shuttered: 1 +> [22178] half-shy: 1 +> [22179] half-sick: 2 +> [22180] half-sister: 2 +> [22181] half-smile: 1 +> [22182] half-smothered: 2 +> [22183] half-spoken: 1 +> [22184] half-starved: 1 +> [22185] half-stifled: 2 +> [22186] half-suffocated: 1 +> [22187] half-sullen: 1 +> [22188] half-thawed: 1 +> [22189] half-time: 1 +> [22190] half-told: 1 +> [22191] half-unbuttoned: 1 +> [22192] half-utterances: 1 +> [22193] half-uttered: 1 +> [22194] half-wages: 1 +> [22195] half-way: 54 +> [22196] half-whisper: 6 +> [22197] half-witted: 6 +> [22198] half-yard: 1 +> [22199] half. [22200] half? [22201] halfheartedly: 1 +> [22202] halfpence: 3 +> [22203] halfpenny: 12 +> [22204] halfpennyworth: 1 +> [22205] halfway: 21 +> [22206] halifax: 1 +> [22207] hall: 228 +> [22208] hall--"but: 1 +> [22209] hall--and: 1 +> [22210] hall--before: 1 +> [22211] hall--many: 1 +> [22212] hall--simply: 1 +> [22213] hall--the: 2 +> [22214] hall--wherein: 1 +> [22215] hall-porter: 5 +> [22216] halles: 3 +> [22217] hallo: 8 +> [22218] halloa: 2 +> [22219] hallooing--and: 1 +> [22220] hallowed: 1 +> [22221] halls: 3 +> [22222] hallucination: 11 +> [22223] hallucinations: 2 +> [22224] halo: 5 +> [22225] halogen: 1 +> [22226] halt: 25 +> [22227] halt--and: 1 +> [22228] halted: 51 +> [22229] halter: 5 +> [22230] halter, [22231] halting: 18 +> [22232] halts: 1 +> [22233] halved: 2 +> [22234] halves: 9 +> [22235] ham: 5 +> [22236] hamburg: 5 +> [22237] hamlet: 14 +> [22238] hamlet's: 1 +> [22239] hamlets: 3 +> [22240] hammer: 10 +> [22241] hammered: 6 +> [22242] hammering: 9 +> [22243] hammers: 4 +> [22244] hamor: 1 +> [22245] hamper: 2 +> [22246] hampered: 6 +> [22247] hams: 1 +> [22248] han't: 1 +> [22249] hand: 2358 +> [22250] hand—a: 1 +> [22251] hand—that's: 1 +> [22252] hand—what: 1 +> [22253] hand's: 2 +> [22254] hand's-breadth: 1 +> [22255] hand, [22256] hand--"that: 1 +> [22257] hand--'zeal: 1 +> [22258] hand--a: 1 +> [22259] hand--all: 1 +> [22260] hand--and: 3 +> [22261] hand--as: 1 +> [22262] hand--awed: 1 +> [22263] hand--eh: 1 +> [22264] hand--he: 1 +> [22265] hand--his: 1 +> [22266] hand--let: 1 +> [22267] hand--not: 1 +> [22268] hand--she: 1 +> [22269] hand--vases: 1 +> [22270] hand--very: 1 +> [22271] hand--waiting: 1 +> [22272] hand--who: 1 +> [22273] hand--with: 1 +> [22274] hand--you: 1 +> [22275] hand-in-hand: 5 +> [22276] hand-kissing: 1 +> [22277] hand-maid: 1 +> [22278] hand-writing: 2 +> [22279] hand. [22280] hand.’: 1 +> [22281] hand? [22282] handbag: 3 +> [22283] handbook: 8 +> [22284] handed: 144 +> [22285] handful: 17 +> [22286] handfuls: 2 +> [22287] handicap: 1 +> [22288] handicraft: 1 +> [22289] handiest: 1 +> [22290] handing: 38 +> [22291] handiwork: 3 +> [22292] handkerchief: 145 +> [22293] handkerchief, [22294] handkerchief--for: 1 +> [22295] handkerchief--without: 1 +> [22296] handkerchief. [22297] handkerchiefs: 14 +> [22298] handle: 28 +> [22299] handle's: 1 +> [22300] handled: 20 +> [22301] handleless: 1 +> [22302] handles: 1 +> [22303] handling: 11 +> [22304] handmaid: 1 +> [22305] handrails: 1 +> [22306] hands: 1367 +> [22307] hands! [22308] hands— [22309] hands—i've: 1 +> [22310] hands—the: 1 +> [22311] hands,--and: 1 +> [22312] hands--a: 1 +> [22313] hands--enchanting: 1 +> [22314] hands--hands: 1 +> [22315] hands--little: 1 +> [22316] hands--off: 1 +> [22317] hands--she: 1 +> [22318] hands--that: 1 +> [22319] hands--the: 1 +> [22320] hands--those: 1 +> [22321] hands--to: 1 +> [22322] hands-and: 1 +> [22323] hands. [22324] hands? [22325] handshaking: 1 +> [22326] handsome: 239 +> [22327] handsome-the: 1 +> [22328] handsomely: 7 +> [22329] handsomer: 6 +> [22330] handsomest: 1 +> [22331] handwriting: 28 +> [22332] handy: 5 +> [22333] hang: 91 +> [22334] hang--for: 1 +> [22335] hang--or: 1 +> [22336] hang-dog: 1 +> [22337] hanged: 30 +> [22338] hanged--the: 1 +> [22339] hanged--you: 1 +> [22340] hanged”: 1 +> [22341] hanger-on: 1 +> [22342] hangers-on: 1 +> [22343] hanging: 138 +> [22344] hangings: 9 +> [22345] hangman: 1 +> [22346] hangs: 2 +> [22347] hannah: 2 +> [22348] hannibal: 1 +> [22349] hanus: 11 +> [22350] haphazard: 4 +> [22351] hapilovo: 1 +> [22352] hapless: 2 +> [22353] happen: 266 +> [22354] happen--and: 1 +> [22355] happen--despite: 1 +> [22356] happen--she: 1 +> [22357] happen--that: 1 +> [22358] happen. [22359] happened: 814 +> [22360] happened! [22361] happened, [22362] happened--a: 1 +> [22363] happened--that: 1 +> [22364] happened--the: 1 +> [22365] happened--years: 1 +> [22366] happened. [22367] happened?--go: 1 +> [22368] happened? [22369] happening: 91 +> [22370] happening--kutuzov: 1 +> [22371] happening--what: 1 +> [22372] happens: 128 +> [22373] happens--and: 1 +> [22374] happens--than: 4 +> [22375] happens. [22376] happens;--his: 1 +> [22377] happier: 40 +> [22378] happier! [22379] happiest: 20 +> [22380] happily: 59 +> [22381] happiness: 480 +> [22382] happiness! [22383] happiness—and: 1 +> [22384] happiness—those: 1 +> [22385] happiness—where: 1 +> [22386] happiness--ever: 1 +> [22387] happiness--floated: 1 +> [22388] happiness--the: 1 +> [22389] happiness--with: 1 +> [22390] happiness. [22391] happiness [22392] happy: 680 +> [22393] happy—is: 1 +> [22394] happy--and: 2 +> [22395] happy--are: 1 +> [22396] happy--i: 1 +> [22397] happy--that: 1 +> [22398] happy. [22399] happy.’: 1 +> [22400] happy? [22401] har-magedon: 1 +> [22402] harangue: 4 +> [22403] haranguing: 1 +> [22404] harass: 2 +> [22405] harassed: 18 +> [22406] harassing: 6 +> [22407] harbinger: 1 +> [22408] harbor: 4 +> [22409] harbored: 1 +> [22410] harboring: 2 +> [22411] harbour: 3 +> [22412] hard: 410 +> [22413] hard, [22414] hard--like: 1 +> [22415] hard-boiled: 1 +> [22416] hard-by: 1 +> [22417] hard-eyed: 1 +> [22418] hard-frozen: 1 +> [22419] hard-headed: 1 +> [22420] hard-hearted: 3 +> [22421] hard-trodden: 3 +> [22422] hard-uddered: 1 +> [22423] hard-working: 2 +> [22424] harden: 6 +> [22425] hardenburg: 1 +> [22426] hardened: 41 +> [22427] hardening: 8 +> [22428] hardens: 2 +> [22429] harder: 38 +> [22430] harder--ever: 1 +> [22431] hardest: 14 +> [22432] hardhearted: 2 +> [22433] hardiest: 1 +> [22434] hardihood: 3 +> [22435] hardily: 3 +> [22436] hardly: 503 +> [22437] hardness: 13 +> [22438] hardship: 3 +> [22439] hardships: 8 +> [22440] hardtack: 1 +> [22441] hardworking: 1 +> [22442] hardy: 4 +> [22443] hare: 37 +> [22444] hare's: 5 +> [22445] hare--and: 1 +> [22446] hare-lip: 1 +> [22447] hare-lipped: 1 +> [22448] harem: 2 +> [22449] hares: 6 +> [22450] hareskin: 1 +> [22451] harfleur: 1 +> [22452] harincourt: 3 +> [22453] harincourt's: 1 +> [22454] harincourts: 9 +> [22455] hark: 5 +> [22456] harking: 1 +> [22457] harkov: 3 +> [22458] harlamov's: 3 +> [22459] harlot: 8 +> [22460] harlot! [22461] harlotry—i: 1 +> [22462] harlots: 2 +> [22463] harm: 131 +> [22464] harm! [22465] harm's: 2 +> [22466] harm, [22467] harm--and: 1 +> [22468] harm. [22469] harm? [22470] harmed: 2 +> [22471] harmful: 31 +> [22472] harmful--gave: 1 +> [22473] harmfulness: 1 +> [22474] harming: 2 +> [22475] harmless: 38 +> [22476] harmlessly: 3 +> [22477] harmonies: 2 +> [22478] harmonious: 8 +> [22479] harmoniously: 2 +> [22480] harmonize: 4 +> [22481] harmonized: 2 +> [22482] harmonizers: 1 +> [22483] harmony: 58 +> [22484] harmony—with: 1 +> [22485] harms: 2 +> [22486] harnack: 2 +> [22487] harness: 52 +> [22488] harnessed: 26 +> [22489] harnessed--the: 3 +> [22490] harnessing: 5 +> [22491] harp: 9 +> [22492] harper: 2 +> [22493] harping: 2 +> [22494] harpsichord: 2 +> [22495] harpy: 1 +> [22496] harrier: 1 +> [22497] harrow: 1 +> [22498] harrow.’: 1 +> [22499] harrowing: 2 +> [22500] harrows: 7 +> [22501] harry: 4 +> [22502] harry's: 1 +> [22503] harsh: 49 +> [22504] harsher: 4 +> [22505] harshly: 37 +> [22506] harshly--it: 1 +> [22507] harshness: 5 +> [22508] hart: 38 +> [22509] hartley: 4 +> [22510] harum-scarum: 1 +> [22511] haruspices: 1 +> [22512] harvest: 16 +> [22513] harvest--every: 1 +> [22514] harvested: 1 +> [22515] harvesting: 3 +> [22516] harvests: 3 +> [22517] harz: 1 +> [22518] has: 3901 +> [22519] has--men: 1 +> [22520] hash: 2 +> [22521] hashish: 1 +> [22522] hasn't: 65 +> [22523] hast: 47 +> [22524] haste: 301 +> [22525] haste! [22526] haste—if: 1 +> [22527] haste, [22528] haste--and: 1 +> [22529] haste--begin--tell: 1 +> [22530] haste. [22531] hasten: 28 +> [22532] hasten— [22533] hastened: 108 +> [22534] hastening: 18 +> [22535] hastens: 5 +> [22536] hastily: 124 +> [22537] hastily--often: 1 +> [22538] hastiness: 1 +> [22539] hasty: 38 +> [22540] hasty-tempered: 1 +> [22541] hat: 348 +> [22542] hat--a: 1 +> [22543] hat--all: 1 +> [22544] hat--as: 1 +> [22545] hat--well: 1 +> [22546] hat-bands: 1 +> [22547] hat. [22548] hat.’: 1 +> [22549] hatch: 3 +> [22550] hatchards: 2 +> [22551] hatched: 2 +> [22552] hatched,’: 1 +> [22553] hatchet: 6 +> [22554] hatching: 4 +> [22555] hatch’d: 1 +> [22556] hate: 169 +> [22557] hated: 130 +> [22558] hateful: 48 +> [22559] hater: 1 +> [22560] hates: 22 +> [22561] hatest: 1 +> [22562] hatfield: 2 +> [22563] hath: 26 +> [22564] hating: 15 +> [22565] hatless: 1 +> [22566] hatless--he: 1 +> [22567] hatred: 165 +> [22568] hatred—that: 1 +> [22569] hatred--a: 1 +> [22570] hats: 17 +> [22571] hatstand: 1 +> [22572] hatt: 1 +> [22573] hatter: 1 +> [22574] hatton: 19 +> [22575] hatton's: 15 +> [22576] haughtily: 24 +> [22577] haughtily--"and: 1 +> [22578] haughtiness: 8 +> [22579] haughtiness, [22580] haughty: 44 +> [22581] haugwitz: 1 +> [22582] haul: 5 +> [22583] hauled: 7 +> [22584] haulers: 1 +> [22585] hauling: 3 +> [22586] haunch: 1 +> [22587] haunches: 3 +> [22588] haunt: 4 +> [22589] haunted: 35 +> [22590] haunting: 11 +> [22591] haunts: 7 +> [22592] haute: 2 +> [22593] hautefort: 1 +> [22594] have: 12209 +> [22595] have!--i: 1 +> [22596] have! [22597] have— [22598] have—coffee? [22599] have, [22600] have--'truria: 1 +> [22601] have--damn: 1 +> [22602] have--however: 1 +> [22603] have--much: 1 +> [22604] have. [22605] have? [22606] haven: 7 +> [22607] haven't: 224 +> [22608] haven't, [22609] haven't--what's: 1 +> [22610] haversack: 6 +> [22611] having: 1166 +> [22612] havoc: 2 +> [22613] havre: 1 +> [22614] havyng: 1 +> [22615] hawed: 1 +> [22616] hawk: 6 +> [22617] hawk's: 2 +> [22618] hawk-like: 2 +> [22619] hawked: 1 +> [22620] hawkers: 4 +> [22621] hawking: 3 +> [22622] hawklike: 1 +> [22623] hawks: 4 +> [22624] haws: 1 +> [22625] hawthorn: 6 +> [22626] hawthorn-tree: 1 +> [22627] hawthorn-trees: 1 +> [22628] hay: 109 +> [22629] hay's: 1 +> [22630] hay--it: 1 +> [22631] hay--that's: 1 +> [22632] hay-barn: 1 +> [22633] hay-fever: 1 +> [22634] hay-making: 1 +> [22635] haycock: 7 +> [22636] haycocks: 5 +> [22637] haycutting: 1 +> [22638] hayfield: 1 +> [22639] hayfork: 1 +> [22640] haying: 1 +> [22641] haymakers: 1 +> [22642] haymarket: 14 +> [22643] hayne: 1 +> [22644] haystack: 2 +> [22645] haystacks: 1 +> [22646] hayward: 13 +> [22647] hayward--though: 1 +> [22648] hazard: 7 +> [22649] hazarded: 4 +> [22650] hazards: 6 +> [22651] haze: 8 +> [22652] hazel: 14 +> [22653] hazlitt: 1 +> [22654] hazy: 1 +> [22655] hcl: 3 +> [22656] he: 45329 +> [22657] he! [22658] he"--he: 1 +> [22659] he"--zossimov: 1 +> [22660] he— [22661] he—it: 1 +> [22662] he—well: 1 +> [22663] he'd: 85 +> [22664] he'd&mdash: 1 +> [22665] he'll: 172 +> [22666] he's: 775 +> [22667] he's—a: 1 +> [22668] he've: 1 +> [22669] he, [22670] he--but: 1 +> [22671] he--fondly: 1 +> [22672] he--had: 1 +> [22673] he--he: 10 +> [22674] he--in: 1 +> [22675] he--now: 1 +> [22676] he--oh: 1 +> [22677] he--that: 1 +> [22678] he--the: 2 +> [22679] he--well: 1 +> [22680] he--with: 1 +> [22681] he-he: 28 +> [22682] he-he-he: 23 +> [22683] he-he-he!--your: 1 +> [22684] he. [22685] he?--no: 1 +> [22686] he? [22687] he_--the: 1 +> [22688] he_--too: 1 +> [22689] head: 1966 +> [22690] head! [22691] head—that: 1 +> [22692] head's: 6 +> [22693] head,--you: 1 +> [22694] head, [22695] head--"that: 1 +> [22696] head--"why: 1 +> [22697] head--"you'll: 1 +> [22698] head--a: 1 +> [22699] head--all: 1 +> [22700] head--and: 1 +> [22701] head--goodness: 1 +> [22702] head--he: 1 +> [22703] head--one: 1 +> [22704] head--then--that: 1 +> [22705] head--there's: 1 +> [22706] head--with: 1 +> [22707] head-covering: 1 +> [22708] head-deacon: 1 +> [22709] head-dress: 1 +> [22710] head-foremost: 4 +> [22711] head-quarters: 1 +> [22712] head. [22713] head.’: 1 +> [22714] head: [22715] head>book: 12 +> [22716] head>chapter: 96 +> [22717] head>contents [22718] head>epilogue [22719] head>footnotes [22720] head>part: 4 +> [22721] head? [22722] headache: 18 +> [22723] headdress: 4 +> [22724] headed: 8 +> [22725] headgear: 2 +> [22726] heading: 7 +> [22727] headings: 2 +> [22728] headlong: 35 +> [22729] headlong, [22730] headlong--what: 1 +> [22731] headquarters: 47 +> [22732] headquarters--because: 1 +> [22733] heads: 172 +> [22734] heads, [22735] heads--one: 1 +> [22736] headsman: 1 +> [22737] headstall: 1 +> [22738] headstrong: 3 +> [22739] headway: 1 +> [22740] heah: 1 +> [22741] heal: 16 +> [22742] healed: 18 +> [22743] healer: 2 +> [22744] healer. [22745] healing: 9 +> [22746] healing--might: 1 +> [22747] heals: 1 +> [22748] health: 200 +> [22749] health's: 1 +> [22750] health--and: 1 +> [22751] health-giving: 1 +> [22752] health. [22753] health.”: 1 +> [22754] health [22755] health? [22756] healthful: 1 +> [22757] healthfulness: 1 +> [22758] healthier: 1 +> [22759] healthy: 46 +> [22760] healthy-looking: 6 +> [22761] heap: 38 +> [22762] heaped: 6 +> [22763] heaped-up: 1 +> [22764] heaping: 2 +> [22765] heaps: 14 +> [22766] hear: 875 +> [22767] hear—more: 1 +> [22768] hear—she: 1 +> [22769] hear, [22770] hear--a: 1 +> [22771] hear--all: 1 +> [22772] hear--they: 1 +> [22773] hear..._vous: 1 +> [22774] hear?--demid: 1 +> [22775] hear?--you: 1 +> [22776] hear? [22777] heard: 1829 +> [22778] heard--afterwards--of: 1 +> [22779] heard--loud: 1 +> [22780] heard--not: 1 +> [22781] heard--that: 1 +> [22782] heard?--you: 1 +> [22783] hearer: 5 +> [22784] hearers: 15 +> [22785] hearers--who: 1 +> [22786] hearest: 1 +> [22787] hearing: 245 +> [22788] hearken: 1 +> [22789] hearkening: 1 +> [22790] hears: 21 +> [22791] hearsay: 8 +> [22792] hearse: 1 +> [22793] heart: 1602 +> [22794] heart! [22795] heart"--a: 1 +> [22796] heart—"heels: 1 +> [22797] heart—in: 2 +> [22798] heart—which: 1 +> [22799] heart'--'who: 1 +> [22800] heart's: 7 +> [22801] heart's-ease: 2 +> [22802] heart, [22803] heart, [22804] heart--how: 1 +> [22805] heart--it: 1 +> [22806] heart--perhaps: 1 +> [22807] heart--that: 1 +> [22808] heart--watching: 1 +> [22809] heart--well: 1 +> [22810] heart-ache: 1 +> [22811] heart-breaking: 1 +> [22812] heart-broken: 2 +> [22813] heart-quakings: 1 +> [22814] heart-rending: 2 +> [22815] heart-strings: 1 +> [22816] heart-whole: 1 +> [22817] heart. [22818] heart.’: 1 +> [22819] heart [22820] heart? [22821] heartbroken: 1 +> [22822] hearten: 1 +> [22823] heartened: 1 +> [22824] heartfelt: 6 +> [22825] hearth: 41 +> [22826] hearth--over: 1 +> [22827] hearth-rug: 1 +> [22828] hearths: 3 +> [22829] hearthstone: 4 +> [22830] heartily: 26 +> [22831] heartiness: 1 +> [22832] heartless: 20 +> [22833] heartlessly: 6 +> [22834] heartlessness: 2 +> [22835] heartrending: 6 +> [22836] hearts: 104 +> [22837] hearts! [22838] hearts--hearts: 1 +> [22839] hearts [22840] heartsore: 1 +> [22841] heartstrings: 1 +> [22842] hearty: 12 +> [22843] heat: 140 +> [22844] heat,[19: 1 +> [22845] heated: 63 +> [22846] heated--ah: 1 +> [22847] heater: 1 +> [22848] heath: 16 +> [22849] heath--cheap: 1 +> [22850] heathen: 10 +> [22851] heathenish: 2 +> [22852] heathenism: 2 +> [22853] heathenized: 1 +> [22854] heathens: 1 +> [22855] heather: 1 +> [22856] heaths: 1 +> [22857] heating: 22 +> [22858] heave: 4 +> [22859] heaved: 19 +> [22860] heaven: 214 +> [22861] heaven! [22862] heaven's: 25 +> [22863] heaven, [22864] heaven, [22865] heaven--a: 1 +> [22866] heaven--from: 1 +> [22867] heaven. [22868] heavenly: 38 +> [22869] heavenly--as: 1 +> [22870] heavens: 109 +> [22871] heavens! [22872] heavenwards: 1 +> [22873] heavier: 16 +> [22874] heaviest: 1 +> [22875] heavily: 99 +> [22876] heavily--not: 1 +> [22877] heaviness: 7 +> [22878] heaving: 19 +> [22879] heavy: 210 +> [22880] heavy-eyed: 1 +> [22881] heavy-hearted: 1 +> [22882] heavy-shouldered: 1 +> [22883] heavyhearted: 1 +> [22884] heb: 3 +> [22885] hebraisms: 1 +> [22886] hebrew: 12 +> [22887] hebrews: 27 +> [22888] hectare: 3 +> [22889] hectic: 6 +> [22890] hecto: 1 +> [22891] hecto-gram: 1 +> [22892] hecto-grams: 1 +> [22893] hecto-liter: 1 +> [22894] hecto-liters: 1 +> [22895] hecto-meter: 1 +> [22896] hecto-meters: 1 +> [22897] hectoliter: 2 +> [22898] hectoring: 1 +> [22899] hedge: 14 +> [22900] hedged: 2 +> [22901] hedgehog: 24 +> [22902] hedgehog's: 1 +> [22903] hedgerows: 1 +> [22904] hedges: 7 +> [22905] heed: 30 +> [22906] heeded: 9 +> [22907] heedfully: 1 +> [22908] heeding: 11 +> [22909] heedless: 15 +> [22910] heedlessest: 1 +> [22911] heedlessly: 3 +> [22912] heedlessness: 3 +> [22913] heel: 25 +> [22914] heeling: 1 +> [22915] heels: 59 +> [22916] heels--we: 1 +> [22917] hegel: 1 +> [22918] hegelian: 1 +> [22919] hegesippus: 5 +> [22920] hehner: 2 +> [22921] hehner's: 1 +> [22922] heigh: 1 +> [22923] heigh-ho: 1 +> [22924] height: 96 +> [22925] height--i: 1 +> [22926] heighten: 2 +> [22927] heightened: 10 +> [22928] heights: 28 +> [22929] heilige: 4 +> [22930] heine: 7 +> [22931] heinrich: 1 +> [22932] heir: 37 +> [22933] heir--apparent: 1 +> [22934] heir-apparency: 1 +> [22935] heir-at-law: 1 +> [22936] heiress: 16 +> [22937] heiress's: 1 +> [22938] heiress--that: 1 +> [22939] heiresses: 7 +> [22940] heirs: 10 +> [22941] heirship: 1 +> [22942] held: 558 +> [22943] held--they: 1 +> [22944] helen: 2 +> [22945] helena: 4 +> [22946] helene: 137 +> [22947] helene's: 27 +> [22948] helene--having: 1 +> [22949] hell: 54 +> [22950] hell—for: 1 +> [22951] hell's: 3 +> [22952] hell, [22953] hell. [22954] hell [22955] hell? [22956] hellebore: 1 +> [22957] hellenic: 1 +> [22958] hellenism: 3 +> [22959] hellenist: 1 +> [22960] hellenistic: 14 +> [22961] hellenistically: 1 +> [22962] hellish: 1 +> [22963] helm: 1 +> [22964] helmet: 12 +> [22965] helmets: 4 +> [22966] heloise: 2 +> [22967] help: 789 +> [22968] help--"you: 1 +> [22969] help--exciting: 4 +> [22970] help--he: 1 +> [22971] help--so: 1 +> [22972] help. [22973] help;--and: 1 +> [22974] helped: 129 +> [22975] helped--and: 1 +> [22976] helper: 5 +> [22977] helpers: 2 +> [22978] helpful: 4 +> [22979] helping: 39 +> [22980] helpings: 1 +> [22981] helpless: 68 +> [22982] helplessly: 27 +> [22983] helplessness: 16 +> [22984] helpmeet: 2 +> [22985] helps: 9 +> [22986] helsingfors: 2 +> [22987] helter-skelter: 1 +> [22988] hem: 10 +> [22989] hemmed: 9 +> [22990] hemp: 4 +> [22991] hemp-seed: 2 +> [22992] hempen: 5 +> [22993] hen: 14 +> [22994] hen's: 2 +> [22995] hen,--go: 1 +> [22996] hen-house: 8 +> [22997] hen-roost: 3 +> [22998] hence: 32 +> [22999] hence! [23000] henceforth: 19 +> [23001] henceforward: 3 +> [23002] henchmen: 1 +> [23003] hendrikhovna: 16 +> [23004] hendrikhovna's: 5 +> [23005] henker: 1 +> [23006] henley: 1 +> [23007] henley-in-arden: 1 +> [23008] henri: 19 +> [23009] henriette: 1 +> [23010] henry: 19 +> [23011] henry's: 1 +> [23012] henry--god: 1 +> [23013] hens: 7 +> [23014] her: 20274 +> [23015] her!—to: 1 +> [23016] her! [23017] her— [23018] her—and: 1 +> [23019] her—beaten: 1 +> [23020] her—bless: 1 +> [23021] her—but: 1 +> [23022] her—do: 1 +> [23023] her—it: 1 +> [23024] her—kerchief: 1 +> [23025] her—oh: 1 +> [23026] her—saved: 1 +> [23027] her—she: 1 +> [23028] her—suddenly: 1 +> [23029] her—the: 2 +> [23030] her—though: 1 +> [23031] her—to: 1 +> [23032] her'd: 1 +> [23033] her's: 1 +> [23034] her,--she: 1 +> [23035] her, [23036] her--"as: 1 +> [23037] her--"in: 1 +> [23038] her--"will: 1 +> [23039] her--a: 3 +> [23040] her--all: 1 +> [23041] her--always: 1 +> [23042] her--and: 8 +> [23043] her--and--and: 1 +> [23044] her--at: 1 +> [23045] her--before: 1 +> [23046] her--but: 4 +> [23047] her--by: 1 +> [23048] her--considerate: 1 +> [23049] her--denisov's: 1 +> [23050] her--eh: 1 +> [23051] her--everything: 1 +> [23052] her--feeble: 1 +> [23053] her--filled: 1 +> [23054] her--for: 2 +> [23055] her--high: 1 +> [23056] her--i: 3 +> [23057] her--in: 2 +> [23058] her--it: 1 +> [23059] her--it's: 1 +> [23060] her--knew: 1 +> [23061] her--might: 1 +> [23062] her--not: 1 +> [23063] her--now: 1 +> [23064] her--on: 1 +> [23065] her--or: 2 +> [23066] her--out: 1 +> [23067] her--please: 1 +> [23068] her--sat: 1 +> [23069] her--she: 3 +> [23070] her--that: 5 +> [23071] her--that's: 1 +> [23072] her--the: 6 +> [23073] her--thou: 1 +> [23074] her--though: 2 +> [23075] her--to: 3 +> [23076] her--varia: 1 +> [23077] her--well: 2 +> [23078] her--who: 2 +> [23079] her--yes: 2 +> [23080] her--you: 2 +> [23081] her...it's: 1 +> [23082] her. [23083] her. [23084] her—i: 1 +> [23085] her?--but: 1 +> [23086] her?--he: 1 +> [23087] her?--the: 1 +> [23088] her? [23089] her_--that: 1 +> [23090] herald: 3 +> [23091] heralded: 1 +> [23092] heraldic: 1 +> [23093] heraldry: 2 +> [23094] heralds: 1 +> [23095] herb: 10 +> [23096] herb-brandy: 1 +> [23097] herbalist: 1 +> [23098] herbert: 1 +> [23099] herbs: 2 +> [23100] herculean: 2 +> [23101] hercules: 4 +> [23102] herd: 27 +> [23103] herde: 1 +> [23104] herder's: 1 +> [23105] herding: 2 +> [23106] herdsman: 6 +> [23107] herdsmen: 4 +> [23108] here: 3051 +> [23109] here! [23110] here"--and: 2 +> [23111] here"--he: 1 +> [23112] here— [23113] here—and: 1 +> [23114] here—here—you: 1 +> [23115] here—that: 2 +> [23116] here—there's: 1 +> [23117] here—when: 1 +> [23118] here's: 100 +> [23119] here)--"and: 1 +> [23120] here, [23121] here--'we: 1 +> [23122] here--and: 1 +> [23123] here--at: 1 +> [23124] here--before: 2 +> [23125] here--don't: 1 +> [23126] here--for: 2 +> [23127] here--gentlemen: 1 +> [23128] here--he: 2 +> [23129] here--he's: 1 +> [23130] here--here: 2 +> [23131] here--i: 1 +> [23132] here--i'll: 1 +> [23133] here--if: 1 +> [23134] here--in: 2 +> [23135] here--kiss: 1 +> [23136] here--my: 1 +> [23137] here--officers: 1 +> [23138] here--that: 1 +> [23139] here--that's: 1 +> [23140] here--the: 2 +> [23141] here--why: 1 +> [23142] here--with: 1 +> [23143] here.... [23144] here...i: 2 +> [23145] here...though: 1 +> [23146] here. [23147] here [23148] here?--now: 1 +> [23149] here? [23150] hereafter: 9 +> [23151] hereafter. [23152] hereby: 1 +> [23153] hereditary: 2 +> [23154] herein: 2 +> [23155] heresies: 4 +> [23156] heresy: 37 +> [23157] heretic: 4 +> [23158] heretic-hunting: 1 +> [23159] heretical: 10 +> [23160] heretics: 11 +> [23161] heretofore: 3 +> [23162] hereupon: 2 +> [23163] herewith: 4 +> [23164] heritage: 3 +> [23165] hermas: 12 +> [23166] hermit: 6 +> [23167] hermitage: 35 +> [23168] hermits: 5 +> [23169] hernguter: 1 +> [23170] hero: 128 +> [23171] hero's: 6 +> [23172] hero--but: 1 +> [23173] hero--for: 1 +> [23174] hero--the: 1 +> [23175] herod: 1 +> [23176] heroes: 26 +> [23177] heroic: 28 +> [23178] heroically: 1 +> [23179] heroics: 1 +> [23180] heroine: 9 +> [23181] heroism: 17 +> [23182] herons: 1 +> [23183] herr: 10 +> [23184] herring: 1 +> [23185] herrings: 2 +> [23186] hers: 100 +> [23187] hers!--and: 1 +> [23188] hers, [23189] hers--her: 1 +> [23190] herself: 1209 +> [23191] herself)—i: 1 +> [23192] herself)--"and: 1 +> [23193] herself,--remember: 1 +> [23194] herself, [23195] herself--"stepan: 1 +> [23196] herself--'there--you've: 1 +> [23197] herself--_stranger: 1 +> [23198] herself--and: 1 +> [23199] herself--herself: 1 +> [23200] herself--how: 1 +> [23201] herself--literally: 1 +> [23202] herself--mrs: 1 +> [23203] herself--that: 2 +> [23204] herself--was: 1 +> [23205] herself--which: 1 +> [23206] herself. [23207] herself? [23208] hertford: 2 +> [23209] heruvimov: 2 +> [23210] heruvimov--and: 1 +> [23211] herzegovina: 3 +> [23212] herzenstube: 28 +> [23213] herzenstube's: 1 +> [23214] herzenstube, [23215] herzenstube? [23216] hesitate: 16 +> [23217] hesitate--they: 1 +> [23218] hesitated: 83 +> [23219] hesitated--he: 1 +> [23220] hesitated--took: 1 +> [23221] hesitated--while: 1 +> [23222] hesitates: 3 +> [23223] hesitating: 39 +> [23224] hesitatingly: 5 +> [23225] hesitation: 82 +> [23226] hesitations: 1 +> [23227] hessian: 4 +> [23228] hessians: 3 +> [23229] hetaira. [23230] heterogeneous: 1 +> [23231] hetzelsdorf: 1 +> [23232] heures: 1 +> [23233] hew: 1 +> [23234] hewn: 3 +> [23235] hey: 45 +> [23236] heyday: 2 +> [23237] hg: 1 +> [23238] hi: 74 +> [23239] hiccough: 2 +> [23240] hiccoughing: 1 +> [23241] hid: 130 +> [23242] hidden: 150 +> [23243] hidden—the: 1 +> [23244] hidden. [23245] hide: 140 +> [23246] hide-and-seek: 2 +> [23247] hideous: 68 +> [23248] hideously: 4 +> [23249] hideousness: 4 +> [23250] hides: 11 +> [23251] hiding: 106 +> [23252] hiding--places: 1 +> [23253] hiding-place: 6 +> [23254] hiding-places: 2 +> [23255] hied: 1 +> [23256] hierapolis: 6 +> [23257] hierarchies: 1 +> [23258] hierarchy: 3 +> [23259] hierocratic: 1 +> [23260] hieroglyph: 2 +> [23261] hieroglyphic: 1 +> [23262] hieroglyphics: 5 +> [23263] high: 548 +> [23264] high--depends: 1 +> [23265] high--i: 1 +> [23266] high--twenty: 1 +> [23267] high-backed: 1 +> [23268] high-born: 2 +> [23269] high-bred: 1 +> [23270] high-class: 6 +> [23271] high-collared: 1 +> [23272] high-flier: 1 +> [23273] high-flown: 14 +> [23274] high-heeled: 1 +> [23275] high-laden: 1 +> [23276] high-minded: 2 +> [23277] high-nosed: 1 +> [23278] high-official: 8 +> [23279] high-pitched: 9 +> [23280] high-priest: 1 +> [23281] high-priesthood: 1 +> [23282] high-principled: 3 +> [23283] high-road: 1 +> [23284] high-shouldered: 2 +> [23285] high-souled: 3 +> [23286] high-sounding: 1 +> [23287] high-spirited: 1 +> [23288] high. [23289] higher: 226 +> [23290] higher—i: 1 +> [23291] highest: 141 +> [23292] highfalutin: 1 +> [23293] highgate: 3 +> [23294] highly: 114 +> [23295] highly, [23296] highness: 55 +> [23297] highness's: 1 +> [23298] highness--for: 1 +> [23299] highness--the: 1 +> [23300] highnesses: 1 +> [23301] highroad: 35 +> [23302] highroad--polished: 1 +> [23303] highroads: 2 +> [23304] highway: 8 +> [23305] highwayman: 2 +> [23306] highwaymen: 1 +> [23307] hilarity: 1 +> [23308] hildebrand: 1 +> [23309] hill: 124 +> [23310] hill-side: 1 +> [23311] hill-sides: 1 +> [23312] hill-top: 1 +> [23313] hillock: 6 +> [23314] hillocks: 2 +> [23315] hills: 101 +> [23316] hills--and: 1 +> [23317] hills--even: 1 +> [23318] hillside: 7 +> [23319] hillsides: 1 +> [23320] hilltop: 1 +> [23321] hilly: 2 +> [23322] hilt: 7 +> [23323] hilts: 1 +> [23324] him: 18013 +> [23325] him!--ready: 1 +> [23326] him! [23327] him!—yes: 1 +> [23328] him!”: 1 +> [23329] him"--john: 1 +> [23330] him"--little: 1 +> [23331] him—a: 3 +> [23332] him—all: 1 +> [23333] him—and: 3 +> [23334] him—as: 1 +> [23335] him—cursed: 1 +> [23336] him—from: 1 +> [23337] him—i: 2 +> [23338] him—oh: 1 +> [23339] him—settling: 1 +> [23340] him—similar: 1 +> [23341] him—so: 1 +> [23342] him—thank: 1 +> [23343] him—that: 1 +> [23344] him—that's: 2 +> [23345] him—there: 1 +> [23346] him—thou: 1 +> [23347] him—what: 1 +> [23348] him—when: 1 +> [23349] him—who: 1 +> [23350] him—with: 1 +> [23351] him'--i: 1 +> [23352] him,--that's: 1 +> [23353] him,--this: 1 +> [23354] him, [23355] him,—that: 1 +> [23356] him--"did: 1 +> [23357] him--"if: 1 +> [23358] him--"it: 1 +> [23359] him--"that's: 1 +> [23360] him--"what: 1 +> [23361] him--a: 7 +> [23362] him--ah: 1 +> [23363] him--all: 4 +> [23364] him--also: 1 +> [23365] him--although: 1 +> [23366] him--always: 1 +> [23367] him--an: 3 +> [23368] him--and: 19 +> [23369] him--as: 7 +> [23370] him--astonishment: 1 +> [23371] him--at: 1 +> [23372] him--because: 1 +> [23373] him--before: 2 +> [23374] him--believe: 1 +> [23375] him--bitterly: 1 +> [23376] him--blasted: 1 +> [23377] him--but: 5 +> [23378] him--by: 1 +> [23379] him--can: 1 +> [23380] him--consists: 1 +> [23381] him--do: 1 +> [23382] him--either: 1 +> [23383] him--entered: 1 +> [23384] him--entreat: 1 +> [23385] him--especially: 1 +> [23386] him--even: 1 +> [23387] him--everything: 1 +> [23388] him--evidently: 1 +> [23389] him--expecting: 1 +> [23390] him--felt: 1 +> [23391] him--for: 5 +> [23392] him--forget: 1 +> [23393] him--from: 1 +> [23394] him--had: 1 +> [23395] him--he: 26 +> [23396] him--heaven: 2 +> [23397] him--heels: 1 +> [23398] him--his: 2 +> [23399] him--i: 5 +> [23400] him--if: 2 +> [23401] him--in: 4 +> [23402] him--is: 1 +> [23403] him--it: 2 +> [23404] him--look: 1 +> [23405] him--making: 1 +> [23406] him--middle-aged: 1 +> [23407] him--no: 1 +> [23408] him--nobody: 1 +> [23409] him--not: 4 +> [23410] him--now: 2 +> [23411] him--of: 1 +> [23412] him--oh: 1 +> [23413] him--one: 1 +> [23414] him--or: 2 +> [23415] him--passes: 1 +> [23416] him--people: 2 +> [23417] him--pierre--depriving: 1 +> [23418] him--poor: 1 +> [23419] him--rather: 1 +> [23420] him--rostov: 1 +> [23421] him--she: 3 +> [23422] him--shook: 1 +> [23423] him--so: 2 +> [23424] him--supposing: 1 +> [23425] him--that: 3 +> [23426] him--the: 11 +> [23427] him--there: 2 +> [23428] him--thereby: 1 +> [23429] him--this: 1 +> [23430] him--those: 1 +> [23431] him--though: 1 +> [23432] him--to: 2 +> [23433] him--upstairs: 1 +> [23434] him--was: 1 +> [23435] him--we: 1 +> [23436] him--what: 1 +> [23437] him--whether: 2 +> [23438] him--which: 1 +> [23439] him--who: 2 +> [23440] him--whose: 1 +> [23441] him--would: 2 +> [23442] him--yet: 1 +> [23443] him--you: 2 +> [23444] him."--"you're: 1 +> [23445] him.... [23446] him...he: 1 +> [23447] him. [23448] him. [23449] him [23450] him [23451] him? [23452] him?—my: 1 +> [23453] him?--had: 1 +> [23454] him?--has: 1 +> [23455] him?--this: 1 +> [23456] him? [23457] him?’: 1 +> [23458] himmlisch: 1 +> [23459] himself: 3827 +> [23460] himself! [23461] himself"--and: 1 +> [23462] himself—but: 1 +> [23463] himself—of: 1 +> [23464] himself—providence: 1 +> [23465] himself—quite: 1 +> [23466] himself—that: 2 +> [23467] himself—that's: 1 +> [23468] himself,--who: 1 +> [23469] himself, [23470] himself--"and: 1 +> [23471] himself--"better: 1 +> [23472] himself--"oh: 1 +> [23473] himself--"you: 1 +> [23474] himself--'bah: 1 +> [23475] himself--a: 1 +> [23476] himself--an: 1 +> [23477] himself--and: 1 +> [23478] himself--as: 2 +> [23479] himself--clutching: 1 +> [23480] himself--even: 1 +> [23481] himself--for: 1 +> [23482] himself--he: 2 +> [23483] himself--i: 1 +> [23484] himself--if: 1 +> [23485] himself--in: 1 +> [23486] himself--instead: 1 +> [23487] himself--it: 1 +> [23488] himself--merely: 1 +> [23489] himself--much: 1 +> [23490] himself--not: 1 +> [23491] himself--oh: 1 +> [23492] himself--pointing: 1 +> [23493] himself--semyon: 1 +> [23494] himself--speaking: 1 +> [23495] himself--to: 1 +> [23496] himself--what: 1 +> [23497] himself--which: 1 +> [23498] himself--who: 3 +> [23499] himself. [23500] himself [23501] himself? [23502] hinc: 1 +> [23503] hind: 27 +> [23504] hind-legs: 2 +> [23505] hind-quarters: 6 +> [23506] hinder: 43 +> [23507] hindered: 28 +> [23508] hindering: 7 +> [23509] hinders: 5 +> [23510] hindmost: 3 +> [23511] hindpaw: 1 +> [23512] hindquarters: 3 +> [23513] hindrance: 24 +> [23514] hindrance--that's: 1 +> [23515] hindrances: 3 +> [23516] hindu: 1 +> [23517] hinge: 1 +> [23518] hinged: 1 +> [23519] hinges: 7 +> [23520] hint: 76 +> [23521] hinted: 37 +> [23522] hinting: 13 +> [23523] hints: 46 +> [23524] hip: 1 +> [23525] hipped: 2 +> [23526] hippolyte: 240 +> [23527] hippolyte's: 19 +> [23528] hippolyte,--and: 1 +> [23529] hippolyte--excuse: 1 +> [23530] hippolyte--it: 1 +> [23531] hippolyte--that's: 1 +> [23532] hippolytus: 1 +> [23533] hippopotamus: 1 +> [23534] hips: 6 +> [23535] hire: 14 +> [23536] hire. [23537] hired: 27 +> [23538] hirelings: 1 +> [23539] hires: 7 +> [23540] hiring: 2 +> [23541] his: 29475 +> [23542] his!--and: 1 +> [23543] his--friendship: 1 +> [23544] his--has: 1 +> [23545] his--he: 1 +> [23546] his--his: 1 +> [23547] his--jealousy: 1 +> [23548] his--martin's--plank: 1 +> [23549] his--the: 1 +> [23550] his--to: 1 +> [23551] his-you: 1 +> [23552] his. [23553] his [23554] hiss: 7 +> [23555] hissed: 24 +> [23556] hissed--he: 1 +> [23557] hisses: 3 +> [23558] hisses [23559] hissing: 8 +> [23560] hissing--were: 1 +> [23561] hissing.”: 1 +> [23562] hist: 2 +> [23563] historian: 31 +> [23564] historians: 122 +> [23565] historians--the: 1 +> [23566] historians--those: 1 +> [23567] historiaris: 1 +> [23568] historic: 55 +> [23569] historical: 106 +> [23570] historically: 6 +> [23571] histories: 22 +> [23572] history: 313 +> [23573] history's: 5 +> [23574] history--but: 1 +> [23575] history--civil: 1 +> [23576] history--whatever: 1 +> [23577] history [23578] history? [23579] hit: 70 +> [23580] hit--a: 1 +> [23581] hitch: 5 +> [23582] hitched: 1 +> [23583] hitching-post: 1 +> [23584] hither: 19 +> [23585] hitherto: 95 +> [23586] hits: 2 +> [23587] hitting: 13 +> [23588] hive: 23 +> [23589] hived: 1 +> [23590] hives: 7 +> [23591] hlestakov: 1 +> [23592] hliustov: 2 +> [23593] hm: 41 +> [23594] hm!--his: 1 +> [23595] ho: 37 +> [23596] ho-nou-red: 1 +> [23597] hoar: 3 +> [23598] hoar-frost: 5 +> [23599] hoard: 1 +> [23600] hoarded: 1 +> [23601] hoarding: 7 +> [23602] hoards: 1 +> [23603] hoare: 3 +> [23604] hoarfrost: 7 +> [23605] hoarse: 41 +> [23606] hoarsely: 27 +> [23607] hoary: 2 +> [23608] hob: 1 +> [23609] hobble: 1 +> [23610] hobbled: 3 +> [23611] hobbledehoy: 1 +> [23612] hobbledehoys: 1 +> [23613] hobbling: 2 +> [23614] hobby: 5 +> [23615] hobby-horses: 1 +> [23616] hoch: 4 +> [23617] hochgeboren: 1 +> [23618] hock: 1 +> [23619] hodder: 1 +> [23620] hodge: 1 +> [23621] hoe: 2 +> [23622] hof-kriegsrath: 1 +> [23623] hoff's: 1 +> [23624] hoffman's: 1 +> [23625] hoffmann: 1 +> [23626] hofkriegsrath: 7 +> [23627] hofs-kriegs-wurst-raths: 1 +> [23628] hofs-kriegs-wurst-schnapps-rath: 1 +> [23629] hog: 1 +> [23630] hogg: 1 +> [23631] hohenlohe: 1 +> [23632] hohlakov: 78 +> [23633] hohlakov's: 13 +> [23634] hohlakov. [23635] hohlakov. [23636] hohlakov? [23637] hohlakovs: 3 +> [23638] hohlakovs' [23639] hoist: 3 +> [23640] hoisted: 2 +> [23641] hoity: 3 +> [23642] hoity-toity: 1 +> [23643] hola: 2 +> [23644] holbein: 1 +> [23645] holbein's: 2 +> [23646] holborn: 1 +> [23647] hold: 430 +> [23648] holde: 1 +> [23649] holder: 77 +> [23650] holdfast--not: 1 +> [23651] holding: 345 +> [23652] holds: 34 +> [23653] hole: 55 +> [23654] hole-and-corner: 1 +> [23655] holes: 22 +> [23656] holiday: 53 +> [23657] holiday--a: 2 +> [23658] holiday--trinity: 1 +> [23659] holidays: 23 +> [23660] holier: 7 +> [23661] holies: 2 +> [23662] holiest: 1 +> [23663] holiness: 4 +> [23664] holiness. [23665] hollabrunn: 5 +> [23666] holland: 5 +> [23667] hollandka: 1 +> [23668] hollands: 1 +> [23669] holloa: 1 +> [23670] hollow: 67 +> [23671] hollow-cheeked: 1 +> [23672] hollow-chested: 1 +> [23673] hollowed-out: 1 +> [23674] hollows: 7 +> [23675] holly: 1 +> [23676] hollyhocks: 1 +> [23677] holmes: 2 +> [23678] holster: 1 +> [23679] holsters: 1 +> [23680] holtzmann: 1 +> [23681] holy: 216 +> [23682] holy [23683] holy—and: 1 +> [23684] homage: 14 +> [23685] homage. [23686] home: 1116 +> [23687] home! [23688] home, [23689] home--are: 1 +> [23690] home--for: 1 +> [23691] home--more: 1 +> [23692] home--stood: 1 +> [23693] home--taking: 1 +> [23694] home--that: 1 +> [23695] home--worse: 1 +> [23696] home-brew: 1 +> [23697] home-country: 1 +> [23698] home-life: 1 +> [23699] home-truths: 1 +> [23700] home. [23701] home.’: 1 +> [23702] home.”: 1 +> [23703] home? [23704] homecoming: 1 +> [23705] homeless: 10 +> [23706] homeless--with: 1 +> [23707] homelike: 1 +> [23708] homely: 9 +> [23709] homeopathic: 3 +> [23710] homeopaths: 1 +> [23711] homer: 3 +> [23712] homeric: 1 +> [23713] homes: 26 +> [23714] homesick: 3 +> [23715] homespun: 6 +> [23716] homestead: 16 +> [23717] homesteads: 5 +> [23718] homeward: 5 +> [23719] homewards: 17 +> [23720] homiakov: 1 +> [23721] homiakov's: 2 +> [23722] homicidal: 2 +> [23723] homilies: 3 +> [23724] homily: 7 +> [23725] homme: 7 +> [23726] hommes: 2 +> [23727] homogeneity: 1 +> [23728] homogeneous: 7 +> [23729] hon: 1 +> [23730] honest: 171 +> [23731] honest—you: 1 +> [23732] honest--that: 1 +> [23733] honest-hearted: 1 +> [23734] honest.... [23735] honester: 1 +> [23736] honestly: 40 +> [23737] honesty: 32 +> [23738] honey: 26 +> [23739] honey-and-nut: 1 +> [23740] honey-bees: 1 +> [23741] honeycomb: 1 +> [23742] honeyed: 4 +> [23743] honeymoon: 4 +> [23744] honeymoon--that: 1 +> [23745] honeymoons: 1 +> [23746] honi: 2 +> [23747] honnête: 1 +> [23748] honor: 348 +> [23749] honor—that's: 1 +> [23750] honor's: 4 +> [23751] honor, [23752] honor--it's: 1 +> [23753] honor--that's: 1 +> [23754] honor. [23755] honor? [23756] honorable: 58 +> [23757] honorably: 5 +> [23758] honorably, [23759] honorary: 2 +> [23760] honored: 34 +> [23761] honoring: 1 +> [23762] honors: 21 +> [23763] honour: 185 +> [23764] honour"--it: 1 +> [23765] honour's: 1 +> [23766] honour,"--but: 1 +> [23767] honour--and: 1 +> [23768] honour--his: 1 +> [23769] honour--not: 4 +> [23770] honourable: 55 +> [23771] honourably: 5 +> [23772] honoured: 27 +> [23773] honouring: 2 +> [23774] honours: 5 +> [23775] honowably: 1 +> [23776] honte: 2 +> [23777] hood: 32 +> [23778] hoods: 2 +> [23779] hoodwinked: 2 +> [23780] hoodwinking: 1 +> [23781] hoof: 11 +> [23782] hoof's: 1 +> [23783] hoofprints: 1 +> [23784] hoofs: 45 +> [23785] hook: 27 +> [23786] hooked: 7 +> [23787] hooker: 2 +> [23788] hooking: 1 +> [23789] hooks: 14 +> [23790] hoole: 5 +> [23791] hoop: 2 +> [23792] hooped: 1 +> [23793] hoops: 1 +> [23794] hooray: 4 +> [23795] hooted: 7 +> [23796] hooting: 5 +> [23797] hooves: 2 +> [23798] hop: 2 +> [23799] hop-waltz: 1 +> [23800] hop-waltzes: 1 +> [23801] hope: 480 +> [23802] hope--experienced: 1 +> [23803] hope--having: 1 +> [23804] hope--money: 1 +> [23805] hope--that: 1 +> [23806] hope? [23807] hoped: 104 +> [23808] hoped-for: 1 +> [23809] hopeful: 11 +> [23810] hopeful)--but: 1 +> [23811] hopefully: 5 +> [23812] hopefulness: 1 +> [23813] hopeless: 59 +> [23814] hopeless? [23815] hopelessly: 30 +> [23816] hopelessness: 19 +> [23817] hopelessness)--at: 1 +> [23818] hopes: 127 +> [23819] hopes--well: 1 +> [23820] hoping: 84 +> [23821] hopper: 3 +> [23822] hopping: 5 +> [23823] horace: 2 +> [23824] horatio: 1 +> [23825] horde: 1 +> [23826] hordes: 2 +> [23827] horizon: 32 +> [23828] horizon--and: 1 +> [23829] horizon--from: 1 +> [23830] horizons: 1 +> [23831] horizontal: 3 +> [23832] horizontally: 2 +> [23833] horn: 23 +> [23834] horn--played: 1 +> [23835] horn-rimmed: 1 +> [23836] horner: 1 +> [23837] horns: 15 +> [23838] horns--all: 1 +> [23839] horny: 1 +> [23840] horoscope: 7 +> [23841] horrible: 100 +> [23842] horrible! [23843] horrible-looking: 1 +> [23844] horribly: 58 +> [23845] horrid: 52 +> [23846] horrid--the: 1 +> [23847] horrified: 38 +> [23848] horrified, [23849] horrify: 4 +> [23850] horrifying: 2 +> [23851] horror: 228 +> [23852] horror! [23853] horror--mud: 1 +> [23854] horror--taking: 1 +> [23855] horror-stricken: 15 +> [23856] horror-struck: 3 +> [23857] horrors: 27 +> [23858] hors: 6 +> [23859] hors-d'oeuvres: 1 +> [23860] horse: 752 +> [23861] horse's: 51 +> [23862] horse--that: 1 +> [23863] horse-back: 3 +> [23864] horse-block: 1 +> [23865] horse-box: 7 +> [23866] horse-breeding: 3 +> [23867] horse-dealing--which: 3 +> [23868] horse-face: 1 +> [23869] horse-fair: 1 +> [23870] horse-flesh: 1 +> [23871] horse-guard: 2 +> [23872] horse-guards: 2 +> [23873] horse-laugh: 1 +> [23874] horse-market: 3 +> [23875] horse-ponds: 1 +> [23876] horse-power: 2 +> [23877] horse-stealers: 1 +> [23878] horse-stealing: 2 +> [23879] horse-thief: 2 +> [23880] horse-track: 3 +> [23881] horse-tracks: 1 +> [23882] horseback: 24 +> [23883] horseback--raised: 1 +> [23884] horsecloth: 2 +> [23885] horsecloths: 5 +> [23886] horseflesh: 11 +> [23887] horseflies: 1 +> [23888] horseman: 24 +> [23889] horsemanship: 2 +> [23890] horsemen: 18 +> [23891] horses: 495 +> [23892] horses!--there's: 1 +> [23893] horses--and: 2 +> [23894] horses--ay: 1 +> [23895] horses--in: 1 +> [23896] horses--or: 1 +> [23897] horses--we: 1 +> [23898] horsesteaks: 1 +> [23899] horsewoman: 1 +> [23900] horse’s: 3 +> [23901] horsfall: 1 +> [23902] hortatory: 1 +> [23903] hosanna: 1 +> [23904] hosannah: 8 +> [23905] hose: 2 +> [23906] hosea: 1 +> [23907] hosjeradek: 2 +> [23908] hospitable: 14 +> [23909] hospitably: 3 +> [23910] hospital: 94 +> [23911] hospital—if: 1 +> [23912] hospital--in: 1 +> [23913] hospital? [23914] hospitality: 28 +> [23915] hospitality? [23916] hospitals: 17 +> [23917] hospitals--and: 1 +> [23918] hospitals. [23919] host: 140 +> [23920] host's: 13 +> [23921] host,’: 1 +> [23922] host--looked: 1 +> [23923] host--who: 1 +> [23924] hostage: 2 +> [23925] hostel: 2 +> [23926] hostelry: 3 +> [23927] hostels: 1 +> [23928] hostess: 71 +> [23929] hostile: 60 +> [23930] hostilely: 1 +> [23931] hostilities: 1 +> [23932] hostility: 37 +> [23933] hosts: 16 +> [23934] host’s: 1 +> [23935] hot: 258 +> [23936] hot--in: 1 +> [23937] hot-bed: 1 +> [23938] hot-faced: 1 +> [23939] hot-fisted: 1 +> [23940] hot-foot: 2 +> [23941] hot-looking: 1 +> [23942] hot-pate: 1 +> [23943] hot-pot: 2 +> [23944] hot-tempered: 2 +> [23945] hot. [23946] hot? [23947] hotel: 86 +> [23948] hotel-keeper: 1 +> [23949] hotels: 7 +> [23950] hotheaded: 1 +> [23951] hothouse: 3 +> [23952] hothouses: 2 +> [23953] hotly: 47 +> [23954] hotly--a: 1 +> [23955] hotter: 2 +> [23956] hottest: 1 +> [23957] houchin-aiken: 1 +> [23958] houghton: 3 +> [23959] hound: 17 +> [23960] hounding: 1 +> [23961] hounds: 45 +> [23962] hour: 683 +> [23963] hour!--'a: 1 +> [23964] hour! [23965] hour's: 8 +> [23966] hour,--then: 1 +> [23967] hour, [23968] hour--from: 1 +> [23969] hour--memories: 1 +> [23970] hour--more: 1 +> [23971] hour-glass: 1 +> [23972] hour. [23973] hour [23974] hourly: 5 +> [23975] hourra: 1 +> [23976] hours: 392 +> [23977] hours—four: 1 +> [23978] hours--had: 1 +> [23979] hours--it: 1 +> [23980] hours--only: 1 +> [23981] hours...no: 1 +> [23982] hours. [23983] hours’: 1 +> [23984] house: 1872 +> [23985] house—well: 1 +> [23986] house, [23987] house--all: 1 +> [23988] house--and: 2 +> [23989] house--as: 1 +> [23990] house--considering: 1 +> [23991] house--for: 1 +> [23992] house--had: 1 +> [23993] house--he: 2 +> [23994] house--held: 1 +> [23995] house--holding: 1 +> [23996] house--if: 1 +> [23997] house--it: 1 +> [23998] house--let: 1 +> [23999] house--martin: 1 +> [24000] house--my: 1 +> [24001] house--nay: 1 +> [24002] house--seeing: 1 +> [24003] house--she: 1 +> [24004] house--sticks: 1 +> [24005] house--that: 2 +> [24006] house--that's: 1 +> [24007] house--the: 2 +> [24008] house--untimely: 1 +> [24009] house--up: 1 +> [24010] house--which: 2 +> [24011] house--who: 1 +> [24012] house--would: 1 +> [24013] house--yes: 1 +> [24014] house-dog, [24015] house-flannel: 1 +> [24016] house-martin's: 2 +> [24017] house-mates: 1 +> [24018] house-painter: 2 +> [24019] house-porter: 5 +> [24020] house-the: 1 +> [24021] house-warming: 3 +> [24022] house-wives: 1 +> [24023] house. [24024] house.”: 1 +> [24025] house? [24026] housebreakers: 1 +> [24027] housed: 1 +> [24028] houseflies: 1 +> [24029] houseful: 1 +> [24030] household: 125 +> [24031] household--although: 1 +> [24032] household--for: 1 +> [24033] household--something: 1 +> [24034] householders: 1 +> [24035] households: 4 +> [24036] housekeeper: 15 +> [24037] housekeeping: 5 +> [24038] houseless: 1 +> [24039] housemaid: 6 +> [24040] housemaids: 2 +> [24041] houses: 166 +> [24042] houses! [24043] houses--a: 1 +> [24044] houses--and: 1 +> [24045] houses--but: 1 +> [24046] houses--in: 1 +> [24047] houses--it: 1 +> [24048] houses--now: 1 +> [24049] housewarming: 1 +> [24050] housewife: 3 +> [24051] housewife's: 1 +> [24052] housing: 2 +> [24053] hovel: 4 +> [24054] hovels: 2 +> [24055] hovered: 3 +> [24056] hovering: 14 +> [24057] how: 4678 +> [24058] how—how: 1 +> [24059] how's: 25 +> [24060] how--but: 1 +> [24061] how--how: 1 +> [24062] how--subjects: 1 +> [24063] how--what: 2 +> [24064] how-d’ye-call-her: 1 +> [24065] how...i: 1 +> [24066] how...just: 1 +> [24067] how? [24068] however: 970 +> [24069] however—that: 1 +> [24070] however--admit: 1 +> [24071] however--and: 1 +> [24072] however--the: 1 +> [24073] howe’er: 1 +> [24074] howitzers: 3 +> [24075] howl: 13 +> [24076] howled: 12 +> [24077] howling: 14 +> [24078] howls: 2 +> [24079] howsoever: 2 +> [24080] howsomever: 1 +> [24081] howwible: 1 +> [24082] hr: 3 +> [24083] hrs: 3 +> [24084] html: 4 +> [24085] http://gutenberg.net/license: 7 +> [24086] http://gutenberg.org/license: 11 +> [24087] http://pglaf.org: 36 +> [24088] http://pglaf.org/donate: 18 +> [24089] http://pglaf.org/fundraising: 18 +> [24090] http://www.archive.org/details/greathouseastor00weymgoog: 1 +> [24091] http://www.archive.org/details/maninblackillust00weymuoft: 1 +> [24092] http://www.archive.org/details/redcockade00weymuoft: 1 +> [24093] http://www.archive.org/details/storyoffranciscl00weymiala: 1 +> [24094] http://www.gutenberg.net: 7 +> [24095] http://www.gutenberg.net/3/1/8/3183: 1 +> [24096] http://www.gutenberg.org: 12 +> [24097] http://www.gutenberg.org/1/3/9/1399: 1 +> [24098] http://www.gutenberg.org/2/5/5/2554: 1 +> [24099] http://www.gutenberg.org/2/6/0/2600: 1 +> [24100] http://www.gutenberg.org/2/6/3/2638: 1 +> [24101] http://www.gutenberg.org/2/7/9/1/27916: 1 +> [24102] http://www.gutenberg.org/3/4/1/1/34114: 1 +> [24103] http://www.gutenberg.org/3/6/0/3/36034: 1 +> [24104] http://www.gutenberg.org/3/9/2/8/39288: 1 +> [24105] http://www.gutenberg.org/3/9/2/9/39293: 1 +> [24106] http://www.gutenberg.org/3/9/2/9/39294: 1 +> [24107] http://www.gutenberg.org/3/9/2/9/39295: 1 +> [24108] http://www.gutenberg.org/3/9/2/9/39296: 1 +> [24109] http://www.gutenberg.org/3/9/2/9/39297: 1 +> [24110] http://www.gutenberg.org/6/0/600: 3 +> [24111] http://www.gutenberg.org/9/8/986: 1 +> [24112] http://www.gutenberg.org/about/contact: 1 +> [24113] http://www.gutenberg.org/dirs/3/9/2/9/39290: 1 +> [24114] http://www.gutenberg.org/fundraising/donate: 2 +> [24115] http://www.gutenberg.org/fundraising/pglaf: 1 +> [24116] http://www.gutenberg.org/license: 1 +> [24117] http://www.gutenberg.org/tei/marcello/0.4/dtd/pgtei.dtd: 1 +> [24118] http://www.pgdp.net: 10 +> [24119] http://www.pglaf.org: 18 +> [24120] http://www.tei-c.org/lite: 1 +> [24121] hub: 1 +> [24122] hubbub: 12 +> [24123] hubs: 1 +> [24124] huckster: 5 +> [24125] huckster's: 1 +> [24126] hucksters: 2 +> [24127] huddle: 2 +> [24128] huddled: 24 +> [24129] huddling: 5 +> [24130] hue: 5 +> [24131] hue-and-cry: 1 +> [24132] huebsch: 3 +> [24133] hues: 5 +> [24134] huffily: 2 +> [24135] hug: 8 +> [24136] huge: 139 +> [24137] hugely: 5 +> [24138] huger: 1 +> [24139] hugged: 20 +> [24140] huggenberg: 3 +> [24141] hugging: 15 +> [24142] hugh: 1 +> [24143] hugo's: 1 +> [24144] hugs: 1 +> [24145] hugues: 11 +> [24146] hugues--"has: 1 +> [24147] hugues--but: 1 +> [24148] huissiers: 1 +> [24149] hulk: 1 +> [24150] hulking: 3 +> [24151] hull: 3 +> [24152] hullabaloo: 1 +> [24153] hullo: 5 +> [24154] hulloa: 1 +> [24155] hum: 28 +> [24156] hum-drum: 1 +> [24157] humaine: 1 +> [24158] human: 263 +> [24159] human--death--was: 1 +> [24160] human--for: 1 +> [24161] humane: 17 +> [24162] humane—christian: 1 +> [24163] humanely: 1 +> [24164] humanitarian: 2 +> [24165] humanitas: 1 +> [24166] humanity: 138 +> [24167] humanity! [24168] humanity—dost: 1 +> [24169] humanity—to: 1 +> [24170] humanity's: 5 +> [24171] humanity, [24172] humanity--to: 1 +> [24173] humanity. [24174] humanity. [24175] humanly: 1 +> [24176] humann: 2 +> [24177] humanum: 3 +> [24178] humanum [24179] humber: 1 +> [24180] humble: 71 +> [24181] humbled: 7 +> [24182] humbleness: 1 +> [24183] humbler: 6 +> [24184] humbles: 2 +> [24185] humblest: 8 +> [24186] humbling: 1 +> [24187] humbly: 24 +> [24188] humbly--for: 1 +> [24189] humbug: 19 +> [24190] humbugged: 2 +> [24191] humbugging: 3 +> [24192] humbugs: 1 +> [24193] hume: 1 +> [24194] humid: 1 +> [24195] humiliate: 19 +> [24196] humiliated: 53 +> [24197] humiliating: 60 +> [24198] humiliatingly: 1 +> [24199] humiliation: 82 +> [24200] humiliations: 12 +> [24201] humility: 28 +> [24202] hummed: 12 +> [24203] humming: 16 +> [24204] humor: 59 +> [24205] humor--"you're: 1 +> [24206] humored: 9 +> [24207] humoredly: 1 +> [24208] humorist: 2 +> [24209] humorous: 5 +> [24210] humorously: 6 +> [24211] humorously--so: 1 +> [24212] humors: 1 +> [24213] humour: 28 +> [24214] humoured: 1 +> [24215] humours: 3 +> [24216] humpback: 2 +> [24217] humpbacked: 1 +> [24218] humping: 1 +> [24219] hums: 1 +> [24220] hunchback: 6 +> [24221] hunched: 2 +> [24222] hunching: 2 +> [24223] hundred: 663 +> [24224] hundred—but: 1 +> [24225] hundred, [24226] hundred-fold: 2 +> [24227] hundred-pound: 1 +> [24228] hundred-rouble: 24 +> [24229] hundred? [24230] hundredfold: 2 +> [24231] hundredman: 6 +> [24232] hundreds: 88 +> [24233] hundredth: 27 +> [24234] hundredths: 1 +> [24235] hundredweight: 5 +> [24236] hundwed: 3 +> [24237] hung: 180 +> [24238] hungarian: 6 +> [24239] hungarians: 1 +> [24240] hunger: 39 +> [24241] hunger-stricken: 1 +> [24242] hungering: 2 +> [24243] hungrily: 2 +> [24244] hungry: 87 +> [24245] hungry!"--and: 1 +> [24246] hungry, [24247] hungry--what: 1 +> [24248] hungry. [24249] hunk: 1 +> [24250] hunt: 46 +> [24251] hunt-clubs: 1 +> [24252] hunted: 17 +> [24253] hunter: 5 +> [24254] hunter's: 3 +> [24255] hunters: 4 +> [24256] hunter’s: 1 +> [24257] hunting: 54 +> [24258] hunting—i: 1 +> [24259] hunting,--well: 1 +> [24260] hunting-coat: 1 +> [24261] hunting-dress: 1 +> [24262] hunting-jacket: 1 +> [24263] hunting-knife: 3 +> [24264] hunting-suit: 1 +> [24265] hunting-whip: 1 +> [24266] hunts: 3 +> [24267] huntsman: 22 +> [24268] huntsman's: 2 +> [24269] huntsmen: 12 +> [24270] huntsmen's: 3 +> [24271] hur-a-a-a-ah: 1 +> [24272] hur-r-rah: 1 +> [24273] hurdle: 12 +> [24274] hurdles: 8 +> [24275] hurled: 8 +> [24276] hurling: 1 +> [24277] hurls: 1 +> [24278] hurly-burly: 2 +> [24279] hurrah: 89 +> [24280] hurrah!"--"and: 1 +> [24281] hurrah!'--a: 1 +> [24282] hurrah! [24283] hurrah--ah!--ah: 1 +> [24284] hurrah-ah-ah: 2 +> [24285] hurrahs: 1 +> [24286] hurricane: 3 +> [24287] hurricanes: 1 +> [24288] hurried: 135 +> [24289] hurriedly: 249 +> [24290] hurriedly—don't: 1 +> [24291] hurriedly--"don't: 1 +> [24292] hurriedly--just: 1 +> [24293] hurry: 174 +> [24294] hurry, [24295] hurry--and: 1 +> [24296] hurry. [24297] hurry?"--nicholas: 1 +> [24298] hurry? [24299] hurrying: 74 +> [24300] hurrying--not: 1 +> [24301] hurst: 2 +> [24302] hurt: 165 +> [24303] hurt--so: 1 +> [24304] hurt? [24305] hurtful: 2 +> [24306] hurting: 11 +> [24307] hurtling: 2 +> [24308] hurts: 11 +> [24309] hurts—you: 1 +> [24310] husband: 681 +> [24311] husband's: 83 +> [24312] husband--ah: 1 +> [24313] husband--all: 1 +> [24314] husband--as: 1 +> [24315] husband--my: 1 +> [24316] husband--namely: 1 +> [24317] husband--never: 1 +> [24318] husband--practically: 1 +> [24319] husband--that: 2 +> [24320] husband--which: 1 +> [24321] husband--who: 1 +> [24322] husband:--"after: 1 +> [24323] husbanded: 1 +> [24324] husbandman: 1 +> [24325] husbandmen: 1 +> [24326] husbandry: 11 +> [24327] husbands: 38 +> [24328] husband’s: 2 +> [24329] hush: 69 +> [24330] hush! [24331] hushed: 16 +> [24332] hushes: 1 +> [24333] hushing: 4 +> [24334] husk: 1 +> [24335] huskily: 5 +> [24336] husks: 1 +> [24337] husky: 10 +> [24338] huss: 2 +> [24339] hussar: 91 +> [24340] hussar's: 4 +> [24341] hussars: 118 +> [24342] hussars--was: 1 +> [24343] hussies: 2 +> [24344] hussy: 15 +> [24345] hustings: 6 +> [24346] hustle: 2 +> [24347] hustled: 1 +> [24348] hut: 98 +> [24349] hut--and: 1 +> [24350] huts: 12 +> [24351] huzzaed: 1 +> [24352] hyacinthine: 1 +> [24353] hyacinths: 1 +> [24354] hyde: 1 +> [24355] hydra: 3 +> [24356] hydra-like: 1 +> [24357] hydrant: 1 +> [24358] hydrate: 9 +> [24359] hydrates: 3 +> [24360] hydro-chloric: 1 +> [24361] hydrocarbon: 5 +> [24362] hydrocarbons: 3 +> [24363] hydrochloric: 24 +> [24364] hydrogen: 10 +> [24365] hydrogenated: 5 +> [24366] hydrogenating: 6 +> [24367] hydrogenation: 3 +> [24368] hydrolized: 1 +> [24369] hydrolysis: 10 +> [24370] hydrolysis[15: 1 +> [24371] hydrolytic: 2 +> [24372] hydrolyzed: 3 +> [24373] hydrometer: 2 +> [24374] hydrometers: 3 +> [24375] hydroxide: 32 +> [24376] hydroxides: 1 +> [24377] hygienic: 1 +> [24378] hygroscopic: 1 +> [24379] hymn: 18 +> [24380] hymn, [24381] hypertext: 19 +> [24382] hyphenation: 1 +> [24383] hypnotized: 3 +> [24384] hypochondria: 5 +> [24385] hypochondriac: 2 +> [24386] hypochondriacal: 1 +> [24387] hypocrisy: 17 +> [24388] hypocrite: 3 +> [24389] hypocrite! [24390] hypocritical: 3 +> [24391] hypocritically: 1 +> [24392] hypotheses: 2 +> [24393] hypothesis: 7 +> [24394] hypothetical: 1 +> [24395] hypothetically: 1 +> [24396] hysteria: 8 +> [24397] hysteria--that: 5 +> [24398] hysterical: 62 +> [24399] hysterical! [24400] hysterical--indeed: 1 +> [24401] hysterically: 18 +> [24402] hysterics: 42 +> [24403] hysterics--but: 1 +> [24404] hysterics. [24405] hÉ: 2 +> [24406] hÔtel: 2 +> [24407] hé: 2 +> [24408] hélène: 1 +> [24409] hôtel: 20 +> [24410] hübl: 6 +> [24411] i: 41524 +> [24412] i!"--she: 1 +> [24413] i! [24414] i"--he: 1 +> [24415] i— [24416] i—a: 1 +> [24417] i—after: 1 +> [24418] i—but: 1 +> [24419] i'd: 221 +> [24420] i'll: 1097 +> [24421] i'll— [24422] i'll--well: 1 +> [24423] i'm: 1055 +> [24424] i'm—a: 1 +> [24425] i'm,--do: 1 +> [24426] i'm--all: 1 +> [24427] i've: 888 +> [24428] i've--i've: 1 +> [24429] i, [24430] i--"have: 1 +> [24431] i--all: 1 +> [24432] i--and: 1 +> [24433] i--but: 1 +> [24434] i--buton: 1 +> [24435] i--for: 1 +> [24436] i--forgive: 1 +> [24437] i--good: 1 +> [24438] i--hem: 1 +> [24439] i--however: 1 +> [24440] i--i: 24 +> [24441] i--i'll: 1 +> [24442] i--i'm: 1 +> [24443] i--in: 2 +> [24444] i--listen: 1 +> [24445] i--not: 1 +> [24446] i--oh: 1 +> [24447] i--old: 1 +> [24448] i--only: 1 +> [24449] i--si: 1 +> [24450] i--so: 1 +> [24451] i--stayed: 1 +> [24452] i--that: 1 +> [24453] i--the: 2 +> [24454] i--then: 1 +> [24455] i--we: 1 +> [24456] i--what: 1 +> [24457] i--which: 1 +> [24458] i--while: 1 +> [24459] i--who: 1 +> [24460] i--wish--to: 1 +> [24461] i--you: 2 +> [24462] i-i: 6 +> [24463] i-i--came: 1 +> [24464] i-i--listen: 1 +> [24465] i-i--no: 1 +> [24466] i-i--of: 1 +> [24467] i-written: 1 +> [24468] i.-ii: 2 +> [24469] i.-iii: 4 +> [24470] i.-iv: 1 +> [24471] i.-viii: 2 +> [24472] i.-xii: 2 +> [24473] i.-xx: 2 +> [24474] i.... [24475] i...i: 2 +> [24476] i...i...didn't: 1 +> [24477] i...i...if: 1 +> [24478] i...quite: 1 +> [24479] i...you: 1 +> [24480] i. [24481] i.e: 6 +> [24482] i.o.u: 4 +> [24483] i.o.u.'s: 1 +> [24484] i? [24485] i [24486] i—the: 1 +> [24487] i?--good: 1 +> [24488] i?--shall: 1 +> [24489] i?--what: 1 +> [24490] i? [24491] i_"--she: 1 +> [24492] ianovich: 1 +> [24493] iberian: 6 +> [24494] ice: 76 +> [24495] ice! [24496] ice--do: 1 +> [24497] ice-covered: 2 +> [24498] iced: 2 +> [24499] ices: 5 +> [24500] ich: 5 +> [24501] ici: 3 +> [24502] icicles: 3 +> [24503] icon: 47 +> [24504] iconoclast: 1 +> [24505] icons: 36 +> [24506] icy: 9 +> [24507] id: 2 +> [24508] id="de"> [24509] id="en"> [24510] id="footnotes: 1 +> [24511] id="fr"> [24512] id="la"> [24513] id="u0x2003: 1 +> [24514] id="u0x2014: 1 +> [24515] id="u0x2026: 1 +> [24516] id='pg001: 1 +> [24517] id='pg002: 1 +> [24518] id='pg003: 1 +> [24519] id='pg004: 1 +> [24520] id='pg005: 1 +> [24521] id='pg006: 1 +> [24522] id='pg007: 1 +> [24523] id='pg008: 1 +> [24524] id='pg009: 1 +> [24525] id='pg010: 1 +> [24526] id='pg011: 1 +> [24527] id='pg012: 1 +> [24528] id='pg013: 1 +> [24529] id='pg014: 1 +> [24530] id='pg015: 1 +> [24531] id='pg016: 1 +> [24532] id='pg017: 1 +> [24533] id='pg018: 1 +> [24534] id='pg019: 1 +> [24535] id='pg020: 1 +> [24536] id='pg021: 1 +> [24537] id='pg022: 1 +> [24538] id='pg023: 1 +> [24539] id='pg024: 1 +> [24540] id='pg025: 1 +> [24541] id='pg026: 1 +> [24542] id='pg027: 1 +> [24543] id='pg028: 1 +> [24544] id='pg029: 1 +> [24545] id='pg030: 1 +> [24546] id='pg031: 1 +> [24547] id='pg032: 1 +> [24548] id='pg033: 1 +> [24549] id='pg034: 1 +> [24550] id='pg035: 1 +> [24551] id='pg036: 1 +> [24552] id='pg037: 1 +> [24553] id='pg038: 1 +> [24554] id='pg039: 1 +> [24555] id='pg040: 1 +> [24556] id='pg041: 1 +> [24557] id='pg042: 1 +> [24558] id='pg043: 1 +> [24559] id='pg044: 1 +> [24560] id='pg045: 1 +> [24561] id='pg046: 1 +> [24562] id='pg047: 1 +> [24563] id='pg048: 1 +> [24564] id='pg049: 1 +> [24565] id='pg050: 1 +> [24566] id='pg051: 1 +> [24567] id='pg052: 1 +> [24568] id='pg053: 1 +> [24569] id='pg054: 1 +> [24570] id='pg055: 1 +> [24571] id='pg056: 1 +> [24572] id='pg057: 1 +> [24573] id='pg058: 1 +> [24574] id='pg059: 1 +> [24575] id='pg060: 1 +> [24576] id='pg061: 1 +> [24577] id='pg062: 1 +> [24578] id='pg063: 1 +> [24579] id='pg064: 1 +> [24580] id='pg065: 1 +> [24581] id='pg066: 1 +> [24582] id='pg067: 1 +> [24583] id='pg068: 1 +> [24584] id='pg069: 1 +> [24585] id='pg070: 1 +> [24586] id='pg071: 1 +> [24587] id='pg072: 1 +> [24588] id='pg073: 1 +> [24589] id='pg074: 1 +> [24590] id='pg075: 1 +> [24591] id='pg076: 1 +> [24592] id='pg077: 1 +> [24593] id='pg078: 1 +> [24594] id='pg079: 1 +> [24595] id='pg080: 1 +> [24596] id='pg081: 1 +> [24597] id='pg082: 1 +> [24598] id='pg083: 1 +> [24599] id='pg084: 1 +> [24600] id='pg085: 1 +> [24601] id='pg086: 1 +> [24602] id='pg087: 1 +> [24603] id='pg088: 1 +> [24604] id='pg089: 1 +> [24605] id='pg090: 1 +> [24606] id='pg091: 1 +> [24607] id='pg092: 1 +> [24608] id='pg093: 1 +> [24609] id='pg094: 1 +> [24610] id='pg095: 1 +> [24611] id='pg096: 1 +> [24612] id='pg097: 1 +> [24613] id='pg098: 1 +> [24614] id='pg099: 1 +> [24615] id='pg100: 1 +> [24616] id='pg101: 1 +> [24617] id='pg102: 1 +> [24618] id='pg103: 1 +> [24619] id='pg104: 1 +> [24620] id='pg105: 1 +> [24621] id='pg106: 1 +> [24622] id='pg107: 1 +> [24623] id='pg108: 1 +> [24624] id='pg109: 1 +> [24625] id='pg110: 1 +> [24626] id='pg111: 1 +> [24627] id='pg112: 1 +> [24628] id='pg113: 1 +> [24629] id='pg114: 1 +> [24630] id='pg115: 1 +> [24631] id='pg116: 1 +> [24632] id='pg117: 1 +> [24633] id='pg118: 1 +> [24634] id='pg119: 1 +> [24635] id='pg120: 1 +> [24636] id='pg121: 1 +> [24637] id='pg122: 1 +> [24638] id='pg123: 1 +> [24639] id='pg124: 1 +> [24640] id='pg125: 1 +> [24641] id='pg126: 1 +> [24642] id='pg127: 1 +> [24643] id='pg128: 1 +> [24644] id='pg129: 1 +> [24645] id='pg130: 1 +> [24646] id='pg131: 1 +> [24647] id='pg132: 1 +> [24648] id='pg133: 1 +> [24649] id='pg134: 1 +> [24650] id='pg135: 1 +> [24651] id='pg136: 1 +> [24652] id='pg137: 1 +> [24653] id='pg138: 1 +> [24654] id='pg139: 1 +> [24655] id='pg140: 1 +> [24656] id='pg141: 1 +> [24657] id='pg142: 1 +> [24658] id='pg143: 1 +> [24659] id='pg144: 1 +> [24660] id='pg145: 1 +> [24661] id='pg146: 1 +> [24662] id='pg147: 1 +> [24663] id='pg148: 1 +> [24664] id='pg149: 1 +> [24665] id='pg150: 1 +> [24666] id='pg151: 1 +> [24667] id='pg152: 1 +> [24668] id='pg153: 1 +> [24669] id='pg154: 1 +> [24670] id='pg155: 1 +> [24671] id='pg156: 1 +> [24672] id='pg157: 1 +> [24673] id='pg158: 1 +> [24674] id='pg159: 1 +> [24675] id='pg160: 1 +> [24676] id='pg161: 1 +> [24677] id='pg162: 1 +> [24678] id='pg163: 1 +> [24679] id='pg164: 1 +> [24680] id='pg165: 1 +> [24681] id='pg166: 1 +> [24682] id='pg167: 1 +> [24683] id='pg168: 1 +> [24684] id='pg169: 1 +> [24685] id='pg170: 1 +> [24686] id='pg171: 1 +> [24687] id='pg172: 1 +> [24688] id='pg173: 1 +> [24689] id='pg174: 1 +> [24690] id='pg175: 1 +> [24691] id='pg176: 1 +> [24692] id='pg177: 1 +> [24693] id='pg178: 1 +> [24694] id='pg179: 1 +> [24695] id='pg180: 1 +> [24696] id='pg181: 1 +> [24697] id='pg182: 1 +> [24698] id='pg183: 1 +> [24699] id='pg184: 1 +> [24700] id='pg185: 1 +> [24701] id='pg186: 1 +> [24702] id='pg187: 1 +> [24703] id='pg188: 1 +> [24704] id='pg189: 1 +> [24705] id='pg190: 1 +> [24706] id='pg191: 1 +> [24707] id='pg192: 1 +> [24708] id='pg193: 1 +> [24709] id='pg194: 1 +> [24710] id='pg195: 1 +> [24711] id='pg196: 1 +> [24712] id='pg197: 1 +> [24713] id='pg198: 1 +> [24714] id='pg199: 1 +> [24715] id='pg200: 1 +> [24716] id='pg201: 1 +> [24717] id='pg202: 1 +> [24718] id='pg203: 1 +> [24719] id='pg204: 1 +> [24720] id='pg205: 1 +> [24721] id='pg206: 1 +> [24722] id='pg207: 1 +> [24723] id='pg208: 1 +> [24724] id='pg209: 1 +> [24725] id='pg210: 1 +> [24726] id='pg211: 1 +> [24727] id='pg212: 1 +> [24728] id='pg213: 1 +> [24729] id='pg214: 1 +> [24730] id='pg215: 1 +> [24731] id='pg216: 1 +> [24732] id='pg217: 1 +> [24733] id='pg218: 1 +> [24734] id='pg219: 1 +> [24735] id='pg220: 1 +> [24736] id='pg221: 1 +> [24737] id='pg222: 1 +> [24738] id='pg223: 1 +> [24739] id='pg224: 1 +> [24740] id='pg225: 1 +> [24741] id='pg226: 1 +> [24742] id='pg227: 1 +> [24743] id='pg228: 1 +> [24744] id='pg229: 1 +> [24745] id='pg230: 1 +> [24746] id='pg231: 1 +> [24747] id='pg232: 1 +> [24748] id='pg233: 1 +> [24749] id='pg234: 1 +> [24750] id='pg235: 1 +> [24751] id='pg236: 1 +> [24752] id='pg237: 1 +> [24753] id='pg238: 1 +> [24754] id='pg239: 1 +> [24755] id='pg240: 1 +> [24756] id='pg241: 1 +> [24757] id='pg242: 1 +> [24758] id='pg243: 1 +> [24759] id='pg244: 1 +> [24760] id='pg245: 1 +> [24761] id='pg246: 1 +> [24762] id='pg247: 1 +> [24763] id='pg248: 1 +> [24764] id='pg249: 1 +> [24765] id='pg250: 1 +> [24766] id='pg251: 1 +> [24767] id='pg252: 1 +> [24768] id='pg253: 1 +> [24769] id='pg254: 1 +> [24770] id='pg255: 1 +> [24771] id='pg256: 1 +> [24772] id='pg257: 1 +> [24773] id='pg258: 1 +> [24774] id='pg259: 1 +> [24775] id='pg260: 1 +> [24776] id='pg261: 1 +> [24777] id='pg262: 1 +> [24778] id='pg263: 1 +> [24779] id='pg264: 1 +> [24780] id='pg265: 1 +> [24781] id='pg266: 1 +> [24782] id='pg267: 1 +> [24783] id='pg268: 1 +> [24784] id='pg269: 1 +> [24785] id='pg270: 1 +> [24786] id='pg271: 1 +> [24787] id='pg272: 1 +> [24788] id='pg273: 1 +> [24789] id='pg274: 1 +> [24790] id='pg275: 1 +> [24791] id='pg276: 1 +> [24792] id='pg277: 1 +> [24793] id='pg278: 1 +> [24794] id='pg279: 1 +> [24795] id='pg280: 1 +> [24796] id='pg281: 1 +> [24797] id='pg282: 1 +> [24798] id='pg283: 1 +> [24799] id='pg284: 1 +> [24800] id='pg285: 1 +> [24801] id='pg286: 1 +> [24802] id='pg287: 1 +> [24803] id='pg288: 1 +> [24804] id='pg289: 1 +> [24805] id='pg290: 1 +> [24806] id='pg291: 1 +> [24807] id='pg292: 1 +> [24808] id='pg293: 1 +> [24809] id='pg294: 1 +> [24810] id='pg295: 1 +> [24811] id='pg296: 1 +> [24812] id='pg297: 1 +> [24813] id='pg298: 1 +> [24814] id='pg299: 1 +> [24815] id='pg300: 1 +> [24816] id='pg301: 1 +> [24817] id='pg302: 1 +> [24818] id='pg303: 1 +> [24819] id='pg304: 1 +> [24820] id='pg305: 1 +> [24821] id='pg306: 1 +> [24822] id='pg307: 1 +> [24823] id='pg308: 1 +> [24824] id='pg309: 1 +> [24825] id='pg310: 1 +> [24826] id='pg311: 1 +> [24827] id='pg312: 1 +> [24828] id='pg313: 1 +> [24829] id='pg314: 1 +> [24830] id='pg315: 1 +> [24831] id='pg316: 1 +> [24832] id='pg317: 1 +> [24833] id='pg318: 1 +> [24834] id='pg319: 1 +> [24835] id='pg320: 1 +> [24836] id='pg321: 1 +> [24837] id='pg322: 1 +> [24838] id='pg323: 1 +> [24839] id='pg324: 1 +> [24840] id='pg325: 1 +> [24841] id='pg326: 1 +> [24842] id='pg327: 1 +> [24843] id='pg328: 1 +> [24844] id='pg329: 1 +> [24845] id='pg330: 1 +> [24846] id='pg331: 1 +> [24847] id='pg332: 1 +> [24848] id='pg333: 1 +> [24849] id='pg334: 1 +> [24850] id='pg335: 1 +> [24851] id='pg336: 1 +> [24852] id='pg337: 1 +> [24853] id='pg338: 1 +> [24854] id='pg339: 1 +> [24855] id='pg340: 1 +> [24856] id='pg341: 1 +> [24857] id='pg342: 1 +> [24858] id='pg343: 1 +> [24859] id='pg344: 1 +> [24860] id='pg345: 1 +> [24861] id='pg346: 1 +> [24862] id='pg347: 1 +> [24863] id='pg348: 1 +> [24864] id='pg349: 1 +> [24865] id='pg350: 1 +> [24866] id='pg351: 1 +> [24867] id='pg352: 1 +> [24868] id='pg353: 1 +> [24869] id='pg354: 1 +> [24870] id='pg355: 1 +> [24871] id='pg356: 1 +> [24872] id='pg357: 1 +> [24873] id='pg358: 1 +> [24874] id='pg359: 1 +> [24875] id='pg360: 1 +> [24876] id='pg361: 1 +> [24877] id='pg362: 1 +> [24878] id='pg363: 1 +> [24879] id='pg364: 1 +> [24880] id='pg365: 1 +> [24881] id='pg366: 1 +> [24882] id='pg367: 1 +> [24883] id='pg368: 1 +> [24884] id='pg369: 1 +> [24885] id='pg370: 1 +> [24886] id='pg371: 1 +> [24887] id='pg372: 1 +> [24888] id='pg373: 1 +> [24889] id='pg374: 1 +> [24890] id='pg375: 1 +> [24891] id='pg376: 1 +> [24892] id='pg377: 1 +> [24893] id='pg378: 1 +> [24894] id='pg379: 1 +> [24895] id='pg380: 1 +> [24896] id='pg381: 1 +> [24897] id='pg382: 1 +> [24898] id='pg383: 1 +> [24899] id='pg384: 1 +> [24900] id='pg385: 1 +> [24901] id='pg386: 1 +> [24902] id='pg387: 1 +> [24903] id='pg388: 1 +> [24904] id='pg389: 1 +> [24905] id='pg390: 1 +> [24906] id='pg391: 1 +> [24907] id='pg392: 1 +> [24908] id='pg393: 1 +> [24909] id='pg394: 1 +> [24910] id='pg395: 1 +> [24911] id='pg396: 1 +> [24912] id='pg397: 1 +> [24913] id='pg398: 1 +> [24914] id='pg399: 1 +> [24915] id='pg400: 1 +> [24916] id='pg401: 1 +> [24917] id='pg402: 1 +> [24918] id='pg403: 1 +> [24919] id='pg404: 1 +> [24920] id='pg405: 1 +> [24921] id='pg406: 1 +> [24922] id='pg407: 1 +> [24923] id='pg408: 1 +> [24924] id='pg409: 1 +> [24925] id='pg410: 1 +> [24926] id='pg411: 1 +> [24927] id='pg412: 1 +> [24928] id='pg413: 1 +> [24929] id='pg414: 1 +> [24930] id='pg415: 1 +> [24931] id='pg416: 1 +> [24932] id='pg417: 1 +> [24933] id='pg418: 1 +> [24934] id='pg419: 1 +> [24935] id='pg420: 1 +> [24936] id='pg421: 1 +> [24937] id='pg422: 1 +> [24938] id='pg423: 1 +> [24939] id='pg424: 1 +> [24940] id='pg425: 1 +> [24941] id='pg426: 1 +> [24942] id='pg427: 1 +> [24943] id='pg428: 1 +> [24944] id='pg429: 1 +> [24945] id='pg430: 1 +> [24946] id='pg431: 1 +> [24947] id='pg432: 1 +> [24948] id='pg433: 1 +> [24949] id='pg434: 1 +> [24950] id='pg435: 1 +> [24951] id='pg436: 1 +> [24952] id='pg437: 1 +> [24953] id='pg438: 1 +> [24954] id='pg439: 1 +> [24955] id='pg440: 1 +> [24956] id='pg441: 1 +> [24957] id='pg442: 1 +> [24958] id='pg443: 1 +> [24959] id='pg444: 1 +> [24960] id='pg445: 1 +> [24961] id='pg446: 1 +> [24962] id='pg447: 1 +> [24963] id='pg448: 1 +> [24964] id='pg449: 1 +> [24965] id='pg450: 1 +> [24966] id='pg451: 1 +> [24967] id='pg452: 1 +> [24968] id='pg453: 1 +> [24969] id='pg454: 1 +> [24970] id='pg455: 1 +> [24971] id='pg456: 1 +> [24972] id='pg457: 1 +> [24973] id='pg458: 1 +> [24974] id='pg459: 1 +> [24975] id='pg460: 1 +> [24976] id='pg461: 1 +> [24977] id='pg462: 1 +> [24978] id='pg463: 1 +> [24979] id='pg464: 1 +> [24980] id='pg465: 1 +> [24981] id='pg466: 1 +> [24982] id='pg467: 1 +> [24983] id='pg468: 1 +> [24984] id='pg469: 1 +> [24985] id='pg470: 1 +> [24986] id='pg471: 1 +> [24987] id='pg472: 1 +> [24988] id='pg473: 1 +> [24989] id='pg474: 1 +> [24990] id='pg475: 1 +> [24991] id='pg476: 1 +> [24992] id='pg477: 1 +> [24993] id='pg478: 1 +> [24994] id='pg479: 1 +> [24995] id='pg480: 1 +> [24996] id='pg481: 1 +> [24997] id='pg482: 1 +> [24998] id='pg483: 1 +> [24999] id='pg484: 1 +> [25000] id='pg485: 1 +> [25001] id='pg486: 1 +> [25002] id='pg487: 1 +> [25003] id='pg488: 1 +> [25004] id='pg489: 1 +> [25005] id='pg490: 1 +> [25006] id='pg491: 1 +> [25007] id='pg492: 1 +> [25008] id='pg493: 1 +> [25009] id='pg494: 1 +> [25010] id='pg495: 1 +> [25011] id='pg496: 1 +> [25012] id='pg497: 1 +> [25013] id='pg498: 1 +> [25014] id='pg499: 1 +> [25015] id='pg500: 1 +> [25016] id='pg501: 1 +> [25017] id='pg502: 1 +> [25018] id='pg503: 1 +> [25019] id='pg504: 1 +> [25020] id='pg505: 1 +> [25021] id='pg506: 1 +> [25022] id='pg507: 1 +> [25023] id='pg508: 1 +> [25024] id='pg509: 1 +> [25025] id='pg510: 1 +> [25026] id='pg511: 1 +> [25027] id='pg512: 1 +> [25028] id='pg513: 1 +> [25029] id='pg514: 1 +> [25030] id='pg515: 1 +> [25031] id='pg516: 1 +> [25032] id='pg517: 1 +> [25033] id='pg518: 1 +> [25034] id='pg519: 1 +> [25035] id='pg520: 1 +> [25036] id='pg521: 1 +> [25037] id='pg522: 1 +> [25038] id='pg523: 1 +> [25039] id='pg524: 1 +> [25040] id='pg525: 1 +> [25041] id='pg526: 1 +> [25042] id='pg527: 1 +> [25043] id='pg528: 1 +> [25044] id='pg529: 1 +> [25045] id='pg530: 1 +> [25046] id='pg531: 1 +> [25047] id='pg532: 1 +> [25048] id='pg533: 1 +> [25049] id='pg534: 1 +> [25050] id='pg535: 1 +> [25051] id='pg536: 1 +> [25052] id='pg537: 1 +> [25053] id='pg538: 1 +> [25054] id='pg539: 1 +> [25055] id='pg540: 1 +> [25056] id='pg541: 1 +> [25057] id='pg542: 1 +> [25058] id='pg543: 1 +> [25059] id='pg544: 1 +> [25060] id='pg545: 1 +> [25061] id='pg546: 1 +> [25062] id='pg547: 1 +> [25063] id='pg548: 1 +> [25064] id='pg549: 1 +> [25065] id='pg550: 1 +> [25066] id='pg551: 1 +> [25067] id='pg552: 1 +> [25068] id='pg553: 1 +> [25069] id='pg554: 1 +> [25070] id='pg555: 1 +> [25071] id='pg556: 1 +> [25072] id='pg557: 1 +> [25073] id='pg558: 1 +> [25074] id='pg559: 1 +> [25075] id='pg560: 1 +> [25076] id='pg561: 1 +> [25077] id='pg562: 1 +> [25078] id='pg563: 1 +> [25079] id='pg564: 1 +> [25080] id='pg565: 1 +> [25081] id='pg566: 1 +> [25082] id='pg567: 1 +> [25083] id='pg568: 1 +> [25084] id='pg569: 1 +> [25085] id='pg570: 1 +> [25086] id='pg571: 1 +> [25087] id='pg572: 1 +> [25088] id='pg573: 1 +> [25089] id='pg574: 1 +> [25090] id='pg575: 1 +> [25091] id='pg576: 1 +> [25092] id='pg577: 1 +> [25093] id='pg578: 1 +> [25094] id='pg579: 1 +> [25095] id='pg580: 1 +> [25096] id='pg581: 1 +> [25097] id='pg582: 1 +> [25098] id='pg583: 1 +> [25099] id='pg584: 1 +> [25100] id='pg585: 1 +> [25101] id='pg586: 1 +> [25102] id='pg587: 1 +> [25103] id='pg588: 1 +> [25104] id='pg589: 1 +> [25105] id='pg590: 1 +> [25106] id='pg591: 1 +> [25107] id='pg592: 1 +> [25108] id='pg593: 1 +> [25109] id='pg594: 1 +> [25110] id='pg595: 1 +> [25111] id='pg596: 1 +> [25112] id='pg597: 1 +> [25113] id='pg598: 1 +> [25114] id='pg599: 1 +> [25115] id='pg600: 1 +> [25116] id='pg601: 1 +> [25117] id='pg602: 1 +> [25118] id='pg603: 1 +> [25119] id='pg604: 1 +> [25120] id='pg605: 1 +> [25121] id='pg606: 1 +> [25122] id='pg607: 1 +> [25123] id='pg608: 1 +> [25124] id='pg609: 1 +> [25125] id='pg610: 1 +> [25126] id='pg611: 1 +> [25127] id='pg612: 1 +> [25128] id='pg613: 1 +> [25129] id='pg614: 1 +> [25130] id='pg615: 1 +> [25131] id='pg616: 1 +> [25132] id='pg617: 1 +> [25133] id='pg618: 1 +> [25134] id='pg619: 1 +> [25135] id='pg620: 1 +> [25136] id='pg621: 1 +> [25137] id='pg622: 1 +> [25138] id='pg623: 1 +> [25139] id='pg624: 1 +> [25140] id='pg625: 1 +> [25141] id='pg626: 1 +> [25142] id='pg627: 1 +> [25143] id='pg628: 1 +> [25144] id='pg629: 1 +> [25145] id='pg630: 1 +> [25146] id='pg631: 1 +> [25147] id='pg632: 1 +> [25148] id='pg633: 1 +> [25149] id='pg634: 1 +> [25150] id='pg635: 1 +> [25151] id='pg636: 1 +> [25152] id='pg637: 1 +> [25153] id='pg638: 1 +> [25154] id='pg639: 1 +> [25155] id='pg640: 1 +> [25156] id='pg641: 1 +> [25157] id='pg642: 1 +> [25158] id='pg643: 1 +> [25159] id='pg644: 1 +> [25160] id='pg645: 1 +> [25161] id='pg646: 1 +> [25162] id='pg647: 1 +> [25163] id='pg648: 1 +> [25164] id='pg649: 1 +> [25165] id='pg650: 1 +> [25166] id='pg651: 1 +> [25167] id='pg652: 1 +> [25168] id='pg653: 1 +> [25169] id='pg654: 1 +> [25170] id='pg655: 1 +> [25171] id='pg656: 1 +> [25172] id='pg657: 1 +> [25173] id='pg658: 1 +> [25174] id='pg659: 1 +> [25175] id='pg660: 1 +> [25176] id='pg661: 1 +> [25177] id='pg662: 1 +> [25178] id='pg663: 1 +> [25179] id='pg664: 1 +> [25180] id='pg665: 1 +> [25181] id='pg666: 1 +> [25182] id='pg667: 1 +> [25183] id='pg668: 1 +> [25184] id='pg669: 1 +> [25185] id='pg670: 1 +> [25186] id='pg671: 1 +> [25187] id='pg672: 1 +> [25188] id='pg673: 1 +> [25189] id='pg674: 1 +> [25190] id='pg675: 1 +> [25191] id='pg676: 1 +> [25192] id='pg677: 1 +> [25193] id='pg678: 1 +> [25194] id='pg679: 1 +> [25195] id='pg680: 1 +> [25196] id='pg681: 1 +> [25197] id='pg682: 1 +> [25198] id='pg683: 1 +> [25199] id='pg684: 1 +> [25200] id='pg685: 1 +> [25201] id='pg686: 1 +> [25202] id='pg687: 1 +> [25203] id='pg688: 1 +> [25204] id='pg689: 1 +> [25205] id='pg690: 1 +> [25206] id='pg691: 1 +> [25207] id='pg692: 1 +> [25208] id='pg693: 1 +> [25209] id='pg694: 1 +> [25210] id='pg695: 1 +> [25211] id='pg696: 1 +> [25212] id='pg697: 1 +> [25213] id='pg698: 1 +> [25214] id='pg699: 1 +> [25215] id='pg700: 1 +> [25216] id='pg701: 1 +> [25217] id='pg702: 1 +> [25218] id='pg703: 1 +> [25219] id='pg704: 1 +> [25220] id='pg705: 1 +> [25221] id='pg706: 1 +> [25222] id='pg707: 1 +> [25223] id='pg708: 1 +> [25224] id='pg709: 1 +> [25225] id='pg710: 1 +> [25226] id='pg711: 1 +> [25227] id='pg712: 1 +> [25228] id='pg713: 1 +> [25229] id='pg714: 1 +> [25230] id='pg715: 1 +> [25231] id='pg716: 1 +> [25232] id='pg717: 1 +> [25233] id='pg718: 1 +> [25234] id='pg719: 1 +> [25235] id='pg720: 1 +> [25236] id='pg721: 1 +> [25237] id='pg722: 1 +> [25238] id='pg723: 1 +> [25239] id='pg724: 1 +> [25240] id='pg725: 1 +> [25241] id='pg726: 1 +> [25242] id='pg727: 1 +> [25243] id='pg728: 1 +> [25244] id='pg729: 1 +> [25245] id='pg730: 1 +> [25246] id='pg731: 1 +> [25247] id='pg732: 1 +> [25248] id='pg733: 1 +> [25249] id='pg734: 1 +> [25250] id='pg735: 1 +> [25251] id='pg736: 1 +> [25252] id='pg737: 1 +> [25253] id='pg738: 1 +> [25254] id='pg739: 1 +> [25255] id='pg740: 1 +> [25256] id='pg741: 1 +> [25257] id='pg742: 1 +> [25258] id='pg743: 1 +> [25259] id='pg744: 1 +> [25260] id='pg745: 1 +> [25261] id='pg746: 1 +> [25262] id='pg747: 1 +> [25263] id='pg748: 1 +> [25264] id='pg749: 1 +> [25265] id='pg750: 1 +> [25266] id='pg751: 1 +> [25267] id='pg752: 1 +> [25268] id='pg753: 1 +> [25269] id='pg754: 1 +> [25270] id='pg755: 1 +> [25271] id='pg756: 1 +> [25272] id='pg757: 1 +> [25273] id='pg758: 1 +> [25274] id='pg759: 1 +> [25275] id='pg760: 1 +> [25276] id='pg761: 1 +> [25277] id='pg762: 1 +> [25278] id='pg763: 1 +> [25279] id='pg764: 1 +> [25280] id='pg765: 1 +> [25281] id='pg766: 1 +> [25282] id='pg767: 1 +> [25283] id='pg768: 1 +> [25284] id='pg769: 1 +> [25285] id='pg770: 1 +> [25286] id='pg771: 1 +> [25287] id='pg772: 1 +> [25288] id='pg773: 1 +> [25289] id='pg774: 1 +> [25290] id='pg775: 1 +> [25291] id='pg776: 1 +> [25292] id='pg777: 1 +> [25293] id='pg778: 1 +> [25294] id='pg779: 1 +> [25295] id='pg780: 1 +> [25296] id='pg781: 1 +> [25297] id='pg782: 1 +> [25298] id='pg783: 1 +> [25299] id='pg784: 1 +> [25300] id='pg785: 1 +> [25301] id='pg786: 1 +> [25302] id='pg787: 1 +> [25303] id='pg788: 1 +> [25304] id='pg789: 1 +> [25305] id='pg790: 1 +> [25306] id='pg791: 1 +> [25307] id='pg792: 1 +> [25308] id='pg793: 1 +> [25309] id='pg794: 1 +> [25310] id='pg795: 1 +> [25311] id='pg796: 1 +> [25312] id='pg797: 1 +> [25313] id='pg798: 1 +> [25314] id='pg799: 1 +> [25315] id='pg800: 1 +> [25316] id='pg801: 1 +> [25317] id='pg802: 1 +> [25318] id='pg803: 1 +> [25319] id='pg804: 1 +> [25320] id='pg805: 1 +> [25321] id='pg806: 1 +> [25322] id='pg807: 1 +> [25323] id='pg808: 1 +> [25324] id='pg809: 1 +> [25325] id='pg810: 1 +> [25326] id='pg811: 1 +> [25327] id='pg812: 1 +> [25328] id='pg813: 1 +> [25329] id='pg814: 1 +> [25330] id='pg815: 1 +> [25331] id='pg816: 1 +> [25332] id='pg817: 1 +> [25333] id='pg818: 1 +> [25334] id='pg819: 1 +> [25335] id='pg820: 1 +> [25336] id='pg821: 1 +> [25337] id='pg822: 1 +> [25338] id='pg823: 1 +> [25339] id='pg824: 1 +> [25340] id='pg825: 1 +> [25341] id='pg826: 1 +> [25342] id='pg827: 1 +> [25343] id='pg828: 1 +> [25344] id='pg829: 1 +> [25345] id='pg830: 1 +> [25346] id='pg831: 1 +> [25347] id='pg832: 1 +> [25348] id='pg833: 1 +> [25349] id='pg834: 1 +> [25350] id='pg835: 1 +> [25351] id='pg836: 1 +> [25352] id='pg837: 1 +> [25353] id='pg838: 1 +> [25354] id='pg839: 1 +> [25355] id='pg840: 1 +> [25356] id='pg841: 1 +> [25357] id='pg842: 1 +> [25358] id='pg843: 1 +> [25359] id='pg844: 1 +> [25360] id='pg845: 1 +> [25361] id='pg846: 1 +> [25362] id='pg847: 1 +> [25363] id='pg848: 1 +> [25364] id='pg849: 1 +> [25365] id='pg850: 1 +> [25366] id='pg851: 1 +> [25367] id='pg852: 1 +> [25368] id='pg853: 1 +> [25369] id='pg854: 1 +> [25370] id='pg855: 1 +> [25371] id='pg856: 1 +> [25372] id='pg857: 1 +> [25373] id='pg858: 1 +> [25374] id='pg859: 1 +> [25375] id='pg860: 1 +> [25376] id='pg861: 1 +> [25377] id='pg862: 1 +> [25378] id='pg863: 1 +> [25379] id='pg864: 1 +> [25380] id='pg865: 1 +> [25381] id='pg866: 1 +> [25382] id='pg867: 1 +> [25383] id='pg868: 1 +> [25384] id='pg869: 1 +> [25385] id='pg870: 1 +> [25386] id='pg871: 1 +> [25387] id='pg872: 1 +> [25388] id='pg873: 1 +> [25389] id='pg874: 1 +> [25390] id='pg875: 1 +> [25391] id='pg876: 1 +> [25392] id='pg877: 1 +> [25393] idea: 709 +> [25394] idea! [25395] idea—a: 1 +> [25396] idea—an: 1 +> [25397] idea—oh: 1 +> [25398] idea—terrible: 1 +> [25399] idea, [25400] idea--a: 1 +> [25401] idea--beginning: 1 +> [25402] idea--born: 1 +> [25403] idea--come: 1 +> [25404] idea--he: 1 +> [25405] idea--history's: 1 +> [25406] idea--is: 1 +> [25407] idea--it: 1 +> [25408] idea--or: 1 +> [25409] idea--revolting: 3 +> [25410] idea--that: 1 +> [25411] idea.... [25412] idea. [25413] idea? [25414] ideabus: 1 +> [25415] ideal: 84 +> [25416] ideal--the: 1 +> [25417] idealism: 3 +> [25418] idealist: 5 +> [25419] idealize: 1 +> [25420] idealized: 1 +> [25421] ideals: 9 +> [25422] ideas: 284 +> [25423] ideas—outgrown: 1 +> [25424] ideas, [25425] ideas--if: 1 +> [25426] ideas--they: 1 +> [25427] ideas. [25428] ideas [25429] identical: 14 +> [25430] identically: 1 +> [25431] identifiable: 1 +> [25432] identification: 26 +> [25433] identified: 13 +> [25434] identify: 25 +> [25435] identifying: 1 +> [25436] identity: 11 +> [25437] idiocy: 16 +> [25438] idiocy--gossner: 1 +> [25439] idiom: 1 +> [25440] idiomatic: 1 +> [25441] idioms: 1 +> [25442] idiosyncrasies: 2 +> [25443] idiot: 86 +> [25444] idiot!"--the: 1 +> [25445] idiot—that's: 1 +> [25446] idiot--complete: 1 +> [25447] idiotic: 15 +> [25448] idiotically: 2 +> [25449] idiots: 6 +> [25450] idle: 42 +> [25451] idled: 1 +> [25452] idleness: 25 +> [25453] idlers: 5 +> [25454] idles: 1 +> [25455] idly: 19 +> [25456] idno: 1 +> [25457] idol: 9 +> [25458] idol, [25459] idolatrous: 1 +> [25460] idolatry: 3 +> [25461] idols: 8 +> [25462] idyllic: 8 +> [25463] idée! [25464] if: 7734 +> [25465] if"--she: 1 +> [25466] if— [25467] if--as: 1 +> [25468] if--being: 1 +> [25469] if--god: 1 +> [25470] if--i: 1 +> [25471] if--imagining: 1 +> [25472] if--that: 1 +> [25473] if...better: 1 +> [25474] if...if: 1 +> [25475] ifs: 1 +> [25476] ignat: 8 +> [25477] ignatevna: 1 +> [25478] ignatian: 2 +> [25479] ignatitch: 2 +> [25480] ignatius: 20 +> [25481] ignatka: 1 +> [25482] ignatov: 1 +> [25483] ignatovich: 1 +> [25484] ignatych: 1 +> [25485] ignatyevna: 32 +> [25486] ignatyevna's: 1 +> [25487] ignite: 3 +> [25488] ignited: 6 +> [25489] igniting: 1 +> [25490] ignition: 3 +> [25491] ignoble: 12 +> [25492] ignominious: 6 +> [25493] ignominiously: 3 +> [25494] ignominy: 13 +> [25495] ignominy, [25496] ignoramuses--have: 1 +> [25497] ignorance: 57 +> [25498] ignorance--even: 1 +> [25499] ignorance? [25500] ignorant: 48 +> [25501] ignorant--that: 1 +> [25502] ignore: 7 +> [25503] ignored: 7 +> [25504] ignores: 2 +> [25505] ignoring: 4 +> [25506] ii: 148 +> [25507] ii [25508] iii: 113 +> [25509] iii [25510] ikon: 16 +> [25511] ikons: 17 +> [25512] il: 28 +> [25513] ilagin: 18 +> [25514] ilagin's: 7 +> [25515] ilagins: 1 +> [25516] ilarionovich: 6 +> [25517] ile: 2 +> [25518] iligin's: 1 +> [25519] ilius: 1 +> [25520] ill: 426 +> [25521] ill—almost: 1 +> [25522] ill—the: 1 +> [25523] ill,--if: 1 +> [25524] ill, [25525] ill--and: 1 +> [25526] ill--he: 1 +> [25527] ill-advised: 1 +> [25528] ill-bred: 22 +> [25529] ill-chosen: 3 +> [25530] ill-clad: 1 +> [25531] ill-concealed: 1 +> [25532] ill-conceived: 1 +> [25533] ill-conditioned: 1 +> [25534] ill-content: 1 +> [25535] ill-covered: 1 +> [25536] ill-defined: 4 +> [25537] ill-directed: 1 +> [25538] ill-disguised: 2 +> [25539] ill-disposed: 3 +> [25540] ill-dressed: 2 +> [25541] ill-fame: 5 +> [25542] ill-fated: 2 +> [25543] ill-fed: 1 +> [25544] ill-feeling: 1 +> [25545] ill-fitting: 2 +> [25546] ill-formed: 1 +> [25547] ill-fortune: 2 +> [25548] ill-founded: 2 +> [25549] ill-fulfilled: 3 +> [25550] ill-habits: 1 +> [25551] ill-health: 1 +> [25552] ill-hidden: 1 +> [25553] ill-humor: 8 +> [25554] ill-humored: 6 +> [25555] ill-humoredly: 1 +> [25556] ill-humour: 3 +> [25557] ill-humoured: 6 +> [25558] ill-humouredly: 1 +> [25559] ill-lit: 1 +> [25560] ill-luck: 11 +> [25561] ill-made: 1 +> [25562] ill-mannered: 3 +> [25563] ill-matched: 5 +> [25564] ill-nature: 2 +> [25565] ill-natured: 8 +> [25566] ill-naturedly: 1 +> [25567] ill-ordered: 1 +> [25568] ill-paid: 2 +> [25569] ill-planted: 1 +> [25570] ill-qualified: 1 +> [25571] ill-received: 1 +> [25572] ill-regulated: 4 +> [25573] ill-shod: 1 +> [25574] ill-spelled: 2 +> [25575] ill-spent: 1 +> [25576] ill-spoken: 1 +> [25577] ill-suited: 2 +> [25578] ill-temper: 6 +> [25579] ill-tempered: 8 +> [25580] ill-tied: 1 +> [25581] ill-timed: 5 +> [25582] ill-treat: 5 +> [25583] ill-treated: 2 +> [25584] ill-treating: 4 +> [25585] ill-treatment: 1 +> [25586] ill-understood: 1 +> [25587] ill-usage: 1 +> [25588] ill-used: 2 +> [25589] ill-will: 6 +> [25590] ill-wind: 1 +> [25591] ill. [25592] ill? [25593] ill?—he: 1 +> [25594] illegal: 2 +> [25595] illegibly: 1 +> [25596] illegitimate: 18 +> [25597] illicit: 1 +> [25598] illicita: 1 +> [25599] illimitable: 1 +> [25600] illiterate: 6 +> [25601] illness: 165 +> [25602] illness, [25603] illness--a: 2 +> [25604] illness--i: 1 +> [25605] illness--she: 1 +> [25606] illness--that's: 1 +> [25607] illness. [25608] illnesses: 5 +> [25609] illogical: 7 +> [25610] illogicality: 1 +> [25611] ills: 2 +> [25612] ills--a: 1 +> [25613] illuminate: 3 +> [25614] illuminated: 11 +> [25615] illuminati: 2 +> [25616] illuminating: 3 +> [25617] illumination: 7 +> [25618] illuminations: 4 +> [25619] illuminator: 2 +> [25620] illuminators: 2 +> [25621] illumined: 4 +> [25622] illuminism: 3 +> [25623] illusion: 5 +> [25624] illusions: 2 +> [25625] illusive: 1 +> [25626] illustrate: 6 +> [25627] illustrated: 13 +> [25628] illustrates: 1 +> [25629] illustrating: 1 +> [25630] illustration: 82 +> [25631] illustrations: 34 +> [25632] illustrative: 4 +> [25633] illustrator: 2 +> [25634] illustrious: 10 +> [25635] illyitch: 1 +> [25636] illæ: 1 +> [25637] ils: 1 +> [25638] ilusha: 113 +> [25639] ilusha! [25640] ilusha's: 28 +> [25641] ilusha's, [25642] ilusha, [25643] ilusha. [25644] ilusha [25645] ilusha? [25646] ilya: 68 +> [25647] ilya's: 1 +> [25648] ilyin: 38 +> [25649] ilyin's: 1 +> [25650] ilyinishna: 1 +> [25651] ilyinishna—she's: 1 +> [25652] ilyinka: 1 +> [25653] ilyinskoe: 4 +> [25654] ilyitch: 99 +> [25655] ilyitch! [25656] ilyitch's: 4 +> [25657] ilynich: 2 +> [25658] ilynichna: 2 +> [25659] ilyushka: 2 +> [25660] image: 63 +> [25661] imagery: 5 +> [25662] images: 36 +> [25663] imaginary: 15 +> [25664] imagination: 139 +> [25665] imagination-how: 1 +> [25666] imagination. [25667] imagination.’: 1 +> [25668] imaginations: 2 +> [25669] imaginative: 1 +> [25670] imagine: 322 +> [25671] imagine— [25672] imagine--i: 1 +> [25673] imagine--yes: 1 +> [25674] imagine-the: 1 +> [25675] imagined: 142 +> [25676] imagines: 7 +> [25677] imagining: 38 +> [25678] imaginings: 4 +> [25679] imbecile: 6 +> [25680] imbeciles: 1 +> [25681] imbecility: 2 +> [25682] imbibe: 1 +> [25683] imbibed: 5 +> [25684] imbroglio: 3 +> [25685] imbued: 6 +> [25686] imitate: 14 +> [25687] imitated: 7 +> [25688] imitates: 1 +> [25689] imitating: 7 +> [25690] imitation: 17 +> [25691] imitations: 1 +> [25692] imitative: 1 +> [25693] imitators: 3 +> [25694] immaculate: 2 +> [25695] immaterial: 4 +> [25696] immature: 1 +> [25697] immeasurable: 8 +> [25698] immeasurably: 12 +> [25699] immediate: 80 +> [25700] immediately: 467 +> [25701] immediately--and: 1 +> [25702] immediately.”: 1 +> [25703] immemor: 1 +> [25704] immemorial: 5 +> [25705] immense: 110 +> [25706] immensely: 13 +> [25707] immensity: 3 +> [25708] immerse: 1 +> [25709] immersed: 4 +> [25710] immersion: 2 +> [25711] imminence: 1 +> [25712] imminent: 8 +> [25713] imminent--black: 1 +> [25714] immobile: 1 +> [25715] immobility: 3 +> [25716] immoderate: 1 +> [25717] immodest: 2 +> [25718] immoral: 15 +> [25719] immorality: 4 +> [25720] immortal: 6 +> [25721] immortal--well: 1 +> [25722] immortality: 22 +> [25723] immortality. [25724] immortality? [25725] immortally: 1 +> [25726] immovability: 1 +> [25727] immovable: 12 +> [25728] immovably: 5 +> [25729] immunities: 1 +> [25730] immutability: 1 +> [25731] immutable: 3 +> [25732] immutably: 3 +> [25733] imp: 1 +> [25734] impact: 2 +> [25735] impair: 1 +> [25736] impaired: 1 +> [25737] impaled: 1 +> [25738] impalpable: 3 +> [25739] impart: 14 +> [25740] impart,--the: 1 +> [25741] imparted: 8 +> [25742] impartial: 3 +> [25743] impartiality: 1 +> [25744] impartially: 4 +> [25745] imparting: 4 +> [25746] imparts: 1 +> [25747] impassable: 4 +> [25748] impassable--there's: 1 +> [25749] impassioned: 6 +> [25750] impassive: 9 +> [25751] impassively: 2 +> [25752] impassiveness: 1 +> [25753] impatience: 121 +> [25754] impatience. [25755] impatient: 68 +> [25756] impatiently: 100 +> [25757] impede: 1 +> [25758] impeded: 1 +> [25759] impedes: 2 +> [25760] impediment: 2 +> [25761] impeding: 1 +> [25762] impel: 1 +> [25763] impelled: 27 +> [25764] impelling: 2 +> [25765] impels: 2 +> [25766] impended: 1 +> [25767] impending: 19 +> [25768] impenetrable: 9 +> [25769] imper: 1 +> [25770] imperative: 11 +> [25771] imperatively: 7 +> [25772] imperceptible: 6 +> [25773] imperceptibly: 19 +> [25774] imperfect: 4 +> [25775] imperfectly: 1 +> [25776] imperial: 39 +> [25777] imperialist: 1 +> [25778] imperials: 4 +> [25779] imperials"--he: 1 +> [25780] imperious: 6 +> [25781] imperiously: 12 +> [25782] imperiousness: 2 +> [25783] imperishable--had: 1 +> [25784] impermeability: 1 +> [25785] impersonal: 1 +> [25786] impersonate: 1 +> [25787] impersonates: 1 +> [25788] impertinence: 13 +> [25789] impertinence—that's: 1 +> [25790] impertinence? [25791] impertinences: 1 +> [25792] impertinent: 12 +> [25793] impertinently: 3 +> [25794] imperturbable: 3 +> [25795] impervious: 2 +> [25796] impetuosity: 4 +> [25797] impetuous: 8 +> [25798] impetuously: 18 +> [25799] impetuously--and: 1 +> [25800] impetus: 8 +> [25801] impious: 1 +> [25802] impiously: 1 +> [25803] implacable: 3 +> [25804] implanted: 4 +> [25805] implanting: 2 +> [25806] implement: 1 +> [25807] implements: 4 +> [25808] implements--all: 1 +> [25809] implicated: 2 +> [25810] implication: 2 +> [25811] implications: 1 +> [25812] implicit: 8 +> [25813] implicitly: 12 +> [25814] implied: 50 +> [25815] implies: 6 +> [25816] implies--if: 1 +> [25817] implore: 11 +> [25818] implored: 13 +> [25819] implores: 1 +> [25820] imploring: 39 +> [25821] imploringly: 9 +> [25822] imply: 20 +> [25823] implying: 8 +> [25824] impolite: 1 +> [25825] impolitely: 1 +> [25826] impoliteness: 1 +> [25827] import: 13 +> [25828] importance: 195 +> [25829] importance--and: 1 +> [25830] importance. [25831] important: 463 +> [25832] important—that: 1 +> [25833] important, [25834] important--more: 1 +> [25835] important--of: 1 +> [25836] important--that: 2 +> [25837] important-looking: 2 +> [25838] importantly: 2 +> [25839] importation: 3 +> [25840] imported: 7 +> [25841] importing: 1 +> [25842] imports: 1 +> [25843] importunate: 4 +> [25844] importunity: 4 +> [25845] impose: 10 +> [25846] imposed: 34 +> [25847] imposes: 1 +> [25848] imposing: 11 +> [25849] imposing-looking: 1 +> [25850] impossibilities: 6 +> [25851] impossibility: 31 +> [25852] impossibility--as: 1 +> [25853] impossible: 599 +> [25854] impossible!... [25855] impossible! [25856] impossible, [25857] impossible--and: 1 +> [25858] impossible--impossible: 2 +> [25859] impossible--in: 1 +> [25860] impossible--why: 1 +> [25861] impossible--your: 1 +> [25862] impossible. [25863] impossibly: 3 +> [25864] impostor: 6 +> [25865] impostors: 2 +> [25866] imposture: 3 +> [25867] impotence: 15 +> [25868] impotence--apart: 1 +> [25869] impotent: 8 +> [25870] impotently: 3 +> [25871] impoverished: 5 +> [25872] impoverishing: 1 +> [25873] impoverishment: 3 +> [25874] impracticability: 2 +> [25875] impracticable: 4 +> [25876] impracticality: 1 +> [25877] imprecations: 1 +> [25878] imprecatory: 1 +> [25879] impregnable: 1 +> [25880] impregnate: 1 +> [25881] impress: 29 +> [25882] impressed: 91 +> [25883] impressed--painfully: 1 +> [25884] impresses: 6 +> [25885] impressing: 4 +> [25886] impression: 257 +> [25887] impression! [25888] impressionability: 1 +> [25889] impressionable: 6 +> [25890] impressions: 53 +> [25891] impressions--it's: 1 +> [25892] impressions--such: 1 +> [25893] impressive: 15 +> [25894] impressively: 20 +> [25895] impressiveness: 4 +> [25896] imprint: 2 +> [25897] imprinted: 4 +> [25898] imprints: 1 +> [25899] imprison: 1 +> [25900] imprisoned: 6 +> [25901] imprisonment: 9 +> [25902] improbability: 2 +> [25903] improbable: 15 +> [25904] improbable--it: 1 +> [25905] impromptu: 1 +> [25906] improper: 30 +> [25907] improperly: 4 +> [25908] impropriety: 10 +> [25909] improve: 33 +> [25910] improve--then: 1 +> [25911] improved: 35 +> [25912] improvement: 18 +> [25913] improvements: 16 +> [25914] improves: 1 +> [25915] improvidence: 1 +> [25916] improvident: 2 +> [25917] improving: 8 +> [25918] improvised: 5 +> [25919] imprudence: 4 +> [25920] imprudent: 7 +> [25921] imprudently: 1 +> [25922] imps: 1 +> [25923] impudence: 22 +> [25924] impudent: 41 +> [25925] impudent-looking: 1 +> [25926] impudently: 6 +> [25927] impulse: 103 +> [25928] impulse--he: 1 +> [25929] impulses: 21 +> [25930] impulsive: 19 +> [25931] impulsively: 18 +> [25932] impulsiveness: 5 +> [25933] impunity: 8 +> [25934] impure: 10 +> [25935] impurities: 49 +> [25936] impurities._--the: 1 +> [25937] impurity: 6 +> [25938] imputation: 3 +> [25939] impute: 4 +> [25940] imputed: 1 +> [25941] in: 43132 +> [25942] in! [25943] in—i've: 1 +> [25944] in—what: 1 +> [25945] in, [25946] in--"and: 1 +> [25947] in--but: 1 +> [25948] in--don't: 1 +> [25949] in--he's: 1 +> [25950] in--her: 1 +> [25951] in--his: 1 +> [25952] in--in: 1 +> [25953] in--it's: 1 +> [25954] in--levin: 1 +> [25955] in--monsieur: 1 +> [25956] in--since: 1 +> [25957] in--so: 1 +> [25958] in--that: 1 +> [25959] in--to: 1 +> [25960] in--turned: 1 +> [25961] in--yet: 1 +> [25962] in-born: 1 +> [25963] in-doors: 1 +> [25964] in-law: 1 +> [25965] in...see: 1 +> [25966] in. [25967] in;’: 1 +> [25968] in? [25969] inability: 12 +> [25970] inaccessibility: 1 +> [25971] inaccessible: 8 +> [25972] inaccuracies: 2 +> [25973] inaccuracy: 1 +> [25974] inaccurate: 19 +> [25975] inaction: 8 +> [25976] inactive: 9 +> [25977] inactivity: 6 +> [25978] inadequacy: 1 +> [25979] inadequate: 3 +> [25980] inadequately: 1 +> [25981] inadvertently: 3 +> [25982] inalienable: 1 +> [25983] inane: 1 +> [25984] inanimate: 4 +> [25985] inapplicable: 2 +> [25986] inappropriate: 10 +> [25987] inappropriate. [25988] inappropriately: 4 +> [25989] inappropriateness: 1 +> [25990] inapt: 1 +> [25991] inarticulate: 2 +> [25992] inarticulately: 1 +> [25993] inartistic: 1 +> [25994] inasmuch: 12 +> [25995] inattention: 10 +> [25996] inattentions: 1 +> [25997] inattentive: 4 +> [25998] inattentively: 3 +> [25999] inaudible: 6 +> [26000] inaudibly: 6 +> [26001] inaugurating: 1 +> [26002] inauguration: 2 +> [26003] inborn: 3 +> [26004] inbred: 2 +> [26005] incalculable: 3 +> [26006] incantation: 1 +> [26007] incantations: 2 +> [26008] incapable: 72 +> [26009] incapacity: 12 +> [26010] incapacity--i: 1 +> [26011] incarnate: 9 +> [26012] incarnation: 11 +> [26013] incautious: 2 +> [26014] incautiously: 5 +> [26015] incendiaries: 3 +> [26016] incendiarism: 2 +> [26017] incendiarisms: 1 +> [26018] incendiary: 4 +> [26019] incense: 8 +> [26020] incensed: 7 +> [26021] incentive: 1 +> [26022] incessant: 26 +> [26023] incessantly: 41 +> [26024] incessantly--probably: 1 +> [26025] incest: 1 +> [26026] inch: 27 +> [26027] inches: 46 +> [26028] incident: 61 +> [26029] incidental: 25 +> [26030] incidentally: 9 +> [26031] incidents: 28 +> [26032] incidents--paltry: 1 +> [26033] incipient: 1 +> [26034] incisive: 4 +> [26035] incisively: 1 +> [26036] incite: 2 +> [26037] incited: 7 +> [26038] incitement: 3 +> [26039] incivility: 1 +> [26040] inclination: 34 +> [26041] inclination--practical: 1 +> [26042] inclinations: 7 +> [26043] incline: 13 +> [26044] inclined: 59 +> [26045] inclining: 3 +> [26046] inclose: 1 +> [26047] inclosed: 1 +> [26048] inclosed--a: 1 +> [26049] include: 35 +> [26050] included: 97 +> [26051] included--through: 1 +> [26052] includes: 28 +> [26053] including: 209 +> [26054] inclusion: 2 +> [26055] inclytum: 1 +> [26056] incognito: 11 +> [26057] incoherence: 6 +> [26058] incoherent: 23 +> [26059] incoherently: 18 +> [26060] income: 37 +> [26061] income--my: 1 +> [26062] income-tax: 1 +> [26063] incomes: 2 +> [26064] incoming: 1 +> [26065] incommensurable: 3 +> [26066] incommensurate: 1 +> [26067] incomparable: 2 +> [26068] incomparably: 11 +> [26069] incompatibility: 3 +> [26070] incompatible: 3 +> [26071] incompetent: 2 +> [26072] incomplete: 27 +> [26073] incompletely: 1 +> [26074] incompleteness: 2 +> [26075] incomprehensible: 64 +> [26076] incomprehensible--but: 1 +> [26077] incomprehensible--is: 1 +> [26078] incomprehensible--the: 1 +> [26079] incomprehensible. [26080] incomprehensibly: 2 +> [26081] incomprehension: 1 +> [26082] inconceivable: 23 +> [26083] inconceivably: 2 +> [26084] inconclusive: 1 +> [26085] incongruities: 2 +> [26086] incongruity: 5 +> [26087] incongruous: 20 +> [26088] inconsecutively: 1 +> [26089] inconsequent: 1 +> [26090] inconsiderable: 1 +> [26091] inconsideracy: 1 +> [26092] inconsistencies: 1 +> [26093] inconsistency: 5 +> [26094] inconsistent: 21 +> [26095] inconsolable: 3 +> [26096] inconspicuous: 2 +> [26097] inconstancy: 1 +> [26098] inconstant: 1 +> [26099] incontestable: 10 +> [26100] incontestably: 5 +> [26101] incontinence: 1 +> [26102] incontrovertible: 2 +> [26103] inconvenience: 13 +> [26104] inconvenience--in: 1 +> [26105] inconvenience.”: 1 +> [26106] inconveniences: 2 +> [26107] inconveniencing: 1 +> [26108] inconveniency: 1 +> [26109] inconvenient: 12 +> [26110] incorporate: 3 +> [26111] incorporated: 13 +> [26112] incorporates: 1 +> [26113] incorporating: 3 +> [26114] incorporation: 2 +> [26115] incorrect: 14 +> [26116] incorrectly: 3 +> [26117] incorrectness: 1 +> [26118] incorrigible: 10 +> [26119] incorrigible. [26120] incorruptibility: 2 +> [26121] incorruptible: 5 +> [26122] increase: 54 +> [26123] increased: 101 +> [26124] increases: 22 +> [26125] increasing: 63 +> [26126] increasingly: 6 +> [26127] incredible: 40 +> [26128] incredible--but: 5 +> [26129] incredibly: 13 +> [26130] incredulity: 12 +> [26131] incredulous: 9 +> [26132] incredulously: 9 +> [26133] incubus: 1 +> [26134] inculcated: 2 +> [26135] inculcation: 1 +> [26136] inculpate: 2 +> [26137] incumbent: 10 +> [26138] incumbents: 1 +> [26139] incumbrance: 1 +> [26140] incumbrances: 1 +> [26141] incur: 3 +> [26142] incurable: 4 +> [26143] incurably: 1 +> [26144] incurred: 6 +> [26145] incurring: 3 +> [26146] incursions: 2 +> [26147] ind: 2 +> [26148] indebted: 14 +> [26149] indebtedness: 1 +> [26150] indecent: 5 +> [26151] indecision: 19 +> [26152] indecisive: 2 +> [26153] indecorous: 4 +> [26154] indecorously: 1 +> [26155] indeed: 882 +> [26156] indeed!--as: 1 +> [26157] indeed,--he: 1 +> [26158] indeed, [26159] indeed--everyone: 1 +> [26160] indeed--he: 1 +> [26161] indeed--i: 1 +> [26162] indeed--my: 1 +> [26163] indeed--that: 1 +> [26164] indeed--zola: 1 +> [26165] indeed. [26166] indefatigably: 1 +> [26167] indefensible: 1 +> [26168] indefinable: 5 +> [26169] indefinably: 1 +> [26170] indefinite: 21 +> [26171] indefinite--a: 1 +> [26172] indefinitely: 2 +> [26173] indefiniteness: 7 +> [26174] indelible: 1 +> [26175] indelibly: 1 +> [26176] indelicacy: 3 +> [26177] indelicate: 10 +> [26178] indelicately: 2 +> [26179] indemnification: 2 +> [26180] indemnify: 20 +> [26181] indemnity: 19 +> [26182] indent: 1 +> [26183] independence: 51 +> [26184] independent: 76 +> [26185] independently: 32 +> [26186] indescribable: 21 +> [26187] indescribably: 3 +> [26188] indestructibility: 1 +> [26189] indestructible: 2 +> [26190] indeterminate: 2 +> [26191] index: 236 +> [26192] index="pdf: 1 +> [26193] index="toc: 1 +> [26194] index='pdf: 113 +> [26195] index='toc: 113 +> [26196] india: 10 +> [26197] india-rubber: 2 +> [26198] indian: 4 +> [26199] indicate: 36 +> [26200] indicated: 56 +> [26201] indicated--partly: 1 +> [26202] indicates: 11 +> [26203] indicating: 74 +> [26204] indication: 22 +> [26205] indications: 14 +> [26206] indications)-before: 1 +> [26207] indicative: 4 +> [26208] indicator: 27 +> [26209] indicators: 2 +> [26210] indictment: 1 +> [26211] indifference: 83 +> [26212] indifferent: 66 +> [26213] indifferent--absolutely: 1 +> [26214] indifferently: 19 +> [26215] indigestion: 6 +> [26216] indignant: 36 +> [26217] indignantly: 19 +> [26218] indignation: 103 +> [26219] indignities: 1 +> [26220] indignity: 2 +> [26221] indirect: 25 +> [26222] indirectly: 36 +> [26223] indirectly? [26224] indirectness: 1 +> [26225] indiscreet: 7 +> [26226] indiscretely: 1 +> [26227] indiscretion: 6 +> [26228] indiscriminately: 3 +> [26229] indiscriminately--humbled: 1 +> [26230] indispensable: 39 +> [26231] indispensableness: 1 +> [26232] indispensably: 3 +> [26233] indisposed: 1 +> [26234] indisposition: 6 +> [26235] indisputable: 4 +> [26236] indisputably: 1 +> [26237] indissoluble: 4 +> [26238] indistinct: 8 +> [26239] indistinctly: 10 +> [26240] indistinguishable: 1 +> [26241] inditing: 1 +> [26242] individu: 1 +> [26243] individual: 164 +> [26244] individual's: 2 +> [26245] individual--one: 1 +> [26246] individualism: 5 +> [26247] individualistic: 2 +> [26248] individuality: 6 +> [26249] individualized: 1 +> [26250] individually: 8 +> [26251] individuals: 24 +> [26252] individuals--for: 1 +> [26253] indoctrinate: 1 +> [26254] indoctrinated: 1 +> [26255] indolence: 6 +> [26256] indolent: 4 +> [26257] indolently: 4 +> [26258] indomitable: 3 +> [26259] indoor: 3 +> [26260] indoors: 13 +> [26261] indubitable: 9 +> [26262] indubitable--she: 1 +> [26263] indubitably: 10 +> [26264] induce: 25 +> [26265] induced: 34 +> [26266] inducement: 1 +> [26267] inducements: 1 +> [26268] induces: 4 +> [26269] inducing: 2 +> [26270] indulge: 19 +> [26271] indulged: 17 +> [26272] indulgence: 19 +> [26273] indulgent: 7 +> [26274] indulgent--which: 1 +> [26275] indulgently: 5 +> [26276] indulger: 1 +> [26277] indulging: 6 +> [26278] industrial: 5 +> [26279] industries: 8 +> [26280] industrious: 9 +> [26281] industriously: 2 +> [26282] industry: 33 +> [26283] indwelling: 4 +> [26284] inedible: 2 +> [26285] ineffable: 3 +> [26286] ineffably: 4 +> [26287] ineffectiveness: 1 +> [26288] ineffectives: 1 +> [26289] inefficiency: 1 +> [26290] inefficient: 1 +> [26291] inelegant: 1 +> [26292] inept: 1 +> [26293] ineptitude: 1 +> [26294] inequality: 7 +> [26295] ineradicable: 3 +> [26296] inerrancy: 1 +> [26297] inert: 6 +> [26298] inertia: 16 +> [26299] inertiae--pressed: 1 +> [26300] inestimable: 1 +> [26301] inevitability: 54 +> [26302] inevitable: 86 +> [26303] inevitably: 62 +> [26304] inexact: 1 +> [26305] inexcusable: 3 +> [26306] inexcusably: 1 +> [26307] inexhaustible: 9 +> [26308] inexorable: 2 +> [26309] inexorably: 1 +> [26310] inexpensive: 1 +> [26311] inexperience: 12 +> [26312] inexperienced: 12 +> [26313] inexplicable: 21 +> [26314] inexplicably: 5 +> [26315] inexpressible: 9 +> [26316] inexpressibly: 6 +> [26317] inexpressive: 1 +> [26318] inextricable: 1 +> [26319] inextricably: 1 +> [26320] infallibility: 3 +> [26321] infallible: 21 +> [26322] infallibly: 5 +> [26323] infamies: 2 +> [26324] infamous: 11 +> [26325] infamous! [26326] infamy: 5 +> [26327] infancy: 6 +> [26328] infant: 13 +> [26329] infant's: 1 +> [26330] infantine: 1 +> [26331] infantry: 87 +> [26332] infantry--all: 1 +> [26333] infantryman: 3 +> [26334] infantrymen: 5 +> [26335] infants: 2 +> [26336] infantwy: 2 +> [26337] infatuated: 2 +> [26338] infatuation: 5 +> [26339] infatuations: 3 +> [26340] infected: 25 +> [26341] infection: 6 +> [26342] infectious: 10 +> [26343] infectiously: 1 +> [26344] infelicity: 1 +> [26345] infer: 7 +> [26346] infer.[35: 1 +> [26347] inference: 6 +> [26348] inferences: 2 +> [26349] inferior: 33 +> [26350] inferiority: 6 +> [26351] inferiors: 11 +> [26352] infernal: 9 +> [26353] inferno: 2 +> [26354] inferred: 5 +> [26355] infested: 1 +> [26356] infidel: 8 +> [26357] infidelities: 2 +> [26358] infidelity: 17 +> [26359] infidels: 2 +> [26360] infinite: 67 +> [26361] infinitely: 39 +> [26362] infinitesimal: 3 +> [26363] infinitesimally: 2 +> [26364] infinitesimals: 2 +> [26365] infinity: 8 +> [26366] infinity--that: 1 +> [26367] infirm: 2 +> [26368] infirmities: 5 +> [26369] infirmity: 3 +> [26370] inflame: 1 +> [26371] inflamed: 10 +> [26372] inflames: 1 +> [26373] inflammable: 3 +> [26374] inflammation: 5 +> [26375] inflated: 6 +> [26376] inflexible: 1 +> [26377] inflict: 8 +> [26378] inflicted: 14 +> [26379] inflicting: 3 +> [26380] infliction: 4 +> [26381] inflictions: 1 +> [26382] inflicts: 1 +> [26383] inflow: 1 +> [26384] influence: 200 +> [26385] influence'?--is: 1 +> [26386] influence--as: 1 +> [26387] influenced: 16 +> [26388] influences: 26 +> [26389] influences—first: 1 +> [26390] influencing: 5 +> [26391] influential: 13 +> [26392] influx: 1 +> [26393] inform: 65 +> [26394] informal: 1 +> [26395] informally: 2 +> [26396] informant: 4 +> [26397] information: 253 +> [26398] information"--it: 1 +> [26399] information--excuse: 1 +> [26400] informed: 109 +> [26401] informed,--but: 1 +> [26402] informer: 3 +> [26403] informing: 15 +> [26404] informs: 8 +> [26405] infra: 1 +> [26406] infrequency: 1 +> [26407] infrequent: 3 +> [26408] infrequently: 2 +> [26409] infringe: 1 +> [26410] infringed: 2 +> [26411] infringement: 21 +> [26412] infringers: 1 +> [26413] infringes: 1 +> [26414] infuriate: 1 +> [26415] infuriated: 21 +> [26416] infuse: 1 +> [26417] infused: 1 +> [26418] infusions: 1 +> [26419] infusorial: 2 +> [26420] ing: 2 +> [26421] ingathering: 1 +> [26422] ingenious: 7 +> [26423] ingeniously: 3 +> [26424] ingenuity: 6 +> [26425] ingenuous: 4 +> [26426] ingenuously: 2 +> [26427] ingenuousness: 3 +> [26428] ingloriously: 1 +> [26429] ingrained: 1 +> [26430] ingrate: 1 +> [26431] ingrates: 1 +> [26432] ingratiate: 7 +> [26433] ingratiating: 12 +> [26434] ingratiatingly: 1 +> [26435] ingratitude: 16 +> [26436] ingratitude--in: 1 +> [26437] ingratitude--the: 1 +> [26438] ingratitude. [26439] ingredient: 2 +> [26440] ingredient? [26441] ingredients: 9 +> [26442] inhabit: 2 +> [26443] inhabitant: 1 +> [26444] inhabitant's: 1 +> [26445] inhabitants: 58 +> [26446] inhabitants-who: 1 +> [26447] inhabited: 6 +> [26448] inhabiting: 1 +> [26449] inhale: 2 +> [26450] inhaled: 5 +> [26451] inhaling: 4 +> [26452] inharmonious: 1 +> [26453] inherent: 7 +> [26454] inherit: 9 +> [26455] inheritance: 43 +> [26456] inheritance--the: 1 +> [26457] inheritance? [26458] inheritances: 1 +> [26459] inherited: 7 +> [26460] inheriting: 2 +> [26461] inhospitable: 4 +> [26462] inhuman: 15 +> [26463] inhumanly: 7 +> [26464] inimical: 1 +> [26465] inimically: 1 +> [26466] inimitable: 5 +> [26467] iniquities: 2 +> [26468] iniquity: 3 +> [26469] initial: 18 +> [26470] initials: 5 +> [26471] initiated: 5 +> [26472] initiating: 1 +> [26473] initiation: 3 +> [26474] initiative: 6 +> [26475] initiator: 1 +> [26476] injected: 1 +> [26477] injudicious: 2 +> [26478] injunction: 3 +> [26479] injunctions: 3 +> [26480] injure: 16 +> [26481] injured: 53 +> [26482] injured--no: 1 +> [26483] injuries: 6 +> [26484] injuries--and: 1 +> [26485] injuring: 11 +> [26486] injurious: 11 +> [26487] injurious--she: 1 +> [26488] injuriously: 1 +> [26489] injury: 14 +> [26490] injury--and: 1 +> [26491] injury--generals: 1 +> [26492] injustice: 25 +> [26493] ink: 25 +> [26494] ink-horn: 1 +> [26495] ink-stand: 1 +> [26496] inkling: 7 +> [26497] inkpot: 3 +> [26498] inks: 1 +> [26499] inkstand: 6 +> [26500] inkstands: 1 +> [26501] inlaid: 3 +> [26502] inland: 2 +> [26503] inland--that: 1 +> [26504] inlets: 1 +> [26505] inmate: 1 +> [26506] inmates: 9 +> [26507] inmost: 5 +> [26508] inn: 72 +> [26509] inn's: 1 +> [26510] inn--and: 1 +> [26511] inn--not: 1 +> [26512] inn--that: 2 +> [26513] inn-chamber: 1 +> [26514] inn-door: 1 +> [26515] inn-keeper: 8 +> [26516] inn-keepers: 4 +> [26517] inn-yard: 1 +> [26518] innards: 1 +> [26519] innate: 13 +> [26520] inner: 95 +> [26521] innermost: 1 +> [26522] innkeeper: 21 +> [26523] innkeeper's: 5 +> [26524] innkeepers: 2 +> [26525] innocence: 34 +> [26526] innocence? [26527] innocent: 137 +> [26528] innocent, [26529] innocent--and: 1 +> [26530] innocent--that: 1 +> [26531] innocent. [26532] innocently: 7 +> [26533] innocents: 1 +> [26534] innocuous: 1 +> [26535] innombrables: 2 +> [26536] innovation: 7 +> [26537] innovations: 4 +> [26538] inns: 7 +> [26539] innspruck: 1 +> [26540] innuendo: 1 +> [26541] innuendoes: 1 +> [26542] innumerable: 55 +> [26543] innyard: 2 +> [26544] inoculated: 1 +> [26545] inoffensive: 6 +> [26546] inopportune: 2 +> [26547] inorganic: 3 +> [26548] inquest: 2 +> [26549] inquire: 60 +> [26550] inquire, [26551] inquire--have: 1 +> [26552] inquire? [26553] inquired: 122 +> [26554] inquired--but: 1 +> [26555] inquirer: 3 +> [26556] inquires: 1 +> [26557] inquiries: 64 +> [26558] inquiries’: 1 +> [26559] inquiring: 41 +> [26560] inquiringly: 72 +> [26561] inquiry: 93 +> [26562] inquiry, [26563] inquiry? [26564] inquisition: 5 +> [26565] inquisitive: 30 +> [26566] inquisitively: 24 +> [26567] inquisitor: 10 +> [26568] inquisitor [26569] inquisitor [26570] inquisitor, [26571] inquisitor [26572] inquisitorial: 2 +> [26573] inquisitors: 4 +> [26574] inroads: 4 +> [26575] ins: 3 +> [26576] insane: 39 +> [26577] insane, [26578] insane--i: 1 +> [26579] insane--unprofitable: 1 +> [26580] insanely: 4 +> [26581] insanity: 23 +> [26582] insanity. [26583] insatiable: 4 +> [26584] inscribe: 1 +> [26585] inscribed: 5 +> [26586] inscription: 7 +> [26587] inscriptions: 1 +> [26588] inscrutable: 2 +> [26589] insect: 31 +> [26590] insects: 3 +> [26591] insects—sensual: 2 +> [26592] insecurity: 1 +> [26593] insensate: 1 +> [26594] insensibility: 2 +> [26595] insensible: 9 +> [26596] insensibly: 3 +> [26597] inseparable: 7 +> [26598] inseparables: 3 +> [26599] inseparably: 2 +> [26600] insert: 4 +> [26601] inserted: 7 +> [26602] inserting: 1 +> [26603] insertion: 2 +> [26604] inserts: 1 +> [26605] inshore: 1 +> [26606] inside: 95 +> [26607] insidious: 3 +> [26608] insight: 31 +> [26609] insights: 1 +> [26610] insignia: 3 +> [26611] insignificance: 18 +> [26612] insignificance--particularly: 1 +> [26613] insignificant: 47 +> [26614] insincere: 7 +> [26615] insincerity: 7 +> [26616] insinuate: 3 +> [26617] insinuated: 3 +> [26618] insinuating: 5 +> [26619] insinuatingly: 2 +> [26620] insinuation: 10 +> [26621] insinuation--but: 1 +> [26622] insinuations: 4 +> [26623] insipid: 6 +> [26624] insipidity: 1 +> [26625] insipidly: 1 +> [26626] insist: 47 +> [26627] insisted: 108 +> [26628] insistence: 17 +> [26629] insistence--and: 1 +> [26630] insistences: 1 +> [26631] insistent: 4 +> [26632] insistently: 15 +> [26633] insisting: 20 +> [26634] insists: 8 +> [26635] insolence: 13 +> [26636] insolent: 46 +> [26637] insolently: 17 +> [26638] insolents: 1 +> [26639] insoluble: 61 +> [26640] insolubly: 1 +> [26641] inspect: 7 +> [26642] inspected: 7 +> [26643] inspecting: 8 +> [26644] inspection: 16 +> [26645] inspector: 8 +> [26646] inspector's: 2 +> [26647] inspiration: 47 +> [26648] inspire: 13 +> [26649] inspired: 45 +> [26650] inspires: 6 +> [26651] inspiring: 1 +> [26652] inspirited: 1 +> [26653] inst: 2 +> [26654] instability: 1 +> [26655] installation: 4 +> [26656] installed: 2 +> [26657] installment: 3 +> [26658] installments: 2 +> [26659] installs: 1 +> [26660] instalment: 2 +> [26661] instalments: 1 +> [26662] instance: 278 +> [26663] instance—and: 1 +> [26664] instance—are: 1 +> [26665] instance—he: 1 +> [26666] instance—my: 1 +> [26667] instance--the: 1 +> [26668] instance--there: 1 +> [26669] instance--who: 1 +> [26670] instance--would: 1 +> [26671] instance? [26672] instanced: 3 +> [26673] instances: 22 +> [26674] instant: 438 +> [26675] instant's: 8 +> [26676] instant--into: 1 +> [26677] instant_--your: 1 +> [26678] instantaneous: 5 +> [26679] instantaneously: 7 +> [26680] instantly: 140 +> [26681] instants: 3 +> [26682] instead: 335 +> [26683] instead. [26684] instigation: 6 +> [26685] instigation--as: 1 +> [26686] instigation. [26687] instigator: 4 +> [26688] instil: 4 +> [26689] instilled: 2 +> [26690] instilling: 1 +> [26691] instinct: 49 +> [26692] instinctive: 11 +> [26693] instinctive—it: 1 +> [26694] instinctively: 60 +> [26695] instincts: 5 +> [26696] institute: 8 +> [26697] instituted: 3 +> [26698] institutes: 3 +> [26699] institution: 31 +> [26700] institutions: 33 +> [26701] institutions,--and: 1 +> [26702] institutions. [26703] instruct: 8 +> [26704] instructed: 7 +> [26705] instructing: 2 +> [26706] instruction: 19 +> [26707] instructions: 63 +> [26708] instructions--here: 1 +> [26709] instructive: 9 +> [26710] instructor: 3 +> [26711] instructs: 1 +> [26712] instrument: 15 +> [26713] instrument--now: 1 +> [26714] instruments: 5 +> [26715] insubordination: 2 +> [26716] insufferable: 18 +> [26717] insufferably: 19 +> [26718] insufficient: 7 +> [26719] insufficiently: 2 +> [26720] insulated: 1 +> [26721] insult: 145 +> [26722] insult! [26723] insult—that's: 1 +> [26724] insult--it: 1 +> [26725] insult. [26726] insult? [26727] insulted: 122 +> [26728] insulted—that: 1 +> [26729] insulter: 2 +> [26730] insulting: 48 +> [26731] insultingly: 1 +> [26732] insults: 17 +> [26733] insuperable: 5 +> [26734] insupportable: 7 +> [26735] insupposable: 3 +> [26736] insure: 6 +> [26737] insured: 1 +> [26738] insurgent: 1 +> [26739] insurmountable: 2 +> [26740] insurmountably: 1 +> [26741] insurrection: 5 +> [26742] intact: 10 +> [26743] intangible: 4 +> [26744] integral: 7 +> [26745] integrating: 1 +> [26746] integration: 1 +> [26747] integrity: 6 +> [26748] intellect: 64 +> [26749] intellects: 3 +> [26750] intellectual: 97 +> [26751] intellectually: 2 +> [26752] intellectuals: 1 +> [26753] intelligence: 78 +> [26754] intelligent: 102 +> [26755] intelligible: 17 +> [26756] intelligibly: 2 +> [26757] intemperance: 2 +> [26758] intemperate: 1 +> [26759] intend: 67 +> [26760] intendant: 7 +> [26761] intended: 138 +> [26762] intended--that: 1 +> [26763] intended...i: 1 +> [26764] intending: 44 +> [26765] intends: 11 +> [26766] intense: 112 +> [26767] intensely: 25 +> [26768] intensest: 3 +> [26769] intensified: 19 +> [26770] intensify: 3 +> [26771] intensity: 19 +> [26772] intensive: 1 +> [26773] intent: 36 +> [26774] intention: 122 +> [26775] intention--never: 1 +> [26776] intentional: 18 +> [26777] intentional,[22: 1 +> [26778] intentionally: 36 +> [26779] intentions: 57 +> [26780] intentions--in: 1 +> [26781] intently: 163 +> [26782] intentness: 6 +> [26783] inter: 1 +> [26784] interaction: 2 +> [26785] interactions: 1 +> [26786] intercede: 4 +> [26787] interceded: 3 +> [26788] intercept: 5 +> [26789] intercepted: 5 +> [26790] intercepting: 3 +> [26791] intercession: 3 +> [26792] interchange: 4 +> [26793] interchanged: 2 +> [26794] interconnected: 1 +> [26795] intercourse: 34 +> [26796] intercourse--and: 1 +> [26797] intercourse.”: 1 +> [26798] interdependence: 1 +> [26799] interest: 436 +> [26800] interest--horses: 1 +> [26801] interest--you: 1 +> [26802] interest. [26803] interested: 209 +> [26804] interesting: 203 +> [26805] interesting, [26806] interesting--i: 1 +> [26807] interesting--poor: 1 +> [26808] interests: 144 +> [26809] interests--in: 1 +> [26810] interests--is: 1 +> [26811] interfere: 41 +> [26812] interfered: 10 +> [26813] interference: 8 +> [26814] interferes: 1 +> [26815] interfering: 15 +> [26816] interior: 7 +> [26817] interjected: 5 +> [26818] interlaced: 1 +> [26819] interlacing: 1 +> [26820] interlarding: 1 +> [26821] interlocking: 1 +> [26822] interlocutor: 2 +> [26823] interlopers: 1 +> [26824] intermarried: 1 +> [26825] intermediacy: 1 +> [26826] intermediary: 3 +> [26827] intermediate: 6 +> [26828] interminable: 1 +> [26829] interminglings: 1 +> [26830] intermittent: 1 +> [26831] intermittently: 1 +> [26832] internal: 53 +> [26833] internat: 1 +> [26834] international: 25 +> [26835] internecine: 1 +> [26836] internet: 11 +> [26837] interplay: 2 +> [26838] interpolate: 1 +> [26839] interpolations: 1 +> [26840] interpose: 5 +> [26841] interposed: 49 +> [26842] interposing: 3 +> [26843] interposition: 1 +> [26844] interpret: 13 +> [26845] interpretation: 37 +> [26846] interpretations: 3 +> [26847] interpreted: 30 +> [26848] interpreter: 19 +> [26849] interpreting: 4 +> [26850] interprets: 2 +> [26851] interregnum: 1 +> [26852] interrelation: 2 +> [26853] interrogated: 1 +> [26854] interrogation: 6 +> [26855] interrogation--used: 1 +> [26856] interrogations: 1 +> [26857] interrogations--a: 1 +> [26858] interrogative: 2 +> [26859] interrogatively: 3 +> [26860] interrogator: 1 +> [26861] interrogatory: 1 +> [26862] interrupt: 37 +> [26863] interrupted: 282 +> [26864] interrupted,--and: 1 +> [26865] interrupters: 1 +> [26866] interrupting: 50 +> [26867] interruption: 23 +> [26868] interruptions: 4 +> [26869] interrupts: 2 +> [26870] intersect: 1 +> [26871] intersected: 1 +> [26872] intersecting: 1 +> [26873] interspersed: 3 +> [26874] interspersing: 1 +> [26875] intertwining: 1 +> [26876] interval: 41 +> [26877] interval--"boom--boom: 1 +> [26878] intervals: 41 +> [26879] intervals--trata: 1 +> [26880] intervene: 6 +> [26881] intervened: 27 +> [26882] intervener: 2 +> [26883] intervenes: 1 +> [26884] intervening: 5 +> [26885] intervention: 18 +> [26886] interview: 111 +> [26887] interview--as: 1 +> [26888] interviews: 16 +> [26889] interwoven: 5 +> [26890] intestate: 1 +> [26891] intimacy: 53 +> [26892] intimate: 115 +> [26893] intimated: 1 +> [26894] intimately: 18 +> [26895] intimates: 3 +> [26896] intimating: 2 +> [26897] intimations: 2 +> [26898] intimidate: 5 +> [26899] intimidated: 9 +> [26900] intimidates: 1 +> [26901] intimidating: 1 +> [26902] intimidation: 1 +> [26903] intimidation. [26904] intimite: 1 +> [26905] into: 4725 +> [26906] intolerable: 51 +> [26907] intolerable--that: 1 +> [26908] intolerably: 5 +> [26909] intolerance: 5 +> [26910] intolerant: 1 +> [26911] intonation: 13 +> [26912] intonations: 7 +> [26913] intoxicate: 1 +> [26914] intoxicated: 26 +> [26915] intoxicating: 4 +> [26916] intoxicatingly: 1 +> [26917] intoxication: 11 +> [26918] intractably: 1 +> [26919] intrepidity: 1 +> [26920] intrgiue: 1 +> [26921] intricacies: 2 +> [26922] intricacy: 1 +> [26923] intricate: 7 +> [26924] intrigue: 31 +> [26925] intrigued: 1 +> [26926] intriguer: 6 +> [26927] intrigues: 22 +> [26928] intriguing: 5 +> [26929] intriguing--i: 1 +> [26930] intrinsic: 3 +> [26931] intrinsically: 2 +> [26932] introduce: 69 +> [26933] introduced: 102 +> [26934] introduced--for: 1 +> [26935] introduced--pink: 1 +> [26936] introducer: 1 +> [26937] introduces: 5 +> [26938] introducing: 24 +> [26939] introduction: 38 +> [26940] introductions: 4 +> [26941] introductory: 4 +> [26942] intrude: 9 +> [26943] intruded: 1 +> [26944] intruder: 9 +> [26945] intruder--a: 1 +> [26946] intruders: 5 +> [26947] intruding: 4 +> [26948] intrusion: 5 +> [26949] intrusive: 3 +> [26950] intrusively: 4 +> [26951] intrust: 4 +> [26952] intrusted: 3 +> [26953] intrusting: 1 +> [26954] intuition: 3 +> [26955] intuitive: 1 +> [26956] intuitively: 1 +> [26957] inturned: 3 +> [26958] intérieur: 1 +> [26959] inundation: 5 +> [26960] inured: 1 +> [26961] invade: 1 +> [26962] invaded: 9 +> [26963] invader: 1 +> [26964] invaders: 6 +> [26965] invading: 5 +> [26966] invalid: 73 +> [26967] invalid's: 2 +> [26968] invalid--to: 1 +> [26969] invalid-chair: 1 +> [26970] invalid?--heard: 1 +> [26971] invalided: 1 +> [26972] invalidish: 1 +> [26973] invalidity: 20 +> [26974] invalids: 7 +> [26975] invaluable: 7 +> [26976] invariable: 12 +> [26977] invariably: 43 +> [26978] invasion: 24 +> [26979] invective: 3 +> [26980] invectives: 1 +> [26981] inveighed: 1 +> [26982] invent: 19 +> [26983] invented: 56 +> [26984] invented, [26985] inventer [26986] inventing: 6 +> [26987] invention: 18 +> [26988] inventions: 2 +> [26989] inventor: 1 +> [26990] inventory: 3 +> [26991] invents: 2 +> [26992] inverse: 4 +> [26993] inverted: 3 +> [26994] invest: 1 +> [26995] invested: 3 +> [26996] investigate: 13 +> [26997] investigated: 7 +> [26998] investigated[8: 1 +> [26999] investigating: 34 +> [27000] investigation: 14 +> [27001] investigation--that: 1 +> [27002] investigation [27003] investigations: 5 +> [27004] investigations[1: 1 +> [27005] investigator: 2 +> [27006] investigators: 3 +> [27007] investing: 3 +> [27008] investment: 1 +> [27009] inveterate: 7 +> [27010] invigorate: 1 +> [27011] invigorated: 1 +> [27012] invigorating: 2 +> [27013] invincibility: 2 +> [27014] invincible: 13 +> [27015] inviolable: 1 +> [27016] inviolate: 4 +> [27017] invisible: 22 +> [27018] invisible--some: 1 +> [27019] invitation: 66 +> [27020] invitation)--and: 1 +> [27021] invitation--a: 1 +> [27022] invitations: 10 +> [27023] invite: 74 +> [27024] invited: 132 +> [27025] inviter: 1 +> [27026] invites: 9 +> [27027] inviting: 32 +> [27028] invitingly: 1 +> [27029] invoice: 1 +> [27030] invoked: 3 +> [27031] involuntarily: 124 +> [27032] involuntary: 35 +> [27033] involve: 3 +> [27034] involved: 20 +> [27035] involves: 3 +> [27036] involving: 4 +> [27037] inward: 44 +> [27038] inwardly: 53 +> [27039] inwards: 6 +> [27040] iodide: 6 +> [27041] iodine: 51 +> [27042] iodoform: 1 +> [27043] iogel: 9 +> [27044] iogel's: 4 +> [27045] iona: 1 +> [27046] iosif: 18 +> [27047] iosif's: 1 +> [27048] iota: 2 +> [27049] iou: 4 +> [27050] iou's: 6 +> [27051] iou's--rogojin: 1 +> [27052] ipat: 3 +> [27053] ipatka: 1 +> [27054] ippolit: 43 +> [27055] irascibility: 2 +> [27056] irascible: 4 +> [27057] irate: 2 +> [27058] irdische: 1 +> [27059] ireland: 9 +> [27060] ireland--it: 1 +> [27061] ireland--you: 1 +> [27062] irenæus: 12 +> [27063] irina: 1 +> [27064] irish: 6 +> [27065] irksome: 10 +> [27066] irkutsk: 2 +> [27067] iron: 105 +> [27068] iron-footed: 1 +> [27069] iron-roofed: 5 +> [27070] iron-studded: 1 +> [27071] iron-work: 1 +> [27072] ironed: 1 +> [27073] ironfounders: 1 +> [27074] ironic: 10 +> [27075] ironic--a: 1 +> [27076] ironical: 53 +> [27077] ironical--it: 1 +> [27078] ironically: 44 +> [27079] ironing-board: 3 +> [27080] irons: 4 +> [27081] ironwork: 1 +> [27082] irony: 70 +> [27083] irony--basset: 1 +> [27084] irradiations: 1 +> [27085] irrational: 17 +> [27086] irrationally: 2 +> [27087] irreconcilable: 3 +> [27088] irreconcileable: 1 +> [27089] irrecoverable: 4 +> [27090] irrecoverably: 1 +> [27091] irredeemably: 1 +> [27092] irrefutable: 9 +> [27093] irregular: 23 +> [27094] irregularities: 4 +> [27095] irregularity: 7 +> [27096] irregularly: 6 +> [27097] irregulars: 2 +> [27098] irrelative: 1 +> [27099] irrelevant: 21 +> [27100] irrelevant--all: 1 +> [27101] irreligion: 1 +> [27102] irreparable: 3 +> [27103] irrepressible: 26 +> [27104] irrepressibly: 2 +> [27105] irreproachable: 13 +> [27106] irreproachably: 5 +> [27107] irresistible: 57 +> [27108] irresistibly: 24 +> [27109] irresolute: 12 +> [27110] irresolutely: 4 +> [27111] irresolution: 3 +> [27112] irrespective: 1 +> [27113] irresponsibility: 1 +> [27114] irresponsible: 5 +> [27115] irresponsiveness: 1 +> [27116] irreverent: 4 +> [27117] irrevocability: 1 +> [27118] irrevocable: 10 +> [27119] irrevocably: 11 +> [27120] irrigation: 7 +> [27121] irritability: 43 +> [27122] irritable: 58 +> [27123] irritable, [27124] irritable--as: 1 +> [27125] irritably: 53 +> [27126] irritate: 16 +> [27127] irritated: 89 +> [27128] irritates: 4 +> [27129] irritating: 22 +> [27130] irritatingly: 1 +> [27131] irritation: 64 +> [27132] irritation, [27133] irritation;--but: 1 +> [27134] irs: 19 +> [27135] irtish: 1 +> [27136] is: 19588 +> [27137] is!"--and: 1 +> [27138] is!... [27139] is! [27140] is— [27141] is—a: 1 +> [27142] is—but: 1 +> [27143] is—he's: 1 +> [27144] is—here, [27145] is—the: 1 +> [27146] is't: 1 +> [27147] is,--and: 1 +> [27148] is, [27149] is--'for: 1 +> [27150] is--a: 1 +> [27151] is--all: 1 +> [27152] is--an: 1 +> [27153] is--and: 1 +> [27154] is--are: 1 +> [27155] is--but: 1 +> [27156] is--dark: 1 +> [27157] is--do: 1 +> [27158] is--er--about--what: 1 +> [27159] is--everything: 3 +> [27160] is--gambling: 1 +> [27161] is--god: 1 +> [27162] is--good: 1 +> [27163] is--how: 1 +> [27164] is--i: 4 +> [27165] is--is: 1 +> [27166] is--it: 2 +> [27167] is--like: 1 +> [27168] is--listen: 1 +> [27169] is--m: 1 +> [27170] is--mother: 1 +> [27171] is--my: 2 +> [27172] is--she: 1 +> [27173] is--something: 1 +> [27174] is--stupid: 3 +> [27175] is--such: 1 +> [27176] is--that's: 1 +> [27177] is--the: 1 +> [27178] is--they: 1 +> [27179] is--to: 4 +> [27180] is--well: 1 +> [27181] is--were: 1 +> [27182] is--where: 2 +> [27183] is--you: 1 +> [27184] is..."--he: 1 +> [27185] is...how: 1 +> [27186] is...that: 1 +> [27187] is...you: 1 +> [27188] is. [27189] is.”: 2 +> [27190] is—he: 1 +> [27191] is?--that: 1 +> [27192] is? [27193] isa: 3 +> [27194] isaac: 8 +> [27195] isaiah: 1 +> [27196] isay: 8 +> [27197] ishenka's: 1 +> [27198] isidor's: 1 +> [27199] islam: 1 +> [27200] island: 40 +> [27201] islands: 9 +> [27202] islands--the: 1 +> [27203] isles: 1 +> [27204] islets: 1 +> [27205] islington: 1 +> [27206] ismail: 3 +> [27207] ismailofsky: 5 +> [27208] ismaylov: 2 +> [27209] isn't: 291 +> [27210] isn't. [27211] isn't. [27212] isolate: 1 +> [27213] isolated: 18 +> [27214] isolation: 15 +> [27215] isolation. [27216] isolation? [27217] ispravnik: 2 +> [27218] ispravnik, [27219] israel: 18 +> [27220] israel's: 6 +> [27221] iss: 2 +> [27222] issue: 34 +> [27223] issue--between: 1 +> [27224] issued: 35 +> [27225] issues: 11 +> [27226] issuing: 10 +> [27227] ist: 1 +> [27228] ist's: 1 +> [27229] it: 31117 +> [27230] it!"--and: 1 +> [27231] it!—and: 1 +> [27232] it!--him--pooh: 1 +> [27233] it!--plop: 1 +> [27234] it!--that: 1 +> [27235] it!--then: 1 +> [27236] it!--why: 1 +> [27237] it! [27238] it! [27239] it"--and: 1 +> [27240] it"--she: 1 +> [27241] it— [27242] it—a: 1 +> [27243] it—and: 1 +> [27244] it—at: 1 +> [27245] it—bring: 1 +> [27246] it—easier: 1 +> [27247] it—every: 1 +> [27248] it—for: 1 +> [27249] it—good-by: 1 +> [27250] it—he: 1 +> [27251] it—i: 1 +> [27252] it—it's: 1 +> [27253] it—myself: 1 +> [27254] it—no: 1 +> [27255] it—nothing: 2 +> [27256] it—so: 1 +> [27257] it—take: 1 +> [27258] it—that: 5 +> [27259] it—the: 3 +> [27260] it—there's: 1 +> [27261] it—though: 1 +> [27262] it—to: 1 +> [27263] it—which: 1 +> [27264] it—you: 1 +> [27265] it—you'll: 1 +> [27266] it—you're: 1 +> [27267] it'd: 1 +> [27268] it'll: 40 +> [27269] it's: 2673 +> [27270] it's&mdash: 1 +> [27271] it's--it's: 2 +> [27272] it)--how: 1 +> [27273] it)--you: 1 +> [27274] it,--and: 1 +> [27275] it,--that: 1 +> [27276] it, [27277] it,’: 1 +> [27278] it--"suppose: 1 +> [27279] it--"we: 1 +> [27280] it--a: 3 +> [27281] it--about: 4 +> [27282] it--after: 1 +> [27283] it--an: 1 +> [27284] it--and: 9 +> [27285] it--as: 2 +> [27286] it--but: 5 +> [27287] it--come: 3 +> [27288] it--coming: 1 +> [27289] it--convinced: 1 +> [27290] it--could: 1 +> [27291] it--ensure: 1 +> [27292] it--equality: 1 +> [27293] it--even: 2 +> [27294] it--every: 1 +> [27295] it--far: 1 +> [27296] it--for: 1 +> [27297] it--from: 1 +> [27298] it--good: 1 +> [27299] it--had: 2 +> [27300] it--hardly: 1 +> [27301] it--has: 2 +> [27302] it--having: 1 +> [27303] it--he: 5 +> [27304] it--his: 3 +> [27305] it--how: 3 +> [27306] it--i: 6 +> [27307] it--i'll: 1 +> [27308] it--if: 1 +> [27309] it--in: 4 +> [27310] it--inattentively: 1 +> [27311] it--is: 1 +> [27312] it--it: 3 +> [27313] it--it's: 2 +> [27314] it--listen: 1 +> [27315] it--look: 1 +> [27316] it--my: 1 +> [27317] it--never: 1 +> [27318] it--no: 1 +> [27319] it--not: 5 +> [27320] it--now: 1 +> [27321] it--oh: 1 +> [27322] it--once: 1 +> [27323] it--one: 1 +> [27324] it--only: 1 +> [27325] it--over: 1 +> [27326] it--read: 1 +> [27327] it--repeatedly: 1 +> [27328] it--riddsley: 1 +> [27329] it--say: 1 +> [27330] it--second: 1 +> [27331] it--set: 1 +> [27332] it--she: 1 +> [27333] it--so: 1 +> [27334] it--take: 2 +> [27335] it--talking: 1 +> [27336] it--that: 9 +> [27337] it--that's: 1 +> [27338] it--the: 9 +> [27339] it--then: 1 +> [27340] it--they: 1 +> [27341] it--they'll: 1 +> [27342] it--this: 1 +> [27343] it--those: 1 +> [27344] it--threat: 1 +> [27345] it--to: 3 +> [27346] it--try: 2 +> [27347] it--we: 1 +> [27348] it--what: 4 +> [27349] it--what's: 1 +> [27350] it--when: 1 +> [27351] it--whether: 1 +> [27352] it--which: 2 +> [27353] it--why: 2 +> [27354] it--will: 1 +> [27355] it--with: 2 +> [27356] it--your: 1 +> [27357] it.... [27358] it...because: 1 +> [27359] it. [27360] it. [27361] it.’: 3 +> [27362] it.”: 5 +> [27363] it: [27364] it;--while: 1 +> [27365] it [27366] it [27367] it?"--"because: 1 +> [27368] it?—congratulated: 1 +> [27369] it?—i: 2 +> [27370] it?—she: 1 +> [27371] it?—speak: 1 +> [27372] it?'--'in: 1 +> [27373] it?)--alexey: 1 +> [27374] it?--and: 1 +> [27375] it?--geometrical: 1 +> [27376] it?--i: 1 +> [27377] it?... [27378] it?...what: 1 +> [27379] it? [27380] italian: 51 +> [27381] italian's: 3 +> [27382] italians: 4 +> [27383] italic: 2 +> [27384] italics: 3 +> [27385] italy: 30 +> [27386] italy--so: 1 +> [27387] italy--was: 1 +> [27388] itched: 1 +> [27389] itching: 1 +> [27390] item: 8 +> [27391] item>project: 1 +> [27392] items: 7 +> [27393] iteration: 1 +> [27394] itineraries: 1 +> [27395] itinerary: 1 +> [27396] its: 2109 +> [27397] itself: 546 +> [27398] itself--death: 1 +> [27399] itself--he: 2 +> [27400] itself--how: 1 +> [27401] itself--is: 1 +> [27402] itself--were: 1 +> [27403] itself--with: 1 +> [27404] itur: 1 +> [27405] iv: 111 +> [27406] iv.-xx: 1 +> [27407] iv.-xxi: 5 +> [27408] iv [27409] ivan: 749 +> [27410] ivan! [27411] ivan!—he: 1 +> [27412] ivan— [27413] ivan—no: 1 +> [27414] ivan's: 33 +> [27415] ivan. [27416] ivan [27417] ivan? [27418] ivanhoe: 1 +> [27419] ivanich: 2 +> [27420] ivanitch: 9 +> [27421] ivanitch's: 1 +> [27422] ivanitch. [27423] ivanitchs: 4 +> [27424] ivanov: 3 +> [27425] ivanov-strauss-renan: 1 +> [27426] ivanovich: 32 +> [27427] ivanovich's: 2 +> [27428] ivanovitch: 541 +> [27429] ivanovitch'--that: 1 +> [27430] ivanovitch's: 46 +> [27431] ivanovitch--and: 1 +> [27432] ivanovitch--they: 1 +> [27433] ivanovitch...to: 1 +> [27434] ivanovna: 620 +> [27435] ivanovna! [27436] ivanovna—was: 1 +> [27437] ivanovna's: 86 +> [27438] ivanovna's--you: 1 +> [27439] ivanovna's. [27440] ivanovna's? [27441] ivanovna,--i: 1 +> [27442] ivanovna,--or: 1 +> [27443] ivanovna, [27444] ivanovna--a: 1 +> [27445] ivanovna--she: 1 +> [27446] ivanovna--time: 1 +> [27447] ivanovna--to: 1 +> [27448] ivanovna. [27449] ivanovna [27450] ivanovna? [27451] ivanovs: 1 +> [27452] ivanushka: 4 +> [27453] ivanushka's: 1 +> [27454] ivanych: 9 +> [27455] ivolgin: 45 +> [27456] ivolgin's: 2 +> [27457] ivolgin--i: 1 +> [27458] ivolgin--retired: 1 +> [27459] ivolgins: 1 +> [27460] ivory: 7 +> [27461] ivorydale: 1 +> [27462] ivy: 7 +> [27463] ivy-clad: 1 +> [27464] ivy-covered: 1 +> [27465] ix: 67 +> [27466] ix's: 2 +> [27467] ix.-xi: 2 +> [27468] ix.-xvi: 1 +> [27469] ization: 1 +> [27470] i’ve: 1 +> [27471] j: 45 +> [27472] j'adore: 1 +> [27473] j'ai: 4 +> [27474] j'aime: 1 +> [27475] j'avoue: 1 +> [27476] j'en: 1 +> [27477] j'explique: 1 +> [27478] ja: 2 +> [27479] jabber: 2 +> [27480] jabbered: 2 +> [27481] jabbering: 2 +> [27482] jack: 10 +> [27483] jack-a-dandy: 1 +> [27484] jack-in-office: 1 +> [27485] jackal: 1 +> [27486] jackals: 1 +> [27487] jackanapes! [27488] jackass: 1 +> [27489] jackasses: 1 +> [27490] jackdaw: 4 +> [27491] jacket: 52 +> [27492] jacketed: 6 +> [27493] jackets: 6 +> [27494] jacob: 9 +> [27495] jacob.’: 1 +> [27496] jacobean: 1 +> [27497] jacobin: 1 +> [27498] jacobus: 1 +> [27499] jacquerie: 3 +> [27500] jacques: 3 +> [27501] jacques's: 1 +> [27502] jacquot: 2 +> [27503] jade: 2 +> [27504] jaded: 4 +> [27505] jaffa: 1 +> [27506] jagged: 5 +> [27507] jail: 3 +> [27508] jailer: 3 +> [27509] jailers: 4 +> [27510] jails: 1 +> [27511] jaloux: 1 +> [27512] jam: 21 +> [27513] jam-making: 2 +> [27514] jamaica: 1 +> [27515] jamais: 4 +> [27516] jamb: 2 +> [27517] james: 70 +> [27518] james's: 1 +> [27519] jameses: 1 +> [27520] jammed: 7 +> [27521] jan: 1 +> [27522] jan-fabian: 2 +> [27523] jane: 7 +> [27524] jangle: 2 +> [27525] january: 16 +> [27526] japan: 2 +> [27527] japanese: 2 +> [27528] jar: 9 +> [27529] jargon: 5 +> [27530] jarred: 11 +> [27531] jarring: 8 +> [27532] jars: 4 +> [27533] jas: 5 +> [27534] jasmine: 2 +> [27535] jasmine--to: 1 +> [27536] jasmines: 1 +> [27537] jaundice: 1 +> [27538] jaunt: 2 +> [27539] jauntily: 15 +> [27540] jaunty: 15 +> [27541] jaw: 31 +> [27542] jaws: 14 +> [27543] je: 24 +> [27544] jealo: 1 +> [27545] jealous: 125 +> [27546] jealous? [27547] jealousies: 1 +> [27548] jealously: 9 +> [27549] jealousy: 88 +> [27550] jealousy! [27551] jealousy—and: 1 +> [27552] jealousy--it: 1 +> [27553] jealousy--she: 1 +> [27554] jealousy--that: 1 +> [27555] jealousy. [27556] jealousy? [27557] jean: 18 +> [27558] jean's: 1 +> [27559] jeckel: 1 +> [27560] jeer: 20 +> [27561] jeer--a: 1 +> [27562] jeered: 26 +> [27563] jeering: 22 +> [27564] jeering--both: 1 +> [27565] jeeringly: 3 +> [27566] jeers: 12 +> [27567] jehan: 57 +> [27568] jehoshaphat: 1 +> [27569] jelly: 3 +> [27570] jelly. [27571] jena: 8 +> [27572] jenkin: 1 +> [27573] jenkinson: 6 +> [27574] jenkinson's: 3 +> [27575] jenny: 2 +> [27576] jeopardy: 1 +> [27577] jer: 1 +> [27578] jerk: 12 +> [27579] jerked: 33 +> [27580] jerkily: 9 +> [27581] jerkin: 4 +> [27582] jerking: 6 +> [27583] jerkings: 1 +> [27584] jerks: 3 +> [27585] jerky: 8 +> [27586] jerome: 4 +> [27587] jerusalem: 155 +> [27588] jerusalem's: 1 +> [27589] jerusalem, [27590] jerusalem--had: 1 +> [27591] jerusalem-antioch: 1 +> [27592] jerusalem’s: 1 +> [27593] jesse: 2 +> [27594] jest: 64 +> [27595] jest's: 1 +> [27596] jest,--"'disgrace: 1 +> [27597] jest--that: 1 +> [27598] jest. [27599] jested: 8 +> [27600] jester: 2 +> [27601] jester's: 1 +> [27602] jesters: 1 +> [27603] jesting: 27 +> [27604] jesting? [27605] jestingly: 10 +> [27606] jests: 16 +> [27607] jesuit: 10 +> [27608] jesuit--openly: 1 +> [27609] jesuit? [27610] jesuitical: 4 +> [27611] jesuits: 13 +> [27612] jesuits! [27613] jesus: 317 +> [27614] jesus--"elijah: 1 +> [27615] jesus--he: 1 +> [27616] jesus.’: 1 +> [27617] jet: 3 +> [27618] jet-black: 1 +> [27619] jets: 1 +> [27620] jeune: 5 +> [27621] jeunes: 1 +> [27622] jew: 49 +> [27623] jew's: 2 +> [27624] jewel: 12 +> [27625] jewel-buttons: 1 +> [27626] jewel-case: 4 +> [27627] jewel-cases: 1 +> [27628] jeweled: 1 +> [27629] jeweler's: 1 +> [27630] jeweller's: 1 +> [27631] jewellery: 1 +> [27632] jewelry: 11 +> [27633] jewels: 15 +> [27634] jewesses: 1 +> [27635] jewish: 73 +> [27636] jewish-christian: 8 +> [27637] jewish-christians: 1 +> [27638] jewkins, [27639] jews: 59 +> [27640] jews,"[25: 1 +> [27641] jibes: 4 +> [27642] jilted: 2 +> [27643] jim: 4 +> [27644] jingle: 4 +> [27645] jingled: 1 +> [27646] jingling: 21 +> [27647] jivio: 3 +> [27648] joan: 1 +> [27649] job: 51 +> [27650] job's: 1 +> [27651] job. [27652] job? [27653] jobert: 3 +> [27654] jobmaster: 1 +> [27655] jobs: 4 +> [27656] jockey: 8 +> [27657] jockey-cap: 1 +> [27658] jockeys: 2 +> [27659] joconde: 1 +> [27660] jocose: 3 +> [27661] jocosely: 2 +> [27662] jocoseness: 1 +> [27663] jocular: 3 +> [27664] jocularity: 2 +> [27665] jocularly: 1 +> [27666] jocund: 1 +> [27667] joe: 3 +> [27668] jog: 1 +> [27669] jogged: 3 +> [27670] johann: 1 +> [27671] johannine: 17 +> [27672] john: 364 +> [27673] john'[2: 1 +> [27674] john's: 9 +> [27675] john.[27: 1 +> [27676] john[5: 1 +> [27677] johns: 1 +> [27678] johnson: 3 +> [27679] join: 132 +> [27680] joined: 108 +> [27681] joined—the: 1 +> [27682] joinest: 2 +> [27683] joining: 25 +> [27684] joins: 6 +> [27685] joint: 16 +> [27686] joint-heirs: 1 +> [27687] joint-heirship: 1 +> [27688] joints: 3 +> [27689] joists: 2 +> [27690] joke: 135 +> [27691] joke's: 1 +> [27692] joke, [27693] joke--a: 1 +> [27694] joke--thought: 1 +> [27695] joke. [27696] joked: 5 +> [27697] jokes: 40 +> [27698] jokes—your: 1 +> [27699] joking: 60 +> [27700] joking, [27701] jokingly: 2 +> [27702] joli: 1 +> [27703] jolie: 1 +> [27704] jolies: 1 +> [27705] jolliest: 1 +> [27706] jollity: 1 +> [27707] jolly: 25 +> [27708] jolt: 2 +> [27709] jolted: 15 +> [27710] jolting: 12 +> [27711] jonah: 2 +> [27712] jonathan: 4 +> [27713] jones: 13 +> [27714] jones,’: 2 +> [27715] jonson: 1 +> [27716] joseph: 40 +> [27717] joseph! [27718] josephine: 5 +> [27719] josephus: 3 +> [27720] joshua: 2 +> [27721] josiah: 1 +> [27722] josiah's: 1 +> [27723] joslin: 1 +> [27724] joslin[12: 1 +> [27725] jostle: 3 +> [27726] jostled: 16 +> [27727] jostling: 9 +> [27728] joséphine: 10 +> [27729] joséphine--and: 1 +> [27730] joséphine--they: 1 +> [27731] jot: 11 +> [27732] jotted: 1 +> [27733] jottings: 1 +> [27734] jouer: 1 +> [27735] jour: 1 +> [27736] journ: 2 +> [27737] journal: 8 +> [27738] journal--"the: 1 +> [27739] journal--"vremya: 1 +> [27740] journal.--"read: 1 +> [27741] journalist: 3 +> [27742] journalists: 10 +> [27743] journals: 8 +> [27744] journey: 184 +> [27745] journey,’: 1 +> [27746] journey--and: 1 +> [27747] journey--as: 1 +> [27748] journey--from: 1 +> [27749] journey--he: 1 +> [27750] journeyed: 5 +> [27751] journeying: 2 +> [27752] journeyings: 1 +> [27753] journeyman: 1 +> [27754] journeys: 3 +> [27755] journey’s: 1 +> [27756] journée: 1 +> [27757] jours: 1 +> [27758] jove: 15 +> [27759] jovial: 6 +> [27760] jovially: 1 +> [27761] jowl: 5 +> [27762] joy: 312 +> [27763] joy, [27764] joy, [27765] joy--a: 1 +> [27766] joy--to: 1 +> [27767] joy-bells: 1 +> [27768] joy... [27769] joy. [27770] joy.’: 1 +> [27771] joy [27772] joy—a: 1 +> [27773] joyful: 91 +> [27774] joyful. [27775] joyfully: 82 +> [27776] joylessly: 1 +> [27777] joyous: 46 +> [27778] joyously: 13 +> [27779] joyousness: 3 +> [27780] joys: 29 +> [27781] joys--her: 1 +> [27782] juan: 2 +> [27783] jubilee: 3 +> [27784] judah: 2 +> [27785] judaism: 29 +> [27786] judaizer's: 1 +> [27787] judaizers: 9 +> [27788] judaizing: 4 +> [27789] judas: 6 +> [27790] judas-hole: 2 +> [27791] judas-holes: 1 +> [27792] judas. [27793] jude: 23 +> [27794] judge: 197 +> [27795] judge--after: 1 +> [27796] judge--i: 1 +> [27797] judged: 55 +> [27798] judgement: 2 +> [27799] judges: 50 +> [27800] judges. [27801] judging: 45 +> [27802] judgment: 116 +> [27803] judgment--because: 1 +> [27804] judgment. [27805] judgments: 1 +> [27806] judicial: 2 +> [27807] judicially: 1 +> [27808] judicious: 7 +> [27809] judiciously: 3 +> [27810] judith: 4 +> [27811] judy: 1 +> [27812] judæa: 6 +> [27813] judæan: 5 +> [27814] jug: 10 +> [27815] jugement: 1 +> [27816] jugement [27817] jugglers: 1 +> [27818] juggling: 3 +> [27819] jugglings: 2 +> [27820] jugs: 2 +> [27821] juice: 3 +> [27822] juiciness: 1 +> [27823] juicy: 4 +> [27824] jules: 6 +> [27825] julia: 2 +> [27826] julich: 1 +> [27827] julie: 60 +> [27828] julie's: 10 +> [27829] julie--and: 1 +> [27830] julie--whose: 1 +> [27831] juliet: 8 +> [27832] julner: 1 +> [27833] july: 41 +> [27834] july--the: 1 +> [27835] jumbled: 2 +> [27836] jumiéges: 1 +> [27837] jump: 43 +> [27838] jumped: 208 +> [27839] jumping: 68 +> [27840] jumps: 7 +> [27841] jumpy: 1 +> [27842] junction: 12 +> [27843] junction--though: 1 +> [27844] junctions: 1 +> [27845] juncture: 1 +> [27846] june: 38 +> [27847] junior: 1 +> [27848] juniper: 1 +> [27849] junker: 2 +> [27850] junket: 3 +> [27851] junot's: 5 +> [27852] jupiter: 1 +> [27853] juridical: 2 +> [27854] juries: 2 +> [27855] jurisdiction: 11 +> [27856] jurisdiction. [27857] jurisdiction [27858] jurisprudence: 9 +> [27859] jurisprudence, [27860] jury: 55 +> [27861] jury, [27862] jury--to: 1 +> [27863] juryman: 1 +> [27864] juryman? [27865] jurymen: 2 +> [27866] jurymen—four: 1 +> [27867] jusqu'au: 1 +> [27868] just: 2869 +> [27869] just! [27870] just--oh: 1 +> [27871] juster: 3 +> [27872] justice: 138 +> [27873] justice's: 1 +> [27874] justice, [27875] justice--a: 1 +> [27876] justice--so: 1 +> [27877] justice. [27878] justice [27879] justice? [27880] justices: 6 +> [27881] justifiability: 1 +> [27882] justifiable: 3 +> [27883] justification: 27 +> [27884] justification--when: 1 +> [27885] justifications: 5 +> [27886] justified: 30 +> [27887] justifies: 3 +> [27888] justify: 62 +> [27889] justifying: 18 +> [27890] justin: 9 +> [27891] justin's: 1 +> [27892] justinian: 1 +> [27893] justly: 25 +> [27894] justness: 1 +> [27895] jutting: 3 +> [27896] juvenal: 1 +> [27897] juveniles: 1 +> [27898] juxtaposition: 1 +> [27899] jÜlicher: 1 +> [27900] k: 15 +> [27901] k...ha: 2 +> [27902] k. [27903] k_{2}co_{3: 2 +> [27904] k_{2}o: 1 +> [27905] kaftan: 5 +> [27906] kaftans: 1 +> [27907] kaiser: 1 +> [27908] kalganov: 64 +> [27909] kalganov! [27910] kalganov? [27911] kalinin: 1 +> [27912] kalinov: 1 +> [27913] kalisch: 1 +> [27914] kalmikov: 1 +> [27915] kaluga: 27 +> [27916] kaluga--a: 1 +> [27917] kaluzhsky: 4 +> [27918] kalvanov: 1 +> [27919] kamenka: 3 +> [27920] kamenny: 1 +> [27921] kamenski: 7 +> [27922] kamensky's: 1 +> [27923] kamerovsky: 5 +> [27924] kammenny: 1 +> [27925] kammer-junker: 2 +> [27926] kammer-junkers: 4 +> [27927] kammer-kollezski: 2 +> [27928] kammerherr: 1 +> [27929] kammerjunker: 4 +> [27930] kann: 2 +> [27931] kant: 1 +> [27932] kantarev: 4 +> [27933] kapatcharovo: 1 +> [27934] kapernaumov: 8 +> [27935] kapernaumov's: 2 +> [27936] kapernaumovs: 5 +> [27937] kapiton: 6 +> [27938] kapiton's: 1 +> [27939] kapitonitch: 11 +> [27940] kapitoshka--not: 1 +> [27941] karabakh: 2 +> [27942] karagina: 12 +> [27943] karagins: 9 +> [27944] karamazov: 133 +> [27945] karamazov! [27946] karamazov—no: 1 +> [27947] karamazov—there's: 1 +> [27948] karamazov's: 4 +> [27949] karamazov, [27950] karamazov. [27951] karamazov. [27952] karamazov [27953] karamazov [27954] karamazov [27955] karamazov [27956] karamazov? [27957] karamazovs: 14 +> [27958] karamazovs! [27959] karamazovs—the: 1 +> [27960] karamazovs, [27961] karamsin: 1 +> [27962] karamyshevo: 9 +> [27963] karataev: 55 +> [27964] karataev's: 9 +> [27965] karay: 15 +> [27966] karay--the: 1 +> [27967] karazinsky: 2 +> [27968] karenin: 44 +> [27969] karenin's: 7 +> [27970] karenina: 40 +> [27971] karenina's: 4 +> [27972] karenins: 13 +> [27973] kari: 1 +> [27974] karibanov: 2 +> [27975] karl: 18 +> [27976] karlitch: 1 +> [27977] karlovich: 1 +> [27978] karp: 14 +> [27979] karpushka: 2 +> [27980] karr: 1 +> [27981] kars: 4 +> [27982] kartashov: 6 +> [27983] kartashov's: 1 +> [27984] kartasov: 2 +> [27985] kartasova: 4 +> [27986] kartasovs: 2 +> [27987] kasha: 3 +> [27988] kashin: 4 +> [27989] kashinsky: 4 +> [27990] kashmir--that's: 1 +> [27991] kaska: 1 +> [27992] katavasov: 72 +> [27993] katavasov's: 7 +> [27994] katchalnikov: 1 +> [27995] kate: 1 +> [27996] katerina: 428 +> [27997] katerina's: 2 +> [27998] katerina, [27999] katherine: 10 +> [28000] katia: 16 +> [28001] katia-pasha: 1 +> [28002] katie: 5 +> [28003] katie's: 1 +> [28004] katinka: 1 +> [28005] katka: 1 +> [28006] katya: 67 +> [28007] katya—he: 1 +> [28008] katya—i: 1 +> [28009] katya's: 7 +> [28010] katya, [28011] katya [28012] katz,[a: 1 +> [28013] kauffmann: 2 +> [28014] kaulbach: 2 +> [28015] kaysarov: 10 +> [28016] kazan: 8 +> [28017] kazan-tartar: 1 +> [28018] ke: 1 +> [28019] ke-e-e-e: 1 +> [28020] kedrov: 3 +> [28021] keen: 73 +> [28022] keen-sighted: 3 +> [28023] keener: 8 +> [28024] keenest: 7 +> [28025] keenly: 40 +> [28026] keenly--everything: 1 +> [28027] keenness: 4 +> [28028] keep: 787 +> [28029] keeper: 19 +> [28030] keeper's: 1 +> [28031] keeper, [28032] keeper? [28033] keepers: 4 +> [28034] keepeth: 1 +> [28035] keeping: 263 +> [28036] keeping--your: 1 +> [28037] keeps: 56 +> [28038] keepsake: 4 +> [28039] keg: 2 +> [28040] keiss: 1 +> [28041] keller: 77 +> [28042] keller's: 5 +> [28043] kempis: 1 +> [28044] ken: 7 +> [28045] kennel: 4 +> [28046] kennelled: 1 +> [28047] kennelman: 1 +> [28048] kennelmen: 1 +> [28049] kennels: 5 +> [28050] kent: 1 +> [28051] kentish: 1 +> [28052] kepler: 2 +> [28053] kept: 704 +> [28054] kerchief: 52 +> [28055] kerchiefs: 4 +> [28056] kernel: 24 +> [28057] kernels: 3 +> [28058] kerosene: 10 +> [28059] kerygma: 1 +> [28060] kettle: 81 +> [28061] kettles: 1 +> [28062] key: 76 +> [28063] key. [28064] keyboard: 1 +> [28065] keyed: 1 +> [28066] keyhole: 5 +> [28067] keynote: 5 +> [28068] keys: 30 +> [28069] keystone: 1 +> [28070] khamovniki: 3 +> [28071] khandrikov--is: 1 +> [28072] khiva: 1 +> [28073] khvostikov: 3 +> [28074] kibitka: 1 +> [28075] kick: 36 +> [28076] kicked: 43 +> [28077] kicking: 16 +> [28078] kid: 10 +> [28079] kiddies: 1 +> [28080] kiddies, [28081] kidnap: 1 +> [28082] kidney: 1 +> [28083] kids: 1 +> [28084] kids, [28085] kids. [28086] kids [28087] kiev: 21 +> [28088] kiev--all: 1 +> [28089] kikin's: 1 +> [28090] kill: 242 +> [28091] kill! [28092] kill, [28093] killed: 368 +> [28094] killed, [28095] killed--her: 1 +> [28096] killed--wounded: 1 +> [28097] killigrews: 1 +> [28098] killing: 61 +> [28099] kills: 8 +> [28100] kiln: 3 +> [28101] kilns: 1 +> [28102] kilo: 6 +> [28103] kilo-gram: 1 +> [28104] kilo-liter: 1 +> [28105] kilo-meter: 1 +> [28106] kilogram: 5 +> [28107] kilometer: 3 +> [28108] kilometers: 7 +> [28109] kilometers? [28110] kilos: 4 +> [28111] kin: 3 +> [28112] kind: 618 +> [28113] kind!--he: 1 +> [28114] kind!”: 1 +> [28115] kind, [28116] kind--it: 1 +> [28117] kind--yes: 1 +> [28118] kind-hearted: 24 +> [28119] kind-heartedness: 2 +> [28120] kind-looking: 1 +> [28121] kind...ly: 1 +> [28122] kind.”: 1 +> [28123] kind? [28124] kinder: 8 +> [28125] kindest: 9 +> [28126] kindhearted: 10 +> [28127] kindle: 13 +> [28128] kindled: 25 +> [28129] kindlier: 1 +> [28130] kindliness: 12 +> [28131] kindling: 2 +> [28132] kindly: 205 +> [28133] kindly--what: 1 +> [28134] kindly-meant: 1 +> [28135] kindness: 91 +> [28136] kindness--he: 1 +> [28137] kindness. [28138] kindred: 12 +> [28139] kinds: 51 +> [28140] kinds--tailors: 1 +> [28141] kinds--though: 1 +> [28142] king: 294 +> [28143] king"--it: 1 +> [28144] king's: 39 +> [28145] king,’: 1 +> [28146] king--not: 1 +> [28147] king [28148] kingdom: 101 +> [28149] kingdom--that: 1 +> [28150] kingdoms: 15 +> [28151] kingly: 1 +> [28152] kings: 42 +> [28153] kings--to: 1 +> [28154] kings.... [28155] kingston: 28 +> [28156] kingston's: 2 +> [28157] king’s: 1 +> [28158] kinship: 4 +> [28159] kinsman: 10 +> [28160] kinsman's: 1 +> [28161] kinswoman: 4 +> [28162] kirghiz: 2 +> [28163] kirgiz: 2 +> [28164] kiril: 5 +> [28165] kirill: 1 +> [28166] kirillov: 2 +> [28167] kirillovitch: 40 +> [28168] kirillovitch's: 6 +> [28169] kirillovitch? [28170] kirilovich: 6 +> [28171] kirilych: 7 +> [28172] kirilych--isn't: 1 +> [28173] kirsten: 5 +> [28174] kiselev: 1 +> [28175] kishenev: 1 +> [28176] kislorodoff: 2 +> [28177] kislovka: 1 +> [28178] kiss: 220 +> [28179] kiss-in-the-ring: 1 +> [28180] kiss. [28181] kissed: 321 +> [28182] kissed. [28183] kisses: 26 +> [28184] kisses--that: 1 +> [28185] kissing: 108 +> [28186] kissing [28187] kissingen: 1 +> [28188] kit: 3 +> [28189] kitchen: 107 +> [28190] kitchen-garden: 2 +> [28191] kitchen-maid: 1 +> [28192] kitchen-table: 2 +> [28193] kitchens: 7 +> [28194] kitchens--modern: 1 +> [28195] kite: 1 +> [28196] kites: 2 +> [28197] kits: 2 +> [28198] kitten: 10 +> [28199] kitten's: 1 +> [28200] kittenish: 1 +> [28201] kitty: 598 +> [28202] kitty's: 74 +> [28203] kitty--what: 1 +> [28204] kjeldahling: 1 +> [28205] klaras: 1 +> [28206] kling: 1 +> [28207] klopot: 1 +> [28208] klopots: 1 +> [28209] klopstock: 1 +> [28210] klyucharev: 6 +> [28211] knack: 9 +> [28212] knapsack: 8 +> [28213] knapsacks: 8 +> [28214] knaust: 1 +> [28215] knave: 16 +> [28216] knaves: 8 +> [28217] knavish: 2 +> [28218] knavishness: 2 +> [28219] kneaded: 2 +> [28220] kneading: 1 +> [28221] knee: 85 +> [28222] knee-breeches: 1 +> [28223] knee-cap: 1 +> [28224] knee-deep: 10 +> [28225] kneel: 9 +> [28226] kneeling: 40 +> [28227] knees: 205 +> [28228] knees. [28229] knees. [28230] knell: 1 +> [28231] kneller: 1 +> [28232] knelt: 30 +> [28233] knew: 1818 +> [28234] knew—indeed: 1 +> [28235] knew--and: 3 +> [28236] knew--cursed: 1 +> [28237] knew--for: 1 +> [28238] knew--not: 1 +> [28239] knew? [28240] knewest: 1 +> [28241] knick-knacks: 5 +> [28242] knickerbocker: 1 +> [28243] knife: 107 +> [28244] knife--no: 1 +> [28245] knife-blade: 1 +> [28246] knife...but: 1 +> [28247] knife?--that: 1 +> [28248] knight: 92 +> [28249] knight'--nothing: 1 +> [28250] knight's: 4 +> [28251] knight-errant: 5 +> [28252] knighted: 1 +> [28253] knightliness: 1 +> [28254] knightly: 1 +> [28255] knights: 10 +> [28256] knit: 8 +> [28257] knits: 3 +> [28258] knitted: 17 +> [28259] knitter: 1 +> [28260] knitting: 28 +> [28261] knives: 12 +> [28262] knives--not: 1 +> [28263] knob: 4 +> [28264] knobbiness: 1 +> [28265] knobs: 1 +> [28266] knock: 58 +> [28267] knock-down: 4 +> [28268] knock-kneed: 1 +> [28269] knocked: 96 +> [28270] knocker: 4 +> [28271] knocking: 55 +> [28272] knocking--that's: 1 +> [28273] knockings: 1 +> [28274] knocks: 16 +> [28275] knocks? [28276] knoll: 41 +> [28277] knopp's: 1 +> [28278] knot: 46 +> [28279] knothole: 2 +> [28280] knotholes: 1 +> [28281] knots: 6 +> [28282] knots--they: 1 +> [28283] knotted: 10 +> [28284] knotty: 2 +> [28285] knout: 1 +> [28286] knouted: 2 +> [28287] know: 4874 +> [28288] know! [28289] know"--(silence)--"of: 1 +> [28290] know"--the: 1 +> [28291] know—early: 1 +> [28292] know—his: 1 +> [28293] know—i: 1 +> [28294] know—you: 1 +> [28295] know, [28296] know--"petch: 1 +> [28297] know--a: 8 +> [28298] know--and: 7 +> [28299] know--betsy's: 1 +> [28300] know--bolkonski: 1 +> [28301] know--but: 3 +> [28302] know--careless: 1 +> [28303] know--gray: 1 +> [28304] know--here: 1 +> [28305] know--how: 2 +> [28306] know--however: 1 +> [28307] know--i: 1 +> [28308] know--i'm: 1 +> [28309] know--i--i--he: 1 +> [28310] know--if: 1 +> [28311] know--imagine: 1 +> [28312] know--is: 1 +> [28313] know--it: 1 +> [28314] know--it's: 1 +> [28315] know--like: 1 +> [28316] know--my: 1 +> [28317] know--no: 2 +> [28318] know--perhaps: 2 +> [28319] know--perhaps--by: 1 +> [28320] know--seryozha: 1 +> [28321] know--that: 5 +> [28322] know--the: 2 +> [28323] know--under: 1 +> [28324] know--upon: 1 +> [28325] know--well: 1 +> [28326] know--what: 1 +> [28327] know--whether: 1 +> [28328] know--you've: 1 +> [28329] know--your: 1 +> [28330] know... [28331] know...i: 1 +> [28332] know...stay: 1 +> [28333] know. [28334] know [28335] know? [28336] knowest: 3 +> [28337] knoweth: 3 +> [28338] knowing: 350 +> [28339] knowing! [28340] knowing? [28341] knowingly: 7 +> [28342] knowledge: 226 +> [28343] knowledge--he: 1 +> [28344] knowledge--thanks: 1 +> [28345] knowledge--there: 1 +> [28346] known: 665 +> [28347] knows: 534 +> [28348] knows—and: 1 +> [28349] knows--and: 1 +> [28350] knows--that's: 1 +> [28351] knows--you: 1 +> [28352] knows?--at: 1 +> [28353] knows?--his: 1 +> [28354] knows?--perhaps: 1 +> [28355] knuckle: 3 +> [28356] knuckles: 3 +> [28357] knyazkovo: 3 +> [28358] kobelev: 1 +> [28359] kobelnitz: 3 +> [28360] kobilatnikov's: 1 +> [28361] koch: 21 +> [28362] kochubey: 11 +> [28363] kochubey's: 2 +> [28364] kock—though: 1 +> [28365] koettstorfer: 4 +> [28366] koh: 15 +> [28367] kok's: 1 +> [28368] koko: 1 +> [28369] kolbasnikov: 3 +> [28370] koller: 1 +> [28371] kolocha: 15 +> [28372] kolocha--which: 1 +> [28373] kolok: 1 +> [28374] kolomensky: 2 +> [28375] kolomna: 3 +> [28376] kolpakoff: 7 +> [28377] kolpensky: 2 +> [28378] kolpik: 2 +> [28379] kolya: 217 +> [28380] kolya's: 15 +> [28381] kolya? [28382] kolyazin: 3 +> [28383] komarov: 1 +> [28384] komissarov: 2 +> [28385] kommt: 1 +> [28386] komoneno's: 1 +> [28387] kondratevna: 1 +> [28388] kondraty: 1 +> [28389] kondratyev: 1 +> [28390] kondratyevna: 21 +> [28391] kondratyevna's: 5 +> [28392] kondratyevna. [28393] konief: 1 +> [28394] konigsberg: 1 +> [28395] konovnitsyn: 15 +> [28396] konovnitsyn's: 3 +> [28397] konstantin: 111 +> [28398] konstantin's: 1 +> [28399] kontact: 3 +> [28400] kontakt: 1 +> [28401] konyusheny: 2 +> [28402] kootik: 1 +> [28403] kopeck: 2 +> [28404] kopecks: 13 +> [28405] kopek: 1 +> [28406] kopeks: 1 +> [28407] koppe: 1 +> [28408] korchevo: 2 +> [28409] korchevo--a: 1 +> [28410] korneplodov: 2 +> [28411] korney: 13 +> [28412] korney's: 1 +> [28413] korniki: 1 +> [28414] korovkin: 1 +> [28415] korsunskaya: 2 +> [28416] korsunsky: 14 +> [28417] korsunsky's: 2 +> [28418] korsunskys: 1 +> [28419] korzinskaya: 1 +> [28420] koslovski: 1 +> [28421] kosoy: 2 +> [28422] kostanzhoglos: 4 +> [28423] kostia: 7 +> [28424] kostroma: 5 +> [28425] kostya: 41 +> [28426] kostya's: 3 +> [28427] koulakoff: 4 +> [28428] koutouzov: 2 +> [28429] kouzma: 21 +> [28430] kouzma's: 1 +> [28431] kovno: 1 +> [28432] kozel: 2 +> [28433] kozel's: 3 +> [28434] kozelski: 1 +> [28435] kozlovski: 16 +> [28436] kozlovski's: 1 +> [28437] koznishev: 22 +> [28438] koznishev's: 1 +> [28439] krak: 12 +> [28440] kramskoy: 1 +> [28441] krasnaya: 2 +> [28442] krasnoe: 23 +> [28443] krassotkin: 56 +> [28444] krassotkin—this: 1 +> [28445] krassotkin's: 5 +> [28446] krassotkin, [28447] krassotkin. [28448] krassotkin [28449] krassotkins: 1 +> [28450] kravchenko: 1 +> [28451] krebitz: 6 +> [28452] kremenchug: 1 +> [28453] kremlin: 32 +> [28454] kremlin--yes: 1 +> [28455] krems: 12 +> [28456] krems-znaim: 2 +> [28457] krestovsky: 3 +> [28458] kresty: 2 +> [28459] kreutzers: 1 +> [28460] krieg: 1 +> [28461] krilov's: 1 +> [28462] kritsky: 9 +> [28463] kritsky's: 1 +> [28464] krivin: 1 +> [28465] krivin's: 2 +> [28466] krivtsov: 1 +> [28467] kronstadt: 1 +> [28468] krug: 1 +> [28469] krupov: 1 +> [28470] krutolin: 2 +> [28471] kruzin's: 1 +> [28472] kryloff's: 3 +> [28473] kryukov: 1 +> [28474] kudrino: 1 +> [28475] kupferof's: 1 +> [28476] kuragin: 57 +> [28477] kuragin's: 9 +> [28478] kuragin--were: 1 +> [28479] kuragina: 2 +> [28480] kuragins: 3 +> [28481] kurakin: 2 +> [28482] kurakin's: 1 +> [28483] kurbski: 1 +> [28484] kursk: 3 +> [28485] kurskies: 1 +> [28486] kutafyev: 2 +> [28487] kutaysov: 2 +> [28488] kutaysov's: 1 +> [28489] kutuzov: 446 +> [28490] kutuzov's: 80 +> [28491] kutuzov--having: 1 +> [28492] kutuzov--the: 1 +> [28493] kuvshinikov: 1 +> [28494] kuz-mi-ch: 1 +> [28495] kuzma: 29 +> [28496] kuzmich: 12 +> [28497] kuzmich--a: 1 +> [28498] kuzmich--from: 1 +> [28499] kuzminichna: 24 +> [28500] kuzmitch: 13 +> [28501] kuzmitch's: 4 +> [28502] kuzmitch, [28503] kuzmitch? [28504] kuzmitchovs: 1 +> [28505] kuzmitchovs? [28506] kuzovlev: 6 +> [28507] kvas: 3 +> [28508] kvas—both: 1 +> [28509] kvass: 2 +> [28510] kvitsky: 1 +> [28511] kwudener: 1 +> [28512] l: 50 +> [28513] l'agrement: 1 +> [28514] l'allemand: 1 +> [28515] l'ami: 3 +> [28516] l'amour: 2 +> [28517] l'anglais: 1 +> [28518] l'anglaise: 2 +> [28519] l'angleterre: 1 +> [28520] l'armee: 2 +> [28521] l'as: 2 +> [28522] l'avoué: 3 +> [28523] l'avoué's: 1 +> [28524] l'empereur: 21 +> [28525] l'ennemi: 1 +> [28526] l'estragon: 1 +> [28527] l'etat: 1 +> [28528] l'existence: 1 +> [28529] l'ha: 1 +> [28530] l'homme: 5 +> [28531] l'honeur: 1 +> [28532] l'honneur: 2 +> [28533] l'inconnu: 1 +> [28534] l'inventer. [28535] l'offenser: 1 +> [28536] l'ombre: 3 +> [28537] l'or: 1 +> [28538] l'russe: 4 +> [28539] l'u: 1 +> [28540] l'univers: 1 +> [28541] l'urope: 2 +> [28542] l'âge: 1 +> [28543] l'énigme [28544] l-lying! [28545] l>'tis: 1 +> [28546] l> [28547] l> [28548] l>a: 3 +> [28549] l>ach: 1 +> [28550] l>all: 2 +> [28551] l>and: 9 +> [28552] l>astounding: 1 +> [28553] l>at: 1 +> [28554] l>be: 2 +> [28555] l>bearing: 1 +> [28556] l>beyond: 1 +> [28557] l>but: 2 +> [28558] l>ci-gît: 1 +> [28559] l>distrust: 1 +> [28560] l>each: 1 +> [28561] l>fickle: 1 +> [28562] l>filling: 1 +> [28563] l>for: 1 +> [28564] l>from: 1 +> [28565] l>glory: 3 +> [28566] l>he: 3 +> [28567] l>her: 2 +> [28568] l>i: 7 +> [28569] l>if: 1 +> [28570] l>in: 1 +> [28571] l>it: 1 +> [28572] l>it's: 1 +> [28573] l>joy: 1 +> [28574] l>kolbasnikov: 1 +> [28575] l>life: 1 +> [28576] l>lord: 1 +> [28577] l>no: 1 +> [28578] l>o: 1 +> [28579] l>oh: 1 +> [28580] l>on: 6 +> [28581] l>our: 1 +> [28582] l>pas: 1 +> [28583] l>silenus: 1 +> [28584] l>that: 2 +> [28585] l>the: 14 +> [28586] l>there: 2 +> [28587] l>though: 1 +> [28588] l>to: 5 +> [28589] l>treacherous: 1 +> [28590] l>troo-roo-roo-roo-roo: 2 +> [28591] l>upon: 1 +> [28592] l>weary: 1 +> [28593] l>what: 1 +> [28594] l>whatever: 1 +> [28595] l>with: 2 +> [28596] l>would: 5 +> [28597] l>yes: 1 +> [28598] l>yet: 1 +> [28599] l>you: 1 +> [28600] la: 137 +> [28601] la-la: 1 +> [28602] la [28603] laban: 1 +> [28604] label: 1 +> [28605] labeled: 1 +> [28606] labels: 4 +> [28607] labor: 89 +> [28608] labor--all: 1 +> [28609] labor--idleness--was: 1 +> [28610] labor--that: 1 +> [28611] laboratories: 4 +> [28612] laboratory: 7 +> [28613] labored: 5 +> [28614] laborer: 36 +> [28615] laborer--that's: 1 +> [28616] laborers: 48 +> [28617] laborers--this: 1 +> [28618] laboring: 3 +> [28619] laborious: 2 +> [28620] laboriously: 7 +> [28621] labors: 12 +> [28622] labour: 11 +> [28623] laboured: 1 +> [28624] labourer: 7 +> [28625] labourers: 3 +> [28626] labouring: 7 +> [28627] labours: 1 +> [28628] labyrinth: 1 +> [28629] lace: 50 +> [28630] lace-frilled: 1 +> [28631] lace-seller: 1 +> [28632] lace-trimmed: 1 +> [28633] laced: 1 +> [28634] lacerate: 1 +> [28635] lacerated: 1 +> [28636] lacerates: 1 +> [28637] lacerating: 7 +> [28638] lacerating, [28639] laceration: 2 +> [28640] laceration, [28641] lacerations [28642] laces: 3 +> [28643] lacets: 2 +> [28644] laches: 1 +> [28645] lachrymose: 1 +> [28646] lack: 111 +> [28647] lack-lustre: 1 +> [28648] lacked: 18 +> [28649] lackey: 20 +> [28650] lackey's: 3 +> [28651] lackeys: 8 +> [28652] lacking: 33 +> [28653] lacks: 3 +> [28654] laconic: 1 +> [28655] laconically: 1 +> [28656] lacrymæ: 1 +> [28657] lactones: 1 +> [28658] lacy: 2 +> [28659] lad: 187 +> [28660] lad's: 11 +> [28661] lad--a: 1 +> [28662] lad--especially: 1 +> [28663] lad--i: 1 +> [28664] ladder: 29 +> [28665] ladder's: 1 +> [28666] laden: 13 +> [28667] ladies: 453 +> [28668] ladies—two: 1 +> [28669] ladies, [28670] ladies--all: 1 +> [28671] ladies--an: 1 +> [28672] ladies--frightening: 1 +> [28673] ladies--i: 1 +> [28674] ladies-in-waiting: 2 +> [28675] ladies. [28676] ladies’: 3 +> [28677] ladle: 5 +> [28678] ladled: 1 +> [28679] lads: 59 +> [28680] lads--solid: 1 +> [28681] lady: 751 +> [28682] lady's: 44 +> [28683] lady,--though: 1 +> [28684] lady, [28685] lady--beautiful: 1 +> [28686] lady--my: 1 +> [28687] lady--nicholas--started: 1 +> [28688] lady-countess: 1 +> [28689] lady-in-waiting: 1 +> [28690] lady-killer: 1 +> [28691] lady-like: 1 +> [28692] lady. [28693] lady:--‘it: 1 +> [28694] ladybugs: 1 +> [28695] ladykins: 1 +> [28696] lady’s: 21 +> [28697] laertes: 1 +> [28698] lafayette: 5 +> [28699] lafite: 1 +> [28700] lafitte: 8 +> [28701] lag: 1 +> [28702] laggard: 2 +> [28703] laggards: 1 +> [28704] lagged: 12 +> [28705] lagging: 6 +> [28706] lagos: 4 +> [28707] laid: 296 +> [28708] lain: 27 +> [28709] lair: 3 +> [28710] lairs: 1 +> [28711] laisser: 1 +> [28712] laissez-le: 1 +> [28713] laity: 2 +> [28714] lajdak: 1 +> [28715] lake: 53 +> [28716] lake-like: 1 +> [28717] lakes: 2 +> [28718] lamartine: 1 +> [28719] lamb: 10 +> [28720] lamb's: 2 +> [28721] lambach: 1 +> [28722] lambert: 7 +> [28723] lambert--downstairs: 2 +> [28724] lambert--upstairs: 2 +> [28725] lamborn: 1 +> [28726] lambs: 2 +> [28727] lambskin: 2 +> [28728] lame: 19 +> [28729] lame. [28730] lame? [28731] lameness: 2 +> [28732] lament: 3 +> [28733] lamentable: 4 +> [28734] lamentation: 1 +> [28735] lamentations: 4 +> [28736] lamented: 8 +> [28737] lamenting: 6 +> [28738] lameths: 2 +> [28739] lammed: 1 +> [28740] lamont: 1 +> [28741] lamp: 74 +> [28742] lamp--"and: 1 +> [28743] lamp-chimneys: 1 +> [28744] lamp-lit: 2 +> [28745] lamp-post: 5 +> [28746] lamp-posts: 1 +> [28747] lamp-shade: 1 +> [28748] lamplight: 6 +> [28749] lamplighter: 1 +> [28750] lamplit: 1 +> [28751] lamppost: 1 +> [28752] lamps: 30 +> [28753] lancashire: 5 +> [28754] lancashire--whose: 1 +> [28755] lancaster: 1 +> [28756] lance: 1 +> [28757] lancers: 3 +> [28758] lances: 4 +> [28759] lanciers: 1 +> [28760] land: 232 +> [28761] land's: 1 +> [28762] land--cobden: 1 +> [28763] land--the: 1 +> [28764] land--was: 1 +> [28765] land-lord: 1 +> [28766] land-steward: 1 +> [28767] land-surveyor: 2 +> [28768] land-warping: 1 +> [28769] landau: 21 +> [28770] landau's: 1 +> [28771] landau--bezzubov: 1 +> [28772] landed: 33 +> [28773] landing: 32 +> [28774] landing-place: 2 +> [28775] landing-stage: 4 +> [28776] landladies: 1 +> [28777] landlady: 84 +> [28778] landlady's: 25 +> [28779] landlady's. [28780] landless: 1 +> [28781] landlord: 85 +> [28782] landlord's: 8 +> [28783] landlords: 5 +> [28784] landmark: 3 +> [28785] landmarks: 1 +> [28786] landowner: 54 +> [28787] landowner's: 9 +> [28788] landowners: 22 +> [28789] landowning: 1 +> [28790] lands: 32 +> [28791] landscape: 15 +> [28792] landscape--a: 1 +> [28793] landscapes: 2 +> [28794] landsmen: 1 +> [28795] landward: 5 +> [28796] lane: 25 +> [28797] lanes: 9 +> [28798] lanfrey: 1 +> [28799] lang="en: 2 +> [28800] lang='de: 11 +> [28801] lang='fr: 54 +> [28802] lang='la: 5 +> [28803] langeron: 10 +> [28804] langeron's: 3 +> [28805] language: 142 +> [28806] language, [28807] language--not: 1 +> [28808] language--that: 1 +> [28809] language. [28810] language? [28811] languages: 10 +> [28812] languid: 8 +> [28813] languidly: 9 +> [28814] languished: 1 +> [28815] languishing: 3 +> [28816] languor: 3 +> [28817] langusage: 2 +> [28818] lank: 5 +> [28819] lankovsky's: 1 +> [28820] lanky: 6 +> [28821] lannes: 5 +> [28822] lansing: 1 +> [28823] lanskoy: 2 +> [28824] lantern: 48 +> [28825] lantern-jawed: 1 +> [28826] lantern-light: 1 +> [28827] lanterne: 7 +> [28828] lanterns: 12 +> [28829] lanzknechts: 1 +> [28830] laocoon's: 1 +> [28831] laodicea: 4 +> [28832] laodicean: 1 +> [28833] laodiceans: 2 +> [28834] lap: 18 +> [28835] lap-dog: 2 +> [28836] lapped: 4 +> [28837] lapping: 3 +> [28838] laps: 1 +> [28839] lapse: 5 +> [28840] lapsed: 2 +> [28841] lapses: 1 +> [28842] lapsing: 2 +> [28843] larceny: 1 +> [28844] lard: 5 +> [28845] large: 472 +> [28846] large--and: 1 +> [28847] large-boned: 1 +> [28848] large-hearted: 1 +> [28849] large-minded: 1 +> [28850] large-sized: 1 +> [28851] largely: 15 +> [28852] largeness: 8 +> [28853] larger: 66 +> [28854] larger--part: 1 +> [28855] largess: 1 +> [28856] largesse: 2 +> [28857] largest: 23 +> [28858] largish: 1 +> [28859] larionoff: 1 +> [28860] lark: 4 +> [28861] lark's: 2 +> [28862] larks: 6 +> [28863] larrey: 3 +> [28864] larvae: 1 +> [28865] lash: 10 +> [28866] lashed: 14 +> [28867] lashes: 14 +> [28868] lashes--that'll: 1 +> [28869] lashing: 6 +> [28870] laska: 43 +> [28871] laska's: 4 +> [28872] lassalle: 1 +> [28873] lassies: 2 +> [28874] lassitude: 4 +> [28875] last: 2464 +> [28876] last! [28877] last—nothing: 1 +> [28878] last, [28879] last--and: 1 +> [28880] last--as: 1 +> [28881] last--contact: 3 +> [28882] last--finally: 1 +> [28883] last--i: 1 +> [28884] last--into: 2 +> [28885] last--it: 1 +> [28886] last--the: 1 +> [28887] last--why: 2 +> [28888] last--you: 2 +> [28889] last-named: 2 +> [28890] last. [28891] last? [28892] lasted: 87 +> [28893] lasting: 21 +> [28894] lastly: 12 +> [28895] lasts: 6 +> [28896] latch: 33 +> [28897] latch,--but: 1 +> [28898] latched: 3 +> [28899] late: 518 +> [28900] late—to: 1 +> [28901] late, [28902] late--"i: 1 +> [28903] late--and: 1 +> [28904] late--but: 1 +> [28905] late--good: 1 +> [28906] late--good-bye: 1 +> [28907] late--that: 1 +> [28908] late--there: 1 +> [28909] late-sown: 1 +> [28910] late.--translator: 1 +> [28911] late. [28912] latecomers: 1 +> [28913] lately: 87 +> [28914] lately—both: 1 +> [28915] lately, [28916] lately--and: 1 +> [28917] lateness: 1 +> [28918] latent: 8 +> [28919] later: 709 +> [28920] later—three: 1 +> [28921] later, [28922] later--an: 1 +> [28923] later--and: 1 +> [28924] later--as: 1 +> [28925] later--i: 1 +> [28926] later--that: 2 +> [28927] later--the: 1 +> [28928] later--tidings: 1 +> [28929] later--to: 3 +> [28930] later.... [28931] later. [28932] lateran: 1 +> [28933] latest: 36 +> [28934] lathe: 9 +> [28935] lather: 17 +> [28936] lathering: 5 +> [28937] lathers: 1 +> [28938] latin: 18 +> [28939] latin, [28940] latin--it's: 1 +> [28941] latinisms: 1 +> [28942] latinist: 1 +> [28943] latitude: 5 +> [28944] latrines: 1 +> [28945] latter: 380 +> [28946] latter's: 22 +> [28947] latter--as: 1 +> [28948] latter--since: 1 +> [28949] latter--unconscious: 1 +> [28950] latterly: 10 +> [28951] lattice: 5 +> [28952] lattice-work: 1 +> [28953] laudable: 4 +> [28954] laugh: 398 +> [28955] laugh! [28956] laugh—that's: 1 +> [28957] laugh, [28958] laugh--a: 1 +> [28959] laugh--but: 1 +> [28960] laugh--i: 5 +> [28961] laughable: 3 +> [28962] laughably: 1 +> [28963] laughed: 539 +> [28964] laughed--as: 1 +> [28965] laughed--laughed: 1 +> [28966] laughed--she: 1 +> [28967] laughed--stopped: 1 +> [28968] laughers: 2 +> [28969] laughing: 551 +> [28970] laughing&mdash: 1 +> [28971] laughing, [28972] laughing--laughed: 1 +> [28973] laughing--laughing: 1 +> [28974] laughing--such: 1 +> [28975] laughing-stock: 7 +> [28976] laughing? [28977] laughingly: 6 +> [28978] laughingstock: 3 +> [28979] laughs: 39 +> [28980] laughter: 304 +> [28981] laughter--he: 1 +> [28982] laughter--not: 1 +> [28983] laughter-loving: 2 +> [28984] launay: 8 +> [28985] launch: 6 +> [28986] launched: 4 +> [28987] launching: 2 +> [28988] laundress: 5 +> [28989] laundries: 1 +> [28990] laundry: 35 +> [28991] laura: 1 +> [28992] laureate: 1 +> [28993] laurel: 6 +> [28994] laurels: 4 +> [28995] lauric: 5 +> [28996] lauriston: 4 +> [28997] lauriston's: 2 +> [28998] laus: 2 +> [28999] lavater: 1 +> [29000] lavender: 5 +> [29001] lavish: 7 +> [29002] lavished: 9 +> [29003] lavishing: 1 +> [29004] lavishly: 1 +> [29005] lavra: 3 +> [29006] lavrenty: 1 +> [29007] lavrushka: 35 +> [29008] lavrushka's: 2 +> [29009] lavrushka--that: 1 +> [29010] lavwuska: 1 +> [29011] law: 382 +> [29012] law! [29013] law's: 2 +> [29014] law--the: 1 +> [29015] law--were: 1 +> [29016] law-abiding: 5 +> [29017] law-givers--of: 1 +> [29018] law-suits: 1 +> [29019] law."[11: 1 +> [29020] lawful: 21 +> [29021] lawful, [29022] lawful. [29023] lawful [29024] lawfully: 2 +> [29025] lawgiver: 1 +> [29026] lawless: 1 +> [29027] lawlessness: 8 +> [29028] lawn: 18 +> [29029] lawn-tennis: 1 +> [29030] lawns: 2 +> [29031] laws: 350 +> [29032] laws--laws: 1 +> [29033] laws--to: 1 +> [29034] laws. [29035] lawsuit: 7 +> [29036] lawyer: 163 +> [29037] lawyer's: 11 +> [29038] lawyer,--a: 1 +> [29039] lawyer, [29040] lawyer--"the: 1 +> [29041] lawyers: 44 +> [29042] lawyers—it's: 1 +> [29043] lawyers--so: 1 +> [29044] lawyers--to: 1 +> [29045] laxity: 6 +> [29046] lay: 753 +> [29047] layer: 24 +> [29048] layers: 7 +> [29049] laying: 83 +> [29050] layman: 4 +> [29051] laymen: 1 +> [29052] layouts: 2 +> [29053] lays: 12 +> [29054] lazarchuk: 1 +> [29055] lazarev: 10 +> [29056] lazarev's: 2 +> [29057] lazarus: 11 +> [29058] lazily: 16 +> [29059] laziness: 7 +> [29060] lazy: 24 +> [29061] lbs: 59 +> [29062] le: 345 +> [29063] le-trip-ta-la-de-bu-de-ba: 1 +> [29064] lea: 1 +> [29065] lead: 200 +> [29066] lead-lined: 6 +> [29067] lead._--boil: 1 +> [29068] lead.”: 1 +> [29069] leaded: 1 +> [29070] leaden: 11 +> [29071] leader: 38 +> [29072] leader--he: 1 +> [29073] leader--whom: 1 +> [29074] leaders: 41 +> [29075] leadership: 9 +> [29076] leading: 152 +> [29077] leading--if: 1 +> [29078] leads: 45 +> [29079] leads. [29080] leads. [29081] leaf: 27 +> [29082] leafless: 7 +> [29083] leaflet: 2 +> [29084] leaflets: 2 +> [29085] leafy: 1 +> [29086] league: 28 +> [29087] league--i: 1 +> [29088] league--that: 1 +> [29089] leaguer: 2 +> [29090] leaguers: 1 +> [29091] leagues: 9 +> [29092] leak: 2 +> [29093] leaked: 1 +> [29094] leaking: 1 +> [29095] leaks: 2 +> [29096] lean: 43 +> [29097] lean-cruppered: 3 +> [29098] lean-jawed: 1 +> [29099] leaned: 89 +> [29100] leaner: 1 +> [29101] leanest: 1 +> [29102] leaning: 116 +> [29103] leanings: 2 +> [29104] leanness: 1 +> [29105] leans: 1 +> [29106] leant: 12 +> [29107] leap: 19 +> [29108] leap--i: 1 +> [29109] leaped: 19 +> [29110] leaping: 17 +> [29111] leaps: 2 +> [29112] leaps.’: 1 +> [29113] leapt: 53 +> [29114] lear: 4 +> [29115] learn: 186 +> [29116] learn— [29117] learn--basset: 1 +> [29118] learn--what: 1 +> [29119] learned: 276 +> [29120] learned--who: 1 +> [29121] learner: 1 +> [29122] learners: 1 +> [29123] learning: 69 +> [29124] learns: 7 +> [29125] learnt: 61 +> [29126] lease: 7 +> [29127] lease-hold: 1 +> [29128] leased: 2 +> [29129] leases: 1 +> [29130] leash: 12 +> [29131] leashed: 1 +> [29132] leashes: 2 +> [29133] leasows: 2 +> [29134] least: 713 +> [29135] least, [29136] least--and: 1 +> [29137] least--goodness: 1 +> [29138] least--not: 1 +> [29139] least--really: 1 +> [29140] least--to: 1 +> [29141] least. [29142] least? [29143] leather: 87 +> [29144] leather-covered: 5 +> [29145] leather-gloved: 1 +> [29146] leathern: 1 +> [29147] leathers: 2 +> [29148] leave: 839 +> [29149] leave—smerdyakov: 1 +> [29150] leave--a: 1 +> [29151] leave-taking: 5 +> [29152] leaves: 108 +> [29153] leaving: 285 +> [29154] leavings: 5 +> [29155] lebedef: 1 +> [29156] lebedeff: 317 +> [29157] lebedeff's: 56 +> [29158] lebedeff,--as: 1 +> [29159] lebeziatnikov: 72 +> [29160] lebeziatnikov's: 4 +> [29161] leblanc: 1 +> [29162] lebrun: 2 +> [29163] lech: 2 +> [29164] lectern: 7 +> [29165] lecteur: 1 +> [29166] lecture: 21 +> [29167] lecture-room: 1 +> [29168] lectured: 2 +> [29169] lecturer: 2 +> [29170] lectures: 8 +> [29171] lecturing: 1 +> [29172] led: 381 +> [29173] led-captains--the: 1 +> [29174] leda: 1 +> [29175] ledge: 11 +> [29176] ledgers: 1 +> [29177] lee: 2 +> [29178] leech: 3 +> [29179] leeches: 1 +> [29180] leeching: 2 +> [29181] leek: 2 +> [29182] leeks: 1 +> [29183] leer: 3 +> [29184] leering: 3 +> [29185] lef: 43 +> [29186] left: 1899 +> [29187] left—a: 1 +> [29188] left—the: 1 +> [29189] left--a: 1 +> [29190] left--about: 1 +> [29191] left--here: 1 +> [29192] left--i: 1 +> [29193] left--maintained: 1 +> [29194] left--to: 1 +> [29195] left--which: 1 +> [29196] left--wore: 1 +> [29197] left-flank: 1 +> [29198] left-hand: 2 +> [29199] left-handed: 2 +> [29200] left-handed, [29201] left-nastasia: 1 +> [29202] left.’: 1 +> [29203] leg: 147 +> [29204] leg—and: 1 +> [29205] leg's: 1 +> [29206] leg--had: 1 +> [29207] leg-bands: 2 +> [29208] leg. [29209] legacy: 2 +> [29210] legal: 106 +> [29211] legal--business: 1 +> [29212] legalised: 1 +> [29213] legalism: 15 +> [29214] legalist: 2 +> [29215] legalistic: 6 +> [29216] legalists: 3 +> [29217] legality: 2 +> [29218] legalize: 1 +> [29219] legally: 29 +> [29220] legate: 1 +> [29221] legend: 23 +> [29222] legendary: 1 +> [29223] legends: 4 +> [29224] legged: 1 +> [29225] leggings: 2 +> [29226] legibility: 1 +> [29227] legible: 5 +> [29228] legibly: 2 +> [29229] legion: 9 +> [29230] legislation: 2 +> [29231] legislative: 2 +> [29232] legislator: 2 +> [29233] legislators: 1 +> [29234] legislature: 1 +> [29235] legitimacy: 1 +> [29236] legitimate: 21 +> [29237] legitimately: 3 +> [29238] legitimation: 1 +> [29239] legitimist: 1 +> [29240] legitimists: 2 +> [29241] legitimization: 1 +> [29242] legitimize: 2 +> [29243] legs: 272 +> [29244] legs, [29245] legs. [29246] leicester: 2 +> [29247] leigh: 10 +> [29248] leighton: 1 +> [29249] leipsic: 1 +> [29250] leiste: 2 +> [29251] leisure: 30 +> [29252] leisure--and: 1 +> [29253] leisurely: 9 +> [29254] leland: 1 +> [29255] lelorgne: 3 +> [29256] lelya: 2 +> [29257] lelya's: 1 +> [29258] lemarrois: 1 +> [29259] lemon: 5 +> [29260] lemon-coloured: 6 +> [29261] lemon. [29262] lemonade: 4 +> [29263] lemonade, [29264] len: 2 +> [29265] lency: 1 +> [29266] lend: 27 +> [29267] lender: 1 +> [29268] lending: 5 +> [29269] lends: 3 +> [29270] length: 147 +> [29271] length--in: 1 +> [29272] lengthen: 1 +> [29273] lengthened: 4 +> [29274] lengthening: 3 +> [29275] lengths: 8 +> [29276] lengths--which: 1 +> [29277] lengthwise: 2 +> [29278] lengthy: 2 +> [29279] lenient: 3 +> [29280] lenotchka: 3 +> [29281] lent: 41 +> [29282] lent! [29283] lenten: 5 +> [29284] leo: 19 +> [29285] leon: 2 +> [29286] leonine: 2 +> [29287] leopard: 3 +> [29288] lepelletier: 1 +> [29289] leper: 2 +> [29290] lepers: 1 +> [29291] leppich: 4 +> [29292] leppich's: 1 +> [29293] leprosy: 1 +> [29294] lepton: 1 +> [29295] lermontoff's: 1 +> [29296] lermontov's: 3 +> [29297] leroux: 13 +> [29298] leroux's: 2 +> [29299] les: 43 +> [29300] lescaut_--a: 1 +> [29301] less: 614 +> [29302] less--i'll: 1 +> [29303] less--yes: 1 +> [29304] less. [29305] less? [29306] lessen: 3 +> [29307] lessened: 7 +> [29308] lessening: 3 +> [29309] lessens: 1 +> [29310] lesser: 28 +> [29311] lessive: 2 +> [29312] lesson: 72 +> [29313] lesson--thanks: 1 +> [29314] lessons: 69 +> [29315] lessons. [29316] lest: 44 +> [29317] let: 1983 +> [29318] let's: 128 +> [29319] let--them--pass: 1 +> [29320] letashovka: 1 +> [29321] lete: 1 +> [29322] lethargy: 1 +> [29323] lets: 13 +> [29324] lett: 1 +> [29325] letter: 967 +> [29326] letter—for: 1 +> [29327] letter—isn't: 1 +> [29328] letter, [29329] letter--did: 1 +> [29330] letter--even: 1 +> [29331] letter--it: 1 +> [29332] letter--my: 1 +> [29333] letter--one: 1 +> [29334] letter--take: 1 +> [29335] letter--thus: 1 +> [29336] letter-writing: 1 +> [29337] letter...his: 1 +> [29338] letter. [29339] letter? [29340] lettering: 2 +> [29341] letters: 285 +> [29342] letters—what: 1 +> [29343] letters--a: 1 +> [29344] letters--his: 1 +> [29345] letters--i: 1 +> [29346] letters--one: 1 +> [29347] lettest: 1 +> [29348] letting: 122 +> [29349] lettres: 1 +> [29350] leur: 2 +> [29351] levee: 8 +> [29352] level: 67 +> [29353] level—but: 1 +> [29354] leveled: 2 +> [29355] levelled: 2 +> [29356] levels: 1 +> [29357] lever: 3 +> [29358] lever-du-roi: 2 +> [29359] levers: 1 +> [29360] levi: 1 +> [29361] levies: 1 +> [29362] levin: 1513 +> [29363] levin's: 99 +> [29364] levin--"a: 1 +> [29365] levin--"he's: 1 +> [29366] levin--to: 1 +> [29367] levins: 13 +> [29368] levite: 1 +> [29369] levitsky: 1 +> [29370] levity: 5 +> [29371] levy: 5 +> [29372] levy's: 1 +> [29373] levying: 1 +> [29374] levées: 1 +> [29375] lewd: 4 +> [29376] lewes: 1 +> [29377] lewis: 1 +> [29378] lewkowitsch: 5 +> [29379] lexicons: 2 +> [29380] lg: 76 +> [29381] liability: 59 +> [29382] liable: 41 +> [29383] liaison: 3 +> [29384] liancourt: 3 +> [29385] liancourts: 1 +> [29386] liar: 18 +> [29387] liars: 3 +> [29388] libation: 2 +> [29389] libel: 4 +> [29390] libelled: 1 +> [29391] libelous: 1 +> [29392] liberal: 51 +> [29393] liberal--that's: 1 +> [29394] liberalism: 17 +> [29395] liberalism--not: 1 +> [29396] liberalism--that: 1 +> [29397] liberality: 5 +> [29398] liberally: 1 +> [29399] liberals: 13 +> [29400] liberate: 3 +> [29401] liberated: 8 +> [29402] liberating: 1 +> [29403] liberation: 3 +> [29404] liberator: 1 +> [29405] liberties: 6 +> [29406] liberties, [29407] libertine: 3 +> [29408] libertinism: 1 +> [29409] liberty: 69 +> [29410] liberty--and: 1 +> [29411] librarian: 6 +> [29412] libraries: 12 +> [29413] library: 60 +> [29414] library--all: 1 +> [29415] library--he: 1 +> [29416] libre: 1 +> [29417] libretto: 1 +> [29418] lice: 6 +> [29419] licence: 8 +> [29420] license: 290 +> [29421] licensed: 19 +> [29422] licentious: 2 +> [29423] licentiousness: 1 +> [29424] lichfield: 1 +> [29425] lichtenfels: 1 +> [29426] lichtenstein: 1 +> [29427] lick: 8 +> [29428] licked: 5 +> [29429] licking: 7 +> [29430] licks: 3 +> [29431] lid: 16 +> [29432] lida: 22 +> [29433] lidi: 1 +> [29434] lidia: 110 +> [29435] lidia's: 1 +> [29436] lidia--i'm: 1 +> [29437] lids: 5 +> [29438] lie: 295 +> [29439] lie! [29440] lie—lie: 1 +> [29441] lie--by: 1 +> [29442] lie--no: 1 +> [29443] lie--that: 2 +> [29444] lie--to: 5 +> [29445] lie-abeds: 1 +> [29446] lie.... [29447] lie. [29448] lie. [29449] liebchen: 1 +> [29450] liebermann: 1 +> [29451] liebermann-storch: 2 +> [29452] liebig: 1 +> [29453] lied: 25 +> [29454] lies: 174 +> [29455] lies—and: 1 +> [29456] lies, [29457] lies--an: 1 +> [29458] lies. [29459] lieschen: 1 +> [29460] lieth: 1 +> [29461] lieu: 38 +> [29462] lieutenant: 64 +> [29463] lieutenant's: 1 +> [29464] lieutenant-colonel: 9 +> [29465] lieutenant-general: 1 +> [29466] lieutenants: 1 +> [29467] life: 2365 +> [29468] life! [29469] life! [29470] life—and: 1 +> [29471] life—epilepsy: 1 +> [29472] life—her: 1 +> [29473] life—i: 1 +> [29474] life—it: 1 +> [29475] life—punish: 2 +> [29476] life—say: 1 +> [29477] life—that's: 1 +> [29478] life's: 15 +> [29479] life)--but: 1 +> [29480] life,--something: 1 +> [29481] life, [29482] life--abroad: 1 +> [29483] life--acclaimed: 1 +> [29484] life--all: 3 +> [29485] life--and: 6 +> [29486] life--apart: 1 +> [29487] life--as: 1 +> [29488] life--especially: 1 +> [29489] life--falsehood: 1 +> [29490] life--forgetting: 1 +> [29491] life--had: 1 +> [29492] life--him: 1 +> [29493] life--how: 1 +> [29494] life--i: 2 +> [29495] life--if: 1 +> [29496] life--is: 1 +> [29497] life--life: 1 +> [29498] life--love--was: 1 +> [29499] life--man: 1 +> [29500] life--no: 2 +> [29501] life--not: 2 +> [29502] life--now: 1 +> [29503] life--of: 2 +> [29504] life--on: 1 +> [29505] life--one: 1 +> [29506] life--or: 1 +> [29507] life--returned: 1 +> [29508] life--so: 1 +> [29509] life--speak: 1 +> [29510] life--that: 2 +> [29511] life--the: 2 +> [29512] life--those: 1 +> [29513] life--to: 1 +> [29514] life--was: 1 +> [29515] life--we: 1 +> [29516] life--were: 1 +> [29517] life--with: 1 +> [29518] life--you: 1 +> [29519] life-conflict: 1 +> [29520] life-giving: 2 +> [29521] life-long: 1 +> [29522] life-sized: 1 +> [29523] life-time: 1 +> [29524] life-work: 1 +> [29525] life.--author's: 2 +> [29526] life. [29527] life:--the: 1 +> [29528] life? [29529] lifeless: 19 +> [29530] lifelessly: 2 +> [29531] lifelessness: 1 +> [29532] lifelike: 1 +> [29533] lifelong: 1 +> [29534] lifetime: 30 +> [29535] lifetime—at: 1 +> [29536] lifetime--that: 1 +> [29537] lifetimes: 1 +> [29538] life’s: 1 +> [29539] liffs: 1 +> [29540] lift: 69 +> [29541] lifted: 171 +> [29542] lifting: 78 +> [29543] lifts: 6 +> [29544] light: 837 +> [29545] light)--were: 1 +> [29546] light, [29547] light--and: 2 +> [29548] light--as: 1 +> [29549] light--i: 1 +> [29550] light--in: 1 +> [29551] light--only: 1 +> [29552] light--pierre: 1 +> [29553] light--which: 1 +> [29554] light-blue: 6 +> [29555] light-brown: 3 +> [29556] light-colored: 6 +> [29557] light-coloured: 1 +> [29558] light-footed. [29559] light-headed: 2 +> [29560] light-hearted: 8 +> [29561] light-heartedly: 1 +> [29562] light-heartedness: 1 +> [29563] light-mindedness: 1 +> [29564] light.’: 1 +> [29565] light [29566] lighted: 147 +> [29567] lighten: 5 +> [29568] lightened: 6 +> [29569] lightening: 3 +> [29570] lightens: 1 +> [29571] lighter: 21 +> [29572] lighter--in: 1 +> [29573] lightest: 4 +> [29574] lightfoot: 1 +> [29575] lightheaded: 1 +> [29576] lighthearted: 10 +> [29577] lightheartedly: 2 +> [29578] lighting: 26 +> [29579] lightly: 108 +> [29580] lightly--before: 1 +> [29581] lightness: 18 +> [29582] lightning: 29 +> [29583] lightning--a: 1 +> [29584] lightning.”: 1 +> [29585] lights: 65 +> [29586] ligne: 1 +> [29587] lihachof: 2 +> [29588] like: 3878 +> [29589] like—alyosha: 1 +> [29590] like—but: 1 +> [29591] like, [29592] like,”: 1 +> [29593] like--anything: 1 +> [29594] like--first-rate: 1 +> [29595] like--for: 1 +> [29596] like--i: 1 +> [29597] like--i'm: 1 +> [29598] like--is: 1 +> [29599] like--like: 2 +> [29600] like--like--are: 1 +> [29601] like--only: 1 +> [29602] like--people: 1 +> [29603] like--should: 1 +> [29604] like--that: 1 +> [29605] like--the: 1 +> [29606] like.... [29607] like. [29608] like? [29609] liked: 338 +> [29610] likelier: 1 +> [29611] likelihood: 4 +> [29612] likely: 254 +> [29613] likely!--like: 1 +> [29614] likely—a: 1 +> [29615] likely, [29616] likely--i: 1 +> [29617] likely...i: 1 +> [29618] likely. [29619] likeness: 24 +> [29620] likeness. [29621] likens: 1 +> [29622] likes: 56 +> [29623] likes, [29624] likes--and: 1 +> [29625] likes--but: 1 +> [29626] likewise: 12 +> [29627] likhachev: 5 +> [29628] likhachev's: 1 +> [29629] likhachev--isn't: 1 +> [29630] liking: 34 +> [29631] likings: 1 +> [29632] lilac: 24 +> [29633] lilac-colored: 1 +> [29634] lilac-gray: 1 +> [29635] lili: 1 +> [29636] lilies: 3 +> [29637] lille: 1 +> [29638] lily: 6 +> [29639] lily's: 1 +> [29640] lima: 4 +> [29641] limb: 9 +> [29642] limb-covers: 1 +> [29643] limbered: 1 +> [29644] limbers: 4 +> [29645] limbs: 35 +> [29646] lime: 64 +> [29647] lime-flower: 1 +> [29648] lime-tree: 5 +> [29649] lime-trees: 2 +> [29650] limes: 3 +> [29651] limetree: 1 +> [29652] limetrees: 1 +> [29653] limit: 52 +> [29654] limitation: 66 +> [29655] limitations: 18 +> [29656] limited: 140 +> [29657] limiting: 1 +> [29658] limitless: 2 +> [29659] limits: 32 +> [29660] limonade: 2 +> [29661] limp: 7 +> [29662] limp--we: 1 +> [29663] limped: 2 +> [29664] limpidly: 1 +> [29665] limping: 8 +> [29666] limply: 2 +> [29667] lincoln: 1 +> [29668] lincolnshire: 7 +> [29669] lindstrom: 71 +> [29670] lindstrom's: 13 +> [29671] lindstrom--living: 1 +> [29672] lindstroms: 3 +> [29673] line: 276 +> [29674] line—if: 1 +> [29675] line, [29676] line--shirts: 2 +> [29677] line--the: 2 +> [29678] lineage: 2 +> [29679] lineament: 1 +> [29680] linear: 1 +> [29681] lined: 13 +> [29682] linen: 86 +> [29683] linen's: 1 +> [29684] linen--pattern: 1 +> [29685] linen-drapers: 1 +> [29686] linen-press: 1 +> [29687] linen. [29688] linen? [29689] lines: 143 +> [29690] ling: 2 +> [29691] linger: 7 +> [29692] lingered: 33 +> [29693] lingering: 10 +> [29694] lingers: 1 +> [29695] lingo: 1 +> [29696] lining: 14 +> [29697] linings: 1 +> [29698] link: 15 +> [29699] linked: 31 +> [29700] linking: 5 +> [29701] links: 59 +> [29702] linolenic: 1 +> [29703] linolic: 1 +> [29704] linon: 11 +> [29705] linseed: 7 +> [29706] linstocks: 2 +> [29707] lint: 8 +> [29708] lint. [29709] lintel: 1 +> [29710] linz: 1 +> [29711] lion: 18 +> [29712] lion's: 1 +> [29713] lions: 3 +> [29714] lip: 83 +> [29715] lip! [29716] lip_-service: 1 +> [29717] lipetsk: 1 +> [29718] lipped: 1 +> [29719] lippevechsel: 4 +> [29720] lippevechsel's: 4 +> [29721] lips: 545 +> [29722] lips— [29723] lips--came: 1 +> [29724] lips--what: 4 +> [29725] lips.”: 1 +> [29726] liq: 6 +> [29727] liquefied: 1 +> [29728] liqueur: 8 +> [29729] liqueurs: 2 +> [29730] liqueurs. [29731] liquid: 58 +> [29732] liquids: 2 +> [29733] liquor: 14 +> [29734] liquors: 9 +> [29735] lisa: 1 +> [29736] lisbon: 1 +> [29737] lise: 146 +> [29738] lise—afterwards, [29739] lise's: 11 +> [29740] lise, [29741] lise. [29742] lise? [29743] lisieux: 1 +> [29744] lisp: 10 +> [29745] lisped: 9 +> [29746] lisping: 11 +> [29747] lispingly: 1 +> [29748] list: 61 +> [29749] listen: 464 +> [29750] listen! [29751] listen, [29752] listen--he: 1 +> [29753] listen--i: 1 +> [29754] listen--tell: 1 +> [29755] listen-and: 1 +> [29756] listened: 423 +> [29757] listened--she: 1 +> [29758] listener: 16 +> [29759] listener? [29760] listeners: 24 +> [29761] listening: 345 +> [29762] listening—for: 1 +> [29763] listening, [29764] listening--a: 1 +> [29765] listening--everything: 1 +> [29766] listening? [29767] listens: 11 +> [29768] listless: 14 +> [29769] listlessly: 8 +> [29770] listlessness: 1 +> [29771] lists: 10 +> [29772] lit: 94 +> [29773] litanies: 1 +> [29774] litany: 4 +> [29775] litashevka: 1 +> [29776] litaynaya: 5 +> [29777] lite: 1 +> [29778] liter: 18 +> [29779] literal: 6 +> [29780] literally: 25 +> [29781] literary: 324 +> [29782] literate: 1 +> [29783] literature: 77 +> [29784] liters: 11 +> [29785] liteynaya: 1 +> [29786] litharge: 1 +> [29787] lithe: 2 +> [29788] lithe-limbed: 1 +> [29789] lithograph: 1 +> [29790] lithuanian: 1 +> [29791] litigation: 2 +> [29792] litigiousness: 1 +> [29793] litmus: 5 +> [29794] litre: 1 +> [29795] litt.d: 1 +> [29796] litter: 14 +> [29797] litter--he'll: 1 +> [29798] littered: 8 +> [29799] littering: 2 +> [29800] little: 3250 +> [29801] little—up: 1 +> [29802] little's: 1 +> [29803] little, [29804] little--a: 1 +> [29805] little--but: 1 +> [29806] little--diminish: 1 +> [29807] little--even: 1 +> [29808] little--he: 2 +> [29809] little--not: 1 +> [29810] little--the: 1 +> [29811] little--there: 1 +> [29812] little--though: 1 +> [29813] little--to: 1 +> [29814] little--well--mixed: 1 +> [29815] little.... [29816] little. [29817] little? [29818] littleness: 1 +> [29819] live: 578 +> [29820] live,--no: 1 +> [29821] live--nor: 1 +> [29822] live--perhaps: 1 +> [29823] live--shall: 1 +> [29824] live--to: 1 +> [29825] live? [29826] lived: 346 +> [29827] lived,--hippolyte: 1 +> [29828] lived--he: 1 +> [29829] lived--instead: 1 +> [29830] lived--really: 1 +> [29831] livelier: 10 +> [29832] liveliest: 7 +> [29833] livelihood: 7 +> [29834] liveliness: 7 +> [29835] lively: 75 +> [29836] liven: 2 +> [29837] liver: 14 +> [29838] liveried: 3 +> [29839] liveries: 5 +> [29840] liveries,--that: 1 +> [29841] liveries--which: 1 +> [29842] livery: 10 +> [29843] lives: 155 +> [29844] lives--evewy: 1 +> [29845] liveth: 2 +> [29846] livid: 13 +> [29847] livid--his: 1 +> [29848] living: 448 +> [29849] living! [29850] living--a: 1 +> [29851] living--she: 1 +> [29852] living-room: 1 +> [29853] living. [29854] livings: 1 +> [29855] livingstone's: 1 +> [29856] livonian: 1 +> [29857] livre: 3 +> [29858] livres: 7 +> [29859] lixiviate: 1 +> [29860] liza: 162 +> [29861] liza's: 2 +> [29862] lizabetha: 182 +> [29863] lizabetha's: 2 +> [29864] lizanka: 19 +> [29865] lizanka's: 2 +> [29866] lizaveta: 93 +> [29867] lizaveta's: 7 +> [29868] lizaveta's--you: 1 +> [29869] lizaveta, [29870] lizaveta. [29871] lizaveta [29872] lièvre: 5 +> [29873] lk: 1 +> [29874] ll.d: 2 +> [29875] lo: 11 +> [29876] lo--which: 1 +> [29877] load: 31 +> [29878] loaded: 46 +> [29879] loading: 12 +> [29880] loading--sample: 1 +> [29881] loads: 5 +> [29882] loaf: 17 +> [29883] loaf--lake: 1 +> [29884] loafer: 2 +> [29885] loafers: 2 +> [29886] loafing: 1 +> [29887] loan: 16 +> [29888] loans: 2 +> [29889] loath: 4 +> [29890] loathe: 10 +> [29891] loathed: 19 +> [29892] loathes: 1 +> [29893] loathing: 51 +> [29894] loathing--its: 1 +> [29895] loathsome: 88 +> [29896] loathsome!--and: 1 +> [29897] loathsomely: 2 +> [29898] loathsomeness: 9 +> [29899] loaves: 8 +> [29900] lobbies: 1 +> [29901] lobby: 5 +> [29902] lobnoe: 3 +> [29903] lobster: 9 +> [29904] loc: 1 +> [29905] local: 23 +> [29906] localities: 4 +> [29907] locality: 13 +> [29908] locally: 2 +> [29909] located: 79 +> [29910] location: 1 +> [29911] locations: 38 +> [29912] lock: 59 +> [29913] lock-up: 4 +> [29914] locke: 3 +> [29915] locked: 107 +> [29916] locked--yielded: 1 +> [29917] locker: 2 +> [29918] locket: 6 +> [29919] locking: 2 +> [29920] locks: 14 +> [29921] locksmith: 1 +> [29922] locksmiths: 3 +> [29923] lockup: 2 +> [29924] locomotive: 9 +> [29925] locusts: 4 +> [29926] lodestones: 1 +> [29927] lodge: 70 +> [29928] lodge--we: 1 +> [29929] lodge--were: 1 +> [29930] lodge. [29931] lodged: 23 +> [29932] lodger: 31 +> [29933] lodger's: 3 +> [29934] lodger--the: 1 +> [29935] lodgers: 51 +> [29936] lodges: 11 +> [29937] lodging: 89 +> [29938] lodging--the: 1 +> [29939] lodgings: 53 +> [29940] lodgings). [29941] lodgings-the: 1 +> [29942] lodgment: 1 +> [29943] lodi: 1 +> [29944] loft: 2 +> [29945] loftier: 2 +> [29946] loftiest: 3 +> [29947] loftily: 7 +> [29948] loftiness: 6 +> [29949] lofty: 87 +> [29950] lofty-minded: 1 +> [29951] log: 19 +> [29952] logarithm: 1 +> [29953] logarithms: 4 +> [29954] logement: 1 +> [29955] loggerheads: 5 +> [29956] logia: 7 +> [29957] logic: 30 +> [29958] logic, [29959] logical: 48 +> [29960] logically: 7 +> [29961] logoi: 1 +> [29962] logos: 7 +> [29963] logos--to: 1 +> [29964] logos-doctrine: 1 +> [29965] logs: 17 +> [29966] loi: 2 +> [29967] loins: 5 +> [29968] loiter: 1 +> [29969] loitered: 1 +> [29970] loiterers: 2 +> [29971] loitering: 2 +> [29972] lollards: 1 +> [29973] lolled: 2 +> [29974] lolling: 4 +> [29975] lombard: 1 +> [29976] lomonosoff: 1 +> [29977] london: 98 +> [29978] london--could: 1 +> [29979] london--hence: 1 +> [29980] london--to-morrow: 1 +> [29981] londoner: 1 +> [29982] londonward: 1 +> [29983] lone: 3 +> [29984] lonelier: 1 +> [29985] loneliness: 20 +> [29986] lonely: 59 +> [29987] lonely--more: 1 +> [29988] long: 2309 +> [29989] long—eight: 1 +> [29990] long, [29991] long--i: 1 +> [29992] long--very: 1 +> [29993] long-absent: 1 +> [29994] long-awaited: 1 +> [29995] long-cherished: 1 +> [29996] long-coat: 2 +> [29997] long-concealed: 2 +> [29998] long-continued: 1 +> [29999] long-dead: 1 +> [30000] long-delayed: 1 +> [30001] long-desired: 1 +> [30002] long-drawn: 9 +> [30003] long-drawn-out: 1 +> [30004] long-established: 2 +> [30005] long-expected: 5 +> [30006] long-extinguished: 1 +> [30007] long-faced: 1 +> [30008] long-familiar: 1 +> [30009] long-felt: 1 +> [30010] long-foreseen: 1 +> [30011] long-forgotten: 2 +> [30012] long-frocked: 1 +> [30013] long-haired: 2 +> [30014] long-legged: 1 +> [30015] long-lived: 2 +> [30016] long-necked: 1 +> [30017] long-remembered: 1 +> [30018] long-sighted: 2 +> [30019] long-skirted: 1 +> [30020] long-standing: 5 +> [30021] long-suffering: 5 +> [30022] long-sustained: 1 +> [30023] long-tailed: 1 +> [30024] long-winded: 3 +> [30025] long...that: 1 +> [30026] long...yesterday...i: 1 +> [30027] long.”: 1 +> [30028] long? [30029] long?’: 1 +> [30030] longed: 165 +> [30031] longed-for: 3 +> [30032] longer: 510 +> [30033] longer,--and: 1 +> [30034] longer. [30035] longest: 2 +> [30036] longing: 86 +> [30037] longingly: 1 +> [30038] longings: 1 +> [30039] longish: 1 +> [30040] longmans: 5 +> [30041] longs: 6 +> [30042] longtemps: 2 +> [30043] look: 2093 +> [30044] look'ee: 2 +> [30045] look, [30046] look--and: 1 +> [30047] look--maybe: 1 +> [30048] look-ee: 2 +> [30049] look-out: 5 +> [30050] looked: 2644 +> [30051] looked--well: 1 +> [30052] looker-on: 1 +> [30053] lookest: 1 +> [30054] looking: 1672 +> [30055] looking--like: 1 +> [30056] looking-glass: 24 +> [30057] looking-glasses: 1 +> [30058] lookout: 15 +> [30059] lookout--you: 1 +> [30060] looks: 241 +> [30061] loom: 1 +> [30062] loomed: 11 +> [30063] looming: 7 +> [30064] looms: 1 +> [30065] loop: 3 +> [30066] loop-holed: 1 +> [30067] loop-holes: 1 +> [30068] loophole: 1 +> [30069] loophole. [30070] loopholes: 3 +> [30071] loops: 1 +> [30072] loose: 99 +> [30073] loose-limbed: 1 +> [30074] loosed: 7 +> [30075] loosely: 5 +> [30076] loosely-fitting: 1 +> [30077] loosen: 3 +> [30078] loosened: 19 +> [30079] looseness: 1 +> [30080] loosening: 3 +> [30081] looser: 1 +> [30082] loot: 3 +> [30083] looted: 6 +> [30084] looters: 2 +> [30085] looting: 11 +> [30086] loots: 1 +> [30087] lop-eared: 2 +> [30088] lop-sided: 1 +> [30089] lope: 3 +> [30090] lopped: 1 +> [30091] lopukhin: 3 +> [30092] lopukhins: 1 +> [30093] loquacious: 4 +> [30094] loquacity: 3 +> [30095] lor: 2 +> [30096] lord: 639 +> [30097] lord! [30098] lord!’: 1 +> [30099] lord"--the: 1 +> [30100] lord's: 23 +> [30101] lord's--in: 1 +> [30102] lord, [30103] lord,’: 1 +> [30104] lord--if: 1 +> [30105] lord--since: 1 +> [30106] lord--took: 1 +> [30107] lord--twice: 1 +> [30108] lord--you: 1 +> [30109] lord. [30110] lord?’: 1 +> [30111] lording: 1 +> [30112] lordling: 1 +> [30113] lordly: 3 +> [30114] lords: 11 +> [30115] lordship: 73 +> [30116] lordship's: 11 +> [30117] lordship--he: 1 +> [30118] lordships: 4 +> [30119] lordship’s: 1 +> [30120] lord’s: 6 +> [30121] lore: 1 +> [30122] lorge: 1 +> [30123] lorgnette: 8 +> [30124] lorgnette. [30125] lorgnettes: 1 +> [30126] lorn: 2 +> [30127] lorrain: 10 +> [30128] lorrain's: 1 +> [30129] los: 1 +> [30130] lose: 200 +> [30131] lose--he'd: 1 +> [30132] loser: 2 +> [30133] loses: 15 +> [30134] losing: 116 +> [30135] loss: 157 +> [30136] losses: 24 +> [30137] losses)--now: 1 +> [30138] lost: 635 +> [30139] lost--lost: 1 +> [30140] lost--than: 1 +> [30141] lost. [30142] lost? [30143] lot: 178 +> [30144] lot--a: 2 +> [30145] lot--ay: 1 +> [30146] lot? [30147] loth: 5 +> [30148] lotion: 3 +> [30149] loto: 1 +> [30150] lots: 28 +> [30151] lottery: 3 +> [30152] loud: 208 +> [30153] louder: 68 +> [30154] louder--they: 1 +> [30155] loudest: 12 +> [30156] loudly: 134 +> [30157] loudness: 2 +> [30158] louis: 152 +> [30159] louis's: 17 +> [30160] louis--and: 1 +> [30161] louis-es: 3 +> [30162] louisa: 4 +> [30163] louise: 7 +> [30164] louise--who: 1 +> [30165] lounge: 14 +> [30166] lounged: 5 +> [30167] lounges: 1 +> [30168] lounging: 12 +> [30169] louse: 20 +> [30170] lousy: 3 +> [30171] lout: 1 +> [30172] loutish: 1 +> [30173] louvain: 1 +> [30174] louvre: 5 +> [30175] louvres: 1 +> [30176] lovayski: 1 +> [30177] love: 2137 +> [30178] love! [30179] love—a: 1 +> [30180] love—because: 1 +> [30181] love—that: 1 +> [30182] love,--and: 1 +> [30183] love, [30184] love--a: 1 +> [30185] love--and: 1 +> [30186] love--as: 1 +> [30187] love--boundless: 1 +> [30188] love--but: 1 +> [30189] love--let: 1 +> [30190] love--letter: 1 +> [30191] love--love: 1 +> [30192] love--not: 1 +> [30193] love--she's: 1 +> [30194] love--stands: 1 +> [30195] love--the: 1 +> [30196] love--to: 1 +> [30197] love--uttered: 1 +> [30198] love--why: 4 +> [30199] love--with: 1 +> [30200] love--you: 1 +> [30201] love-affair: 2 +> [30202] love-beaming: 1 +> [30203] love-charm: 1 +> [30204] love-feast: 1 +> [30205] love-letter: 12 +> [30206] love-letters: 1 +> [30207] love-locks: 2 +> [30208] love-making: 3 +> [30209] love-matters: 1 +> [30210] love-philtre: 5 +> [30211] love-philtre--not: 1 +> [30212] love-philtres: 1 +> [30213] love-potion: 2 +> [30214] love-sick: 1 +> [30215] love...both: 1 +> [30216] love...yes: 1 +> [30217] love. [30218] love:--“there: 1 +> [30219] love_[b]--‘a: 1 +> [30220] loved: 474 +> [30221] loved--and: 1 +> [30222] loved--but: 1 +> [30223] loved--even: 1 +> [30224] lovel: 2 +> [30225] lovelace: 3 +> [30226] lovelier: 4 +> [30227] loveliest: 2 +> [30228] loveliness: 7 +> [30229] lovely: 97 +> [30230] lover: 78 +> [30231] lover's: 10 +> [30232] lover, [30233] lover--assumed: 1 +> [30234] lover-like: 3 +> [30235] lover. [30236] lover [30237] lovers: 25 +> [30238] lovers--began: 1 +> [30239] lovers--once: 1 +> [30240] lover’s: 1 +> [30241] loves: 154 +> [30242] loves--it's: 4 +> [30243] lovesick: 1 +> [30244] loveth: 2 +> [30245] loving: 143 +> [30246] loving--not: 1 +> [30247] loving-kindness: 7 +> [30248] lovingkindness: 2 +> [30249] lovingly: 12 +> [30250] low: 394 +> [30251] low--could: 1 +> [30252] low--covered: 1 +> [30253] low--his: 1 +> [30254] low-bred: 2 +> [30255] low-browed: 9 +> [30256] low-crowned: 1 +> [30257] low-cut: 1 +> [30258] low-growing: 1 +> [30259] low-lying: 3 +> [30260] low-necked: 4 +> [30261] low-pitched: 11 +> [30262] low-roofed: 1 +> [30263] low-spirited: 5 +> [30264] low-toned: 1 +> [30265] lowed: 3 +> [30266] lowell: 1 +> [30267] lowenstein,[a: 1 +> [30268] lower: 231 +> [30269] lower-grade: 1 +> [30270] lowered: 58 +> [30271] lowering: 38 +> [30272] lowers: 2 +> [30273] lowest: 49 +> [30274] lowest-grade: 1 +> [30275] lowestoft: 2 +> [30276] lowing: 1 +> [30277] lowliness: 1 +> [30278] lowly: 4 +> [30279] lowness: 1 +> [30280] loyal: 15 +> [30281] loyally: 2 +> [30282] loyalty: 12 +> [30283] lozenge: 1 +> [30284] lozenges: 1 +> [30285] lt;http://www.pgdp.net/>: 1 +> [30286] lu--lu--he: 1 +> [30287] luboff: 2 +> [30288] lubomirski: 1 +> [30289] lubotchka: 2 +> [30290] lubricant: 1 +> [30291] lubricating: 3 +> [30292] lubyanka: 3 +> [30293] lucca: 3 +> [30294] lucerne: 1 +> [30295] luchon: 1 +> [30296] lucid: 2 +> [30297] lucifer: 2 +> [30298] lucifers: 2 +> [30299] luck: 85 +> [30300] luck--even: 4 +> [30301] luckily: 23 +> [30302] luckless: 20 +> [30303] lucky: 45 +> [30304] lucky!’: 1 +> [30305] lucky, [30306] lucrative: 5 +> [30307] lucre: 1 +> [30308] ludgate: 1 +> [30309] ludicrous: 24 +> [30310] ludwigovna: 10 +> [30311] luggage: 17 +> [30312] lugged: 2 +> [30313] lugubriously: 1 +> [30314] lui: 4 +> [30315] luise: 9 +> [30316] lukan: 1 +> [30317] luke: 97 +> [30318] luke's: 13 +> [30319] luke-acts: 10 +> [30320] luke[4: 1 +> [30321] luke[8: 1 +> [30322] lukewarm: 4 +> [30323] lukewarmness: 2 +> [30324] lukian: 10 +> [30325] lukianovitch: 2 +> [30326] lukianovna: 2 +> [30327] lukich: 1 +> [30328] lukitch: 15 +> [30329] lukyanov: 1 +> [30330] lull: 5 +> [30331] lullabies: 1 +> [30332] lullaby: 1 +> [30333] lumbago: 2 +> [30334] lumbago's: 1 +> [30335] lumber: 1 +> [30336] lumbered: 2 +> [30337] lumbering: 1 +> [30338] lumen: 1 +> [30339] luminary: 1 +> [30340] luminous: 13 +> [30341] lummis: 1 +> [30342] lump: 24 +> [30343] lumped: 1 +> [30344] lumps: 9 +> [30345] lunatic: 20 +> [30346] lunatic! [30347] lunatic's: 1 +> [30348] lunatic, [30349] lunatics: 3 +> [30350] lunch: 45 +> [30351] lunched: 3 +> [30352] luncheon: 4 +> [30353] lunches: 3 +> [30354] lunching: 4 +> [30355] lunge: 1 +> [30356] lunged: 3 +> [30357] lunged--lunged: 1 +> [30358] lungs: 13 +> [30359] lurch: 2 +> [30360] lurched: 6 +> [30361] lurching: 2 +> [30362] lure: 4 +> [30363] lured: 4 +> [30364] lures: 1 +> [30365] lurid: 5 +> [30366] luridly: 2 +> [30367] luring: 3 +> [30368] lurked: 3 +> [30369] lurked--as: 1 +> [30370] lurking: 11 +> [30371] lurking-place: 1 +> [30372] luscious: 1 +> [30373] lush: 3 +> [30374] lust: 13 +> [30375] lust. [30376] lust. [30377] luster: 1 +> [30378] lusterless: 2 +> [30379] lusters: 3 +> [30380] lustful: 1 +> [30381] lustily: 1 +> [30382] lustre: 4 +> [30383] lustreless: 4 +> [30384] lustres: 1 +> [30385] lustrous: 3 +> [30386] lusts: 5 +> [30387] lusty: 1 +> [30388] luther: 18 +> [30389] luther's: 3 +> [30390] lutheran: 2 +> [30391] lutherans: 1 +> [30392] luthers: 1 +> [30393] luxuriance: 1 +> [30394] luxuriant: 4 +> [30395] luxuries: 11 +> [30396] luxurious: 18 +> [30397] luxurious--dolly: 1 +> [30398] luxuriously: 3 +> [30399] luxury: 30 +> [30400] luzhin: 103 +> [30401] luzhin's: 10 +> [30402] lvi: 1 +> [30403] lvov: 16 +> [30404] lvov's: 5 +> [30405] lvova: 8 +> [30406] lvovich: 1 +> [30407] lvovitch: 4 +> [30408] lvovna: 1 +> [30409] lyadov: 2 +> [30410] lyagavy: 15 +> [30411] lyagavy's: 1 +> [30412] lyagavy [30413] lyagavy [30414] lycurgus: 2 +> [30415] lycus: 2 +> [30416] lye: 193 +> [30417] lyes: 51 +> [30418] lying: 451 +> [30419] lying! [30420] lying, [30421] lying--he: 1 +> [30422] lying--lying: 1 +> [30423] lying--one: 1 +> [30424] lying--so: 1 +> [30425] lying-in: 2 +> [30426] lying. [30427] lying? [30428] lymph: 1 +> [30429] lyons: 3 +> [30430] lyre: 1 +> [30431] lyrical: 5 +> [30432] lyubim: 1 +> [30433] là: 2 +> [30434] là-bas: 1 +> [30435] là-dedans. [30436] lässt: 1 +> [30437] l’été: 2 +> [30438] m: 603 +> [30439] m'a: 2 +> [30440] m'aimes-tu: 1 +> [30441] m'amene: 1 +> [30442] m'etre: 1 +> [30443] m'excuserez: 1 +> [30444] m--madame: 1 +> [30445] m.'s: 2 +> [30446] m.a: 2 +> [30447] m.d: 1 +> [30448] ma: 29 +> [30449] ma'am: 10 +> [30450] ma'am'selle: 1 +> [30451] ma'ch: 1 +> [30452] ma-a-de: 8 +> [30453] ma-da-gas-car: 1 +> [30454] macaroni: 1 +> [30455] macassar: 1 +> [30456] maccaroni: 1 +> [30457] macedon: 4 +> [30458] macedonia: 6 +> [30459] macedonian: 2 +> [30460] machine: 76 +> [30461] machinery: 19 +> [30462] machinery--a: 1 +> [30463] machinery--they: 1 +> [30464] machines: 12 +> [30465] macht: 1 +> [30466] mack: 20 +> [30467] mack's: 3 +> [30468] macked: 1 +> [30469] mackenzie: 1 +> [30470] mackes: 1 +> [30471] macmillan: 4 +> [30472] macédoine: 1 +> [30473] mad: 243 +> [30474] mad! [30475] mad, [30476] mad--at: 1 +> [30477] mad--for: 1 +> [30478] mad--mad: 1 +> [30479] mad--much: 1 +> [30480] mad--quite: 1 +> [30481] mad--she's: 1 +> [30482] mad-house: 1 +> [30483] mad-house! [30484] mad. [30485] mad;’: 1 +> [30486] madagascar: 2 +> [30487] madam: 80 +> [30488] madam! [30489] madam— [30490] madam, [30491] madam,”: 1 +> [30492] madam? [30493] madame: 662 +> [30494] madame's: 33 +> [30495] madame's--madame: 1 +> [30496] madame--i: 1 +> [30497] madame--if: 1 +> [30498] madame--my: 1 +> [30499] madame--the: 1 +> [30500] madams: 1 +> [30501] madcap: 7 +> [30502] madchen: 1 +> [30503] madden: 1 +> [30504] maddened: 17 +> [30505] maddened--even: 1 +> [30506] maddening: 2 +> [30507] madder: 1 +> [30508] maddest: 1 +> [30509] made: 2719 +> [30510] made—twenty-four: 1 +> [30511] made--simply: 1 +> [30512] made--they: 1 +> [30513] made? [30514] madeira: 5 +> [30515] mademoiselle: 311 +> [30516] mademoiselle's: 21 +> [30517] madere: 1 +> [30518] madest: 2 +> [30519] madhouse: 4 +> [30520] madhouses: 1 +> [30521] madly: 15 +> [30522] madly, [30523] madman: 47 +> [30524] madman's: 2 +> [30525] madman, [30526] madman--for: 1 +> [30527] madmen: 7 +> [30528] madmen, [30529] madness: 45 +> [30530] madness, [30531] madness--it: 1 +> [30532] madonna: 7 +> [30533] madonna's: 2 +> [30534] madonnas: 1 +> [30535] madrid: 3 +> [30536] madwoman: 9 +> [30537] madwomen: 1 +> [30538] maecenas: 1 +> [30539] magazine: 9 +> [30540] magazine [30541] magazines: 3 +> [30542] magazines--the: 1 +> [30543] magdalen: 1 +> [30544] magdalene: 1 +> [30545] magdalenes: 2 +> [30546] maggot: 3 +> [30547] maggots: 1 +> [30548] maggoty: 1 +> [30549] magi-cakes: 1 +> [30550] magic: 29 +> [30551] magic-lantern: 1 +> [30552] magical: 6 +> [30553] magically: 3 +> [30554] magician: 1 +> [30555] magician--for: 1 +> [30556] magician [30557] magistrate: 6 +> [30558] magistrates: 11 +> [30559] magna: 1 +> [30560] magnanimity: 24 +> [30561] magnanimous: 20 +> [30562] magnanimous--neither: 2 +> [30563] magnanimous--that: 1 +> [30564] magnanimously: 4 +> [30565] magnate: 4 +> [30566] magnates: 6 +> [30567] magnates--several: 1 +> [30568] magnesia: 4 +> [30569] magnesium: 3 +> [30570] magnet: 2 +> [30571] magnetic: 1 +> [30572] magnetism: 1 +> [30573] magnificence: 4 +> [30574] magnificent: 40 +> [30575] magnificently: 3 +> [30576] magnified: 1 +> [30577] magnify: 1 +> [30578] magnifying: 1 +> [30579] magnitski: 10 +> [30580] magnitski's: 1 +> [30581] magnitude: 5 +> [30582] magnolia: 1 +> [30583] magus: 1 +> [30584] mahogany: 10 +> [30585] mahomet: 4 +> [30586] mahomet--a: 1 +> [30587] mahommedan: 4 +> [30588] mahommedanism: 1 +> [30589] mahotin: 15 +> [30590] mahotin's: 4 +> [30591] maid: 144 +> [30592] maid's: 8 +> [30593] maid--who: 1 +> [30594] maid-of-all-work: 1 +> [30595] maid-servant: 5 +> [30596] maid-servants: 2 +> [30597] maiden: 20 +> [30598] maiden!--will: 1 +> [30599] maiden's: 5 +> [30600] maiden-blush-roses: 1 +> [30601] maidenhood: 2 +> [30602] maidenly: 3 +> [30603] maidens: 1 +> [30604] maids: 50 +> [30605] maidservant: 6 +> [30606] maidservants: 5 +> [30607] mail: 8 +> [30608] mail-phaeton: 1 +> [30609] mails: 2 +> [30610] maim: 2 +> [30611] maimed: 3 +> [30612] main: 98 +> [30613] mainland: 1 +> [30614] mainly: 24 +> [30615] mainspring: 4 +> [30616] mainstay: 2 +> [30617] maintain: 71 +> [30618] maintained: 83 +> [30619] maintaining: 42 +> [30620] maintains: 7 +> [30621] maintenance: 8 +> [30622] maire: 7 +> [30623] mais: 17 +> [30624] maison: 3 +> [30625] maistre: 1 +> [30626] maitre: 1 +> [30627] maitresse-femme: 1 +> [30628] maize: 3 +> [30629] majestic: 31 +> [30630] majestically: 12 +> [30631] majesties: 1 +> [30632] majesty: 86 +> [30633] majesty's: 14 +> [30634] majesty--to: 1 +> [30635] majolica: 1 +> [30636] major: 48 +> [30637] major's: 2 +> [30638] major--married: 1 +> [30639] major-domo: 13 +> [30640] major-general: 1 +> [30641] majorem: 1 +> [30642] majorities: 1 +> [30643] majority: 64 +> [30644] mak...mak...i: 1 +> [30645] makar: 19 +> [30646] makarin: 8 +> [30647] makarka: 2 +> [30648] makarov: 1 +> [30649] makarovitch: 17 +> [30650] makarovitch! [30651] makarovitch's: 2 +> [30652] makarovitch, [30653] makarovna: 3 +> [30654] make: 1989 +> [30655] make-believes: 1 +> [30656] make? [30657] makeev: 4 +> [30658] maker: 1 +> [30659] maker's: 1 +> [30660] maker--how: 1 +> [30661] makers: 4 +> [30662] makes: 287 +> [30663] makeshifts: 1 +> [30664] makest: 1 +> [30665] maketh: 2 +> [30666] making: 731 +> [30667] making.... [30668] maksim: 1 +> [30669] mal: 5 +> [30670] mala: 1 +> [30671] malabar: 1 +> [30672] malachite: 1 +> [30673] maladies: 2 +> [30674] malady: 12 +> [30675] malady,--of: 1 +> [30676] malady--a: 1 +> [30677] malakhov: 1 +> [30678] malapert: 1 +> [30679] malasha: 6 +> [30680] malasha's: 1 +> [30681] malaya: 1 +> [30682] malbrook: 1 +> [30683] malcontent: 1 +> [30684] male: 17 +> [30685] malediction: 4 +> [30686] malevolence: 6 +> [30687] malevolent: 7 +> [30688] malevolently: 2 +> [30689] malgre: 1 +> [30690] malgré: 1 +> [30691] malheureux: 1 +> [30692] malice: 34 +> [30693] malice--that's: 1 +> [30694] malice--you: 1 +> [30695] malice. [30696] malicious: 31 +> [30697] malicious--smile: 1 +> [30698] maliciously: 14 +> [30699] malign: 1 +> [30700] malignance: 1 +> [30701] malignancy: 5 +> [30702] malignant: 38 +> [30703] malignantly: 16 +> [30704] malignantly--"such: 1 +> [30705] maligning: 1 +> [30706] malignity: 1 +> [30707] malingering: 1 +> [30708] mall: 1 +> [30709] malleable: 1 +> [30710] mallet: 2 +> [30711] mallets: 2 +> [30712] malnutrition: 1 +> [30713] malo: 1 +> [30714] malo-yaroslavets: 8 +> [30715] malo?_--no: 1 +> [30716] malodorous: 1 +> [30717] malt: 2 +> [30718] malta: 2 +> [30719] malthus: 4 +> [30720] malthus's: 1 +> [30721] maltishtcheva: 2 +> [30722] maltreating: 1 +> [30723] maltster: 4 +> [30724] maltzan: 1 +> [30725] malvern: 1 +> [30726] malvinas: 1 +> [30727] malvinsky: 1 +> [30728] malvintseva: 7 +> [30729] mama: 1 +> [30730] maman: 20 +> [30731] maman's: 3 +> [30732] maman. [30733] mameluke: 1 +> [30734] mamma: 250 +> [30735] mamma! [30736] mamma—well: 1 +> [30737] mamma's: 14 +> [30738] mamma, [30739] mamma--what: 1 +> [30740] mamma. [30741] mamma? [30742] mammas: 3 +> [30743] mammy: 2 +> [30744] mamonov: 1 +> [30745] mamonov's: 6 +> [30746] mamonova: 1 +> [30747] mamontov: 1 +> [30748] mamsel: 1 +> [30749] man: 5325 +> [30750] man!"--this: 1 +> [30751] man!'--_tout: 1 +> [30752] man! [30753] man!—who: 1 +> [30754] man"--"that: 1 +> [30755] man—if: 1 +> [30756] man—in: 1 +> [30757] man—one: 1 +> [30758] man—some: 1 +> [30759] man—that's: 1 +> [30760] man—the: 1 +> [30761] man—there's: 1 +> [30762] man's: 347 +> [30763] man's, [30764] man's--"my: 1 +> [30765] man,--that: 1 +> [30766] man, [30767] man, [30768] man,’: 3 +> [30769] man--"think: 1 +> [30770] man--a: 7 +> [30771] man--all: 1 +> [30772] man--am: 1 +> [30773] man--and: 5 +> [30774] man--emphatically--in: 1 +> [30775] man--felt: 1 +> [30776] man--he: 1 +> [30777] man--his: 1 +> [30778] man--if: 1 +> [30779] man--in: 2 +> [30780] man--into: 1 +> [30781] man--may: 1 +> [30782] man--napoleon--to: 1 +> [30783] man--not: 3 +> [30784] man--one: 1 +> [30785] man--peter: 1 +> [30786] man--seem: 1 +> [30787] man--selfish: 1 +> [30788] man--surely: 1 +> [30789] man--that: 2 +> [30790] man--the: 4 +> [30791] man--this: 1 +> [30792] man--timokhin--was: 1 +> [30793] man--unemphatically--in: 1 +> [30794] man--was: 1 +> [30795] man--which: 1 +> [30796] man--who: 1 +> [30797] man--you: 1 +> [30798] man--your: 1 +> [30799] man-cook: 1 +> [30800] man-god: 3 +> [30801] man-made: 1 +> [30802] man-servant: 9 +> [30803] man.... [30804] man. [30805] man.’: 2 +> [30806] man.”: 1 +> [30807] man [30808] man [30809] man? [30810] man[oe]uvre: 2 +> [30811] manage: 73 +> [30812] manageable: 1 +> [30813] managed: 124 +> [30814] managed--baldwin: 1 +> [30815] management: 30 +> [30816] manager: 11 +> [30817] manager's: 1 +> [30818] manages: 3 +> [30819] managing: 11 +> [30820] manant: 1 +> [30821] manche: 1 +> [30822] manchester: 22 +> [30823] mandate: 2 +> [30824] mandates: 1 +> [30825] mandolin: 1 +> [30826] mandrakes: 1 +> [30827] mane: 17 +> [30828] mane--which: 1 +> [30829] manes: 3 +> [30830] maneuver: 5 +> [30831] maneuvered: 2 +> [30832] maneuvers: 20 +> [30833] manfred: 3 +> [30834] manfully: 4 +> [30835] manganese: 4 +> [30836] manger: 6 +> [30837] mangle: 1 +> [30838] mangled: 3 +> [30839] mangot: 1 +> [30840] mangy: 7 +> [30841] manhood: 9 +> [30842] manhood--when: 1 +> [30843] manhood’s: 1 +> [30844] mania: 7 +> [30845] maniac: 5 +> [30846] maniac's: 1 +> [30847] maniacal: 1 +> [30848] maniacs: 1 +> [30849] manifessto: 1 +> [30850] manifest: 20 +> [30851] manifestation: 39 +> [30852] manifestations: 12 +> [30853] manifested: 9 +> [30854] manifesting: 1 +> [30855] manifestly: 8 +> [30856] manifesto: 12 +> [30857] manifesto--the: 1 +> [30858] manifold: 2 +> [30859] manifold.”: 1 +> [30860] manikin: 1 +> [30861] manikin's: 1 +> [30862] manipulates: 1 +> [30863] manipulation: 4 +> [30864] mankind: 110 +> [30865] mankind--then: 1 +> [30866] mankind? [30867] manlier: 1 +> [30868] manly: 37 +> [30869] manly-looking: 1 +> [30870] mann: 1 +> [30871] manna: 1 +> [30872] manned: 1 +> [30873] manner: 315 +> [30874] manner!--she: 1 +> [30875] manner!”: 1 +> [30876] manner--_grande: 1 +> [30877] manner--the: 1 +> [30878] mannered: 1 +> [30879] manners: 96 +> [30880] manners,”: 1 +> [30881] manners. [30882] mannite: 1 +> [30883] manoeuvre: 3 +> [30884] manoeuvres: 4 +> [30885] manon: 1 +> [30886] manor: 2 +> [30887] manor-house--the: 1 +> [30888] manor-houses: 2 +> [30889] manorial: 3 +> [30890] manque: 1 +> [30891] manservant: 6 +> [30892] manservant's: 1 +> [30893] mansfeld: 1 +> [30894] mansion: 13 +> [30895] mansions: 2 +> [30896] mantel: 3 +> [30897] mantel-pieces: 1 +> [30898] mantel-shelf: 4 +> [30899] mantelpiece: 2 +> [30900] mantilla: 3 +> [30901] mantilla--not: 1 +> [30902] mantle: 20 +> [30903] mantles: 1 +> [30904] manual: 16 +> [30905] manuals: 2 +> [30906] manufactories.”: 1 +> [30907] manufacture: 73 +> [30908] manufactured: 15 +> [30909] manufacturer: 23 +> [30910] manufacturers: 9 +> [30911] manufactures: 2 +> [30912] manufacturing: 15 +> [30913] manumitted: 1 +> [30914] manure: 19 +> [30915] manure-stained: 2 +> [30916] manured: 1 +> [30917] manures: 1 +> [30918] manuring: 1 +> [30919] manuscript: 19 +> [30920] manuscript--his: 1 +> [30921] manuscripts: 10 +> [30922] many: 1285 +> [30923] many"--and: 1 +> [30924] many's: 1 +> [30925] many--and: 1 +> [30926] many--leaned: 1 +> [30927] many--that: 1 +> [30928] many-coloured: 5 +> [30929] many-hued: 1 +> [30930] many-limbed: 1 +> [30931] many-sidedness: 10 +> [30932] many-stalled: 1 +> [30933] man’s: 18 +> [30934] map: 20 +> [30935] maple: 1 +> [30936] maples: 1 +> [30937] mapped: 1 +> [30938] mapping: 2 +> [30939] mapping>-- [30940] mapping>... [30941] maps: 5 +> [30942] mar: 8 +> [30943] marais: 3 +> [30944] marat: 2 +> [30945] maraude: 1 +> [30946] marauder: 3 +> [30947] marauders: 9 +> [30948] marauding: 3 +> [30949] marble: 25 +> [30950] marbled: 2 +> [30951] marc: 5 +> [30952] marceau: 1 +> [30953] march: 117 +> [30954] march! [30955] march--note: 1 +> [30956] marche: 1 +> [30957] marched: 41 +> [30958] marched--napoleon: 1 +> [30959] marches: 10 +> [30960] marching: 31 +> [30961] marcion: 7 +> [30962] marcion's: 4 +> [30963] marcionite: 1 +> [30964] mare: 76 +> [30965] mare's: 9 +> [30966] marechaux: 1 +> [30967] marengo: 1 +> [30968] marfa: 139 +> [30969] marfa! [30970] marfa's: 1 +> [30971] margaric: 1 +> [30972] margaux: 1 +> [30973] margin: 1 +> [30974] margin-left: 1 +> [30975] margins: 1 +> [30976] margot: 10 +> [30977] mari: 1 +> [30978] maria: 7 +> [30979] marianna: 1 +> [30980] marie: 49 +> [30981] marie's: 3 +> [30982] marie-louise: 1 +> [30983] marie [30984] mariette: 3 +> [30985] marignac: 2 +> [30986] marignac's: 4 +> [30987] marignacs: 1 +> [30988] marin's: 1 +> [30989] marina: 1 +> [30990] marine: 8 +> [30991] marines: 1 +> [30992] marion: 1 +> [30993] mark: 226 +> [30994] mark—n-nothing: 1 +> [30995] mark's: 18 +> [30996] markan: 3 +> [30997] marked: 142 +> [30998] marked--greater: 1 +> [30999] markedly: 4 +> [31000] markel: 4 +> [31001] marker: 8 +> [31002] market: 72 +> [31003] market! [31004] market, [31005] market-baskets: 1 +> [31006] market-cross: 1 +> [31007] market-day: 4 +> [31008] market-peart: 3 +> [31009] market-place: 34 +> [31010] market-place, [31011] market-place--two: 1 +> [31012] market-place. [31013] market-place? [31014] marketable: 1 +> [31015] marketing: 3 +> [31016] markets: 5 +> [31017] marking: 5 +> [31018] markings: 1 +> [31019] markov: 7 +> [31020] markovna: 1 +> [31021] marks: 33 +> [31022] marks.’: 1 +> [31023] marlborough: 3 +> [31024] marlin-spike: 1 +> [31025] marmalade: 1 +> [31026] marmeladov: 36 +> [31027] marmeladov's: 4 +> [31028] marmeladov--such: 1 +> [31029] marmeladovs: 1 +> [31030] marmot: 2 +> [31031] maro: 1 +> [31032] maroon: 3 +> [31033] marquis: 60 +> [31034] marquis's: 3 +> [31035] marquise: 15 +> [31036] marquise--who: 1 +> [31037] marred: 3 +> [31038] marriage: 257 +> [31039] marriage! [31040] marriage,”: 1 +> [31041] marriage--albeit: 1 +> [31042] marriage--did: 1 +> [31043] marriage--for: 1 +> [31044] marriage--khvostikov: 1 +> [31045] marriage--when: 1 +> [31046] marriage-contract: 1 +> [31047] marriage-day: 2 +> [31048] marriage. [31049] marriageable: 3 +> [31050] marriages: 15 +> [31051] marriages--dounia: 1 +> [31052] married: 406 +> [31053] married--as: 1 +> [31054] married--to: 1 +> [31055] married. [31056] married? [31057] marries: 7 +> [31058] marrow: 3 +> [31059] marrow-bones: 1 +> [31060] marry: 328 +> [31061] marry--he: 1 +> [31062] marry. [31063] marrying: 69 +> [31064] marrying--if: 1 +> [31065] mars: 3 +> [31066] marsac: 1 +> [31067] marsh: 61 +> [31068] marsh-marigolds: 1 +> [31069] marshal: 105 +> [31070] marshal's: 14 +> [31071] marshaled: 1 +> [31072] marshalled: 1 +> [31073] marshalling: 1 +> [31074] marshalls: 1 +> [31075] marshals: 34 +> [31076] marshals--and: 1 +> [31077] marshalship: 1 +> [31078] marshes: 7 +> [31079] marshy: 1 +> [31080] martha: 14 +> [31081] martha's: 1 +> [31082] martial: 7 +> [31083] martin: 57 +> [31084] martin's: 21 +> [31085] martin--when: 1 +> [31086] martin-de-bouchage: 2 +> [31087] martinbault: 7 +> [31088] martinists: 1 +> [31089] martyr: 18 +> [31090] martyr's: 4 +> [31091] martyr--what: 1 +> [31092] martyr-apostles: 1 +> [31093] martyr. [31094] martyrdom: 27 +> [31095] martyrdoms: 1 +> [31096] martyred: 2 +> [31097] martyrlike: 1 +> [31098] martyrs: 10 +> [31099] marvel: 16 +> [31100] marveled: 6 +> [31101] marveling: 3 +> [31102] marvelled: 11 +> [31103] marvelling: 1 +> [31104] marvellous: 23 +> [31105] marvellously: 2 +> [31106] marvelous: 34 +> [31107] marvelous—your: 1 +> [31108] marvelously: 3 +> [31109] marvels: 7 +> [31110] marvels. [31111] mary: 1002 +> [31112] mary"--she: 1 +> [31113] mary'--out: 1 +> [31114] mary's: 88 +> [31115] mary--"haven't: 1 +> [31116] mary--reluctantly: 1 +> [31117] mary--the: 1 +> [31118] mary--who: 1 +> [31119] marya: 219 +> [31120] marya, [31121] masculine: 18 +> [31122] masculine--hands: 1 +> [31123] mash: 3 +> [31124] masha: 28 +> [31125] masha's: 2 +> [31126] mashenka: 5 +> [31127] mashka: 1 +> [31128] mashka's: 2 +> [31129] mashkin: 5 +> [31130] mask: 28 +> [31131] mask--there's: 1 +> [31132] masked: 11 +> [31133] masks: 2 +> [31134] maslov--that: 1 +> [31135] maslovs: 3 +> [31136] mason: 23 +> [31137] mason's: 3 +> [31138] masonic: 18 +> [31139] masonry: 2 +> [31140] masons: 10 +> [31141] masque: 1 +> [31142] masquerade: 6 +> [31143] mass: 203 +> [31144] mass--the: 1 +> [31145] mass--to: 1 +> [31146] massacre: 5 +> [31147] massacred: 5 +> [31148] massacres: 1 +> [31149] masse: 3 +> [31150] massed: 2 +> [31151] masses: 55 +> [31152] massive: 17 +> [31153] massiveness: 1 +> [31154] mast: 1 +> [31155] mastakovitch: 67 +> [31156] mastakovitch's: 8 +> [31157] mastakovitch--and: 1 +> [31158] master: 724 +> [31159] master! [31160] master'll: 1 +> [31161] master's: 72 +> [31162] master--may: 1 +> [31163] master--you: 1 +> [31164] master. [31165] master? [31166] mastered: 11 +> [31167] masterful: 7 +> [31168] masterfully: 1 +> [31169] masterfulness: 3 +> [31170] mastering: 7 +> [31171] masterly: 8 +> [31172] masterpiece: 1 +> [31173] masters: 43 +> [31174] masters—far: 1 +> [31175] masters—that's: 1 +> [31176] masters--lacking: 1 +> [31177] masters--prince: 1 +> [31178] masters.”: 1 +> [31179] masterstroke: 1 +> [31180] mastery: 16 +> [31181] master”: 1 +> [31182] masticate: 1 +> [31183] masticators: 1 +> [31184] mastiff: 5 +> [31185] mastiff, [31186] masts: 3 +> [31187] mat: 3 +> [31188] match: 77 +> [31189] match--and: 1 +> [31190] match--blushed: 1 +> [31191] match-making: 3 +> [31192] matchbox: 1 +> [31193] matchboxes: 1 +> [31194] matched: 10 +> [31195] matches: 20 +> [31196] matchless: 3 +> [31197] matchmaker: 2 +> [31198] matchmaking: 5 +> [31199] mate: 4 +> [31200] mated: 2 +> [31201] mater: 1 +> [31202] material: 152 +> [31203] material--a: 1 +> [31204] materialism: 1 +> [31205] materialist: 2 +> [31206] materialistic: 3 +> [31207] materialists: 4 +> [31208] materialists—and: 1 +> [31209] materially: 9 +> [31210] materials: 38 +> [31211] maternal: 7 +> [31212] maters: 1 +> [31213] mates: 8 +> [31214] mathematical: 20 +> [31215] mathematically: 8 +> [31216] mathematician: 2 +> [31217] mathematics: 21 +> [31218] mathilde: 1 +> [31219] matieres: 1 +> [31220] matin: 1 +> [31221] matins: 2 +> [31222] matinée: 1 +> [31223] matinées: 1 +> [31224] matrena: 7 +> [31225] matrena's: 1 +> [31226] matreona: 1 +> [31227] matreshka: 1 +> [31228] matrevna: 1 +> [31229] matrimonial: 3 +> [31230] matrimony: 7 +> [31231] matrona: 19 +> [31232] matrons: 1 +> [31233] matryona: 3 +> [31234] mats: 1 +> [31235] matt: 22 +> [31236] matted: 6 +> [31237] mattei: 1 +> [31238] matter: 1048 +> [31239] matter! [31240] matter's: 1 +> [31241] matter, [31242] matter,”: 1 +> [31243] matter--and: 1 +> [31244] matter--are: 1 +> [31245] matter--do: 1 +> [31246] matter--has: 1 +> [31247] matter--some: 1 +> [31248] matter--something: 1 +> [31249] matter--that's: 1 +> [31250] matter--what: 1 +> [31251] matter-of-fact: 8 +> [31252] matter-of-factish: 2 +> [31253] matter..."--without: 1 +> [31254] matter. [31255] matter.[26: 1 +> [31256] matter.[29: 1 +> [31257] matter?--prince: 1 +> [31258] matter? [31259] matter[27: 1 +> [31260] mattered: 8 +> [31261] matters: 227 +> [31262] matters--don't: 1 +> [31263] matters. [31264] matthew: 94 +> [31265] matthew's: 8 +> [31266] matthew[17: 1 +> [31267] matthewson: 1 +> [31268] matthÆan: 2 +> [31269] matthæan: 12 +> [31270] matting: 2 +> [31271] mattock: 1 +> [31272] mattress: 36 +> [31273] mattresses: 2 +> [31274] mattrossky: 1 +> [31275] mature: 3 +> [31276] matured: 4 +> [31277] maturer: 1 +> [31278] maturity: 3 +> [31279] matveevs: 1 +> [31280] matveich: 3 +> [31281] matvevna: 4 +> [31282] matvevna's: 1 +> [31283] matvey: 30 +> [31284] matvey. [31285] matvey? [31286] matveyev: 3 +> [31287] matveyevitch: 2 +> [31288] maude: 6 +> [31289] maudlin: 1 +> [31290] maumené: 1 +> [31291] maurice: 3 +> [31292] mautern: 1 +> [31293] mauvais: 1 +> [31294] mauvaise: 2 +> [31295] mavra: 38 +> [31296] mavriky: 11 +> [31297] mavrikyevitch: 11 +> [31298] mavrushka: 2 +> [31299] maw: 1 +> [31300] mawkish: 4 +> [31301] mawkishly: 1 +> [31302] maxim: 3 +> [31303] maximitch: 1 +> [31304] maximov: 62 +> [31305] maximov. [31306] maxims: 2 +> [31307] maximum: 22 +> [31308] maximushka: 3 +> [31309] maximushka's: 1 +> [31310] may: 2866 +> [31311] may— [31312] may—whatever: 1 +> [31313] may, [31314] may--i: 1 +> [31315] may--then: 1 +> [31316] may-day: 1 +> [31317] maybe: 136 +> [31318] maybe--well: 1 +> [31319] mayest: 4 +> [31320] mayn't: 6 +> [31321] mayonnaise: 2 +> [31322] mayor: 34 +> [31323] mayor's: 3 +> [31324] mayors: 2 +> [31325] maypole: 10 +> [31326] mazankov: 1 +> [31327] mazarin: 1 +> [31328] mazarin's: 1 +> [31329] maze: 4 +> [31330] mazed: 1 +> [31331] mazily: 1 +> [31332] mazurka: 28 +> [31333] mazuwka: 1 +> [31334] maître: 1 +> [31335] mcgiffert: 1 +> [31336] mcilhiney: 1 +> [31337] mclaughlin: 1 +> [31338] mcmvi: 1 +> [31339] md: 1 +> [31340] mdash;&mdash: 1 +> [31341] me: 12154 +> [31342] me!--and: 1 +> [31343] me!--that's: 1 +> [31344] me!... [31345] me!...i: 1 +> [31346] me! [31347] me! [31348] me! [31349] me— [31350] me—whether: 1 +> [31351] me—but: 1 +> [31352] me—from: 1 +> [31353] me—he: 2 +> [31354] me—hunger: 1 +> [31355] me—i: 1 +> [31356] me—me: 1 +> [31357] me—not: 1 +> [31358] me—one: 1 +> [31359] me—that's: 2 +> [31360] me—what: 1 +> [31361] me's: 1 +> [31362] me), [31363] me)--would: 3 +> [31364] me,--and: 1 +> [31365] me,--rather: 1 +> [31366] me, [31367] me,”: 1 +> [31368] me,”--open: 1 +> [31369] me--'mean: 1 +> [31370] me--a: 1 +> [31371] me--afraid: 1 +> [31372] me--all: 1 +> [31373] me--an: 1 +> [31374] me--and: 8 +> [31375] me--as: 3 +> [31376] me--at: 1 +> [31377] me--ay: 1 +> [31378] me--but: 3 +> [31379] me--call: 1 +> [31380] me--called: 1 +> [31381] me--denisov: 1 +> [31382] me--do: 2 +> [31383] me--don't: 2 +> [31384] me--eh: 1 +> [31385] me--enough: 1 +> [31386] me--ever: 1 +> [31387] me--everyone: 2 +> [31388] me--except: 1 +> [31389] me--father: 1 +> [31390] me--fit: 1 +> [31391] me--for: 2 +> [31392] me--god: 1 +> [31393] me--haranguing: 1 +> [31394] me--he: 3 +> [31395] me--his: 1 +> [31396] me--how: 2 +> [31397] me--i: 16 +> [31398] me--i'm: 2 +> [31399] me--if: 5 +> [31400] me--in: 2 +> [31401] me--is: 2 +> [31402] me--killed: 1 +> [31403] me--lay: 1 +> [31404] me--left: 1 +> [31405] me--make: 1 +> [31406] me--mistress: 1 +> [31407] me--my: 2 +> [31408] me--not: 5 +> [31409] me--of: 1 +> [31410] me--oh: 1 +> [31411] me--one: 1 +> [31412] me--only: 2 +> [31413] me--or: 1 +> [31414] me--osip: 1 +> [31415] me--she: 2 +> [31416] me--simply: 1 +> [31417] me--so: 2 +> [31418] me--thanks: 1 +> [31419] me--that: 2 +> [31420] me--that's: 3 +> [31421] me--the: 3 +> [31422] me--then: 1 +> [31423] me--there: 1 +> [31424] me--there--that's: 1 +> [31425] me--they: 1 +> [31426] me--they're: 1 +> [31427] me--though: 1 +> [31428] me--to: 2 +> [31429] me--to-morrow: 1 +> [31430] me--too: 1 +> [31431] me--two: 1 +> [31432] me--wait: 1 +> [31433] me--well: 3 +> [31434] me--what: 4 +> [31435] me--what's: 1 +> [31436] me--when: 2 +> [31437] me--who: 1 +> [31438] me--would: 1 +> [31439] me--yet: 2 +> [31440] me--your: 1 +> [31441] me-r-r-y: 1 +> [31442] me.... [31443] me.... [31444] me... [31445] me...and: 1 +> [31446] me...does: 1 +> [31447] me...my: 1 +> [31448] me. [31449] me. [31450] me.’: 2 +> [31451] me.”: 1 +> [31452] me;--nor: 1 +> [31453] me [31454] me—mitya: 1 +> [31455] me—some: 1 +> [31456] me?"--said: 1 +> [31457] me?...no: 1 +> [31458] me?...not: 1 +> [31459] me? [31460] mea: 4 +> [31461] mead: 4 +> [31462] meadow: 51 +> [31463] meadow--all: 1 +> [31464] meadow-sweet: 2 +> [31465] meadowland: 1 +> [31466] meadows: 31 +> [31467] meadows, [31468] meadowsweet: 1 +> [31469] meager: 3 +> [31470] meagre: 10 +> [31471] meal: 46 +> [31472] meal-sack: 1 +> [31473] meal-times: 1 +> [31474] meals: 18 +> [31475] mean: 677 +> [31476] mean—mitya? [31477] mean—silly: 1 +> [31478] mean, [31479] mean--'prick: 1 +> [31480] mean--applaud: 1 +> [31481] mean--have: 1 +> [31482] mean--he: 1 +> [31483] mean--i: 1 +> [31484] mean--or: 1 +> [31485] mean--paid: 1 +> [31486] mean--the: 1 +> [31487] mean--time: 1 +> [31488] mean--what: 1 +> [31489] mean--you: 1 +> [31490] mean-looking: 3 +> [31491] mean-time: 1 +> [31492] mean...what: 1 +> [31493] mean. [31494] mean?--and: 1 +> [31495] mean? [31496] meaner: 2 +> [31497] meanest: 10 +> [31498] meaning: 319 +> [31499] meaning—the: 1 +> [31500] meaning--“whatever: 1 +> [31501] meaningful: 2 +> [31502] meaningless: 29 +> [31503] meaninglessly: 1 +> [31504] meaningly: 2 +> [31505] meanings: 2 +> [31506] meanly: 4 +> [31507] meanness: 24 +> [31508] meanness! [31509] meanness--he: 1 +> [31510] meanness--i've: 1 +> [31511] meanness? [31512] meannesses: 1 +> [31513] means: 582 +> [31514] means--death: 1 +> [31515] means--that: 1 +> [31516] means--they: 1 +> [31517] meant: 466 +> [31518] meant--to: 1 +> [31519] meant...it: 1 +> [31520] meant. [31521] meantime: 47 +> [31522] meanwhile: 163 +> [31523] meanwhile--real: 1 +> [31524] measure: 72 +> [31525] measure? [31526] measured: 39 +> [31527] measureless: 1 +> [31528] measurement: 1 +> [31529] measures: 51 +> [31530] measures--the: 1 +> [31531] measuring: 16 +> [31532] meat: 40 +> [31533] meat's: 1 +> [31534] meat-pies: 1 +> [31535] meats: 18 +> [31536] mechanical: 15 +> [31537] mechanical!—or: 1 +> [31538] mechanically: 76 +> [31539] mechanically--walked: 1 +> [31540] mechanician: 4 +> [31541] mechanics: 5 +> [31542] mechanism: 9 +> [31543] meche: 1 +> [31544] mecklenburgers: 1 +> [31545] medal: 8 +> [31546] medals: 7 +> [31547] meddle: 11 +> [31548] meddled: 5 +> [31549] meddler: 1 +> [31550] meddles: 1 +> [31551] meddlesome: 1 +> [31552] meddling: 10 +> [31553] medes: 1 +> [31554] mediaeval: 4 +> [31555] mediaevalism: 1 +> [31556] medias: 2 +> [31557] mediation: 2 +> [31558] mediator: 3 +> [31559] medical: 35 +> [31560] medicant: 1 +> [31561] medicants: 1 +> [31562] medicated: 4 +> [31563] medicating: 2 +> [31564] medication: 1 +> [31565] medici's: 1 +> [31566] medicinal: 17 +> [31567] medicine: 48 +> [31568] medicine! [31569] medicine's: 1 +> [31570] medicine--but: 1 +> [31571] medicine--not: 1 +> [31572] medicine--what: 1 +> [31573] medicines: 5 +> [31574] medicines--a: 1 +> [31575] medieval: 2 +> [31576] meditate: 4 +> [31577] meditated: 8 +> [31578] meditating: 10 +> [31579] meditation: 12 +> [31580] meditations: 6 +> [31581] meditative: 2 +> [31582] meditatively: 4 +> [31583] medium: 118 +> [31584] medium-sized: 4 +> [31585] mediæval: 3 +> [31586] medley: 5 +> [31587] medvedev: 1 +> [31588] medyn: 1 +> [31589] meed: 1 +> [31590] meek: 29 +> [31591] meek-looking: 1 +> [31592] meekest: 1 +> [31593] meekly: 23 +> [31594] meekness: 12 +> [31595] meershaum: 1 +> [31596] meet: 522 +> [31597] meeting: 392 +> [31598] meeting--he: 1 +> [31599] meeting--it: 1 +> [31600] meeting--nicholas: 1 +> [31601] meeting-house: 1 +> [31602] meeting-place: 4 +> [31603] meeting.— [31604] meeting. [31605] meetings: 38 +> [31606] meets: 12 +> [31607] meets? [31608] megiddo: 1 +> [31609] mehr: 2 +> [31610] mei: 1 +> [31611] meidel: 1 +> [31612] mein: 1 +> [31613] meine: 1 +> [31614] meinen: 1 +> [31615] melan: 19 +> [31616] melancholie: 1 +> [31617] melancholy: 90 +> [31618] melancholy,--his: 1 +> [31619] melbourne: 1 +> [31620] melchizedek: 1 +> [31621] mele: 1 +> [31622] meledinsky--you: 1 +> [31623] melissic: 1 +> [31624] melito: 4 +> [31625] melk: 1 +> [31626] mellow: 4 +> [31627] melodies: 1 +> [31628] melodious: 1 +> [31629] melodiously: 1 +> [31630] melodramatic: 1 +> [31631] melodramatically: 1 +> [31632] melody: 4 +> [31633] melon's: 1 +> [31634] melt: 22 +> [31635] melted: 43 +> [31636] melteth: 1 +> [31637] melting: 70 +> [31638] melting-out: 1 +> [31639] melting-point: 4 +> [31640] melts: 2 +> [31641] melyukov: 2 +> [31642] melyukova: 2 +> [31643] melyukovka: 4 +> [31644] melyukovs: 7 +> [31645] member: 71 +> [31646] member's: 4 +> [31647] members: 111 +> [31648] members. [31649] membership: 1 +> [31650] meme: 1 +> [31651] memento: 1 +> [31652] memnon: 1 +> [31653] memoirs: 15 +> [31654] memorabilia: 4 +> [31655] memorable: 13 +> [31656] memorandum: 9 +> [31657] memorial: 4 +> [31658] memories: 98 +> [31659] memories--and: 1 +> [31660] memory: 191 +> [31661] memory's: 1 +> [31662] memory--but: 1 +> [31663] memory--in: 1 +> [31664] memory--when: 1 +> [31665] memory--whether: 1 +> [31666] memory. [31667] men: 1988 +> [31668] men!)--would: 1 +> [31669] men—but: 1 +> [31670] men—somewhat: 1 +> [31671] men's: 75 +> [31672] men, [31673] men--all: 1 +> [31674] men--and: 2 +> [31675] men--as: 1 +> [31676] men--had: 1 +> [31677] men--he: 2 +> [31678] men--her: 1 +> [31679] men--men: 6 +> [31680] men--more: 1 +> [31681] men--my: 1 +> [31682] men--now: 1 +> [31683] men--peels: 1 +> [31684] men--should: 1 +> [31685] men--some: 1 +> [31686] men--tact: 1 +> [31687] men--that: 2 +> [31688] men--the: 3 +> [31689] men--there: 1 +> [31690] men--who: 1 +> [31691] men--would: 1 +> [31692] men-servants: 1 +> [31693] men. [31694] men;--they: 1 +> [31695] men? [31696] menace: 21 +> [31697] menaced: 8 +> [31698] menacing: 32 +> [31699] menacingly: 11 +> [31700] menage: 1 +> [31701] mend: 14 +> [31702] mendacious: 1 +> [31703] mended: 11 +> [31704] mending: 8 +> [31705] mends: 1 +> [31706] menelaus: 1 +> [31707] menhaden: 2 +> [31708] menial: 1 +> [31709] menials: 1 +> [31710] meniscus: 1 +> [31711] menservants: 2 +> [31712] ment: 1 +> [31713] mental: 90 +> [31714] mentality: 1 +> [31715] mentally: 36 +> [31716] mentally--remained: 1 +> [31717] mentes: 1 +> [31718] mention: 123 +> [31719] mention--brought: 1 +> [31720] mentioned: 151 +> [31721] mentioning: 20 +> [31722] mentions: 2 +> [31723] mentone: 1 +> [31724] mentor: 1 +> [31725] menu: 2 +> [31726] menus: 1 +> [31727] menzies: 1 +> [31728] men’s: 3 +> [31729] mephistopheles: 2 +> [31730] mer: 1 +> [31731] mercenary: 2 +> [31732] merchandise: 1 +> [31733] merchant: 81 +> [31734] merchant's: 16 +> [31735] merchant-class--les: 1 +> [31736] merchantibility: 19 +> [31737] merchants: 27 +> [31738] merci: 4 +> [31739] mercies: 4 +> [31740] merciful: 31 +> [31741] merciful...thanks: 1 +> [31742] merciful. [31743] mercifully: 1 +> [31744] merciless: 21 +> [31745] mercilessly: 8 +> [31746] mercuric: 1 +> [31747] mercury: 13 +> [31748] mercury.[25: 1 +> [31749] mercy: 153 +> [31750] mercy's: 11 +> [31751] mercy, [31752] mercy--at: 1 +> [31753] mercy [31754] mere: 214 +> [31755] merely: 391 +> [31756] merest: 4 +> [31757] merge: 2 +> [31758] merged: 19 +> [31759] merges: 1 +> [31760] merging: 6 +> [31761] meridian: 1 +> [31762] merit: 42 +> [31763] merit"--this: 1 +> [31764] merite: 1 +> [31765] merited: 1 +> [31766] merits: 12 +> [31767] merkalova: 11 +> [31768] merkalova's: 1 +> [31769] merrier: 3 +> [31770] merriest: 7 +> [31771] merrily: 48 +> [31772] merriment: 24 +> [31773] merriness: 1 +> [31774] merry: 112 +> [31775] merry--to: 1 +> [31776] merry-making: 3 +> [31777] merry-makings: 1 +> [31778] merrymaking: 4 +> [31779] mertsalova: 1 +> [31780] merveille.*(2: 1 +> [31781] merveilles: 1 +> [31782] mes: 2 +> [31783] mesalliance: 1 +> [31784] mesdames: 4 +> [31785] mesh: 3 +> [31786] meshchanski: 1 +> [31787] meshcherski: 2 +> [31788] meshes: 2 +> [31789] meshkov: 1 +> [31790] meshwork: 1 +> [31791] mesmerizer: 1 +> [31792] mesnil--two: 1 +> [31793] mesopotamia: 1 +> [31794] mess: 23 +> [31795] mess-table: 1 +> [31796] message: 107 +> [31797] message,--to: 1 +> [31798] message.--goodbye: 1 +> [31799] message?-quick: 1 +> [31800] messages: 6 +> [31801] messenger: 109 +> [31802] messenger's: 3 +> [31803] messengers: 3 +> [31804] messiah: 17 +> [31805] messiahship: 4 +> [31806] messianic: 11 +> [31807] messieurs: 21 +> [31808] messroom: 2 +> [31809] messrs: 3 +> [31810] met: 727 +> [31811] met--"whom: 1 +> [31812] met--always: 1 +> [31813] met--coming: 1 +> [31814] met--thank: 1 +> [31815] metaborate: 1 +> [31816] metal: 19 +> [31817] metallic: 14 +> [31818] metals: 8 +> [31819] metamorphosed: 1 +> [31820] metaphor: 1 +> [31821] metaphysical: 3 +> [31822] metaphysics: 5 +> [31823] metayers: 1 +> [31824] mete: 4 +> [31825] meted: 1 +> [31826] metempsychosis: 1 +> [31827] meter: 17 +> [31828] meters: 1 +> [31829] method: 286 +> [31830] method--to: 1 +> [31831] method.[18: 1 +> [31832] method._[14: 1 +> [31833] method[13: 1 +> [31834] methode: 1 +> [31835] methodical: 3 +> [31836] methodically: 2 +> [31837] methodist: 1 +> [31838] methods: 127 +> [31839] methyl: 14 +> [31840] metivier: 10 +> [31841] metivier's: 3 +> [31842] metric: 9 +> [31843] metropolis: 4 +> [31844] metropolis [31845] metropolitan: 3 +> [31846] metrov: 22 +> [31847] metrov's: 3 +> [31848] metternich: 3 +> [31849] mettle: 1 +> [31850] mettlesome: 3 +> [31851] mettre: 3 +> [31852] met”: 1 +> [31853] meudon: 1 +> [31854] meurent: 1 +> [31855] meurice's: 1 +> [31856] mexico: 1 +> [31857] meyer's: 6 +> [31858] meyerheim: 1 +> [31859] meyerheim--fort: 1 +> [31860] meyerheim[6: 1 +> [31861] mezhkovs: 1 +> [31862] mg: 3 +> [31863] mi: 1 +> [31864] mice: 4 +> [31865] mich: 1 +> [31866] michael: 91 +> [31867] michailovna: 3 +> [31868] michal’s: 1 +> [31869] michaud: 20 +> [31870] michaud's: 1 +> [31871] michaud--quoique: 1 +> [31872] michel: 2 +> [31873] michelli: 2 +> [31874] michigan: 3 +> [31875] michælis: 4 +> [31876] micro-organisms: 2 +> [31877] microbes: 2 +> [31878] microscope: 1 +> [31879] microscopic: 1 +> [31880] microscopically: 1 +> [31881] mid: 1 +> [31882] mid-air: 1 +> [31883] mid-day: 2 +> [31884] midday: 14 +> [31885] midday's: 1 +> [31886] midden: 1 +> [31887] middens: 1 +> [31888] middle: 288 +> [31889] middle--swirled: 1 +> [31890] middle-aged: 43 +> [31891] middle-class: 4 +> [31892] middle-sized: 3 +> [31893] middling: 2 +> [31894] midges: 2 +> [31895] midian: 2 +> [31896] midland: 1 +> [31897] midlands: 1 +> [31898] midmost: 1 +> [31899] midnight: 46 +> [31900] midnight--cannot: 1 +> [31901] midrash: 1 +> [31902] midst: 107 +> [31903] midway: 8 +> [31904] midwife: 14 +> [31905] midwife's: 1 +> [31906] midwinter: 2 +> [31907] midwives: 3 +> [31908] mien: 2 +> [31909] mieux: 3 +> [31910] mifflin: 2 +> [31911] might: 1927 +> [31912] might--and: 1 +> [31913] might--from: 1 +> [31914] might--if: 1 +> [31915] might--in: 1 +> [31916] might.--work: 1 +> [31917] mightest: 2 +> [31918] mightily: 2 +> [31919] mightiness: 1 +> [31920] mightn't: 1 +> [31921] mighty: 42 +> [31922] migrate: 4 +> [31923] migrated: 2 +> [31924] migrating: 1 +> [31925] migration: 4 +> [31926] migrations: 5 +> [31927] mihail: 47 +> [31928] mihailitch: 4 +> [31929] mihailitch?--and: 1 +> [31930] mihailo: 1 +> [31931] mihailov: 37 +> [31932] mihailov's: 6 +> [31933] mihailov--ought: 1 +> [31934] mihailovitch: 2 +> [31935] mihailovna: 1 +> [31936] mihailovsky: 4 +> [31937] mihailovsky? [31938] mihalitch: 9 +> [31939] mihalovna: 64 +> [31940] mihalovna's: 10 +> [31941] mihaïl: 1 +> [31942] mikalovna: 1 +> [31943] mike: 4 +> [31944] mikhaylovich: 3 +> [31945] mikhaylovna: 119 +> [31946] mikhaylovna's: 11 +> [31947] mikhaylovna--what: 1 +> [31948] mikhelson's: 1 +> [31949] mikolka: 17 +> [31950] mikolka's: 1 +> [31951] mikulino: 4 +> [31952] milan: 3 +> [31953] milan's: 1 +> [31954] milashka: 1 +> [31955] mild: 43 +> [31956] milder: 2 +> [31957] mildest: 1 +> [31958] mildew: 5 +> [31959] mildewed: 2 +> [31960] mildewy: 2 +> [31961] mildly: 11 +> [31962] mildness: 7 +> [31963] mile: 74 +> [31964] mile-and-a-half: 2 +> [31965] mileev: 1 +> [31966] miles: 125 +> [31967] miles--to: 1 +> [31968] milestone: 5 +> [31969] milfoil: 1 +> [31970] milhau: 14 +> [31971] militarist: 1 +> [31972] military: 159 +> [31973] militate: 1 +> [31974] militia: 31 +> [31975] militia--we: 1 +> [31976] militiaman: 2 +> [31977] militiamen: 20 +> [31978] milk: 41 +> [31979] milk's: 1 +> [31980] milk-can: 1 +> [31981] milk-white: 4 +> [31982] milka: 13 +> [31983] milkmaids: 1 +> [31984] milkman: 1 +> [31985] milksop: 2 +> [31986] milky: 8 +> [31987] milky-way: 1 +> [31988] mill: 42 +> [31989] mill-house: 1 +> [31990] mill-owner: 1 +> [31991] mill-owners: 1 +> [31992] mill-stone: 1 +> [31993] mill-wheels: 1 +> [31994] millboard: 1 +> [31995] milldam: 1 +> [31996] mille: 2 +> [31997] milled: 15 +> [31998] millenarian: 1 +> [31999] millenarianism: 2 +> [32000] millennial: 1 +> [32001] millennium: 5 +> [32002] miller: 12 +> [32003] miller's: 1 +> [32004] millers: 2 +> [32005] millet: 1 +> [32006] milli: 1 +> [32007] milli-grams: 1 +> [32008] milli-liters: 1 +> [32009] milli-meters: 1 +> [32010] milligrams: 3 +> [32011] millimeter: 2 +> [32012] millimeters: 2 +> [32013] milliner's: 1 +> [32014] millinery: 3 +> [32015] milling: 13 +> [32016] million: 43 +> [32017] million! [32018] million. [32019] millionaire: 11 +> [32020] millionaire--i: 1 +> [32021] millionaires: 1 +> [32022] millionairess: 1 +> [32023] millions: 88 +> [32024] millionth: 2 +> [32025] millpool: 1 +> [32026] mills: 10 +> [32027] millstone: 1 +> [32028] milo: 1 +> [32029] miloradovich: 19 +> [32030] miloradovich's: 1 +> [32031] miloradoviches: 1 +> [32032] mimi: 3 +> [32033] mimic: 1 +> [32034] mimicked: 10 +> [32035] mimicking: 9 +> [32036] mimicry: 2 +> [32037] min: 2 +> [32038] mincing: 4 +> [32039] mind: 1448 +> [32040] mind! [32041] mind—a: 1 +> [32042] mind—and: 1 +> [32043] mind—that: 1 +> [32044] mind'ee: 1 +> [32045] mind's: 5 +> [32046] mind, [32047] mind--a: 4 +> [32048] mind--about: 1 +> [32049] mind--but: 1 +> [32050] mind--especially: 1 +> [32051] mind--faces: 1 +> [32052] mind--for: 1 +> [32053] mind--he: 1 +> [32054] mind--his: 1 +> [32055] mind--i: 3 +> [32056] mind--it: 1 +> [32057] mind--it's: 1 +> [32058] mind--so: 1 +> [32059] mind--the: 2 +> [32060] mind--though: 1 +> [32061] mind--you: 1 +> [32062] mind. [32063] mind.”: 1 +> [32064] mind;--this: 1 +> [32065] mind?--it's: 1 +> [32066] mind? [32067] minded: 6 +> [32068] minded--so: 4 +> [32069] minden: 1 +> [32070] mindful: 4 +> [32071] minding: 2 +> [32072] minds: 84 +> [32073] minds--the: 1 +> [32074] minds--was: 1 +> [32075] mine: 271 +> [32076] mine! [32077] mine, [32078] mine--a: 1 +> [32079] mine--almost: 1 +> [32080] mine--and: 1 +> [32081] mine--my: 1 +> [32082] mine--she: 1 +> [32083] mine--some: 1 +> [32084] mine--the: 2 +> [32085] mine--which: 1 +> [32086] mine. [32087] mined: 5 +> [32088] miner: 1 +> [32089] mineral: 39 +> [32090] mines: 11 +> [32091] mines! [32092] mingle: 11 +> [32093] mingled: 55 +> [32094] mingling: 17 +> [32095] miniature: 5 +> [32096] miniatures: 3 +> [32097] miniaturist: 2 +> [32098] minimize: 3 +> [32099] minimized: 1 +> [32100] minimizing: 2 +> [32101] minims: 4 +> [32102] minimum: 8 +> [32103] mining: 3 +> [32104] minister: 56 +> [32105] minister's: 5 +> [32106] ministerial: 1 +> [32107] ministering: 2 +> [32108] ministers: 20 +> [32109] ministration: 1 +> [32110] ministrations: 2 +> [32111] ministry: 38 +> [32112] minna: 1 +> [32113] minnesingers: 3 +> [32114] minor: 16 +> [32115] minority: 6 +> [32116] minster: 3 +> [32117] mint: 1 +> [32118] mint! [32119] minuet: 2 +> [32120] minuets: 1 +> [32121] minus: 4 +> [32122] minute: 743 +> [32123] minute! [32124] minute—how: 1 +> [32125] minute's: 8 +> [32126] minute, [32127] minute--a: 1 +> [32128] minute--first: 5 +> [32129] minute--he: 2 +> [32130] minute--it's: 1 +> [32131] minute. [32132] minutely: 18 +> [32133] minuteness: 4 +> [32134] minutes: 492 +> [32135] minutes—with: 1 +> [32136] minutes, [32137] minutes--then: 1 +> [32138] minutes--those: 1 +> [32139] minutes-half: 1 +> [32140] minutes. [32141] minutest: 14 +> [32142] minx: 1 +> [32143] mio: 4 +> [32144] mirabeau: 5 +> [32145] mirabeaus: 1 +> [32146] miracle: 61 +> [32147] miracle--but: 1 +> [32148] miracle--one: 1 +> [32149] miracle-story: 1 +> [32150] miracle? [32151] miracles: 34 +> [32152] miracles. [32153] miracles? [32154] miraculous: 22 +> [32155] miraculous!--escaped: 1 +> [32156] miraculous, [32157] mirage: 11 +> [32158] mirage--all: 1 +> [32159] mire: 9 +> [32160] mirk: 1 +> [32161] mironov: 2 +> [32162] mironov's: 1 +> [32163] mironovs: 1 +> [32164] mirror: 25 +> [32165] mirrored: 1 +> [32166] mirrorlike: 3 +> [32167] mirrors: 16 +> [32168] mirth: 29 +> [32169] mirthful: 10 +> [32170] mirthfully: 2 +> [32171] mirthfulness: 1 +> [32172] mirthless: 4 +> [32173] miry: 1 +> [32174] mis-shapen: 1 +> [32175] misanthropic: 1 +> [32176] misapplied: 1 +> [32177] misapprehend: 1 +> [32178] misapprehending: 1 +> [32179] misapprehension: 4 +> [32180] misapprehensions: 1 +> [32181] misappropriated: 1 +> [32182] misappropriation: 1 +> [32183] misbehaved: 1 +> [32184] misbehaving: 2 +> [32185] misbehavior: 1 +> [32186] miscalculated: 1 +> [32187] miscalculates: 1 +> [32188] miscalled: 1 +> [32189] miscarriage: 1 +> [32190] miscarried: 1 +> [32191] miscellaneous: 2 +> [32192] mischance: 3 +> [32193] mischief: 57 +> [32194] mischief--nobody: 1 +> [32195] mischief--pure: 1 +> [32196] mischief--so: 1 +> [32197] mischief-makers: 1 +> [32198] mischief-making: 1 +> [32199] mischievous: 23 +> [32200] misconceives: 1 +> [32201] misconduct: 3 +> [32202] miscount: 1 +> [32203] miscreant: 4 +> [32204] miscreants: 2 +> [32205] misdeed: 1 +> [32206] misdeeds: 1 +> [32207] misdirected: 3 +> [32208] miser: 2 +> [32209] miserable: 119 +> [32210] miserable--not: 1 +> [32211] miserably: 24 +> [32212] miserere: 3 +> [32213] misericorde: 1 +> [32214] miseries: 10 +> [32215] miserly: 3 +> [32216] misery: 133 +> [32217] misery--of: 1 +> [32218] misfire: 1 +> [32219] misfortune: 76 +> [32220] misfortune—still: 1 +> [32221] misfortune."--"i: 1 +> [32222] misfortunes: 26 +> [32223] misgave: 1 +> [32224] misgiving: 11 +> [32225] misgiving--he: 1 +> [32226] misgivings: 13 +> [32227] misgivings. [32228] misgovernment: 1 +> [32229] misguided: 1 +> [32230] misha: 20 +> [32231] misha! [32232] misha—his: 1 +> [32233] misha, [32234] misha. [32235] mishap: 8 +> [32236] mishap--and: 1 +> [32237] mishaps: 2 +> [32238] mishka: 10 +> [32239] misinformed: 1 +> [32240] misinterpretation: 2 +> [32241] misinterpreted: 2 +> [32242] misinterpreting: 1 +> [32243] mislaid: 2 +> [32244] mislead: 5 +> [32245] misleading: 4 +> [32246] misleads: 2 +> [32247] misled: 9 +> [32248] misliking: 1 +> [32249] mismanaged: 5 +> [32250] mismanagement: 1 +> [32251] misname: 1 +> [32252] misplace: 1 +> [32253] misplaced: 5 +> [32254] misplacing: 1 +> [32255] misread: 1 +> [32256] misreading: 1 +> [32257] misrepeated: 1 +> [32258] misrepresent: 3 +> [32259] misrepresentation: 2 +> [32260] misrepresenting: 1 +> [32261] miss: 194 +> [32262] miss--light: 1 +> [32263] missal: 1 +> [32264] missed: 73 +> [32265] misses: 2 +> [32266] misshapen: 2 +> [32267] misshapen-looking: 1 +> [32268] missile: 2 +> [32269] missiles: 4 +> [32270] missing: 48 +> [32271] mission: 107 +> [32272] mission-field: 11 +> [32273] missionaries: 6 +> [32274] missionary: 28 +> [32275] missions: 4 +> [32276] missis: 1 +> [32277] mississippi: 20 +> [32278] missive: 4 +> [32279] misspelled: 2 +> [32280] misspelt: 1 +> [32281] missus: 1 +> [32282] missy: 6 +> [32283] mist: 79 +> [32284] mist--all: 1 +> [32285] mist-enveloped: 1 +> [32286] mistake: 172 +> [32287] mistake--is: 1 +> [32288] mistake--that: 1 +> [32289] mistaken: 145 +> [32290] mistaken, [32291] mistaken--"i: 1 +> [32292] mistaken--been: 1 +> [32293] mistaken--it: 1 +> [32294] mistaken? [32295] mistakenly: 6 +> [32296] mistakes: 36 +> [32297] mistakes--but: 1 +> [32298] mistaking: 7 +> [32299] mister: 2 +> [32300] mistiest: 1 +> [32301] mistily: 1 +> [32302] mistimed: 1 +> [32303] mistiness: 2 +> [32304] mistook: 3 +> [32305] mistress: 236 +> [32306] mistress's: 5 +> [32307] mistress, [32308] mistress--entered: 1 +> [32309] mistress--you: 1 +> [32310] mistress. [32311] mistress? [32312] mistresses: 7 +> [32313] mistridden: 1 +> [32314] mistrust: 6 +> [32315] mistrust--such: 1 +> [32316] mistrustful: 7 +> [32317] mistrustfully: 11 +> [32318] mistrustfulness: 2 +> [32319] mistrusting: 5 +> [32320] mists: 7 +> [32321] misty: 21 +> [32322] misunderstand: 9 +> [32323] misunderstanding: 19 +> [32324] misunderstandings: 12 +> [32325] misunderstood: 14 +> [32326] misunderstood—these: 1 +> [32327] misunderstood.”: 1 +> [32328] misuse: 1 +> [32329] misused: 4 +> [32330] misères: 2 +> [32331] mitchell: 1 +> [32332] mite: 1 +> [32333] mitenka: 14 +> [32334] mitenka's: 2 +> [32335] miters: 1 +> [32336] mithra: 1 +> [32337] mithridates: 1 +> [32338] mitigates: 1 +> [32339] mitigation: 2 +> [32340] mitin: 1 +> [32341] mitishtchen: 1 +> [32342] mitka: 13 +> [32343] mitri: 2 +> [32344] mitrich: 3 +> [32345] mitrofanievsky: 1 +> [32346] mitrofanych: 1 +> [32347] mittens: 6 +> [32348] mituh: 2 +> [32349] mitya: 792 +> [32350] mitya! [32351] mitya! [32352] mitya's: 101 +> [32353] mitya, [32354] mitya. [32355] mitya [32356] mitya [32357] mitya?—that: 1 +> [32358] mitya? [32359] mityenka: 3 +> [32360] miwacle: 1 +> [32361] miwonov: 1 +> [32362] mix: 27 +> [32363] mixed: 78 +> [32364] mixed--that: 1 +> [32365] mixed-looking: 1 +> [32366] mixen: 2 +> [32367] mixer: 11 +> [32368] mixers: 1 +> [32369] mixes: 2 +> [32370] mixing: 16 +> [32371] mixture: 55 +> [32372] mixtures: 8 +> [32373] miüsov: 71 +> [32374] miüsov—and: 1 +> [32375] miüsov's: 5 +> [32376] miüsov. [32377] miüsovs: 2 +> [32378] mlle: 5 +> [32379] mm: 9 +> [32380] mme: 57 +> [32381] mmm...ar...ate...ate: 1 +> [32382] mo: 1 +> [32383] mo-o-st: 1 +> [32384] moan: 29 +> [32385] moaned: 27 +> [32386] moaning: 33 +> [32387] moans: 25 +> [32388] moat: 14 +> [32389] mob: 82 +> [32390] mobile: 8 +> [32391] mobility: 1 +> [32392] mobs: 3 +> [32393] mock: 18 +> [32394] mocked: 4 +> [32395] mocker: 1 +> [32396] mockeries: 2 +> [32397] mockery: 31 +> [32398] mockery--you: 1 +> [32399] mockery [32400] mocking: 48 +> [32401] mockingly: 5 +> [32402] mode: 33 +> [32403] model: 27 +> [32404] modeling: 3 +> [32405] models: 2 +> [32406] moderate: 21 +> [32407] moderately: 4 +> [32408] moderates: 1 +> [32409] moderating: 1 +> [32410] moderation: 12 +> [32411] modern: 112 +> [32412] moderns: 3 +> [32413] modes: 6 +> [32414] modest: 54 +> [32415] modester: 1 +> [32416] modestly: 15 +> [32417] modesty: 33 +> [32418] modification: 20 +> [32419] modification--it: 1 +> [32420] modifications: 5 +> [32421] modified: 23 +> [32422] modify: 2 +> [32423] modulation: 1 +> [32424] modus: 2 +> [32425] moffat: 1 +> [32426] moffatt: 3 +> [32427] moffatt's: 1 +> [32428] mohair: 1 +> [32429] mohammedan: 1 +> [32430] mohammedans: 2 +> [32431] mohicans [32432] moi: 6 +> [32433] moist: 41 +> [32434] moist-lipped: 1 +> [32435] moisten: 5 +> [32436] moistened: 8 +> [32437] moistening: 1 +> [32438] moisture: 64 +> [32439] mokhavaya: 1 +> [32440] mokhovaya: 1 +> [32441] mokroe: 53 +> [32442] mokroe, [32443] mokroe. [32444] mokroe? [32445] mol: 3 +> [32446] molchanovka: 4 +> [32447] mold: 4 +> [32448] moldavia: 5 +> [32449] moldavian: 1 +> [32450] molded: 1 +> [32451] molds: 1 +> [32452] moldy: 1 +> [32453] mole: 8 +> [32454] mole-hill: 1 +> [32455] molecular: 7 +> [32456] molecule: 4 +> [32457] molehill: 1 +> [32458] molehill—he: 1 +> [32459] molehills: 1 +> [32460] moles: 1 +> [32461] molest: 1 +> [32462] molestation: 1 +> [32463] molested: 3 +> [32464] molibre's: 1 +> [32465] moliere: 1 +> [32466] molliten: 1 +> [32467] mollusc: 1 +> [32468] moloch: 1 +> [32469] moloftsoff: 3 +> [32470] molten: 7 +> [32471] moment: 2279 +> [32472] moment!—but: 1 +> [32473] moment! [32474] moment— [32475] moment—devil: 1 +> [32476] moment—she: 1 +> [32477] moment—took: 1 +> [32478] moment's: 64 +> [32479] moment, [32480] moment--a: 1 +> [32481] moment--but: 1 +> [32482] moment--for: 1 +> [32483] moment--gazed: 1 +> [32484] moment--he: 1 +> [32485] moment--i: 2 +> [32486] moment--in: 1 +> [32487] moment--it: 1 +> [32488] moment--look: 1 +> [32489] moment--mary: 1 +> [32490] moment--of: 1 +> [32491] moment--on: 1 +> [32492] moment--she: 1 +> [32493] moment--so: 1 +> [32494] moment--the: 1 +> [32495] moment--think: 1 +> [32496] moment--to: 1 +> [32497] moment--which: 1 +> [32498] moment...then: 1 +> [32499] moment [32500] moment [32501] moment? [32502] momenta: 1 +> [32503] momentarily: 4 +> [32504] momentariness: 1 +> [32505] momentary: 45 +> [32506] momentous: 6 +> [32507] momentous--the: 1 +> [32508] moments: 260 +> [32509] moments, [32510] moments--rose: 1 +> [32511] moments--the: 1 +> [32512] moments. [32513] momentum: 8 +> [32514] mon: 92 +> [32515] monarch: 29 +> [32516] monarchical: 1 +> [32517] monarchies: 3 +> [32518] monarchs: 10 +> [32519] monarchy: 1 +> [32520] monasteries: 15 +> [32521] monastery: 128 +> [32522] monastery—it's: 1 +> [32523] monastery—their: 1 +> [32524] monastery's: 1 +> [32525] monastery, [32526] monastery. [32527] monastery [32528] monastery? [32529] monastic: 7 +> [32530] monastic-looking: 1 +> [32531] monday: 11 +> [32532] mondays: 1 +> [32533] monde: 1 +> [32534] monetary: 1 +> [32535] money: 1165 +> [32536] money! [32537] money! [32538] money—about: 1 +> [32539] money—count: 1 +> [32540] money—he: 1 +> [32541] money—money: 1 +> [32542] money—the: 1 +> [32543] money—two: 1 +> [32544] money—what: 1 +> [32545] money's: 7 +> [32546] money, [32547] money--a: 3 +> [32548] money--and: 1 +> [32549] money--as: 1 +> [32550] money--i: 1 +> [32551] money--in: 1 +> [32552] money--my: 1 +> [32553] money--sharpen: 1 +> [32554] money--that: 1 +> [32555] money--thirty: 1 +> [32556] money-changer's: 1 +> [32557] money-grubbers: 1 +> [32558] money-grubbers--and: 1 +> [32559] money-lender: 6 +> [32560] money-lenders: 1 +> [32561] money-lending: 1 +> [32562] money-mad: 1 +> [32563] money-making: 2 +> [32564] money. [32565] money [32566] money [32567] money? [32568] money? [32569] moneychanger's: 1 +> [32570] moneylender: 1 +> [32571] moneys: 2 +> [32572] mongrel: 2 +> [32573] monitors: 2 +> [32574] monitress: 2 +> [32575] monk: 133 +> [32576] monk—i'm: 1 +> [32577] monk's: 11 +> [32578] monk, [32579] monk,”: 1 +> [32580] monk. [32581] monk [32582] monk? [32583] monkey: 23 +> [32584] monkey-tricks: 1 +> [32585] monks: 113 +> [32586] monks—your: 1 +> [32587] mono: 1 +> [32588] monochloride: 3 +> [32589] monogram: 3 +> [32590] monograms: 3 +> [32591] monographs: 1 +> [32592] monologue: 2 +> [32593] monologues: 2 +> [32594] monomach: 1 +> [32595] monomania: 1 +> [32596] monomania--he: 1 +> [32597] monomaniac: 2 +> [32598] monomaniacs: 2 +> [32599] monopolies: 3 +> [32600] monopolists: 1 +> [32601] monopolize: 1 +> [32602] monopolizes: 1 +> [32603] monopoly: 1 +> [32604] monosyllabic: 1 +> [32605] monosyllables: 3 +> [32606] monotonous: 22 +> [32607] monotonously: 1 +> [32608] monotony: 3 +> [32609] monseigneur: 14 +> [32610] monseigneur--not: 1 +> [32611] monsieur: 297 +> [32612] monsieur!--so: 1 +> [32613] monsieur"--for: 1 +> [32614] monsieur--besides: 1 +> [32615] monsieur--i: 2 +> [32616] monsieur--it: 1 +> [32617] monster: 50 +> [32618] monster! [32619] monster, [32620] monster. [32621] monsters: 5 +> [32622] monstrosities: 1 +> [32623] monstrosity: 3 +> [32624] monstrous: 30 +> [32625] monstrously: 13 +> [32626] mont: 4 +> [32627] montagues: 1 +> [32628] montanism: 1 +> [32629] montanist: 1 +> [32630] montanus: 5 +> [32631] montauban: 4 +> [32632] montenegrins: 3 +> [32633] monter: 1 +> [32634] montesquieu: 2 +> [32635] montfaucon: 2 +> [32636] montgomery: 2 +> [32637] month: 220 +> [32638] month's: 6 +> [32639] month--and: 1 +> [32640] month--how: 1 +> [32641] month--it: 1 +> [32642] month. [32643] monthly: 7 +> [32644] months: 284 +> [32645] months, [32646] months--now: 1 +> [32647] montmorencys: 1 +> [32648] montpellier: 7 +> [32649] montreuil: 1 +> [32650] monument: 8 +> [32651] monumental: 3 +> [32652] monuments: 8 +> [32653] moo: 1 +> [32654] moo, [32655] mood: 120 +> [32656] mood--love: 1 +> [32657] moodily: 5 +> [32658] moodiness: 1 +> [32659] moods: 11 +> [32660] moody: 10 +> [32661] moon: 61 +> [32662] moon's: 2 +> [32663] moon-faced: 1 +> [32664] moonbeams: 1 +> [32665] mooning: 1 +> [32666] moonlight: 34 +> [32667] moonlight--the: 1 +> [32668] moonlit: 2 +> [32669] moons: 2 +> [32670] moonshine: 1 +> [32671] moony: 1 +> [32672] moor: 17 +> [32673] moor—they: 1 +> [32674] moor. [32675] moored: 3 +> [32676] moorgate: 3 +> [32677] moorish: 1 +> [32678] moorland: 7 +> [32679] moors: 6 +> [32680] mop: 5 +> [32681] moped: 1 +> [32682] mopped: 1 +> [32683] mopping: 1 +> [32684] moral: 163 +> [32685] moral--disons: 1 +> [32686] moralising: 3 +> [32687] moralist: 2 +> [32688] moralists—and: 1 +> [32689] morality: 19 +> [32690] moralize: 1 +> [32691] moralizing: 2 +> [32692] morally: 38 +> [32693] morals: 11 +> [32694] morand: 2 +> [32695] morand's: 3 +> [32696] morass: 1 +> [32697] moravian: 2 +> [32698] moravians: 1 +> [32699] morbid: 25 +> [32700] morbidly: 11 +> [32701] morbidness: 1 +> [32702] morbleu: 1 +> [32703] mordvinsky: 1 +> [32704] more: 5568 +> [32705] more!--there: 1 +> [32706] more! [32707] more"--he: 1 +> [32708] more—i: 1 +> [32709] more, [32710] more--a: 1 +> [32711] more--from: 1 +> [32712] more--it's: 1 +> [32713] more--looked: 1 +> [32714] more--much: 1 +> [32715] more--not: 1 +> [32716] more--so: 1 +> [32717] more--that: 2 +> [32718] more--though: 1 +> [32719] more--to: 1 +> [32720] more-orderers: 2 +> [32721] more. [32722] more? [32723] moreau: 5 +> [32724] morel: 17 +> [32725] moreover: 144 +> [32726] moreover— [32727] morfondre: 1 +> [32728] morgen: 2 +> [32729] morgenfrüh: 1 +> [32730] mori: 1 +> [32731] moriah: 1 +> [32732] morio: 4 +> [32733] moriscoes: 1 +> [32734] morn: 4 +> [32735] morn.... [32736] morning: 896 +> [32737] morning'--that: 1 +> [32738] morning's: 14 +> [32739] morning, [32740] morning--despite: 1 +> [32741] morning--especially: 1 +> [32742] morning--found: 1 +> [32743] morning--his: 1 +> [32744] morning--it: 1 +> [32745] morning--that: 1 +> [32746] morning--too: 1 +> [32747] morning-coat: 1 +> [32748] morning. [32749] mornings: 5 +> [32750] mornings--what: 1 +> [32751] morocco: 5 +> [32752] morose: 26 +> [32753] morosely: 15 +> [32754] moroseness: 1 +> [32755] moroseyka: 2 +> [32756] morozov: 5 +> [32757] morozov's: 4 +> [32758] morphine: 7 +> [32759] morris: 3 +> [32760] morris-dance: 1 +> [32761] morrison: 1 +> [32762] morrow: 19 +> [32763] morrow's: 1 +> [32764] morsel: 12 +> [32765] morsels: 3 +> [32766] morskaia: 2 +> [32767] morskaya: 1 +> [32768] morsky: 1 +> [32769] mort: 8 +> [32770] mortal: 24 +> [32771] mortality: 2 +> [32772] mortally: 5 +> [32773] mortals: 4 +> [32774] mortar: 10 +> [32775] mortar! [32776] mortars: 2 +> [32777] mortemart: 9 +> [32778] mortgaged: 3 +> [32779] mortier: 5 +> [32780] mortier's: 1 +> [32781] mortification: 18 +> [32782] mortified: 19 +> [32783] mortify: 2 +> [32784] mortifying: 9 +> [32785] mortimer: 1 +> [32786] mortimers--all: 1 +> [32787] mosaic: 9 +> [32788] mosaics: 1 +> [32789] mosaism: 2 +> [32790] moscou: 5 +> [32791] moscovite: 1 +> [32792] moscovites: 5 +> [32793] moscow: 1050 +> [32794] moscow! [32795] moscow—perhaps: 1 +> [32796] moscow's: 5 +> [32797] moscow, [32798] moscow--and: 2 +> [32799] moscow--as: 1 +> [32800] moscow--despite: 1 +> [32801] moscow--filled: 1 +> [32802] moscow--she's: 1 +> [32803] moscow--that: 1 +> [32804] moscow--the: 1 +> [32805] moscow--was: 1 +> [32806] moscow--which: 1 +> [32807] moscow--you: 1 +> [32808] moscow. [32809] moses: 9 +> [32810] moskowa: 2 +> [32811] moskva: 9 +> [32812] mosque: 4 +> [32813] mosquee: 1 +> [32814] mosquitoes: 1 +> [32815] moss: 5 +> [32816] moss-clad: 1 +> [32817] moss-clothed: 1 +> [32818] moss-grown: 3 +> [32819] moss? [32820] mosses: 1 +> [32821] mossy: 2 +> [32822] most: 2013 +> [32823] most--the: 1 +> [32824] mostly: 22 +> [32825] mot: 9 +> [32826] mot--anti-nihilist: 1 +> [32827] motes: 1 +> [32828] moth: 4 +> [32829] moth--"work: 1 +> [32830] mother: 1039 +> [32831] mother! [32832] mother—forgive: 1 +> [32833] mother's: 168 +> [32834] mother's--and: 1 +> [32835] mother, [32836] mother--"it's: 1 +> [32837] mother--and: 2 +> [32838] mother--god: 1 +> [32839] mother--nina: 1 +> [32840] mother--none--none: 1 +> [32841] mother-but: 1 +> [32842] mother-country: 1 +> [32843] mother-in-law: 7 +> [32844] mother-of-pearl: 3 +> [32845] mother. [32846] mother.’”: 1 +> [32847] mother? [32848] motherhood: 1 +> [32849] motherless: 1 +> [32850] motherly: 5 +> [32851] mothers: 28 +> [32852] mothers--who: 1 +> [32853] mothers-in-law: 2 +> [32854] mother’s: 3 +> [32855] moths: 5 +> [32856] motion: 86 +> [32857] motioned: 10 +> [32858] motioning: 3 +> [32859] motionless: 91 +> [32860] motions: 10 +> [32861] motive: 85 +> [32862] motive--a: 1 +> [32863] motive-power: 1 +> [32864] motives: 40 +> [32865] motley: 4 +> [32866] mots: 3 +> [32867] mottisfont: 54 +> [32868] mottisfont's: 5 +> [32869] mottisfont--an: 1 +> [32870] mottisfonts: 1 +> [32871] mottle: 2 +> [32872] mottled: 4 +> [32873] mottling: 1 +> [32874] motto: 5 +> [32875] moujik: 4 +> [32876] mould: 4 +> [32877] mouldered: 1 +> [32878] mouldering: 3 +> [32879] mouldings: 2 +> [32880] moulds: 1 +> [32881] mouldy: 3 +> [32882] moule: 1 +> [32883] mound: 3 +> [32884] mounds: 3 +> [32885] mounseer: 1 +> [32886] mount: 46 +> [32887] mountain: 24 +> [32888] mountain-side: 2 +> [32889] mountain-top: 1 +> [32890] mountains: 28 +> [32891] mountains, [32892] mountains,”: 1 +> [32893] mountains-and: 1 +> [32894] mountains. [32895] mountebank: 2 +> [32896] mountebank's: 1 +> [32897] mounted: 88 +> [32898] mounting: 27 +> [32899] mounting-block: 1 +> [32900] mounts: 2 +> [32901] mourn: 1 +> [32902] mourner: 2 +> [32903] mourners: 3 +> [32904] mournful: 46 +> [32905] mournfully: 24 +> [32906] mourning: 27 +> [32907] mourns: 1 +> [32908] mouse: 28 +> [32909] mouse-hole: 2 +> [32910] moustache: 26 +> [32911] moustaches: 6 +> [32912] moustachios: 2 +> [32913] mouth: 278 +> [32914] mouth,’: 1 +> [32915] mouth--seemed: 1 +> [32916] mouthed: 1 +> [32917] mouthful: 6 +> [32918] mouthfuls: 2 +> [32919] mouthpiece: 1 +> [32920] mouths: 21 +> [32921] mouton: 3 +> [32922] movable: 8 +> [32923] movables: 1 +> [32924] move: 244 +> [32925] moved: 600 +> [32926] moved--and: 1 +> [32927] moved--for: 1 +> [32928] moved--up: 1 +> [32929] movement: 338 +> [32930] movement--"hear: 1 +> [32931] movement...the: 1 +> [32932] movements: 117 +> [32933] movements--as: 1 +> [32934] mover: 1 +> [32935] moves: 31 +> [32936] moving: 323 +> [32937] mow: 15 +> [32938] mowbray: 1 +> [32939] mowed: 8 +> [32940] mower: 2 +> [32941] mowers: 16 +> [32942] mowing: 42 +> [32943] mowing-grass: 1 +> [32944] mown: 14 +> [32945] moyens: 1 +> [32946] moyka: 1 +> [32947] mozhaysk: 25 +> [32948] mr: 522 +> [32949] mrs: 224 +> [32950] much: 2402 +> [32951] much! [32952] much—wayside: 1 +> [32953] much, [32954] much--and: 1 +> [32955] much--are: 1 +> [32956] much--but: 1 +> [32957] much--come: 1 +> [32958] much--for: 2 +> [32959] much--informing: 1 +> [32960] much--though: 1 +> [32961] much--very: 1 +> [32962] much-abused: 1 +> [32963] much-desired: 1 +> [32964] much-disputed: 1 +> [32965] much-talked-of: 1 +> [32966] much. [32967] much. [32968] much? [32969] mucius: 1 +> [32970] muck: 1 +> [32971] mud: 84 +> [32972] mud--there: 3 +> [32973] mud-bespattered: 2 +> [32974] mud-caked: 1 +> [32975] mud-guard: 1 +> [32976] mud-guards: 3 +> [32977] mud-stained: 3 +> [32978] muddied: 3 +> [32979] muddle: 18 +> [32980] muddled: 22 +> [32981] muddles: 8 +> [32982] muddling: 2 +> [32983] muddy: 34 +> [32984] muddy-looking: 1 +> [32985] muddying: 1 +> [32986] mudrov: 1 +> [32987] mudspattered: 1 +> [32988] mueller: 1 +> [32989] muff: 7 +> [32990] muffin-bell: 1 +> [32991] muffin-worry: 1 +> [32992] muffins: 1 +> [32993] muffle: 2 +> [32994] muffled: 27 +> [32995] muffling: 2 +> [32996] mufti: 1 +> [32997] mug: 7 +> [32998] muishkin: 126 +> [32999] muishkin's: 5 +> [33000] muishkin--whose: 1 +> [33001] muishkins: 3 +> [33002] muiskhin: 1 +> [33003] mukhorty: 45 +> [33004] mukhorty's: 11 +> [33005] mulatto: 1 +> [33006] mule: 5 +> [33007] mules: 5 +> [33008] mulhausen: 2 +> [33009] mulled: 2 +> [33010] mullioned: 2 +> [33011] mullions: 1 +> [33012] multiple: 1 +> [33013] multiples: 1 +> [33014] multiplication: 2 +> [33015] multiplicity: 3 +> [33016] multiplied: 8 +> [33017] multiply: 22 +> [33018] multitude: 23 +> [33019] multitudes: 1 +> [33020] mum: 1 +> [33021] mumble: 1 +> [33022] mumbled: 11 +> [33023] mumbling: 3 +> [33024] mummers: 11 +> [33025] mummery: 2 +> [33026] mummy: 7 +> [33027] munch: 2 +> [33028] munched: 3 +> [33029] munching: 14 +> [33030] mundane: 3 +> [33031] mundi: 1 +> [33032] mundo: 1 +> [33033] munich: 2 +> [33034] municipal: 1 +> [33035] municipalities: 1 +> [33036] municipality: 5 +> [33037] municipals: 1 +> [33038] muniment: 6 +> [33039] munition: 2 +> [33040] munition-wagon: 1 +> [33041] munitions: 2 +> [33042] murat: 38 +> [33043] murat's: 15 +> [33044] muratori: 1 +> [33045] muratorian: 2 +> [33046] muratorianum: 1 +> [33047] murder: 249 +> [33048] murder! [33049] murder—hatred: 1 +> [33050] murder--that's: 1 +> [33051] murder [33052] murder? [33053] murdered: 120 +> [33054] murdered? [33055] murderer: 96 +> [33056] murderer! [33057] murderer's: 1 +> [33058] murderer, [33059] murderer--cutting: 1 +> [33060] murderer--however: 1 +> [33061] murderer. [33062] murderer? [33063] murderers: 13 +> [33064] murderers--that: 1 +> [33065] murderess: 2 +> [33066] murdering: 27 +> [33067] murderous: 4 +> [33068] murders: 11 +> [33069] muriatic: 1 +> [33070] murillo: 1 +> [33071] murky: 2 +> [33072] murmur: 42 +> [33073] murmured: 131 +> [33074] murmuring: 8 +> [33075] murmurings: 1 +> [33076] murmurs: 8 +> [33077] muromets: 1 +> [33078] murray: 2 +> [33079] muscle: 10 +> [33080] muscles: 26 +> [33081] muscovites: 3 +> [33082] muscovy: 1 +> [33083] muscular: 20 +> [33084] muse: 3 +> [33085] mused: 17 +> [33086] muses: 1 +> [33087] museum: 1 +> [33088] museums: 3 +> [33089] mushroom: 13 +> [33090] mushroom's: 1 +> [33091] mushroom-picking: 1 +> [33092] mushrooms: 19 +> [33093] mushrooms? [33094] music: 119 +> [33095] music--"it: 1 +> [33096] music--had: 1 +> [33097] music-stand: 1 +> [33098] musical: 21 +> [33099] musically: 3 +> [33100] musician: 4 +> [33101] musicians: 5 +> [33102] musing: 19 +> [33103] musing--one: 1 +> [33104] musingly: 3 +> [33105] musket: 24 +> [33106] musketeer: 2 +> [33107] musketeers: 1 +> [33108] musketoon: 2 +> [33109] musketry: 23 +> [33110] musketry--for: 1 +> [33111] muskets: 22 +> [33112] muslin: 14 +> [33113] musn't: 1 +> [33114] muss: 3 +> [33115] mussel: 1 +> [33116] mussulman: 2 +> [33117] mussyalovitch: 9 +> [33118] must: 3516 +> [33119] must! [33120] must— [33121] must—take: 1 +> [33122] must—you: 1 +> [33123] must, [33124] must, [33125] must. [33126] mustache: 56 +> [33127] mustached: 1 +> [33128] mustaches: 23 +> [33129] mustachioed: 2 +> [33130] mustard: 4 +> [33131] muster: 5 +> [33132] mustered: 4 +> [33133] mustering: 2 +> [33134] musters: 13 +> [33135] musters's: 1 +> [33136] mustiness: 1 +> [33137] mustn't: 79 +> [33138] mustn't! [33139] mustn't--well--let's: 1 +> [33140] musty: 2 +> [33141] mutations: 1 +> [33142] mute: 21 +> [33143] mutely: 3 +> [33144] muter: 1 +> [33145] mutes: 1 +> [33146] mutilated: 5 +> [33147] mutilation: 2 +> [33148] mutineers: 1 +> [33149] mutinous: 2 +> [33150] mutinous--they: 1 +> [33151] mutiny: 2 +> [33152] mutiny--seizing: 1 +> [33153] mutter: 13 +> [33154] muttered: 472 +> [33155] muttering: 46 +> [33156] mutterings: 2 +> [33157] mutton: 10 +> [33158] mutton, [33159] mutton-chop: 2 +> [33160] mutual: 41 +> [33161] mutually: 9 +> [33162] muzzey: 1 +> [33163] muzzle: 11 +> [33164] my: 10879 +> [33165] my...i: 1 +> [33166] my...my: 1 +> [33167] myakaya: 19 +> [33168] myakaya's: 3 +> [33169] myakaya--not: 1 +> [33170] myakov: 1 +> [33171] myaskin: 1 +> [33172] myasnitski: 2 +> [33173] myeshtchansky: 3 +> [33174] mynheer's: 1 +> [33175] myriads: 1 +> [33176] myristic: 4 +> [33177] myrtle: 3 +> [33178] myself: 1732 +> [33179] myself! [33180] myself—count: 1 +> [33181] myself—it: 1 +> [33182] myself—sincerely: 1 +> [33183] myself—that: 1 +> [33184] myself—the: 1 +> [33185] myself, [33186] myself--(i: 1 +> [33187] myself--a: 2 +> [33188] myself--and: 2 +> [33189] myself--do: 1 +> [33190] myself--general: 1 +> [33191] myself--go: 1 +> [33192] myself--i: 3 +> [33193] myself--is: 2 +> [33194] myself--just: 1 +> [33195] myself--nineteen: 1 +> [33196] myself--of: 1 +> [33197] myself--sitting: 1 +> [33198] myself--than: 1 +> [33199] myself--that: 1 +> [33200] myself--the: 1 +> [33201] myself--they: 1 +> [33202] myself--two: 1 +> [33203] myself--you: 2 +> [33204] myself. [33205] myself? [33206] mysteries: 14 +> [33207] mysterious: 121 +> [33208] mysterious--an: 1 +> [33209] mysteriously: 23 +> [33210] mysteriousness: 1 +> [33211] mystery: 97 +> [33212] mystery—that: 1 +> [33213] mystery. [33214] mystic: 28 +> [33215] mystical: 18 +> [33216] mysticism: 19 +> [33217] mystics: 1 +> [33218] mystification: 1 +> [33219] mystified: 2 +> [33220] mystified--at: 1 +> [33221] mystify: 1 +> [33222] mystifying: 2 +> [33223] myth: 3 +> [33224] mythical: 1 +> [33225] mythological: 2 +> [33226] mythologically: 1 +> [33227] mythology: 3 +> [33228] myths: 1 +> [33229] mytishchi: 12 +> [33230] mâche: 1 +> [33231] mère: 1 +> [33232] ménage: 1 +> [33233] mêlée: 3 +> [33234] mêlée--they: 1 +> [33235] même: 1 +> [33236] n: 51 +> [33237] n'a: 2 +> [33238] n'ai: 2 +> [33239] n'ayez: 1 +> [33240] n'en: 1 +> [33241] n'entendent: 1 +> [33242] n'est: 5 +> [33243] n'est-ce: 3 +> [33244] n'existait: 1 +> [33245] n'existe: 2 +> [33246] n'y: 4 +> [33247] n'êtes: 1 +> [33248] n--no: 2 +> [33249] n-n-no: 1 +> [33250] n-no: 13 +> [33251] n-no!--i: 1 +> [33252] n-no--not: 1 +> [33253] n.'s: 1 +> [33254] n.--le: 1 +> [33255] n.--once: 1 +> [33256] n...and: 1 +> [33257] n.b: 1 +> [33258] n.b.--let: 1 +> [33259] n.b.--they: 1 +> [33260] n.n: 2 +> [33261] n.p.b: 1 +> [33262] n.t: 8 +> [33263] n.y: 4 +> [33264] n.”: 1 +> [33265] n/10: 18 +> [33266] n/2: 1 +> [33267] n/4: 7 +> [33268] n/40: 13 +> [33269] n="1">edition: 1 +> [33270] n='001'/> [33271] n='002'/> [33272] n='003'/> [33273] n='004'/> [33274] n='005'/> [33275] n='006'/> [33276] n='007'/> [33277] n='008'/> [33278] n='009'/> [33279] n='010'/> [33280] n='011'/> [33281] n='012'/> [33282] n='013'/> [33283] n='014'/> [33284] n='015'/> [33285] n='016'/> [33286] n='017'/> [33287] n='018'/> [33288] n='019'/> [33289] n='020'/> [33290] n='021'/> [33291] n='022'/> [33292] n='023'/> [33293] n='024'/> [33294] n='025'/> [33295] n='026'/> [33296] n='027'/> [33297] n='028'/> [33298] n='029'/> [33299] n='030'/> [33300] n='031'/> [33301] n='032'/> [33302] n='033'/> [33303] n='034'/> [33304] n='035'/> [33305] n='036'/> [33306] n='037'/> [33307] n='038'/> [33308] n='039'/> [33309] n='040'/> [33310] n='041'/> [33311] n='042'/> [33312] n='043'/> [33313] n='044'/> [33314] n='045'/> [33315] n='046'/> [33316] n='047'/> [33317] n='048'/> [33318] n='049'/> [33319] n='050'/> [33320] n='051'/> [33321] n='052'/> [33322] n='053'/> [33323] n='054'/> [33324] n='055'/> [33325] n='056'/> [33326] n='057'/> [33327] n='058'/> [33328] n='059'/> [33329] n='060'/> [33330] n='061'/> [33331] n='062'/> [33332] n='063'/> [33333] n='064'/> [33334] n='065'/> [33335] n='066'/> [33336] n='067'/> [33337] n='068'/> [33338] n='069'/> [33339] n='070'/> [33340] n='071'/> [33341] n='072'/> [33342] n='073'/> [33343] n='074'/> [33344] n='075'/> [33345] n='076'/> [33346] n='077'/> [33347] n='078'/> [33348] n='079'/> [33349] n='080'/> [33350] n='081'/> [33351] n='082'/> [33352] n='083'/> [33353] n='084'/> [33354] n='085'/> [33355] n='086'/> [33356] n='087'/> [33357] n='088'/> [33358] n='089'/> [33359] n='090'/> [33360] n='091'/> [33361] n='092'/> [33362] n='093'/> [33363] n='094'/> [33364] n='095'/> [33365] n='096'/> [33366] n='097'/> [33367] n='098'/> [33368] n='099'/> [33369] n='100'/> [33370] n='101'/> [33371] n='102'/> [33372] n='103'/> [33373] n='104'/> [33374] n='105'/> [33375] n='106'/> [33376] n='107'/> [33377] n='108'/> [33378] n='109'/> [33379] n='110'/> [33380] n='111'/> [33381] n='112'/> [33382] n='113'/> [33383] n='114'/> [33384] n='115'/> [33385] n='116'/> [33386] n='117'/> [33387] n='118'/> [33388] n='119'/> [33389] n='120'/> [33390] n='121'/> [33391] n='122'/> [33392] n='123'/> [33393] n='124'/> [33394] n='125'/> [33395] n='126'/> [33396] n='127'/> [33397] n='128'/> [33398] n='129'/> [33399] n='130'/> [33400] n='131'/> [33401] n='132'/> [33402] n='133'/> [33403] n='134'/> [33404] n='135'/> [33405] n='136'/> [33406] n='137'/> [33407] n='138'/> [33408] n='139'/> [33409] n='140'/> [33410] n='141'/> [33411] n='142'/> [33412] n='143'/> [33413] n='144'/> [33414] n='145'/> [33415] n='146'/> [33416] n='147'/> [33417] n='148'/> [33418] n='149'/> [33419] n='150'/> [33420] n='151'/> [33421] n='152'/> [33422] n='153'/> [33423] n='154'/> [33424] n='155'/> [33425] n='156'/> [33426] n='157'/> [33427] n='158'/> [33428] n='159'/> [33429] n='160'/> [33430] n='161'/> [33431] n='162'/> [33432] n='163'/> [33433] n='164'/> [33434] n='165'/> [33435] n='166'/> [33436] n='167'/> [33437] n='168'/> [33438] n='169'/> [33439] n='170'/> [33440] n='171'/> [33441] n='172'/> [33442] n='173'/> [33443] n='174'/> [33444] n='175'/> [33445] n='176'/> [33446] n='177'/> [33447] n='178'/> [33448] n='179'/> [33449] n='180'/> [33450] n='181'/> [33451] n='182'/> [33452] n='183'/> [33453] n='184'/> [33454] n='185'/> [33455] n='186'/> [33456] n='187'/> [33457] n='188'/> [33458] n='189'/> [33459] n='190'/> [33460] n='191'/> [33461] n='192'/> [33462] n='193'/> [33463] n='194'/> [33464] n='195'/> [33465] n='196'/> [33466] n='197'/> [33467] n='198'/> [33468] n='199'/> [33469] n='200'/> [33470] n='201'/> [33471] n='202'/> [33472] n='203'/> [33473] n='204'/> [33474] n='205'/> [33475] n='206'/> [33476] n='207'/> [33477] n='208'/> [33478] n='209'/> [33479] n='210'/> [33480] n='211'/> [33481] n='212'/> [33482] n='213'/> [33483] n='214'/> [33484] n='215'/> [33485] n='216'/> [33486] n='217'/> [33487] n='218'/> [33488] n='219'/> [33489] n='220'/> [33490] n='221'/> [33491] n='222'/> [33492] n='223'/> [33493] n='224'/> [33494] n='225'/> [33495] n='226'/> [33496] n='227'/> [33497] n='228'/> [33498] n='229'/> [33499] n='230'/> [33500] n='231'/> [33501] n='232'/> [33502] n='233'/> [33503] n='234'/> [33504] n='235'/> [33505] n='236'/> [33506] n='237'/> [33507] n='238'/> [33508] n='239'/> [33509] n='240'/> [33510] n='241'/> [33511] n='242'/> [33512] n='243'/> [33513] n='244'/> [33514] n='245'/> [33515] n='246'/> [33516] n='247'/> [33517] n='248'/> [33518] n='249'/> [33519] n='250'/> [33520] n='251'/> [33521] n='252'/> [33522] n='253'/> [33523] n='254'/> [33524] n='255'/> [33525] n='256'/> [33526] n='257'/> [33527] n='258'/> [33528] n='259'/> [33529] n='260'/> [33530] n='261'/> [33531] n='262'/> [33532] n='263'/> [33533] n='264'/> [33534] n='265'/> [33535] n='266'/> [33536] n='267'/> [33537] n='268'/> [33538] n='269'/> [33539] n='270'/> [33540] n='271'/> [33541] n='272'/> [33542] n='273'/> [33543] n='274'/> [33544] n='275'/> [33545] n='276'/> [33546] n='277'/> [33547] n='278'/> [33548] n='279'/> [33549] n='280'/> [33550] n='281'/> [33551] n='282'/> [33552] n='283'/> [33553] n='284'/> [33554] n='285'/> [33555] n='286'/> [33556] n='287'/> [33557] n='288'/> [33558] n='289'/> [33559] n='290'/> [33560] n='291'/> [33561] n='292'/> [33562] n='293'/> [33563] n='294'/> [33564] n='295'/> [33565] n='296'/> [33566] n='297'/> [33567] n='298'/> [33568] n='299'/> [33569] n='300'/> [33570] n='301'/> [33571] n='302'/> [33572] n='303'/> [33573] n='304'/> [33574] n='305'/> [33575] n='306'/> [33576] n='307'/> [33577] n='308'/> [33578] n='309'/> [33579] n='310'/> [33580] n='311'/> [33581] n='312'/> [33582] n='313'/> [33583] n='314'/> [33584] n='315'/> [33585] n='316'/> [33586] n='317'/> [33587] n='318'/> [33588] n='319'/> [33589] n='320'/> [33590] n='321'/> [33591] n='322'/> [33592] n='323'/> [33593] n='324'/> [33594] n='325'/> [33595] n='326'/> [33596] n='327'/> [33597] n='328'/> [33598] n='329'/> [33599] n='330'/> [33600] n='331'/> [33601] n='332'/> [33602] n='333'/> [33603] n='334'/> [33604] n='335'/> [33605] n='336'/> [33606] n='337'/> [33607] n='338'/> [33608] n='339'/> [33609] n='340'/> [33610] n='341'/> [33611] n='342'/> [33612] n='343'/> [33613] n='344'/> [33614] n='345'/> [33615] n='346'/> [33616] n='347'/> [33617] n='348'/> [33618] n='349'/> [33619] n='350'/> [33620] n='351'/> [33621] n='352'/> [33622] n='353'/> [33623] n='354'/> [33624] n='355'/> [33625] n='356'/> [33626] n='357'/> [33627] n='358'/> [33628] n='359'/> [33629] n='360'/> [33630] n='361'/> [33631] n='362'/> [33632] n='363'/> [33633] n='364'/> [33634] n='365'/> [33635] n='366'/> [33636] n='367'/> [33637] n='368'/> [33638] n='369'/> [33639] n='370'/> [33640] n='371'/> [33641] n='372'/> [33642] n='373'/> [33643] n='374'/> [33644] n='375'/> [33645] n='376'/> [33646] n='377'/> [33647] n='378'/> [33648] n='379'/> [33649] n='380'/> [33650] n='381'/> [33651] n='382'/> [33652] n='383'/> [33653] n='384'/> [33654] n='385'/> [33655] n='386'/> [33656] n='387'/> [33657] n='388'/> [33658] n='389'/> [33659] n='390'/> [33660] n='391'/> [33661] n='392'/> [33662] n='393'/> [33663] n='394'/> [33664] n='395'/> [33665] n='396'/> [33666] n='397'/> [33667] n='398'/> [33668] n='399'/> [33669] n='400'/> [33670] n='401'/> [33671] n='402'/> [33672] n='403'/> [33673] n='404'/> [33674] n='405'/> [33675] n='406'/> [33676] n='407'/> [33677] n='408'/> [33678] n='409'/> [33679] n='410'/> [33680] n='411'/> [33681] n='412'/> [33682] n='413'/> [33683] n='414'/> [33684] n='415'/> [33685] n='416'/> [33686] n='417'/> [33687] n='418'/> [33688] n='419'/> [33689] n='420'/> [33690] n='421'/> [33691] n='422'/> [33692] n='423'/> [33693] n='424'/> [33694] n='425'/> [33695] n='426'/> [33696] n='427'/> [33697] n='428'/> [33698] n='429'/> [33699] n='430'/> [33700] n='431'/> [33701] n='432'/> [33702] n='433'/> [33703] n='434'/> [33704] n='435'/> [33705] n='436'/> [33706] n='437'/> [33707] n='438'/> [33708] n='439'/> [33709] n='440'/> [33710] n='441'/> [33711] n='442'/> [33712] n='443'/> [33713] n='444'/> [33714] n='445'/> [33715] n='446'/> [33716] n='447'/> [33717] n='448'/> [33718] n='449'/> [33719] n='450'/> [33720] n='451'/> [33721] n='452'/> [33722] n='453'/> [33723] n='454'/> [33724] n='455'/> [33725] n='456'/> [33726] n='457'/> [33727] n='458'/> [33728] n='459'/> [33729] n='460'/> [33730] n='461'/> [33731] n='462'/> [33732] n='463'/> [33733] n='464'/> [33734] n='465'/> [33735] n='466'/> [33736] n='467'/> [33737] n='468'/> [33738] n='469'/> [33739] n='470'/> [33740] n='471'/> [33741] n='472'/> [33742] n='473'/> [33743] n='474'/> [33744] n='475'/> [33745] n='476'/> [33746] n='477'/> [33747] n='478'/> [33748] n='479'/> [33749] n='480'/> [33750] n='481'/> [33751] n='482'/> [33752] n='483'/> [33753] n='484'/> [33754] n='485'/> [33755] n='486'/> [33756] n='487'/> [33757] n='488'/> [33758] n='489'/> [33759] n='490'/> [33760] n='491'/> [33761] n='492'/> [33762] n='493'/> [33763] n='494'/> [33764] n='495'/> [33765] n='496'/> [33766] n='497'/> [33767] n='498'/> [33768] n='499'/> [33769] n='500'/> [33770] n='501'/> [33771] n='502'/> [33772] n='503'/> [33773] n='504'/> [33774] n='505'/> [33775] n='506'/> [33776] n='507'/> [33777] n='508'/> [33778] n='509'/> [33779] n='510'/> [33780] n='511'/> [33781] n='512'/> [33782] n='513'/> [33783] n='514'/> [33784] n='515'/> [33785] n='516'/> [33786] n='517'/> [33787] n='518'/> [33788] n='519'/> [33789] n='520'/> [33790] n='521'/> [33791] n='522'/> [33792] n='523'/> [33793] n='524'/> [33794] n='525'/> [33795] n='526'/> [33796] n='527'/> [33797] n='528'/> [33798] n='529'/> [33799] n='530'/> [33800] n='531'/> [33801] n='532'/> [33802] n='533'/> [33803] n='534'/> [33804] n='535'/> [33805] n='536'/> [33806] n='537'/> [33807] n='538'/> [33808] n='539'/> [33809] n='540'/> [33810] n='541'/> [33811] n='542'/> [33812] n='543'/> [33813] n='544'/> [33814] n='545'/> [33815] n='546'/> [33816] n='547'/> [33817] n='548'/> [33818] n='549'/> [33819] n='550'/> [33820] n='551'/> [33821] n='552'/> [33822] n='553'/> [33823] n='554'/> [33824] n='555'/> [33825] n='556'/> [33826] n='557'/> [33827] n='558'/> [33828] n='559'/> [33829] n='560'/> [33830] n='561'/> [33831] n='562'/> [33832] n='563'/> [33833] n='564'/> [33834] n='565'/> [33835] n='566'/> [33836] n='567'/> [33837] n='568'/> [33838] n='569'/> [33839] n='570'/> [33840] n='571'/> [33841] n='572'/> [33842] n='573'/> [33843] n='574'/> [33844] n='575'/> [33845] n='576'/> [33846] n='577'/> [33847] n='578'/> [33848] n='579'/> [33849] n='580'/> [33850] n='581'/> [33851] n='582'/> [33852] n='583'/> [33853] n='584'/> [33854] n='585'/> [33855] n='586'/> [33856] n='587'/> [33857] n='588'/> [33858] n='589'/> [33859] n='590'/> [33860] n='591'/> [33861] n='592'/> [33862] n='593'/> [33863] n='594'/> [33864] n='595'/> [33865] n='596'/> [33866] n='597'/> [33867] n='598'/> [33868] n='599'/> [33869] n='600'/> [33870] n='601'/> [33871] n='602'/> [33872] n='603'/> [33873] n='604'/> [33874] n='605'/> [33875] n='606'/> [33876] n='607'/> [33877] n='608'/> [33878] n='609'/> [33879] n='610'/> [33880] n='611'/> [33881] n='612'/> [33882] n='613'/> [33883] n='614'/> [33884] n='615'/> [33885] n='616'/> [33886] n='617'/> [33887] n='618'/> [33888] n='619'/> [33889] n='620'/> [33890] n='621'/> [33891] n='622'/> [33892] n='623'/> [33893] n='624'/> [33894] n='625'/> [33895] n='626'/> [33896] n='627'/> [33897] n='628'/> [33898] n='629'/> [33899] n='630'/> [33900] n='631'/> [33901] n='632'/> [33902] n='633'/> [33903] n='634'/> [33904] n='635'/> [33905] n='636'/> [33906] n='637'/> [33907] n='638'/> [33908] n='639'/> [33909] n='640'/> [33910] n='641'/> [33911] n='642'/> [33912] n='643'/> [33913] n='644'/> [33914] n='645'/> [33915] n='646'/> [33916] n='647'/> [33917] n='648'/> [33918] n='649'/> [33919] n='650'/> [33920] n='651'/> [33921] n='652'/> [33922] n='653'/> [33923] n='654'/> [33924] n='655'/> [33925] n='656'/> [33926] n='657'/> [33927] n='658'/> [33928] n='659'/> [33929] n='660'/> [33930] n='661'/> [33931] n='662'/> [33932] n='663'/> [33933] n='664'/> [33934] n='665'/> [33935] n='666'/> [33936] n='667'/> [33937] n='668'/> [33938] n='669'/> [33939] n='670'/> [33940] n='671'/> [33941] n='672'/> [33942] n='673'/> [33943] n='674'/> [33944] n='675'/> [33945] n='676'/> [33946] n='677'/> [33947] n='678'/> [33948] n='679'/> [33949] n='680'/> [33950] n='681'/> [33951] n='682'/> [33952] n='683'/> [33953] n='684'/> [33954] n='685'/> [33955] n='686'/> [33956] n='687'/> [33957] n='688'/> [33958] n='689'/> [33959] n='690'/> [33960] n='691'/> [33961] n='692'/> [33962] n='693'/> [33963] n='694'/> [33964] n='695'/> [33965] n='696'/> [33966] n='697'/> [33967] n='698'/> [33968] n='699'/> [33969] n='700'/> [33970] n='701'/> [33971] n='702'/> [33972] n='703'/> [33973] n='704'/> [33974] n='705'/> [33975] n='706'/> [33976] n='707'/> [33977] n='708'/> [33978] n='709'/> [33979] n='710'/> [33980] n='711'/> [33981] n='712'/> [33982] n='713'/> [33983] n='714'/> [33984] n='715'/> [33985] n='716'/> [33986] n='717'/> [33987] n='718'/> [33988] n='719'/> [33989] n='720'/> [33990] n='721'/> [33991] n='722'/> [33992] n='723'/> [33993] n='724'/> [33994] n='725'/> [33995] n='726'/> [33996] n='727'/> [33997] n='728'/> [33998] n='729'/> [33999] n='730'/> [34000] n='731'/> [34001] n='732'/> [34002] n='733'/> [34003] n='734'/> [34004] n='735'/> [34005] n='736'/> [34006] n='737'/> [34007] n='738'/> [34008] n='739'/> [34009] n='740'/> [34010] n='741'/> [34011] n='742'/> [34012] n='743'/> [34013] n='744'/> [34014] n='745'/> [34015] n='746'/> [34016] n='747'/> [34017] n='748'/> [34018] n='749'/> [34019] n='750'/> [34020] n='751'/> [34021] n='752'/> [34022] n='753'/> [34023] n='754'/> [34024] n='755'/> [34025] n='756'/> [34026] n='757'/> [34027] n='758'/> [34028] n='759'/> [34029] n='760'/> [34030] n='761'/> [34031] n='762'/> [34032] n='763'/> [34033] n='764'/> [34034] n='765'/> [34035] n='766'/> [34036] n='767'/> [34037] n='768'/> [34038] n='769'/> [34039] n='770'/> [34040] n='771'/> [34041] n='772'/> [34042] n='773'/> [34043] n='774'/> [34044] n='775'/> [34045] n='776'/> [34046] n='777'/> [34047] n='778'/> [34048] n='779'/> [34049] n='780'/> [34050] n='781'/> [34051] n='782'/> [34052] n='783'/> [34053] n='784'/> [34054] n='785'/> [34055] n='786'/> [34056] n='787'/> [34057] n='788'/> [34058] n='789'/> [34059] n='790'/> [34060] n='791'/> [34061] n='792'/> [34062] n='793'/> [34063] n='794'/> [34064] n='795'/> [34065] n='796'/> [34066] n='797'/> [34067] n='798'/> [34068] n='799'/> [34069] n='800'/> [34070] n='801'/> [34071] n='802'/> [34072] n='803'/> [34073] n='804'/> [34074] n='805'/> [34075] n='806'/> [34076] n='807'/> [34077] n='808'/> [34078] n='809'/> [34079] n='810'/> [34080] n='811'/> [34081] n='812'/> [34082] n='813'/> [34083] n='814'/> [34084] n='815'/> [34085] n='816'/> [34086] n='817'/> [34087] n='818'/> [34088] n='819'/> [34089] n='820'/> [34090] n='821'/> [34091] n='822'/> [34092] n='823'/> [34093] n='824'/> [34094] n='825'/> [34095] n='826'/> [34096] n='827'/> [34097] n='828'/> [34098] n='829'/> [34099] n='830'/> [34100] n='831'/> [34101] n='832'/> [34102] n='833'/> [34103] n='834'/> [34104] n='835'/> [34105] n='836'/> [34106] n='837'/> [34107] n='838'/> [34108] n='839'/> [34109] n='840'/> [34110] n='841'/> [34111] n='842'/> [34112] n='843'/> [34113] n='844'/> [34114] n='845'/> [34115] n='846'/> [34116] n='847'/> [34117] n='848'/> [34118] n='849'/> [34119] n='850'/> [34120] n='851'/> [34121] n='852'/> [34122] n='853'/> [34123] n='854'/> [34124] n='855'/> [34125] n='856'/> [34126] n='857'/> [34127] n='858'/> [34128] n='859'/> [34129] n='860'/> [34130] n='861'/> [34131] n='862'/> [34132] n='863'/> [34133] n='864'/> [34134] n='865'/> [34135] n='866'/> [34136] n='867'/> [34137] n='868'/> [34138] n='869'/> [34139] n='870'/> [34140] n='871'/> [34141] n='872'/> [34142] n='873'/> [34143] n='874'/> [34144] n='875'/> [34145] n='876'/> [34146] n='877'/> [34147] n_/1: 19 +> [34148] n_/10: 6 +> [34149] n_/2: 2 +> [34150] n_/4: 1 +> [34151] n_/naoh: 1 +> [34152] na: 1 +> [34153] na-tasha: 1 +> [34154] na_{2}co_{3: 5 +> [34155] na_{2}cr_{2}o_{7: 1 +> [34156] na_{2}o: 10 +> [34157] na_{2}si_{4}o_{9: 1 +> [34158] nacl: 1 +> [34159] nadinka: 5 +> [34160] nag: 15 +> [34161] nagging: 6 +> [34162] nags: 1 +> [34163] nags--some: 1 +> [34164] nail: 26 +> [34165] nail-brush: 2 +> [34166] nail-scissors: 1 +> [34167] nailed: 5 +> [34168] nailing: 3 +> [34169] nails: 39 +> [34170] nainsook: 1 +> [34171] naiv: 1 +> [34172] naive: 37 +> [34173] naively: 12 +> [34174] naiveness: 2 +> [34175] naivete: 8 +> [34176] naked: 63 +> [34177] naked! [34178] naked--was: 1 +> [34179] naked.’: 1 +> [34180] naked? [34181] nakedness: 6 +> [34182] name: 723 +> [34183] name's: 3 +> [34184] name--all: 1 +> [34185] name--and: 1 +> [34186] name--do: 1 +> [34187] name--he: 1 +> [34188] name--his: 1 +> [34189] name--in: 1 +> [34190] name--she: 1 +> [34191] name--that: 1 +> [34192] name--was: 1 +> [34193] name--well: 1 +> [34194] name--you: 2 +> [34195] name-day: 3 +> [34196] name-i: 1 +> [34197] name-the: 1 +> [34198] name. [34199] name? [34200] named: 66 +> [34201] nameday: 1 +> [34202] nameless: 6 +> [34203] namely: 24 +> [34204] names: 75 +> [34205] names--all: 1 +> [34206] names?...the: 1 +> [34207] namesake: 3 +> [34208] naming: 6 +> [34209] nan: 1 +> [34210] nankeen-covered: 1 +> [34211] nankin: 1 +> [34212] nantes: 2 +> [34213] naoh: 34 +> [34214] naor: 1 +> [34215] nap: 17 +> [34216] nape: 11 +> [34217] naphtha: 6 +> [34218] naphthalene: 1 +> [34219] naphthenates: 2 +> [34220] naphthenic: 8 +> [34221] naphthol: 1 +> [34222] naphtholphthalein: 4 +> [34223] napkin: 32 +> [34224] napkins: 5 +> [34225] naples: 16 +> [34226] napoleon: 520 +> [34227] napoleon's: 101 +> [34228] napoleon--demands: 1 +> [34229] napoleon--hardly: 1 +> [34230] napoleon--his: 1 +> [34231] napoleon--reaching: 1 +> [34232] napoleon--that: 1 +> [34233] napoleon--the: 2 +> [34234] napoleonic: 8 +> [34235] napoleons: 4 +> [34236] napoléon: 2 +> [34237] napping: 2 +> [34238] napravnik: 2 +> [34239] napravnik. [34240] napravnik? [34241] napthenic: 1 +> [34242] naptholphthalein: 1 +> [34243] narcissus: 1 +> [34244] narcotic: 1 +> [34245] narrate: 2 +> [34246] narrated: 4 +> [34247] narrates: 1 +> [34248] narrating: 3 +> [34249] narration: 5 +> [34250] narration--its: 1 +> [34251] narrative: 48 +> [34252] narratives: 9 +> [34253] narrator: 4 +> [34254] narrators: 1 +> [34255] narrow: 130 +> [34256] narrow--i: 1 +> [34257] narrow-brimmed: 1 +> [34258] narrow-mouthed: 2 +> [34259] narrowed: 6 +> [34260] narrower: 3 +> [34261] narrowest: 2 +> [34262] narrowing: 2 +> [34263] narrowly: 6 +> [34264] narrowness: 1 +> [34265] naryshkin: 3 +> [34266] naryshkin--which: 1 +> [34267] naryshkina: 1 +> [34268] naryshkins: 1 +> [34269] nascent: 1 +> [34270] naso: 1 +> [34271] nastasia: 386 +> [34272] nastasia's: 30 +> [34273] nastasya: 92 +> [34274] nastasya's: 5 +> [34275] nastasya--he: 1 +> [34276] nastenka: 137 +> [34277] nastenka's: 1 +> [34278] nastenka--at: 1 +> [34279] nastenka--then: 1 +> [34280] nastia: 2 +> [34281] nastia's: 1 +> [34282] nastier: 2 +> [34283] nastiest: 11 +> [34284] nastily: 2 +> [34285] nastiness: 7 +> [34286] nastinesses: 2 +> [34287] nasty: 103 +> [34288] nastya: 9 +> [34289] natalia: 12 +> [34290] natalia's: 1 +> [34291] natalie: 18 +> [34292] nataly: 5 +> [34293] natalya: 3 +> [34294] natasha: 1092 +> [34295] natasha! [34296] natasha's: 115 +> [34297] natasha--"is: 1 +> [34298] natasha--"it's: 1 +> [34299] natasha--a: 1 +> [34300] natasha--are: 1 +> [34301] natasha--as: 1 +> [34302] natasha--mademoiselle: 1 +> [34303] natation: 1 +> [34304] nation: 55 +> [34305] nation's: 3 +> [34306] nation--even: 1 +> [34307] nation--should: 1 +> [34308] national: 58 +> [34309] nationalism: 1 +> [34310] nationalist: 1 +> [34311] nationalistic: 3 +> [34312] nationalities: 1 +> [34313] nationality: 5 +> [34314] nationalize: 1 +> [34315] nations: 52 +> [34316] nations. [34317] native: 41 +> [34318] natives: 4 +> [34319] nativity: 2 +> [34320] natty: 1 +> [34321] natural: 252 +> [34322] natural--and: 1 +> [34323] natural--how: 1 +> [34324] natural--it's: 1 +> [34325] natural. [34326] naturalists: 3 +> [34327] naturally: 121 +> [34328] naturally—that: 1 +> [34329] naturally, [34330] naturalness: 3 +> [34331] nature: 375 +> [34332] nature's: 2 +> [34333] nature, [34334] nature--and: 1 +> [34335] nature--how: 1 +> [34336] nature--reveal: 1 +> [34337] nature--to: 1 +> [34338] nature--which: 1 +> [34339] nature--you: 1 +> [34340] nature. [34341] natured: 6 +> [34342] naturel: 1 +> [34343] natures: 16 +> [34344] natures—oh: 1 +> [34345] natures--by: 1 +> [34346] naught: 16 +> [34347] naught, [34348] naught [34349] naughtiness: 2 +> [34350] naughty: 22 +> [34351] nausea: 6 +> [34352] nauseating: 1 +> [34353] nautical: 2 +> [34354] naval: 8 +> [34355] nave: 3 +> [34356] navel: 1 +> [34357] navigable: 2 +> [34358] navvy: 1 +> [34359] navy: 6 +> [34360] nay: 60 +> [34361] nay--the: 1 +> [34362] nazar: 3 +> [34363] nazarenes: 6 +> [34364] nazareth: 1 +> [34365] nazarite: 2 +> [34366] nazaryev: 1 +> [34367] naïf: 1 +> [34368] naïve: 26 +> [34369] naïve, [34370] naïve--a: 1 +> [34371] naïvely: 15 +> [34372] naïveté: 3 +> [34373] ne: 22 +> [34374] ne'er-do-wells: 2 +> [34375] neapolitans: 1 +> [34376] near: 564 +> [34377] near, [34378] near--lay: 1 +> [34379] near-by: 1 +> [34380] near? [34381] neared: 4 +> [34382] nearer: 213 +> [34383] nearer--nearer: 1 +> [34384] nearest: 89 +> [34385] nearing: 7 +> [34386] nearly: 343 +> [34387] nearness: 23 +> [34388] nearsighted: 1 +> [34389] neat: 20 +> [34390] neat's-foot: 2 +> [34391] neatly: 21 +> [34392] neatness: 9 +> [34393] nebuchadnezzar: 2 +> [34394] nebuchadnezzar’s: 1 +> [34395] nebulous: 1 +> [34396] necessaries: 4 +> [34397] necessarily: 29 +> [34398] necessary: 440 +> [34399] necessary, [34400] necessary--in: 1 +> [34401] necessary--no: 1 +> [34402] necessary--that: 2 +> [34403] necessary? [34404] necessitate: 1 +> [34405] necessitated: 1 +> [34406] necessitates: 6 +> [34407] necessitating: 2 +> [34408] necessities: 5 +> [34409] necessity: 139 +> [34410] necessity--the: 1 +> [34411] necessity. [34412] neck: 253 +> [34413] neck--a: 1 +> [34414] neck--suddenly: 1 +> [34415] neck--which: 1 +> [34416] neck-cloth: 1 +> [34417] neck-tie: 7 +> [34418] neck-ties: 2 +> [34419] neckar: 2 +> [34420] neckar's: 1 +> [34421] neckband: 3 +> [34422] neckcloth: 1 +> [34423] neckerchiefs: 2 +> [34424] necklace: 8 +> [34425] necklaces: 1 +> [34426] necks: 22 +> [34427] necktie: 1 +> [34428] need: 638 +> [34429] need! [34430] need, [34431] need, [34432] need--that: 1 +> [34433] needed: 205 +> [34434] needed—drop: 1 +> [34435] needed--and: 1 +> [34436] needed--the: 1 +> [34437] needed.... [34438] needed.”: 1 +> [34439] needful: 13 +> [34440] needful--to: 1 +> [34441] needing: 6 +> [34442] needle: 23 +> [34443] needle-like: 1 +> [34444] needle.... [34445] needle. [34446] needles: 7 +> [34447] needles--though: 1 +> [34448] needless: 8 +> [34449] needlessly: 7 +> [34450] needlework: 2 +> [34451] needn't: 37 +> [34452] needs: 102 +> [34453] needs--good: 1 +> [34454] needs--he: 1 +> [34455] needy: 1 +> [34456] nefedevitch: 9 +> [34457] neffer: 1 +> [34458] nefsky: 1 +> [34459] negation: 13 +> [34460] negative: 19 +> [34461] negatived: 1 +> [34462] negatively: 2 +> [34463] neglect: 27 +> [34464] neglected: 31 +> [34465] neglecting: 5 +> [34466] neglects: 3 +> [34467] negligence: 32 +> [34468] negligent: 1 +> [34469] negligently: 2 +> [34470] negotiate: 8 +> [34471] negotiating: 2 +> [34472] negotiation: 3 +> [34473] negotiations: 18 +> [34474] negro: 6 +> [34475] negroes: 3 +> [34476] negus: 1 +> [34477] nehmen: 1 +> [34478] neigh: 1 +> [34479] neighbor: 54 +> [34480] neighbor's: 1 +> [34481] neighborhood: 33 +> [34482] neighboring: 17 +> [34483] neighbors: 43 +> [34484] neighbors--too: 1 +> [34485] neighbor’s: 1 +> [34486] neighbour: 24 +> [34487] neighbour!'--i: 1 +> [34488] neighbour's: 13 +> [34489] neighbourhood: 19 +> [34490] neighbouring: 18 +> [34491] neighbours: 17 +> [34492] neighbours--the: 1 +> [34493] neighed: 4 +> [34494] neighing: 5 +> [34495] neithah: 1 +> [34496] neither: 355 +> [34497] nekrassov: 7 +> [34498] nelaton: 1 +> [34499] nelyudov: 2 +> [34500] nemesis: 1 +> [34501] neo-legalism: 1 +> [34502] nephew: 75 +> [34503] nephew's: 5 +> [34504] nephew--"allow: 1 +> [34505] nephew--and: 1 +> [34506] nephews: 2 +> [34507] nepos: 2 +> [34508] neptunova: 1 +> [34509] nero: 2 +> [34510] nero's: 1 +> [34511] neronian: 1 +> [34512] nerve: 16 +> [34513] nerved: 2 +> [34514] nerveless: 2 +> [34515] nerves: 58 +> [34516] nervous: 128 +> [34517] nervously: 48 +> [34518] nervousness: 8 +> [34519] neskuchny: 1 +> [34520] nest: 19 +> [34521] nest-egg: 1 +> [34522] nestled: 4 +> [34523] nestles: 1 +> [34524] nestling: 4 +> [34525] nestlings: 3 +> [34526] nesvitski: 66 +> [34527] nesvitski's: 5 +> [34528] net: 14 +> [34529] nether: 3 +> [34530] netherland: 1 +> [34531] netherlands: 9 +> [34532] nethermost: 1 +> [34533] nets: 2 +> [34534] netted: 4 +> [34535] netting: 1 +> [34536] nettle: 1 +> [34537] nettled: 3 +> [34538] nettles: 4 +> [34539] network: 24 +> [34540] neutral: 35 +> [34541] neutrality: 3 +> [34542] neutralization: 10 +> [34543] neutralize: 17 +> [34544] neutralized: 17 +> [34545] neutralizes: 2 +> [34546] neutralizing: 9 +> [34547] neva: 25 +> [34548] neve: 1 +> [34549] never: 2674 +> [34550] never! [34551] never--but: 1 +> [34552] never--those: 1 +> [34553] never-ceasing: 4 +> [34554] never-die: 1 +> [34555] never-failing: 2 +> [34556] never-to-be-forgotten: 1 +> [34557] never-varying: 1 +> [34558] neverovski's: 1 +> [34559] nevertheless: 60 +> [34560] nevertheless--a: 1 +> [34561] nevsky: 31 +> [34562] nevyedovsky: 16 +> [34563] nevyedovsky's: 1 +> [34564] new: 1362 +> [34565] new! [34566] new--especially: 1 +> [34567] new--there: 1 +> [34568] new-born: 5 +> [34569] new-comer: 9 +> [34570] new-comers: 3 +> [34571] new-fangled: 2 +> [34572] new-fashioned: 1 +> [34573] new-found: 3 +> [34574] new-mown: 2 +> [34575] new-old: 1 +> [34576] new-risen: 1 +> [34577] newborn: 3 +> [34578] newby: 19 +> [34579] newcomer: 17 +> [34580] newcomers: 4 +> [34581] newer: 1 +> [34582] newest: 5 +> [34583] newfoundland: 1 +> [34584] newly: 36 +> [34585] newly-acquired: 1 +> [34586] newly-adopted: 1 +> [34587] newly-awakened: 1 +> [34588] newly-discovered: 1 +> [34589] newness: 2 +> [34590] newport: 1 +> [34591] news: 426 +> [34592] news—she: 1 +> [34593] news--he: 1 +> [34594] news--if: 1 +> [34595] news--it: 1 +> [34596] news.--"say: 1 +> [34597] news? [34598] newsletter: 19 +> [34599] newsmonger--one: 1 +> [34600] newspaper: 26 +> [34601] newspaper. [34602] newspapers: 21 +> [34603] newton: 7 +> [34604] newton's: 1 +> [34605] next: 821 +> [34606] next--to: 1 +> [34607] next-of-kin: 1 +> [34608] next-of-kin—both: 1 +> [34609] next? [34610] nexus: 1 +> [34611] ney: 6 +> [34612] ney's: 2 +> [34613] ney's--ran: 1 +> [34614] ney--a: 1 +> [34615] nezhin: 1 +> [34616] ne’er: 1 +> [34617] ni: 1 +> [34618] niagara: 2 +> [34619] nibbled: 3 +> [34620] nibbling: 1 +> [34621] nice: 220 +> [34622] nice! [34623] nice-looking: 4 +> [34624] nice.... [34625] nicely: 21 +> [34626] nicer: 7 +> [34627] nicest: 4 +> [34628] niceties: 3 +> [34629] nicety: 3 +> [34630] nicety. [34631] nice’--‘more: 1 +> [34632] nich: 1 +> [34633] niche: 4 +> [34634] nicher: 1 +> [34635] niches: 1 +> [34636] nicholai: 1 +> [34637] nicholas: 630 +> [34638] nicholas's: 3 +> [34639] nicholas--"into: 1 +> [34640] nicholas--"said: 1 +> [34641] nicholas--don't: 1 +> [34642] nicholas--having: 1 +> [34643] nicht: 2 +> [34644] nicht, [34645] nick: 8 +> [34646] nickel: 4 +> [34647] nickname: 10 +> [34648] nicknamed: 7 +> [34649] nicknames: 1 +> [34650] nicolai: 22 +> [34651] nicolaievitch: 38 +> [34652] nicolaievitch's: 1 +> [34653] nicolaievitch,"--she: 1 +> [34654] nicolaievitch,--if: 1 +> [34655] nicolaievitch--undeterred: 1 +> [34656] nicolaievitch--what's: 1 +> [34657] nicolaitan: 1 +> [34658] niece: 26 +> [34659] nieces: 3 +> [34660] niemen: 20 +> [34661] niemen--only: 1 +> [34662] niggardliness: 1 +> [34663] niggardly: 2 +> [34664] nigger: 1 +> [34665] nigh: 3 +> [34666] nigh.’: 3 +> [34667] night: 1074 +> [34668] night! [34669] night—not: 1 +> [34670] night's: 23 +> [34671] night, [34672] night--a: 1 +> [34673] night--and: 1 +> [34674] night--four: 5 +> [34675] night--i: 1 +> [34676] night--some: 1 +> [34677] night--that: 1 +> [34678] night--the: 1 +> [34679] night-bird: 1 +> [34680] night-cabman: 1 +> [34681] night-cabmen: 1 +> [34682] night-capped: 1 +> [34683] night-fog: 1 +> [34684] night-prowler: 1 +> [34685] night-shirt: 1 +> [34686] night-watchman: 1 +> [34687] night..."--"you: 1 +> [34688] night.... [34689] night. [34690] nightcap: 15 +> [34691] nightfall: 6 +> [34692] nightfall, [34693] nightgown: 1 +> [34694] nightingale: 2 +> [34695] nightingales: 2 +> [34696] nightly: 4 +> [34697] nightmare: 32 +> [34698] nightmare, [34699] nightmare [34700] nightmares: 3 +> [34701] nightmarish: 1 +> [34702] nights: 71 +> [34703] nightshirt: 3 +> [34704] nighttime: 2 +> [34705] nigre: 7 +> [34706] nihil: 4 +> [34707] nihilism: 1 +> [34708] nihilism--though: 1 +> [34709] nihilist: 6 +> [34710] nihilistic: 4 +> [34711] nihilists: 9 +> [34712] nikandrov: 1 +> [34713] nikanorovich: 1 +> [34714] nikifor: 5 +> [34715] nikiforovna: 2 +> [34716] nikita: 336 +> [34717] nikita's: 33 +> [34718] nikita, [34719] nikita--'it's: 1 +> [34720] nikitenko: 1 +> [34721] nikitin: 3 +> [34722] nikitins: 1 +> [34723] nikitishna: 1 +> [34724] nikitishna!--what: 1 +> [34725] nikititch: 2 +> [34726] nikititch's: 1 +> [34727] nikititch? [34728] nikitski: 2 +> [34729] nikitsky: 1 +> [34730] nikodim: 24 +> [34731] nikolaeva: 2 +> [34732] nikolaevich: 4 +> [34733] nikolaevich's: 1 +> [34734] nikolaevitch: 1 +> [34735] nikolaevna: 34 +> [34736] nikolaevna's: 2 +> [34737] nikolaevsky: 1 +> [34738] nikolaitch: 27 +> [34739] nikolaitch's: 4 +> [34740] nikolay: 250 +> [34741] nikolay'd: 1 +> [34742] nikolay's: 12 +> [34743] nikolay...you: 2 +> [34744] nikolay. [34745] nikolenka: 10 +> [34746] nikolenka's: 2 +> [34747] nikolievich: 1 +> [34748] nikolievna: 3 +> [34749] nikolievna's: 1 +> [34750] nikolinka: 1 +> [34751] nikolski: 1 +> [34752] nikulins: 1 +> [34753] nil: 3 +> [34754] nile: 1 +> [34755] nilsson: 3 +> [34756] nilsson's: 1 +> [34757] nimble: 7 +> [34758] nimbleness: 1 +> [34759] nimbly: 4 +> [34760] nimuegen: 2 +> [34761] nina: 91 +> [34762] nine: 142 +> [34763] nine--but: 1 +> [34764] nine-miles: 1 +> [34765] nine-tenths: 6 +> [34766] nine-year-old: 1 +> [34767] ninepence: 1 +> [34768] nines: 1 +> [34769] nineteen: 10 +> [34770] nineteenth: 21 +> [34771] nineties: 2 +> [34772] ninety: 11 +> [34773] ninety--that: 1 +> [34774] ninety-eight: 1 +> [34775] ninety-nine: 5 +> [34776] ninth: 4 +> [34777] ninth--that: 1 +> [34778] ninth-parts: 1 +> [34779] nip: 2 +> [34780] nipped: 1 +> [34781] nipping: 2 +> [34782] nisi: 1 +> [34783] nitouche: 1 +> [34784] nitrate: 3 +> [34785] nitrogen: 4 +> [34786] nitrogenous: 1 +> [34787] nix: 1 +> [34788] nizhegorod: 4 +> [34789] nizhigorod: 1 +> [34790] nizhni: 7 +> [34791] nizhni-novgorod: 2 +> [34792] no: 8262 +> [34793] no!--but: 1 +> [34794] no!--there: 1 +> [34795] no! [34796] no,--the: 1 +> [34797] no, [34798] no--a: 1 +> [34799] no--aglaya--come: 1 +> [34800] no--and: 1 +> [34801] no--but: 1 +> [34802] no--don't: 1 +> [34803] no--i: 4 +> [34804] no--in: 1 +> [34805] no--it: 1 +> [34806] no--it's: 1 +> [34807] no--mr: 1 +> [34808] no--never--nowhere: 1 +> [34809] no--no: 3 +> [34810] no--no--my: 1 +> [34811] no--not: 2 +> [34812] no--nothing: 1 +> [34813] no--oh: 1 +> [34814] no--perhaps: 1 +> [34815] no--prince: 1 +> [34816] no--promise: 1 +> [34817] no--so: 1 +> [34818] no--the: 1 +> [34819] no--this: 1 +> [34820] no--yes--i: 1 +> [34821] no-no: 1 +> [34822] no-no-i'm: 1 +> [34823] no-no-no: 1 +> [34824] no-o-o: 1 +> [34825] no-top: 1 +> [34826] no...truer: 1 +> [34827] no. [34828] noah: 1 +> [34829] noah's: 1 +> [34830] noah’s: 1 +> [34831] nob: 1 +> [34832] nobility: 71 +> [34833] nobility [34834] nobis: 4 +> [34835] noble: 166 +> [34836] noble's: 2 +> [34837] noble--are: 2 +> [34838] noble-hearted: 4 +> [34839] noble-minded: 3 +> [34840] noble-mindedness: 1 +> [34841] noble [34842] nobleman: 29 +> [34843] nobleman's: 4 +> [34844] noblemen: 22 +> [34845] noblemen's: 3 +> [34846] nobleness: 1 +> [34847] nobler: 10 +> [34848] nobler'--all: 1 +> [34849] nobles: 35 +> [34850] nobles--nobles: 1 +> [34851] noblesse: 11 +> [34852] noblesse [34853] noblest: 11 +> [34854] nobly: 9 +> [34855] nobly--you: 1 +> [34856] nobodies: 1 +> [34857] nobody: 101 +> [34858] nobody's: 4 +> [34859] nobody--there: 1 +> [34860] nobody. [34861] nobs: 1 +> [34862] nocturnal: 1 +> [34863] nocturne: 1 +> [34864] nocturnes: 1 +> [34865] nod: 25 +> [34866] nodded: 142 +> [34867] nodded--once: 1 +> [34868] nodding: 48 +> [34869] nods: 4 +> [34870] noise: 156 +> [34871] noise--it: 1 +> [34872] noised: 2 +> [34873] noiseless: 11 +> [34874] noiselessly: 30 +> [34875] noiselessness: 1 +> [34876] noises: 6 +> [34877] noisily: 25 +> [34878] noisily--tiers: 1 +> [34879] noisome: 4 +> [34880] noisy: 28 +> [34881] nokolay: 1 +> [34882] nom: 6 +> [34883] nomad: 1 +> [34884] nomads: 1 +> [34885] nominal: 3 +> [34886] nominally: 2 +> [34887] nominated: 1 +> [34888] nomination: 1 +> [34889] non: 29 +> [34890] non-applicability: 1 +> [34891] non-arrival: 1 +> [34892] non-commissioned: 1 +> [34893] non-conductor: 2 +> [34894] non-controversial: 1 +> [34895] non-crystalline: 3 +> [34896] non-drying: 1 +> [34897] non-existence, [34898] non-existent: 6 +> [34899] non-fats: 1 +> [34900] non-human: 1 +> [34901] non-materialistic: 1 +> [34902] non-milled: 1 +> [34903] non-official: 1 +> [34904] non-pauline: 1 +> [34905] non-platonic: 1 +> [34906] non-professional: 1 +> [34907] non-russian: 1 +> [34908] non-standard: 1 +> [34909] non-success: 1 +> [34910] non-volatile: 3 +> [34911] non-voters: 1 +> [34912] non [34913] nonchalance: 5 +> [34914] nonchalant: 2 +> [34915] nonchalantly: 1 +> [34916] noncommissioned: 12 +> [34917] nondescript: 1 +> [34918] none: 257 +> [34919] none's: 1 +> [34920] none--none: 1 +> [34921] nonentities: 1 +> [34922] nonentity: 2 +> [34923] nonhuman: 1 +> [34924] nonintervention: 1 +> [34925] nonmilitary: 1 +> [34926] nonmoral: 1 +> [34927] nonobservance: 4 +> [34928] nonperformance: 1 +> [34929] nonplussed: 11 +> [34930] nonproprietary: 19 +> [34931] nonreceipt: 1 +> [34932] nonrecognition: 2 +> [34933] nonsense: 363 +> [34934] nonsense! [34935] nonsense—as: 1 +> [34936] nonsense, [34937] nonsense--"a: 1 +> [34938] nonsense--but: 1 +> [34939] nonsense--i: 1 +> [34940] nonsense--old: 1 +> [34941] nonsense--simply: 1 +> [34942] nonsense. [34943] nonsense? [34944] nonsensical: 2 +> [34945] noodle: 1 +> [34946] noodles: 1 +> [34947] nook: 6 +> [34948] nooks: 2 +> [34949] noon: 39 +> [34950] noon--was: 1 +> [34951] noon-day: 1 +> [34952] noonday: 2 +> [34953] noose: 16 +> [34954] nor: 806 +> [34955] nor--though: 1 +> [34956] nord: 1 +> [34957] nordston: 23 +> [34958] nore: 2 +> [34959] norgate: 4 +> [34960] norm: 1 +> [34961] norma: 5 +> [34962] norma's: 3 +> [34963] normal: 87 +> [34964] normally: 2 +> [34965] norman: 8 +> [34966] normandy: 11 +> [34967] normans: 1 +> [34968] north: 63 +> [34969] north-syrian: 1 +> [34970] northeasterly: 1 +> [34971] northerly: 1 +> [34972] northern: 6 +> [34973] northwesterly: 1 +> [34974] norwich: 1 +> [34975] nos: 3 +> [34976] nose: 173 +> [34977] nose! [34978] nose, [34979] nose--who: 1 +> [34980] nose-rings: 1 +> [34981] nose. [34982] nose. [34983] nosegay: 10 +> [34984] nosegay-man: 1 +> [34985] nosegays: 1 +> [34986] noses: 19 +> [34987] nosing: 1 +> [34988] nosov: 1 +> [34989] nostitz: 2 +> [34990] nostradamus: 1 +> [34991] nostrand: 4 +> [34992] nostrand's: 1 +> [34993] nostril: 3 +> [34994] nostrils: 16 +> [34995] nostrils--and: 1 +> [34996] nostrums: 1 +> [34997] not: 22642 +> [34998] not!--bah: 1 +> [34999] not! [35000] not, [35001] not,”: 1 +> [35002] not--and: 2 +> [35003] not--as: 1 +> [35004] not--but: 1 +> [35005] not--do: 1 +> [35006] not--entirely: 1 +> [35007] not--for: 1 +> [35008] not--hurt: 1 +> [35009] not--i: 2 +> [35010] not--in: 1 +> [35011] not--it: 1 +> [35012] not--my: 1 +> [35013] not--of: 1 +> [35014] not--reserve: 1 +> [35015] not--would: 1 +> [35016] not..._not: 1 +> [35017] not...i: 1 +> [35018] not. [35019] not?--and: 1 +> [35020] not? [35021] not? [35022] not? [35023] notabilities: 3 +> [35024] notable: 6 +> [35025] notables: 3 +> [35026] notaries: 1 +> [35027] notary: 5 +> [35028] notary's: 1 +> [35029] notched: 1 +> [35030] notches: 2 +> [35031] note: 410 +> [35032] note! [35033] note'--a: 1 +> [35034] note--i: 1 +> [35035] note--not: 1 +> [35036] note-book: 3 +> [35037] note-paper: 1 +> [35038] note.—and: 1 +> [35039] note. [35040] notebook: 14 +> [35041] notebooks: 2 +> [35042] noted: 54 +> [35043] notepaper: 4 +> [35044] notepaper--do: 1 +> [35045] notes: 201 +> [35046] notes--what: 1 +> [35047] notes. [35048] notes [35049] noteworthy: 8 +> [35050] nothing: 2879 +> [35051] nothing!... [35052] nothing! [35053] nothing"--and: 1 +> [35054] nothing—but: 1 +> [35055] nothing's: 4 +> [35056] nothing, [35057] nothing--and: 2 +> [35058] nothing--as: 1 +> [35059] nothing--at: 1 +> [35060] nothing--don't: 1 +> [35061] nothing--it: 1 +> [35062] nothing--it's: 1 +> [35063] nothing--nothing: 3 +> [35064] nothing--of: 1 +> [35065] nothing--or: 1 +> [35066] nothing--she's: 1 +> [35067] nothing--tea: 1 +> [35068] nothing--that: 1 +> [35069] nothing--unless: 1 +> [35070] nothing. [35071] nothingness: 5 +> [35072] nothingness. [35073] notice: 380 +> [35074] notice, [35075] notice--forget: 1 +> [35076] noticeable: 37 +> [35077] noticeably: 4 +> [35078] noticed: 499 +> [35079] noticed'--what: 1 +> [35080] notices: 13 +> [35081] noticing: 160 +> [35082] notified: 1 +> [35083] notifies: 20 +> [35084] noting: 14 +> [35085] notion: 65 +> [35086] notion--science: 1 +> [35087] notion--to: 1 +> [35088] notions: 23 +> [35089] notoriety: 6 +> [35090] notorious: 19 +> [35091] notoriously: 2 +> [35092] notre: 5 +> [35093] notres: 1 +> [35094] notwithstanding: 12 +> [35095] notwithstanding--their: 1 +> [35096] nought: 4 +> [35097] nouns: 1 +> [35098] nourish: 3 +> [35099] nourishing: 1 +> [35100] nourishment: 5 +> [35101] nous: 8 +> [35102] nouveau: 2 +> [35103] nov: 1 +> [35104] nova: 1 +> [35105] novel: 53 +> [35106] novel-reading: 2 +> [35107] novel;--characters: 1 +> [35108] novelist: 2 +> [35109] novelists: 5 +> [35110] novels: 17 +> [35111] novelties: 1 +> [35112] novelty: 23 +> [35113] november: 37 +> [35114] novgorod: 1 +> [35115] novice: 20 +> [35116] novices: 1 +> [35117] novice’s: 1 +> [35118] novikov's: 1 +> [35119] novitiate: 1 +> [35120] novoe: 2 +> [35121] novosiltsev: 4 +> [35122] novosiltsev's: 1 +> [35123] novozemlianski: 1 +> [35124] now: 5882 +> [35125] now!--and-and-and: 1 +> [35126] now! [35127] now"--michael: 1 +> [35128] now"--this: 1 +> [35129] now— [35130] now—but: 1 +> [35131] now—do: 1 +> [35132] now—for: 1 +> [35133] now—from: 1 +> [35134] now—here—you're: 1 +> [35135] now—i: 1 +> [35136] now—in: 1 +> [35137] now—it's: 1 +> [35138] now—perhaps: 1 +> [35139] now—she: 1 +> [35140] now—that: 3 +> [35141] now—that's: 1 +> [35142] now—the: 1 +> [35143] now—there'll: 1 +> [35144] now—to: 2 +> [35145] now—with: 1 +> [35146] now't: 1 +> [35147] now,--perhaps: 1 +> [35148] now, [35149] now--"only: 1 +> [35150] now--a: 1 +> [35151] now--all: 2 +> [35152] now--alone: 1 +> [35153] now--and: 3 +> [35154] now--at: 2 +> [35155] now--but: 1 +> [35156] now--didn't: 1 +> [35157] now--for: 1 +> [35158] now--he: 1 +> [35159] now--i: 4 +> [35160] now--i'll: 1 +> [35161] now--ill: 1 +> [35162] now--in: 1 +> [35163] now--it: 1 +> [35164] now--it's: 1 +> [35165] now--ivan: 1 +> [35166] now--knew: 1 +> [35167] now--let's: 1 +> [35168] now--look: 1 +> [35169] now--natasha: 1 +> [35170] now--no: 2 +> [35171] now--now: 6 +> [35172] now--simply: 1 +> [35173] now--that: 2 +> [35174] now--that's: 1 +> [35175] now--the: 2 +> [35176] now--there: 1 +> [35177] now--this: 3 +> [35178] now--to: 1 +> [35179] now--well: 1 +> [35180] now--were: 1 +> [35181] now--what: 3 +> [35182] now--when: 1 +> [35183] now--which: 2 +> [35184] now--with: 1 +> [35185] now--wouldn't: 1 +> [35186] now--you: 3 +> [35187] now-a-days: 6 +> [35188] now.... [35189] now...everything's: 1 +> [35190] now...we: 1 +> [35191] now...why: 1 +> [35192] now. [35193] now. [35194] now [35195] now? [35196] nowadays: 69 +> [35197] nowadays--but: 1 +> [35198] nowadays?—you: 1 +> [35199] nowhere: 57 +> [35200] noxious: 10 +> [35201] nozdryov: 3 +> [35202] nucleus: 1 +> [35203] nudge: 1 +> [35204] nudged: 9 +> [35205] nudging: 5 +> [35206] nuevo: 1 +> [35207] nuisance: 15 +> [35208] nuisances: 1 +> [35209] nuits: 1 +> [35210] nullify: 1 +> [35211] nullifying: 2 +> [35212] nullity: 1 +> [35213] numb: 11 +> [35214] numbed: 6 +> [35215] number: 310 +> [35216] number--7: 1 +> [35217] number--as: 1 +> [35218] number--the: 1 +> [35219] number--wijs: 1 +> [35220] number-wijs: 1 +> [35221] number. [35222] numbered: 14 +> [35223] numbered. [35224] numberless: 2 +> [35225] numbers: 54 +> [35226] numbing: 4 +> [35227] numerical: 5 +> [35228] numerically: 2 +> [35229] numerous: 79 +> [35230] numerova: 1 +> [35231] numps: 1 +> [35232] numskull: 1 +> [35233] nun: 3 +> [35234] nun's: 1 +> [35235] nunnery: 7 +> [35236] nuns: 3 +> [35237] nuptial: 1 +> [35238] nur: 1 +> [35239] nurse: 145 +> [35240] nurse's: 10 +> [35241] nurse,--all: 1 +> [35242] nurse--knowing: 1 +> [35243] nurse--still: 1 +> [35244] nursed: 11 +> [35245] nursemaids: 1 +> [35246] nursery: 51 +> [35247] nurses: 12 +> [35248] nurse’s: 1 +> [35249] nursing: 25 +> [35250] nut: 8 +> [35251] nut-and-honey: 1 +> [35252] nut-brown: 1 +> [35253] nutrition: 3 +> [35254] nuts: 20 +> [35255] nuts [35256] nutshell: 3 +> [35257] nutty: 1 +> [35258] nymphe: 1 +> [35259] nymphs: 3 +> [35260] nÎmes: 2 +> [35261] nÔtredame: 1 +> [35262] négligé: 1 +> [35263] nîmes: 55 +> [35264] nîmes--for: 1 +> [35265] nîmes--took: 1 +> [35266] nôtredame: 32 +> [35267] nôtredame's: 3 +> [35268] n’importe: 1 +> [35269] o: 132 +> [35270] o'clock: 375 +> [35271] o'clock—the: 1 +> [35272] o'clock'--mark: 1 +> [35273] o'clock,--according: 1 +> [35274] o'clock--only: 1 +> [35275] o'clock--the: 1 +> [35276] o'clock.--vronsky: 1 +> [35277] o'd: 2 +> [35278] o'er: 4 +> [35279] o'erpassed: 1 +> [35280] o--ro: 1 +> [35281] o-hoy: 1 +> [35282] o-ne: 1 +> [35283] o-w-n: 1 +> [35284] oaf--has: 1 +> [35285] oak: 39 +> [35286] oak-chest: 1 +> [35287] oak-tree: 2 +> [35288] oak-tree—and: 1 +> [35289] oaken: 1 +> [35290] oaks: 10 +> [35291] oar: 10 +> [35292] oars: 9 +> [35293] oases: 1 +> [35294] oasis: 3 +> [35295] oat: 4 +> [35296] oat-straw: 1 +> [35297] oates: 1 +> [35298] oatfield: 3 +> [35299] oath: 64 +> [35300] oath--and: 1 +> [35301] oath--this: 1 +> [35302] oath-fellow: 2 +> [35303] oaths: 25 +> [35304] oatmill: 1 +> [35305] oats: 36 +> [35306] oats--that: 1 +> [35307] oats? [35308] ob: 4 +> [35309] obdorsk: 11 +> [35310] obdurate: 3 +> [35311] obedience: 39 +> [35312] obedience--which: 1 +> [35313] obedient: 26 +> [35314] obediently: 16 +> [35315] obeisance: 1 +> [35316] ober-hofmarschal: 1 +> [35317] obey: 52 +> [35318] obeyed: 37 +> [35319] obeying: 16 +> [35320] obeys: 2 +> [35321] obiralovka: 1 +> [35322] object: 379 +> [35323] object—that's: 1 +> [35324] object—to: 1 +> [35325] object,--always: 1 +> [35326] object--an: 1 +> [35327] object--ha-ha: 1 +> [35328] object--he: 1 +> [35329] object--its: 1 +> [35330] object--that: 2 +> [35331] object--to: 5 +> [35332] object--what: 1 +> [35333] object? [35334] objected: 25 +> [35335] objection: 24 +> [35336] objectionable: 3 +> [35337] objections: 26 +> [35338] objections, [35339] objective: 4 +> [35340] objectively: 1 +> [35341] objectless: 1 +> [35342] objects: 34 +> [35343] objects, [35344] objects,’: 1 +> [35345] objurgations: 1 +> [35346] obligation: 34 +> [35347] obligations: 19 +> [35348] obligatory: 3 +> [35349] oblige: 20 +> [35350] obliged: 110 +> [35351] obliges: 4 +> [35352] obliging: 6 +> [35353] obliging--now: 1 +> [35354] obligingly: 2 +> [35355] oblique: 3 +> [35356] obliquely: 1 +> [35357] obliquity: 6 +> [35358] obliterated: 3 +> [35359] obliterating: 1 +> [35360] oblivion: 6 +> [35361] oblivious: 20 +> [35362] oblong: 6 +> [35363] oblonskaya: 3 +> [35364] oblonsky: 104 +> [35365] oblonsky's: 9 +> [35366] oblonsky--stiva: 1 +> [35367] oblonsky--that: 1 +> [35368] oblonskys: 11 +> [35369] oblonskys...these: 1 +> [35370] obloquy: 3 +> [35371] obnoxious: 9 +> [35372] obolenski: 3 +> [35373] obolenski's: 3 +> [35374] obscene: 1 +> [35375] obscenity: 2 +> [35376] obscurantist: 2 +> [35377] obscurantists: 3 +> [35378] obscure: 41 +> [35379] obscure'--yes: 1 +> [35380] obscure--'part: 1 +> [35381] obscured: 4 +> [35382] obscurely: 2 +> [35383] obscures: 1 +> [35384] obscuring: 1 +> [35385] obscurities: 1 +> [35386] obscurity: 14 +> [35387] obscurity--for: 1 +> [35388] obscurity. [35389] obsequious: 4 +> [35390] obsequiously: 4 +> [35391] obsequiousness: 1 +> [35392] observable: 3 +> [35393] observance: 13 +> [35394] observances: 3 +> [35395] observant: 7 +> [35396] observantly: 2 +> [35397] observation: 61 +> [35398] observation--as: 1 +> [35399] observations: 25 +> [35400] observations—was: 1 +> [35401] observe: 123 +> [35402] observe—that: 1 +> [35403] observed: 331 +> [35404] observed"--cut: 1 +> [35405] observer: 9 +> [35406] observers: 1 +> [35407] observes: 7 +> [35408] observing: 48 +> [35409] obsessed: 1 +> [35410] obsession: 4 +> [35411] obsolescence: 1 +> [35412] obsolete: 21 +> [35413] obstacle: 23 +> [35414] obstacles: 26 +> [35415] obstinacy: 23 +> [35416] obstinacy--as: 1 +> [35417] obstinate: 27 +> [35418] obstinate-looking: 1 +> [35419] obstinately: 36 +> [35420] obstreperous: 4 +> [35421] obstruct: 3 +> [35422] obstructed: 2 +> [35423] obstructing: 1 +> [35424] obstruction: 1 +> [35425] obtain: 153 +> [35426] obtainable: 2 +> [35427] obtained: 170 +> [35428] obtaining: 62 +> [35429] obtains: 1 +> [35430] obtrude: 3 +> [35431] obtrusive: 3 +> [35432] obtrusively: 2 +> [35433] obtuse: 2 +> [35434] obtuseness: 3 +> [35435] obviate: 2 +> [35436] obvious: 65 +> [35437] obviously: 166 +> [35438] occasion: 161 +> [35439] occasion--but: 1 +> [35440] occasion.”: 1 +> [35441] occasional: 25 +> [35442] occasionally: 76 +> [35443] occasionally--unmistakably: 1 +> [35444] occasioned: 12 +> [35445] occasions: 78 +> [35446] occasions--but: 1 +> [35447] occasions--that: 1 +> [35448] occupant: 3 +> [35449] occupants: 3 +> [35450] occupation: 41 +> [35451] occupation--such: 1 +> [35452] occupation--that: 3 +> [35453] occupations: 21 +> [35454] occupations--i: 1 +> [35455] occupied: 165 +> [35456] occupied--that: 1 +> [35457] occupies: 6 +> [35458] occupy: 34 +> [35459] occupying: 12 +> [35460] occur: 65 +> [35461] occur--from: 1 +> [35462] occur--i: 1 +> [35463] occur--it's: 1 +> [35464] occur--that: 1 +> [35465] occuring: 1 +> [35466] occurred: 176 +> [35467] occurrence: 19 +> [35468] occurrence--you: 1 +> [35469] occurrences: 8 +> [35470] occurring: 5 +> [35471] occurs: 31 +> [35472] occurs--be: 1 +> [35473] occurs--the: 1 +> [35474] ocean: 7 +> [35475] oceans: 2 +> [35476] och: 1 +> [35477] ochakov: 1 +> [35478] octangular: 1 +> [35479] octavo: 1 +> [35480] october: 36 +> [35481] october--that: 1 +> [35482] octogenarians: 1 +> [35483] odd: 68 +> [35484] oddest: 1 +> [35485] oddities: 2 +> [35486] oddity: 2 +> [35487] oddity--is: 1 +> [35488] oddly: 7 +> [35489] odds: 18 +> [35490] ode: 1 +> [35491] oder: 3 +> [35492] odessa: 5 +> [35493] odious: 3 +> [35494] odium: 3 +> [35495] odor: 39 +> [35496] odoriferous: 2 +> [35497] odorless: 1 +> [35498] odors: 2 +> [35499] odour: 8 +> [35500] odours: 2 +> [35501] odyntsova: 1 +> [35502] oe: 4 +> [35503] oestreicher: 1 +> [35504] of: 66209 +> [35505] of! [35506] of— [35507] of—could: 1 +> [35508] of—sometimes. [35509] of,”: 1 +> [35510] of,”--or: 1 +> [35511] of---i: 1 +> [35512] of--a: 3 +> [35513] of--alas: 1 +> [35514] of--an: 1 +> [35515] of--april: 1 +> [35516] of--even: 1 +> [35517] of--foolishness: 1 +> [35518] of--i: 5 +> [35519] of--in: 2 +> [35520] of--m: 1 +> [35521] of--men: 1 +> [35522] of--of: 3 +> [35523] of--pardon: 1 +> [35524] of--that: 1 +> [35525] of--the: 2 +> [35526] of--what: 1 +> [35527] of--what's: 1 +> [35528] of.... [35529] of. [35530] of [35531] of? [35532] off: 2290 +> [35533] off! [35534] off, [35535] off--"here: 1 +> [35536] off--all: 1 +> [35537] off--and: 1 +> [35538] off--do: 1 +> [35539] off--for: 2 +> [35540] off--gazing: 1 +> [35541] off--her: 1 +> [35542] off--i: 1 +> [35543] off--off--ice: 1 +> [35544] off--they: 1 +> [35545] off--while: 1 +> [35546] off-hand: 3 +> [35547] off-horse: 1 +> [35548] off-side: 1 +> [35549] off-white: 1 +> [35550] off. [35551] off [35552] off? [35553] offahd: 1 +> [35554] offal: 1 +> [35555] offenbach's: 1 +> [35556] offence: 45 +> [35557] offence--would: 1 +> [35558] offences: 5 +> [35559] offend: 35 +> [35560] offended: 135 +> [35561] offended, [35562] offended--he: 1 +> [35563] offended--i: 1 +> [35564] offended--the: 1 +> [35565] offender: 5 +> [35566] offenders: 1 +> [35567] offending: 8 +> [35568] offends: 6 +> [35569] offense: 30 +> [35570] offense! [35571] offenses: 1 +> [35572] offensive: 41 +> [35573] offensively: 5 +> [35574] offensiveness: 1 +> [35575] offer: 233 +> [35576] offered: 164 +> [35577] offering: 55 +> [35578] offerings: 3 +> [35579] offers: 47 +> [35580] offers--wisely: 1 +> [35581] offhand: 5 +> [35582] office: 217 +> [35583] office--do: 1 +> [35584] office-papers: 1 +> [35585] officer: 595 +> [35586] officer—even: 1 +> [35587] officer's: 34 +> [35588] officer, [35589] officer--a: 2 +> [35590] officer--all: 1 +> [35591] officer--comes: 1 +> [35592] officer--don't: 1 +> [35593] officer--in: 1 +> [35594] officer--with: 1 +> [35595] officer--without: 1 +> [35596] officer--wounded: 1 +> [35597] officer. [35598] officer? [35599] officered: 1 +> [35600] officers: 287 +> [35601] officers—so: 1 +> [35602] officers,--two: 1 +> [35603] offices: 21 +> [35604] official: 218 +> [35605] official's: 1 +> [35606] official, [35607] official--the: 1 +> [35608] official [35609] officially: 6 +> [35610] officials: 27 +> [35611] officials--that: 1 +> [35612] officials--the: 1 +> [35613] officiating: 2 +> [35614] officier: 1 +> [35615] officious: 4 +> [35616] officiously: 3 +> [35617] offspring: 3 +> [35618] oft: 3 +> [35619] oft-cited: 1 +> [35620] oft-repeated: 1 +> [35621] often: 709 +> [35622] often, [35623] often--at: 1 +> [35624] oftener: 12 +> [35625] oftenest: 2 +> [35626] oftentimes: 5 +> [35627] ofttimes: 1 +> [35628] ogle: 1 +> [35629] ogled: 2 +> [35630] ogre: 3 +> [35631] ogres: 2 +> [35632] oh: 1714 +> [35633] oh--be: 1 +> [35634] oh--come: 1 +> [35635] oh--damn: 1 +> [35636] oh--h--h: 1 +> [35637] oh--i: 1 +> [35638] oh--if: 1 +> [35639] oh--well: 1 +> [35640] oh--why: 1 +> [35641] oh--your: 1 +> [35642] oh-h-h: 2 +> [35643] oh-ing: 1 +> [35644] ohio: 2 +> [35645] oho: 6 +> [35646] ohotny: 1 +> [35647] oil: 647 +> [35648] oil--the: 1 +> [35649] oil--tung: 1 +> [35650] oil-cloth: 1 +> [35651] oil-cloth--best: 1 +> [35652] oil-lamp: 1 +> [35653] oil-paintings: 1 +> [35654] oilcloth: 2 +> [35655] oiled: 3 +> [35656] oils: 223 +> [35657] oils[22: 1 +> [35658] oily: 3 +> [35659] ointment: 2 +> [35660] oka: 2 +> [35661] okeanov: 14 +> [35662] okeanov's: 1 +> [35663] old: 2826 +> [35664] old—three: 1 +> [35665] old, [35666] old--and: 1 +> [35667] old--as: 1 +> [35668] old--fifty-five: 1 +> [35669] old--i: 1 +> [35670] old--that's: 1 +> [35671] old--the: 1 +> [35672] old-age: 1 +> [35673] old-fashioned: 46 +> [35674] old-maid: 1 +> [35675] old-maidish: 1 +> [35676] old-time: 3 +> [35677] old-womanish: 1 +> [35678] olden: 1 +> [35679] oldenburg: 8 +> [35680] oldenburg"--and: 1 +> [35681] oldenburg's: 3 +> [35682] older: 75 +> [35683] older...i: 1 +> [35684] oldest: 18 +> [35685] oleic: 26 +> [35686] olein: 12 +> [35687] oleomargarine: 7 +> [35688] olga: 3 +> [35689] olive: 72 +> [35690] olive-green: 2 +> [35691] olive-skinned: 1 +> [35692] olives: 2 +> [35693] olmutz: 22 +> [35694] olsen: 1 +> [35695] olsufyev: 1 +> [35696] olympia: 9 +> [35697] olympia's: 3 +> [35698] olympian: 1 +> [35699] olympic: 1 +> [35700] olympicus: 1 +> [35701] olympus [35702] omar: 1 +> [35703] omelet: 1 +> [35704] omelette: 1 +> [35705] omen: 6 +> [35706] omens: 3 +> [35707] ominous: 13 +> [35708] ominous--a: 1 +> [35709] ominously: 2 +> [35710] omission: 7 +> [35711] omissions: 2 +> [35712] omit: 18 +> [35713] omits: 1 +> [35714] omitted: 23 +> [35715] omitting: 7 +> [35716] omne: 1 +> [35717] omnia: 1 +> [35718] omnibus: 2 +> [35719] omnibuses: 1 +> [35720] omnipotence: 2 +> [35721] omnipotent: 1 +> [35722] omniscience: 1 +> [35723] omniscient: 2 +> [35724] on: 16482 +> [35725] on!--ought: 1 +> [35726] on!--you've: 1 +> [35727] on! [35728] on—absurd: 1 +> [35729] on—oh: 1 +> [35730] on—smerdyakov: 1 +> [35731] on—something: 1 +> [35732] on, [35733] on--(although: 1 +> [35734] on--a: 1 +> [35735] on--am: 1 +> [35736] on--and: 3 +> [35737] on--as: 5 +> [35738] on--but: 1 +> [35739] on--he: 1 +> [35740] on--in: 4 +> [35741] on--it: 2 +> [35742] on--laughing: 1 +> [35743] on--millions: 1 +> [35744] on--mistaking: 1 +> [35745] on--only: 1 +> [35746] on--that: 1 +> [35747] on--the: 1 +> [35748] on--to: 1 +> [35749] on--which: 4 +> [35750] on--you: 1 +> [35751] on. [35752] on.”: 1 +> [35753] on:--insomuch: 1 +> [35754] on? [35755] once: 2633 +> [35756] once! [35757] once—i: 1 +> [35758] once—just: 1 +> [35759] once—liked: 1 +> [35760] once—most: 1 +> [35761] once—that: 1 +> [35762] once—this: 1 +> [35763] once, [35764] once--"except: 1 +> [35765] once--as: 6 +> [35766] once--breaking: 1 +> [35767] once--but: 2 +> [35768] once--he: 1 +> [35769] once--here: 1 +> [35770] once--it: 1 +> [35771] once--not: 1 +> [35772] once--only: 3 +> [35773] once--she: 1 +> [35774] once--since: 1 +> [35775] once--they: 4 +> [35776] once--twice--to: 1 +> [35777] once--very: 1 +> [35778] once.... [35779] once. [35780] oncle: 1 +> [35781] one: 9425 +> [35782] one! [35783] one—all: 1 +> [35784] one—and: 1 +> [35785] one—even: 1 +> [35786] one—for: 1 +> [35787] one—if: 1 +> [35788] one—know: 1 +> [35789] one—on: 1 +> [35790] one—some: 1 +> [35791] one—that's: 1 +> [35792] one—was: 1 +> [35793] one'll: 1 +> [35794] one's: 277 +> [35795] one's. [35796] one,--was: 1 +> [35797] one, [35798] one--a: 2 +> [35799] one--absolutely: 1 +> [35800] one--and: 1 +> [35801] one--colia: 1 +> [35802] one--davoust--nearly: 1 +> [35803] one--even: 1 +> [35804] one--except: 1 +> [35805] one--he: 1 +> [35806] one--invited: 1 +> [35807] one--judge: 1 +> [35808] one--just: 2 +> [35809] one--least: 1 +> [35810] one--let: 1 +> [35811] one--nay: 1 +> [35812] one--no: 1 +> [35813] one--one: 1 +> [35814] one--recognized: 1 +> [35815] one--that: 1 +> [35816] one--the: 21 +> [35817] one--there's: 3 +> [35818] one--was: 1 +> [35819] one--we: 1 +> [35820] one--when: 1 +> [35821] one--why: 1 +> [35822] one-armed: 1 +> [35823] one-eyed: 3 +> [35824] one-fifth: 1 +> [35825] one-fourth: 1 +> [35826] one-half: 18 +> [35827] one-horse: 1 +> [35828] one-hundredth: 1 +> [35829] one-ruble: 1 +> [35830] one-sided: 5 +> [35831] one-sidedly: 1 +> [35832] one-sidedness: 1 +> [35833] one-storied: 1 +> [35834] one-tenth: 1 +> [35835] one-third: 7 +> [35836] one-year-old: 1 +> [35837] one.... [35838] one... [35839] one...is: 1 +> [35840] one. [35841] one. [35842] one;--don't: 1 +> [35843] one [35844] one [35845] one? [35846] oneness: 1 +> [35847] onerous: 2 +> [35848] ones: 196 +> [35849] ones—for: 1 +> [35850] ones,--one: 1 +> [35851] ones, [35852] ones--on: 1 +> [35853] ones--those: 1 +> [35854] ones. [35855] ones.”: 1 +> [35856] oneself: 83 +> [35857] oneself? [35858] onesimus: 2 +> [35859] one’s: 13 +> [35860] onion: 20 +> [35861] onion. [35862] onion [35863] onions: 4 +> [35864] online: 88 +> [35865] onlooker: 1 +> [35866] onlookers: 6 +> [35867] only: 5546 +> [35868] only"--and: 1 +> [35869] only— [35870] only—but: 1 +> [35871] only—the: 1 +> [35872] only—where: 1 +> [35873] only--an: 1 +> [35874] only--can: 1 +> [35875] only--for: 1 +> [35876] only--his: 1 +> [35877] only--only: 1 +> [35878] only--this: 1 +> [35879] only--your: 1 +> [35880] only-begotten: 1 +> [35881] onset: 2 +> [35882] onslaught: 3 +> [35883] onslaughts: 1 +> [35884] ont: 2 +> [35885] onterkoff: 1 +> [35886] onto: 127 +> [35887] onufrich: 1 +> [35888] onus: 2 +> [35889] onward: 8 +> [35890] onwards: 5 +> [35891] onyegin: 1 +> [35892] onyegin. [35893] oo: 7 +> [35894] oo-oo: 1 +> [35895] oo-oo-oo-oo: 1 +> [35896] oof: 1 +> [35897] oogh! [35898] ooh: 11 +> [35899] oooh: 1 +> [35900] ooze: 1 +> [35901] oozed: 2 +> [35902] oozing: 4 +> [35903] opal: 2 +> [35904] opalescent: 3 +> [35905] opaque: 1 +> [35906] open: 788 +> [35907] open—that: 1 +> [35908] open, [35909] open-air: 5 +> [35910] open-eyed: 11 +> [35911] open-handed: 1 +> [35912] open-handedness: 1 +> [35913] open-hearted: 3 +> [35914] open-heartedness: 2 +> [35915] open-mouthed: 7 +> [35916] open. [35917] open? [35918] opened: 576 +> [35919] opening: 145 +> [35920] opening--i: 1 +> [35921] openings: 4 +> [35922] openly: 67 +> [35923] openly--as: 1 +> [35924] openly--for: 1 +> [35925] openly. [35926] openness: 5 +> [35927] opens: 16 +> [35928] openwork: 1 +> [35929] opera: 42 +> [35930] opera--gratified: 1 +> [35931] opera-glass: 1 +> [35932] opera-glasses: 1 +> [35933] opera-house: 1 +> [35934] operate: 4 +> [35935] operated: 3 +> [35936] operates: 1 +> [35937] operating: 5 +> [35938] operation: 32 +> [35939] operations: 16 +> [35940] operative: 1 +> [35941] operatives--the: 1 +> [35942] operator: 7 +> [35943] operator's: 1 +> [35944] operators: 2 +> [35945] ophelia: 1 +> [35946] opined: 3 +> [35947] opinion: 389 +> [35948] opinion! [35949] opinion, [35950] opinion--many: 1 +> [35951] opinion--perfection: 1 +> [35952] opinion--which: 1 +> [35953] opinions: 82 +> [35954] opium: 10 +> [35955] opium.’: 1 +> [35956] oplevaniev: 2 +> [35957] opponent: 33 +> [35958] opponent's: 7 +> [35959] opponents: 25 +> [35960] opportune: 8 +> [35961] opportunely: 3 +> [35962] opportunist: 1 +> [35963] opportunities: 31 +> [35964] opportunity: 157 +> [35965] opportunity--i: 1 +> [35966] oppose: 24 +> [35967] opposed: 49 +> [35968] opposer: 1 +> [35969] opposes: 3 +> [35970] opposing: 10 +> [35971] opposite: 235 +> [35972] opposite'--all: 1 +> [35973] opposites: 1 +> [35974] opposition: 82 +> [35975] oppress: 7 +> [35976] oppressed: 64 +> [35977] oppresses: 3 +> [35978] oppressing: 2 +> [35979] oppression: 14 +> [35980] oppressive: 15 +> [35981] oppressor: 1 +> [35982] oppressors: 10 +> [35983] opprobrium: 1 +> [35984] optimism: 1 +> [35985] optin: 1 +> [35986] option: 3 +> [35987] optional: 1 +> [35988] opulent: 2 +> [35989] or: 8667 +> [35990] or"--with: 1 +> [35991] or—how: 1 +> [35992] or—the: 1 +> [35993] or--but: 2 +> [35994] or--go: 1 +> [35995] or--might: 1 +> [35996] or--or: 2 +> [35997] or--still: 1 +> [35998] or--yet: 1 +> [35999] or...he: 1 +> [36000] ora: 4 +> [36001] oracle: 1 +> [36002] oracles: 2 +> [36003] oracular: 1 +> [36004] oracularly: 2 +> [36005] oraison: 1 +> [36006] oral: 6 +> [36007] orange: 26 +> [36008] orange-colored: 1 +> [36009] orange-peel--not: 1 +> [36010] oranges: 1 +> [36011] oration--which: 1 +> [36012] orator: 18 +> [36013] orator's: 1 +> [36014] oratorical: 1 +> [36015] orators: 5 +> [36016] oratory: 3 +> [36017] orb: 4 +> [36018] orbit: 1 +> [36019] orchard: 6 +> [36020] orchards: 3 +> [36021] orchestra: 18 +> [36022] orcus: 1 +> [36023] ordained: 19 +> [36024] ordeal: 12 +> [36025] ordeal [36026] ordeals: 1 +> [36027] order: 734 +> [36028] order, [36029] order--and: 1 +> [36030] order--order: 1 +> [36031] order. [36032] ordered: 213 +> [36033] ordered--and: 1 +> [36034] ordering: 13 +> [36035] orderlies: 14 +> [36036] orderlies--and: 1 +> [36037] orderly: 54 +> [36038] orderly's: 3 +> [36039] orders: 309 +> [36040] orders--as: 1 +> [36041] ordinance: 2 +> [36042] ordinances: 1 +> [36043] ordinarily: 11 +> [36044] ordinariness: 1 +> [36045] ordinary: 191 +> [36046] ordinary--for: 1 +> [36047] ordinary. [36048] ordinary? [36049] ordintzeff: 1 +> [36050] ordnance: 2 +> [36051] ordre: 1 +> [36052] ordynka: 1 +> [36053] ore: 1 +> [36054] oreille: 1 +> [36055] orel: 13 +> [36056] orel--where: 1 +> [36057] orenburg: 1 +> [36058] oreol: 1 +> [36059] organ: 16 +> [36060] organ-grinder: 3 +> [36061] organ-grinders: 2 +> [36062] organ-stop: 2 +> [36063] organic: 24 +> [36064] organically: 1 +> [36065] organisation: 3 +> [36066] organise: 2 +> [36067] organised: 3 +> [36068] organism: 8 +> [36069] organisms: 1 +> [36070] organization: 19 +> [36071] organization, [36072] organizations: 2 +> [36073] organize: 5 +> [36074] organized: 29 +> [36075] organized--i: 1 +> [36076] organizer: 1 +> [36077] organizers: 1 +> [36078] organizing: 1 +> [36079] organoleptic: 2 +> [36080] organs: 4 +> [36081] orgies: 4 +> [36082] orgy: 8 +> [36083] oriel: 1 +> [36084] oriental: 11 +> [36085] origen: 1 +> [36086] origin: 60 +> [36087] origin, [36088] original: 117 +> [36089] original.--so: 1 +> [36090] original. [36091] originalities: 1 +> [36092] originality: 20 +> [36093] originally: 7 +> [36094] originate: 3 +> [36095] originated: 8 +> [36096] originates: 1 +> [36097] originator: 21 +> [36098] origins: 5 +> [36099] orleans: 1 +> [36100] orlov: 5 +> [36101] orlov's: 1 +> [36102] orlov-denisov: 9 +> [36103] orlov-denisov's: 1 +> [36104] orlovs: 1 +> [36105] ornament: 16 +> [36106] ornamental: 2 +> [36107] ornamentation: 2 +> [36108] ornamented: 5 +> [36109] ornaments: 8 +> [36110] orphan: 24 +> [36111] orphan. [36112] orphanage: 1 +> [36113] orphans: 20 +> [36114] orphans. [36115] orris: 1 +> [36116] orsha: 5 +> [36117] orthodox: 34 +> [36118] orthodoxy: 6 +> [36119] orthography: 9 +> [36120] oscar: 4 +> [36121] oscillating: 2 +> [36122] oscillations: 2 +> [36123] osip: 10 +> [36124] osipovitch, [36125] osiris: 1 +> [36126] ossian's: 1 +> [36127] ostend: 1 +> [36128] ostensibly: 4 +> [36129] ostentation: 5 +> [36130] ostentatious: 1 +> [36131] ostentatiously: 2 +> [36132] osterman: 6 +> [36133] osterman--the: 1 +> [36134] ostermann: 4 +> [36135] ostermann's: 1 +> [36136] ostermann-tolstoy: 2 +> [36137] ostermann-tolstoy's: 1 +> [36138] ostler: 12 +> [36139] ostralitz: 1 +> [36140] ostrich: 8 +> [36141] ostrof: 1 +> [36142] ostroff: 2 +> [36143] ostrolenka: 1 +> [36144] ostrov: 5 +> [36145] ostrovna: 3 +> [36146] ostrovsky's: 1 +> [36147] otetchestvenniya: 4 +> [36148] othello: 2 +> [36149] othello's: 1 +> [36150] other: 3038 +> [36151] other's: 51 +> [36152] other, [36153] other--"a: 1 +> [36154] other--a: 1 +> [36155] other--destruction: 1 +> [36156] other--he: 1 +> [36157] other--i: 2 +> [36158] other--in: 2 +> [36159] other--it: 1 +> [36160] other--just: 4 +> [36161] other--perhaps: 1 +> [36162] other--suddenly: 1 +> [36163] other--that: 1 +> [36164] other--was: 1 +> [36165] other--who: 1 +> [36166] other. [36167] other?--and: 1 +> [36168] others: 988 +> [36169] others—partly: 1 +> [36170] others—that: 1 +> [36171] others--after: 1 +> [36172] others--all: 1 +> [36173] others--and: 1 +> [36174] others--are: 1 +> [36175] others--how: 1 +> [36176] others--ilya: 1 +> [36177] others--just: 1 +> [36178] others--of: 1 +> [36179] others--the: 4 +> [36180] others--was: 1 +> [36181] others--wife: 1 +> [36182] others. [36183] others? [36184] otherways: 1 +> [36185] otherwise: 108 +> [36186] other’s: 2 +> [36187] otkupshchik: 2 +> [36188] otradnoe: 31 +> [36189] otradnoe--mitenka's: 1 +> [36190] otradnoe--that: 1 +> [36191] ottoman: 22 +> [36192] ottomans: 6 +> [36193] ou: 3 +> [36194] ou-rou-rou: 1 +> [36195] oublie: 2 +> [36196] oubliez: 1 +> [36197] oudinot's: 1 +> [36198] ough: 3 +> [36199] ough! [36200] ought: 609 +> [36201] ought—break: 1 +> [36202] ought—he: 1 +> [36203] ought--but: 1 +> [36204] ought--if: 1 +> [36205] oughtn't: 5 +> [36206] oughtn't-oughtn't: 1 +> [36207] ouh: 2 +> [36208] oui: 3 +> [36209] ounce: 10 +> [36210] ounces: 5 +> [36211] our: 2549 +> [36212] our--all: 1 +> [36213] ours: 65 +> [36214] ours—and: 1 +> [36215] ours—aren't: 1 +> [36216] ours—the: 1 +> [36217] ours. [36218] ours? [36219] ourselves: 169 +> [36220] ourselves! [36221] ourselves--and: 1 +> [36222] ourselves--i: 1 +> [36223] ourselves--like: 1 +> [36224] ouse: 2 +> [36225] ousel: 1 +> [36226] ousted: 1 +> [36227] out: 6627 +> [36228] out! [36229] out—am: 1 +> [36230] out—i: 1 +> [36231] out—this: 1 +> [36232] out—where: 1 +> [36233] out, [36234] out,’: 1 +> [36235] out--a: 2 +> [36236] out--and: 1 +> [36237] out--but: 1 +> [36238] out--fully: 1 +> [36239] out--his: 1 +> [36240] out--if: 1 +> [36241] out--let: 1 +> [36242] out--me: 1 +> [36243] out--not: 1 +> [36244] out--of: 1 +> [36245] out--she: 2 +> [36246] out--that: 1 +> [36247] out--that's: 1 +> [36248] out--they'd: 1 +> [36249] out--we: 2 +> [36250] out--wearing: 1 +> [36251] out--well: 1 +> [36252] out--went: 1 +> [36253] out--without: 1 +> [36254] out--you: 1 +> [36255] out-blushed: 1 +> [36256] out-numbered: 1 +> [36257] out-of-doors: 5 +> [36258] out-of-the-way: 2 +> [36259] out. [36260] out.’: 1 +> [36261] out? [36262] outbidding: 1 +> [36263] outbreak: 11 +> [36264] outbreaks: 2 +> [36265] outbuildings: 4 +> [36266] outburst: 34 +> [36267] outbursts: 9 +> [36268] outcast: 10 +> [36269] outcome: 16 +> [36270] outcries: 7 +> [36271] outcry: 17 +> [36272] outcry--"that: 1 +> [36273] outcry--that: 1 +> [36274] outdated: 19 +> [36275] outdo: 1 +> [36276] outdone: 2 +> [36277] outdoor: 5 +> [36278] outer: 54 +> [36279] outfit: 4 +> [36280] outfit--eleven: 1 +> [36281] outflank: 8 +> [36282] outflanked: 2 +> [36283] outflanking: 2 +> [36284] outflankings: 1 +> [36285] outflow: 1 +> [36286] outgallop: 1 +> [36287] outgrowing: 1 +> [36288] outgrown: 2 +> [36289] outhouse: 3 +> [36290] outhouses: 3 +> [36291] outing: 2 +> [36292] outlaw: 2 +> [36293] outlawed: 2 +> [36294] outlay: 3 +> [36295] outlet: 19 +> [36296] outlets: 1 +> [36297] outline: 37 +> [36298] outlined: 23 +> [36299] outlines: 13 +> [36300] outlining: 2 +> [36301] outlive: 3 +> [36302] outlived: 4 +> [36303] outlook: 15 +> [36304] outlooks: 2 +> [36305] outlying: 1 +> [36306] outnumbered: 2 +> [36307] outpace: 1 +> [36308] outpost: 1 +> [36309] outposts: 13 +> [36310] outpouring: 6 +> [36311] outpourings: 1 +> [36312] output: 3 +> [36313] outrage: 12 +> [36314] outraged: 14 +> [36315] outrageous: 8 +> [36316] outrages: 5 +> [36317] outraging: 2 +> [36318] outran: 2 +> [36319] outrer: 1 +> [36320] outrider: 1 +> [36321] outright: 14 +> [36322] outright—all: 1 +> [36323] outright, [36324] outrun: 1 +> [36325] outs: 2 +> [36326] outset: 9 +> [36327] outshine: 2 +> [36328] outshone: 2 +> [36329] outshone--and: 1 +> [36330] outshot: 1 +> [36331] outside: 310 +> [36332] outside--gazing: 1 +> [36333] outside--gradually: 1 +> [36334] outsider: 25 +> [36335] outsiders: 7 +> [36336] outskirts: 18 +> [36337] outspoken: 4 +> [36338] outspokenly: 1 +> [36339] outspread: 5 +> [36340] outsrip: 1 +> [36341] outstanding: 4 +> [36342] outstretched: 20 +> [36343] outstrip: 2 +> [36344] outstripped: 4 +> [36345] outstripping: 2 +> [36346] outturned: 2 +> [36347] outvied: 1 +> [36348] outvying: 1 +> [36349] outward: 28 +> [36350] outwardly: 9 +> [36351] outwardly--and: 1 +> [36352] outwards: 4 +> [36353] outweigh: 3 +> [36354] outweighed: 3 +> [36355] outworks: 1 +> [36356] out”: 1 +> [36357] ov: 1 +> [36358] oval: 4 +> [36359] oval-shaped: 1 +> [36360] ovals: 1 +> [36361] ovations: 1 +> [36362] oven: 46 +> [36363] oven[20: 1 +> [36364] oven_--the: 1 +> [36365] ovens: 3 +> [36366] over: 3136 +> [36367] over! [36368] over, [36369] over--a: 1 +> [36370] over--moral: 1 +> [36371] over--not: 1 +> [36372] over--she: 1 +> [36373] over-acute: 2 +> [36374] over-anxiety: 1 +> [36375] over-arched: 1 +> [36376] over-arching: 1 +> [36377] over-bold: 1 +> [36378] over-boot: 1 +> [36379] over-clean: 1 +> [36380] over-coat: 1 +> [36381] over-eagerness: 1 +> [36382] over-excited: 4 +> [36383] over-excitement: 1 +> [36384] over-exert: 1 +> [36385] over-fatigue: 1 +> [36386] over-fatigued: 1 +> [36387] over-friendly: 4 +> [36388] over-heated: 1 +> [36389] over-nervous: 1 +> [36390] over-partial: 1 +> [36391] over-philosophical: 2 +> [36392] over-positive: 1 +> [36393] over-production: 1 +> [36394] over-refinement: 1 +> [36395] over-riding: 1 +> [36396] over-scrupulous: 1 +> [36397] over-scrupulously: 1 +> [36398] over-sensitiveness: 1 +> [36399] over-serious: 2 +> [36400] over-studying: 1 +> [36401] over-sweetness: 1 +> [36402] over-tender: 1 +> [36403] over-tired: 1 +> [36404] over-warm: 1 +> [36405] over-wise: 1 +> [36406] over-wrought: 2 +> [36407] over-zealous: 1 +> [36408] over. [36409] over.’: 1 +> [36410] over.”: 1 +> [36411] over [36412] overalls: 1 +> [36413] overawe: 2 +> [36414] overawed: 6 +> [36415] overbalancing: 2 +> [36416] overbearing: 2 +> [36417] overboard: 1 +> [36418] overboots: 1 +> [36419] overbrimming: 1 +> [36420] overburdened: 2 +> [36421] overcame: 25 +> [36422] overcast: 10 +> [36423] overcasts: 1 +> [36424] overclean: 1 +> [36425] overclean--it: 1 +> [36426] overcoat: 85 +> [36427] overcoat's: 1 +> [36428] overcoat--a: 2 +> [36429] overcoats: 9 +> [36430] overcome: 87 +> [36431] overcomes: 3 +> [36432] overcoming: 8 +> [36433] overcrowded: 1 +> [36434] overdid: 2 +> [36435] overdo: 4 +> [36436] overdoing: 1 +> [36437] overdriven: 4 +> [36438] overestimated: 1 +> [36439] overfat: 1 +> [36440] overfed: 1 +> [36441] overflow: 14 +> [36442] overflowed: 9 +> [36443] overflowing: 16 +> [36444] overgrown: 11 +> [36445] overgrowth: 1 +> [36446] overhanging: 6 +> [36447] overhauled: 1 +> [36448] overhead: 16 +> [36449] overhead--a: 1 +> [36450] overhear: 5 +> [36451] overheard: 24 +> [36452] overhearing: 1 +> [36453] overheated: 2 +> [36454] overheating: 1 +> [36455] overhung: 2 +> [36456] overjoyed: 15 +> [36457] overlaid: 2 +> [36458] overlapping: 1 +> [36459] overlay: 1 +> [36460] overlook: 21 +> [36461] overlooked: 19 +> [36462] overlooking: 7 +> [36463] overmastered: 3 +> [36464] overmasters: 1 +> [36465] overmill: 1 +> [36466] overmuch: 2 +> [36467] overnight: 3 +> [36468] overpersuaded: 1 +> [36469] overpower: 1 +> [36470] overpowered: 6 +> [36471] overpowering: 3 +> [36472] overrate: 1 +> [36473] overrated: 1 +> [36474] overreach: 3 +> [36475] overresist: 2 +> [36476] override: 2 +> [36477] overriding: 1 +> [36478] overrun: 5 +> [36479] overrunning: 1 +> [36480] overseer: 9 +> [36481] overseer's: 1 +> [36482] overseers: 2 +> [36483] oversensitive: 1 +> [36484] overshadowed: 1 +> [36485] overshadowing: 1 +> [36486] overshoes: 1 +> [36487] overslept: 2 +> [36488] overspread: 7 +> [36489] overspreading: 1 +> [36490] overstated: 1 +> [36491] overstep: 11 +> [36492] overstepped: 3 +> [36493] overstepping: 1 +> [36494] overstrained: 11 +> [36495] overstraining: 1 +> [36496] overtake: 30 +> [36497] overtaken: 17 +> [36498] overtakes: 3 +> [36499] overtaking: 14 +> [36500] overtaking--overtook: 1 +> [36501] overtaxed: 1 +> [36502] overthrow: 22 +> [36503] overthrown: 4 +> [36504] overtook: 43 +> [36505] overtopping: 1 +> [36506] overture: 3 +> [36507] overtures: 2 +> [36508] overturn: 3 +> [36509] overturned: 6 +> [36510] overturning: 1 +> [36511] overvalued: 1 +> [36512] overweening: 1 +> [36513] overwhelm: 10 +> [36514] overwhelmed: 68 +> [36515] overwhelmed--"you: 1 +> [36516] overwhelming: 30 +> [36517] overwhelmingly: 1 +> [36518] overwhelms: 2 +> [36519] overwork: 1 +> [36520] overworked: 1 +> [36521] overwrought: 17 +> [36522] overy's: 1 +> [36523] ovid: 1 +> [36524] ovo: 1 +> [36525] owe: 46 +> [36526] owed: 48 +> [36527] owen: 1 +> [36528] owes: 8 +> [36529] owing: 102 +> [36530] owl: 8 +> [36531] owls: 2 +> [36532] own: 2273 +> [36533] own! [36534] own, [36535] own--a: 1 +> [36536] own--according: 3 +> [36537] own--and: 1 +> [36538] own--as: 1 +> [36539] own--don't: 1 +> [36540] own--for: 1 +> [36541] own--i: 1 +> [36542] own--such: 1 +> [36543] own--that: 1 +> [36544] own--there: 1 +> [36545] own--to: 1 +> [36546] own. [36547] own. [36548] owned: 23 +> [36549] owner: 129 +> [36550] owner's: 1 +> [36551] owner? [36552] owners: 10 +> [36553] ownership: 1 +> [36554] owning: 3 +> [36555] owns: 40 +> [36556] ownself: 1 +> [36557] ox: 6 +> [36558] ox-like: 1 +> [36559] oxalic: 2 +> [36560] oxen: 7 +> [36561] oxford: 4 +> [36562] oxidation: 6 +> [36563] oxide: 14 +> [36564] oxides: 2 +> [36565] oxidizable: 1 +> [36566] oxy: 1 +> [36567] oxygen: 11 +> [36568] oyez: 4 +> [36569] oyster: 2 +> [36570] oysters: 17 +> [36571] oysters, [36572] oz: 4 +> [36573] ozheg-zheg: 2 +> [36574] ozheg-zheg-zheg: 1 +> [36575] ozs: 2 +> [36576] o’clock: 2 +> [36577] p: 11637 +> [36578] p'waps: 1 +> [36579] p--'s: 1 +> [36580] p----'s: 3 +> [36581] p--brought: 1 +> [36582] p--showered: 1 +> [36583] p.p.p.s.—katya: 1 +> [36584] p.p.s.—i: 1 +> [36585] p.p.s.--it: 1 +> [36586] p.s: 1 +> [36587] p.s.—i: 1 +> [36588] p.s.--i: 2 +> [36589] p.s.--the: 1 +> [36590] p>this: 1 +> [36591] p_{2}o_{5: 1 +> [36592] pa-pa: 1 +> [36593] pace: 87 +> [36594] pace--fretted: 1 +> [36595] pace--rode: 1 +> [36596] paced: 48 +> [36597] paces: 185 +> [36598] pacific: 1 +> [36599] pacified: 6 +> [36600] pacifier: 1 +> [36601] pacify: 7 +> [36602] pacifying: 4 +> [36603] pacing: 52 +> [36604] pack: 48 +> [36605] pack-horse: 1 +> [36606] pack-horses: 5 +> [36607] package: 10 +> [36608] packages: 10 +> [36609] packages--tubs: 1 +> [36610] packages--when: 1 +> [36611] packed: 44 +> [36612] packers: 1 +> [36613] packet: 61 +> [36614] packet--two: 1 +> [36615] packets: 7 +> [36616] packets--there: 1 +> [36617] packhorse: 6 +> [36618] packhorses: 2 +> [36619] packing: 31 +> [36620] packing--press: 1 +> [36621] packmen: 1 +> [36622] packs: 7 +> [36623] pad: 13 +> [36624] padded: 3 +> [36625] padding: 1 +> [36626] paddle: 4 +> [36627] paddled: 1 +> [36628] paddles: 1 +> [36629] paddock: 5 +> [36630] padlocks: 1 +> [36631] pafnute: 8 +> [36632] pagan: 8 +> [36633] pagans: 3 +> [36634] page: 126 +> [36635] page's: 1 +> [36636] page--and: 1 +> [36637] page--it: 1 +> [36638] page--the: 1 +> [36639] pageant: 3 +> [36640] pageants: 1 +> [36641] pageboy: 1 +> [36642] pages: 75 +> [36643] pages--my: 1 +> [36644] paget: 3 +> [36645] pagets: 1 +> [36646] pagodas: 1 +> [36647] pagodes: 1 +> [36648] pah: 5 +> [36649] pahatov: 1 +> [36650] pahlen: 1 +> [36651] paid: 305 +> [36652] paid"--her: 1 +> [36653] pail: 4 +> [36654] pailfuls: 1 +> [36655] pails: 4 +> [36656] pain: 179 +> [36657] pain'--'where: 1 +> [36658] pain--and: 1 +> [36659] pain. [36660] pain? [36661] pained: 16 +> [36662] painful: 153 +> [36663] painful--and: 1 +> [36664] painful. [36665] painfully: 95 +> [36666] painless: 1 +> [36667] pains: 39 +> [36668] painstaking: 5 +> [36669] painstakingly: 3 +> [36670] paint: 46 +> [36671] paint's: 1 +> [36672] paint-boxes: 1 +> [36673] paint-brushes: 1 +> [36674] paintbrush: 1 +> [36675] painted: 72 +> [36676] painted--weak: 1 +> [36677] painter: 17 +> [36678] painter! [36679] painters: 9 +> [36680] painting: 44 +> [36681] painting,”: 1 +> [36682] painting--he: 1 +> [36683] painting--no: 1 +> [36684] paintings: 4 +> [36685] paints: 7 +> [36686] pair: 77 +> [36687] pairs: 11 +> [36688] pakhra: 4 +> [36689] palace: 77 +> [36690] palace--as: 1 +> [36691] palaces: 2 +> [36692] paladins: 1 +> [36693] palais: 13 +> [36694] palate: 2 +> [36695] palates: 2 +> [36696] palatinate: 1 +> [36697] palatine: 1 +> [36698] palazzo: 10 +> [36699] pale: 454 +> [36700] pale—white: 1 +> [36701] pale--a: 1 +> [36702] pale-blue: 3 +> [36703] pale-colored: 1 +> [36704] pale-faced: 8 +> [36705] pale-greenish: 1 +> [36706] pale-looking: 1 +> [36707] pale-yellow: 1 +> [36708] paled: 2 +> [36709] palely: 1 +> [36710] palencia: 2 +> [36711] paleness: 2 +> [36712] paler: 26 +> [36713] palestina: 1 +> [36714] palestine: 25 +> [36715] palestinian: 21 +> [36716] palette: 2 +> [36717] paling: 2 +> [36718] palings: 4 +> [36719] palki: 1 +> [36720] pall: 4 +> [36721] palladium: 1 +> [36722] pallet: 9 +> [36723] pallets: 2 +> [36724] pallid: 5 +> [36725] pallor: 18 +> [36726] palm: 95 +> [36727] palm--give: 1 +> [36728] palmatin: 2 +> [36729] palmed: 1 +> [36730] palmerston"--he: 1 +> [36731] palmerston--"or: 1 +> [36732] palmitic: 12 +> [36733] palmitin: 1 +> [36734] palmkernel: 2 +> [36735] palms: 9 +> [36736] palpable: 6 +> [36737] palpably: 4 +> [36738] palpitated: 1 +> [36739] palpitating: 2 +> [36740] palpitation: 2 +> [36741] palsied: 1 +> [36742] palsy: 2 +> [36743] palter: 1 +> [36744] paltry: 16 +> [36745] pampered: 2 +> [36746] pamphlet: 7 +> [36747] pamphlets: 4 +> [36748] pan: 29 +> [36749] pan-cakes: 1 +> [36750] panacea: 3 +> [36751] pancake: 4 +> [36752] pancakes: 7 +> [36753] pancakes—it's: 1 +> [36754] pancha: 1 +> [36755] pane: 17 +> [36756] panel: 1 +> [36757] paneled: 1 +> [36758] panelled: 4 +> [36759] panelling: 2 +> [36760] panels: 10 +> [36761] panes: 15 +> [36762] pang: 53 +> [36763] pang--in: 1 +> [36764] pangs: 11 +> [36765] pani: 1 +> [36766] panic: 37 +> [36767] panic--it: 1 +> [36768] panic-fears: 1 +> [36769] panic-stricken: 32 +> [36770] panics: 1 +> [36771] panie! [36772] panins: 1 +> [36773] panorama: 5 +> [36774] pans: 1 +> [36775] pansies: 2 +> [36776] panslavist: 1 +> [36777] pant: 2 +> [36778] pantaloon: 1 +> [36779] pantaloons: 3 +> [36780] panted: 15 +> [36781] panting: 54 +> [36782] pantings: 1 +> [36783] pantomime: 1 +> [36784] pantry: 7 +> [36785] pants: 2 +> [36786] paolucci: 2 +> [36787] papa: 99 +> [36788] papa!...how: 1 +> [36789] papa's: 5 +> [36790] papa, [36791] papa--i'm: 1 +> [36792] papa [36793] papacy: 6 +> [36794] papal: 8 +> [36795] paparchin: 3 +> [36796] paper: 313 +> [36797] paper--all: 1 +> [36798] paper-case: 2 +> [36799] paper-cutter: 1 +> [36800] paper-knife: 3 +> [36801] paper-knives: 1 +> [36802] paper-weight: 3 +> [36803] paper. [36804] papering: 1 +> [36805] papers: 181 +> [36806] papers--everything: 1 +> [36807] papers--i: 1 +> [36808] papers--to: 1 +> [36809] paperweight: 2 +> [36810] paperwork: 19 +> [36811] papias: 46 +> [36812] papist: 2 +> [36813] papists: 1 +> [36814] paps: 2 +> [36815] papyri: 1 +> [36816] papyrus: 1 +> [36817] par: 7 +> [36818] parable: 6 +> [36819] parables: 7 +> [36820] parabola: 1 +> [36821] paracelsus: 1 +> [36822] parade: 29 +> [36823] paraded: 3 +> [36824] parades: 1 +> [36825] parading: 2 +> [36826] paradise: 20 +> [36827] paradise? [36828] paradox: 8 +> [36829] paradoxalist: 4 +> [36830] paradoxical: 2 +> [36831] paraffin: 2 +> [36832] paraffines: 1 +> [36833] paragon: 1 +> [36834] paragraph: 221 +> [36835] paragraphs: 64 +> [36836] paraissent: 1 +> [36837] parait: 1 +> [36838] parallel: 12 +> [36839] parallelogram: 1 +> [36840] paralysed: 5 +> [36841] paralysing: 1 +> [36842] paralysis: 6 +> [36843] paralyze: 2 +> [36844] paralyzed: 9 +> [36845] paralyzing: 1 +> [36846] paramount: 3 +> [36847] parapet: 8 +> [36848] paraphrase--a: 1 +> [36849] paraphrased! [36850] parasha: 4 +> [36851] parasite: 1 +> [36852] parasites: 3 +> [36853] parasitic: 1 +> [36854] parasol: 15 +> [36855] parasols: 3 +> [36856] paravicini: 7 +> [36857] paravicini's: 1 +> [36858] parce: 1 +> [36859] parcel: 20 +> [36860] parcel--all: 1 +> [36861] parcels: 4 +> [36862] parched: 11 +> [36863] parched--she: 1 +> [36864] parchment: 28 +> [36865] parchment--were: 1 +> [36866] parchments: 1 +> [36867] pardessus: 2 +> [36868] pardieu: 3 +> [36869] pardon: 128 +> [36870] pardon--i: 1 +> [36871] pardon--quick: 1 +> [36872] pardonable: 5 +> [36873] pardoned: 11 +> [36874] pardonner: 1 +> [36875] pardons: 3 +> [36876] parent: 13 +> [36877] parent's: 3 +> [36878] parent? [36879] parentage: 2 +> [36880] parental: 5 +> [36881] parentheses: 1 +> [36882] parenthesis: 7 +> [36883] parenthetically: 1 +> [36884] parents: 124 +> [36885] parfait: 1 +> [36886] parfait, [36887] parfen: 62 +> [36888] parfen's: 3 +> [36889] parfenovitch: 96 +> [36890] parfenovitch's: 6 +> [36891] parfenovitch, [36892] pargolovo: 1 +> [36893] pariah: 1 +> [36894] paring: 1 +> [36895] paris: 189 +> [36896] paris,”: 1 +> [36897] paris--and: 1 +> [36898] paris--i: 1 +> [36899] paris--left: 1 +> [36900] paris--the: 1 +> [36901] paris--where: 1 +> [36902] paris [36903] parish: 13 +> [36904] parishioner: 1 +> [36905] parishioners: 1 +> [36906] parisian: 5 +> [36907] parisienne: 1 +> [36908] parity: 1 +> [36909] park: 79 +> [36910] park--at: 1 +> [36911] park--except: 1 +> [36912] park--so: 1 +> [36913] parkes: 1 +> [36914] parks: 5 +> [36915] parley: 4 +> [36916] parleying: 1 +> [36917] parleys: 2 +> [36918] parlez-moi: 1 +> [36919] parliament: 18 +> [36920] parliament--yes: 1 +> [36921] parliamentarism: 1 +> [36922] parliaments: 1 +> [36923] parlor: 48 +> [36924] parlor--mr: 1 +> [36925] parlor--the: 1 +> [36926] parlour: 10 +> [36927] parmenitch: 1 +> [36928] parmenov: 3 +> [36929] parmesan: 1 +> [36930] parochial: 1 +> [36931] parodying: 2 +> [36932] parole: 3 +> [36933] paroxysm: 20 +> [36934] paroxysms: 5 +> [36935] parquet: 10 +> [36936] parquet-floored: 1 +> [36937] parqueted: 1 +> [36938] parquets: 2 +> [36939] parricide: 13 +> [36940] parricide! [36941] parried: 4 +> [36942] parry: 3 +> [36943] parsimony: 3 +> [36944] parson: 10 +> [36945] parsons: 4 +> [36946] part: 1078 +> [36947] part! [36948] part—as: 1 +> [36949] part--and: 2 +> [36950] part--he: 2 +> [36951] part--the: 1 +> [36952] part--transfer: 1 +> [36953] partake: 8 +> [36954] partaken: 1 +> [36955] partaker: 1 +> [36956] partakers: 1 +> [36957] parted: 104 +> [36958] parthian: 1 +> [36959] parti: 1 +> [36960] parti-colored: 1 +> [36961] parti-coloured: 2 +> [36962] partial: 18 +> [36963] partiality: 4 +> [36964] partially: 19 +> [36965] participant: 2 +> [36966] participants: 1 +> [36967] participate: 3 +> [36968] participated: 2 +> [36969] participating: 1 +> [36970] participation: 10 +> [36971] participator: 3 +> [36972] particle: 6 +> [36973] particles: 5 +> [36974] particolored: 1 +> [36975] particular: 236 +> [36976] particular--been: 1 +> [36977] particular--that: 1 +> [36978] particular--was: 1 +> [36979] particular. [36980] particularism: 4 +> [36981] particularistic: 2 +> [36982] particularity: 2 +> [36983] particularization: 1 +> [36984] particularizing: 1 +> [36985] particularly: 427 +> [36986] particularly, [36987] particulars: 10 +> [36988] particulary: 1 +> [36989] partie: 1 +> [36990] parties: 70 +> [36991] parties--and: 1 +> [36992] parties--oh: 1 +> [36993] parties--one: 1 +> [36994] parting: 58 +> [36995] parting--god: 1 +> [36996] parting--though: 1 +> [36997] partington: 1 +> [36998] partisan: 6 +> [36999] partisans: 4 +> [37000] partition: 24 +> [37001] partitioned: 3 +> [37002] partitions: 3 +> [37003] partly: 120 +> [37004] partner: 68 +> [37005] partner's: 3 +> [37006] partners: 16 +> [37007] partnership: 8 +> [37008] partnerships: 1 +> [37009] partner’s: 3 +> [37010] partook: 1 +> [37011] partridges: 1 +> [37012] parts: 159 +> [37013] parts--a: 1 +> [37014] party: 391 +> [37015] party--and: 1 +> [37016] party--i: 1 +> [37017] party--in: 1 +> [37018] party--some: 1 +> [37019] party-cry: 1 +> [37020] party-man: 1 +> [37021] parvenu: 2 +> [37022] pas: 42 +> [37023] pas? [37024] pasha: 4 +> [37025] pasha's: 1 +> [37026] pashenka: 12 +> [37027] pashette: 1 +> [37028] pashutino: 6 +> [37029] paskudin: 2 +> [37030] pass: 438 +> [37031] pass! [37032] pass— [37033] pass—the: 1 +> [37034] pass,’: 1 +> [37035] pass--all: 1 +> [37036] pass--were: 1 +> [37037] pass. [37038] passage: 267 +> [37039] passage--the: 1 +> [37040] passage--when: 1 +> [37041] passage--which: 1 +> [37042] passage. [37043] passages: 35 +> [37044] passages--twenty: 1 +> [37045] passe: 1 +> [37046] passed: 835 +> [37047] passed--especially: 1 +> [37048] passed--for: 1 +> [37049] passed--scraps: 1 +> [37050] passed--seemed: 1 +> [37051] passed. [37052] passenger: 5 +> [37053] passengers: 17 +> [37054] passer: 1 +> [37055] passer's: 1 +> [37056] passer-by: 4 +> [37057] passers: 4 +> [37058] passers-by: 18 +> [37059] passes: 44 +> [37060] passing: 278 +> [37061] passing, [37062] passing-bell: 1 +> [37063] passion: 199 +> [37064] passion--seldom: 1 +> [37065] passion--stopped: 1 +> [37066] passionate: 90 +> [37067] passionately: 68 +> [37068] passionless: 2 +> [37069] passions: 47 +> [37070] passions—sometimes: 1 +> [37071] passions--went: 1 +> [37072] passive: 12 +> [37073] passively: 2 +> [37074] passover: 7 +> [37075] passport: 15 +> [37076] passport--is: 1 +> [37077] passports: 3 +> [37078] password: 4 +> [37079] past: 505 +> [37080] past--a: 1 +> [37081] past--her: 1 +> [37082] past--prince: 1 +> [37083] past--the: 1 +> [37084] paste: 10 +> [37085] paste...no: 1 +> [37086] paste_--boil: 1 +> [37087] pasteboard: 1 +> [37088] pasterns: 3 +> [37089] pasties: 2 +> [37090] pastilles: 1 +> [37091] pastime: 10 +> [37092] pastimes: 1 +> [37093] paston: 1 +> [37094] pastor: 1 +> [37095] pastoral: 22 +> [37096] pastorals: 10 +> [37097] pastors: 4 +> [37098] pastry: 2 +> [37099] pastrycooks: 1 +> [37100] pasturage: 1 +> [37101] pasture: 9 +> [37102] pastured: 1 +> [37103] pastures: 6 +> [37104] pasty: 3 +> [37105] pat: 8 +> [37106] patch: 16 +> [37107] patched: 13 +> [37108] patches: 26 +> [37109] patchwork: 2 +> [37110] patchy: 1 +> [37111] patent: 4 +> [37112] pater: 2 +> [37113] paterfamilias: 1 +> [37114] paternal: 12 +> [37115] paternally,--or: 1 +> [37116] paternity: 1 +> [37117] paternoster: 1 +> [37118] path: 198 +> [37119] path'--we'll: 1 +> [37120] path--"don't: 1 +> [37121] path--a: 1 +> [37122] path--i: 1 +> [37123] path. [37124] pathetic: 29 +> [37125] pathetic-looking: 1 +> [37126] pathetic. [37127] pathetically: 4 +> [37128] pathos: 6 +> [37129] paths: 15 +> [37130] pathway: 1 +> [37131] pathways: 1 +> [37132] patience: 82 +> [37133] patience! [37134] patience--"come: 1 +> [37135] patience. [37136] patient: 81 +> [37137] patient— [37138] patient's: 5 +> [37139] patient, [37140] patient--well--we: 1 +> [37141] patient? [37142] patiently: 23 +> [37143] patients: 14 +> [37144] patmos: 5 +> [37145] patois: 1 +> [37146] patriarch: 2 +> [37147] patriarch's: 2 +> [37148] patriarchal: 3 +> [37149] patriarchs: 2 +> [37150] patrician: 1 +> [37151] patrie: 1 +> [37152] patriot: 6 +> [37153] patriotic: 19 +> [37154] patriotically: 2 +> [37155] patriotism: 18 +> [37156] patriotisme: 2 +> [37157] patriots: 3 +> [37158] patrol: 10 +> [37159] patrolling: 1 +> [37160] patrols: 3 +> [37161] patron: 17 +> [37162] patronage: 17 +> [37163] patroness: 4 +> [37164] patronising: 4 +> [37165] patronize: 1 +> [37166] patronized: 4 +> [37167] patronizes: 1 +> [37168] patronizing: 8 +> [37169] patronizingly: 1 +> [37170] patrons: 2 +> [37171] patronymic: 1 +> [37172] patte'n: 1 +> [37173] patted: 24 +> [37174] pattens: 1 +> [37175] patter: 6 +> [37176] pattered: 5 +> [37177] pattering: 5 +> [37178] pattern: 24 +> [37179] pattern--so: 1 +> [37180] patterns: 7 +> [37181] patti: 4 +> [37182] patti's: 1 +> [37183] patties: 3 +> [37184] patting: 12 +> [37185] paul: 241 +> [37186] paul's: 108 +> [37187] paul--the: 1 +> [37188] paul.”: 1 +> [37189] paul:”: 1 +> [37190] pauline: 80 +> [37191] paulinischen: 1 +> [37192] paulinism: 8 +> [37193] paulinist: 2 +> [37194] paulinist's: 1 +> [37195] paulinists: 2 +> [37196] paulson: 3 +> [37197] paulson's: 3 +> [37198] paulucci: 14 +> [37199] paul’s: 1 +> [37200] paunch: 1 +> [37201] paunchy: 2 +> [37202] pauper: 3 +> [37203] pauper's: 1 +> [37204] paupers: 1 +> [37205] pause: 136 +> [37206] pause)--"puff: 1 +> [37207] pause--"since: 1 +> [37208] pause--for: 1 +> [37209] paused: 208 +> [37210] paused--and: 1 +> [37211] pauses: 6 +> [37212] pausing: 25 +> [37213] pauvre: 7 +> [37214] pava: 7 +> [37215] pava's: 2 +> [37216] pave: 1 +> [37217] paved: 11 +> [37218] pavel: 4 +> [37219] pavement: 69 +> [37220] pavements: 4 +> [37221] pavements [37222] pavilion: 23 +> [37223] pavilions: 3 +> [37224] paving: 2 +> [37225] pavlicheff: 42 +> [37226] pavlicheff's: 22 +> [37227] pavlicheff?--pavlicheff: 1 +> [37228] pavlitch: 1 +> [37229] pavlofsk: 71 +> [37230] pavlofsk--a: 1 +> [37231] pavlograd: 20 +> [37232] pavlograds: 9 +> [37233] pavlovich: 4 +> [37234] pavlovitch: 395 +> [37235] pavlovitch—and: 1 +> [37236] pavlovitch—if: 1 +> [37237] pavlovitch's: 52 +> [37238] pavlovitch's—fyodor: 1 +> [37239] pavlovitch, [37240] pavlovitch--doesn't: 1 +> [37241] pavlovitch--her: 1 +> [37242] pavlovitch--oh: 1 +> [37243] pavlovitch. [37244] pavlovitch? [37245] pavlovitches, [37246] pavlovna: 133 +> [37247] pavlovna's: 44 +> [37248] pavlovna--who: 1 +> [37249] pavlovsk: 2 +> [37250] paw: 6 +> [37251] pawed: 1 +> [37252] pawing: 4 +> [37253] pawn: 12 +> [37254] pawnbroker: 13 +> [37255] pawnbroker-woman: 1 +> [37256] pawned: 10 +> [37257] pawnee: 1 +> [37258] pawns: 9 +> [37259] paws: 8 +> [37260] pax: 2 +> [37261] pay: 345 +> [37262] paye: 1 +> [37263] paying: 102 +> [37264] paymaster: 1 +> [37265] paymaster's: 1 +> [37266] payment: 31 +> [37267] payment--forgive: 1 +> [37268] payments: 61 +> [37269] pays: 13 +> [37270] païssy: 67 +> [37271] païssy's: 6 +> [37272] pb: 877 +> [37273] pe: 2 +> [37274] pea: 2 +> [37275] peace: 355 +> [37276] peace! [37277] peace—he: 1 +> [37278] peace, [37279] peace--a: 1 +> [37280] peace--albeit: 1 +> [37281] peace--and: 2 +> [37282] peace-loving: 1 +> [37283] peace-making: 1 +> [37284] peace. [37285] peace. [37286] peaceable: 2 +> [37287] peaceably: 6 +> [37288] peaceful: 40 +> [37289] peaceful--oh: 1 +> [37290] peacefully: 17 +> [37291] peacefulness: 2 +> [37292] peacemakers: 1 +> [37293] peacetime: 2 +> [37294] peaches: 2 +> [37295] peacock: 1 +> [37296] peacocked: 1 +> [37297] peacocking: 1 +> [37298] peak: 5 +> [37299] peake: 1 +> [37300] peaked: 7 +> [37301] peaks: 4 +> [37302] peaky: 1 +> [37303] peal: 13 +> [37304] peals: 5 +> [37305] peanut: 9 +> [37306] pear: 3 +> [37307] pear-shaped: 1 +> [37308] pearl: 6 +> [37309] pearls: 26 +> [37310] pearls! [37311] pearly: 1 +> [37312] pears: 2 +> [37313] peas: 5 +> [37314] peas--like: 1 +> [37315] peasant: 351 +> [37316] peasant! [37317] peasant's: 28 +> [37318] peasant, [37319] peasant--his: 1 +> [37320] peasant--the: 2 +> [37321] peasant-folk: 2 +> [37322] peasant-trader: 1 +> [37323] peasant-woman: 1 +> [37324] peasant-women: 1 +> [37325] peasant. [37326] peasantry: 19 +> [37327] peasantry. [37328] peasants: 363 +> [37329] peasants—that's: 1 +> [37330] peasants, [37331] peasants--"asks: 1 +> [37332] peasants--elderly: 1 +> [37333] peasants--even: 1 +> [37334] peasants--streamed: 1 +> [37335] peasants. [37336] peasants? [37337] peat: 1 +> [37338] pebble: 6 +> [37339] pebbles: 1 +> [37340] peche: 1 +> [37341] peck: 2 +> [37342] pecked: 1 +> [37343] pecking: 2 +> [37344] pecks: 1 +> [37345] pectoris: 2 +> [37346] peculiar: 180 +> [37347] peculiarities: 15 +> [37348] peculiarity: 24 +> [37349] peculiarly: 36 +> [37350] peculiarly-shaped: 1 +> [37351] pecuniary: 9 +> [37352] pedagogic: 1 +> [37353] pedal: 2 +> [37354] pedant: 10 +> [37355] pedantic: 8 +> [37356] pedantically: 2 +> [37357] pedantry: 6 +> [37358] pedants: 4 +> [37359] peddler: 2 +> [37360] peddlers: 1 +> [37361] pedestal: 9 +> [37362] pedestals: 2 +> [37363] pedestrian: 2 +> [37364] pedestrians: 2 +> [37365] pedigree: 9 +> [37366] pedigrees: 1 +> [37367] pedlar: 4 +> [37368] pedlars: 1 +> [37369] peel: 47 +> [37370] peel's: 6 +> [37371] peel--'od: 1 +> [37372] peel--but: 1 +> [37373] peel--the: 1 +> [37374] peeled: 4 +> [37375] peeler: 1 +> [37376] peeling: 6 +> [37377] peelites: 4 +> [37378] peep: 21 +> [37379] peeped: 46 +> [37380] peeping: 37 +> [37381] peeps: 1 +> [37382] peer: 13 +> [37383] peerage: 4 +> [37384] peerage--a: 1 +> [37385] peered: 32 +> [37386] peering: 46 +> [37387] peers: 4 +> [37388] peevish: 5 +> [37389] peevishly: 13 +> [37390] peevishness: 1 +> [37391] peewit: 1 +> [37392] peewits: 3 +> [37393] peg: 6 +> [37394] pegging: 2 +> [37395] pegs: 2 +> [37396] peine! [37397] pelageya: 16 +> [37398] pelisse: 1 +> [37399] pelisses--was: 1 +> [37400] pell-mell: 6 +> [37401] pellet: 2 +> [37402] pelt: 2 +> [37403] pelting: 4 +> [37404] pen: 65 +> [37405] pen-knife: 3 +> [37406] pen-knives: 1 +> [37407] penal: 10 +> [37408] penalties: 2 +> [37409] penalty: 10 +> [37410] penance: 4 +> [37411] penance--these: 1 +> [37412] penates: 1 +> [37413] pence: 5 +> [37414] pencil: 20 +> [37415] pencil-mark: 1 +> [37416] pencilled: 1 +> [37417] pencils: 3 +> [37418] pendent: 1 +> [37419] pendulous: 2 +> [37420] penetrate: 18 +> [37421] penetrated: 21 +> [37422] penetrating: 14 +> [37423] penetration: 4 +> [37424] peninsula: 1 +> [37425] penitence: 13 +> [37426] penitence--in: 1 +> [37427] penitent: 19 +> [37428] penitent? [37429] penitently: 3 +> [37430] penknife: 6 +> [37431] penknives: 2 +> [37432] penkridge: 3 +> [37433] penmanship: 2 +> [37434] penned: 3 +> [37435] pennies: 1 +> [37436] penniless: 9 +> [37437] pennon-wise: 1 +> [37438] pennsylvania: 1 +> [37439] penny: 39 +> [37440] penny-piece: 1 +> [37441] penny. [37442] penruddocke: 26 +> [37443] penruddocke's: 4 +> [37444] pens: 10 +> [37445] pense: 3 +> [37446] penseur: 1 +> [37447] pension: 20 +> [37448] pensions: 8 +> [37449] pensive: 20 +> [37450] pensively: 7 +> [37451] pent: 3 +> [37452] pent-roof: 2 +> [37453] pent-up: 1 +> [37454] pentecost: 1 +> [37455] penthouse: 5 +> [37456] penthouses: 1 +> [37457] penurious: 1 +> [37458] penury: 1 +> [37459] penza: 7 +> [37460] peony: 2 +> [37461] people: 2055 +> [37462] people!--we're: 1 +> [37463] people! [37464] people"--he: 1 +> [37465] people's: 79 +> [37466] people's--note: 4 +> [37467] people, [37468] people--as: 1 +> [37469] people--businessmen: 1 +> [37470] people--dreamers: 1 +> [37471] people--has: 1 +> [37472] people--interest: 1 +> [37473] people--it: 1 +> [37474] people--of: 5 +> [37475] people--present: 1 +> [37476] people--strengthened: 1 +> [37477] people--that: 2 +> [37478] people--that's: 3 +> [37479] people--the: 3 +> [37480] people--this: 1 +> [37481] people--to: 1 +> [37482] people--use: 1 +> [37483] people--were: 1 +> [37484] people--why: 1 +> [37485] people--with: 1 +> [37486] people--you: 1 +> [37487] people-though: 1 +> [37488] people. [37489] people: [37490] people [37491] people? [37492] peopled: 2 +> [37493] peoples: 43 +> [37494] peoples--at: 1 +> [37495] people’s: 1 +> [37496] pepper: 21 +> [37497] pepper'll: 1 +> [37498] pepper's: 2 +> [37499] pepper-box: 2 +> [37500] peppered: 1 +> [37501] pepys: 1 +> [37502] per: 277 +> [37503] perambulator: 1 +> [37504] perborate: 5 +> [37505] perceive: 24 +> [37506] perceived: 35 +> [37507] perceives: 3 +> [37508] perceiving: 11 +> [37509] percent: 3 +> [37510] percentage: 87 +> [37511] percentages: 7 +> [37512] perceptible: 35 +> [37513] perceptibly: 9 +> [37514] perception: 18 +> [37515] perceptions: 3 +> [37516] perch: 5 +> [37517] perchance: 1 +> [37518] perched: 7 +> [37519] percolating: 1 +> [37520] perdere: 2 +> [37521] pere: 5 +> [37522] perean: 1 +> [37523] peregrine: 1 +> [37524] peregrine--a: 1 +> [37525] peremptorily: 13 +> [37526] peremptoriness: 1 +> [37527] peremptory: 12 +> [37528] perennial: 1 +> [37529] perezvon: 31 +> [37530] perezvon! [37531] perezvon's: 1 +> [37532] perezvon, [37533] perezvon. [37534] perfect: 181 +> [37535] perfect--there: 1 +> [37536] perfect. [37537] perfected: 1 +> [37538] perfecter: 1 +> [37539] perfectibility: 2 +> [37540] perfecting: 2 +> [37541] perfection: 35 +> [37542] perfection--it: 1 +> [37543] perfection--oh: 1 +> [37544] perfection--yet: 1 +> [37545] perfectly: 295 +> [37546] perforated: 2 +> [37547] perforations: 2 +> [37548] perforce: 8 +> [37549] perform: 57 +> [37550] perform;’: 1 +> [37551] performance: 42 +> [37552] performance--believe: 1 +> [37553] performance--which: 1 +> [37554] performances: 22 +> [37555] performed: 75 +> [37556] performer: 3 +> [37557] performing: 78 +> [37558] performs: 3 +> [37559] perfume: 27 +> [37560] perfumed: 15 +> [37561] perfumer: 1 +> [37562] perfumers: 1 +> [37563] perfumery: 1 +> [37564] perfumes: 9 +> [37565] perfuming: 8 +> [37566] perfunctory: 1 +> [37567] pergamum: 1 +> [37568] perhaps: 1508 +> [37569] perhaps—and: 1 +> [37570] perhaps—for: 1 +> [37571] perhaps—in: 1 +> [37572] perhaps—not: 1 +> [37573] perhaps—why: 1 +> [37574] perhaps, [37575] perhaps--but: 1 +> [37576] perhaps--i: 1 +> [37577] perhaps--perhaps--might: 1 +> [37578] perhaps--who: 3 +> [37579] perhaps--yes: 1 +> [37580] perhaps--you: 1 +> [37581] perhaps. [37582] perhaps? [37583] perhotin: 17 +> [37584] perhotin's: 10 +> [37585] perhotin's—how: 1 +> [37586] perhotin. [37587] peri--or: 1 +> [37588] perigord: 12 +> [37589] perigueux: 2 +> [37590] peril: 25 +> [37591] perilous: 5 +> [37592] perils: 3 +> [37593] period: 182 +> [37594] period. [37595] periodic: 19 +> [37596] periodical: 5 +> [37597] periods: 17 +> [37598] periods—the: 1 +> [37599] perish: 39 +> [37600] perish.”: 1 +> [37601] perished: 30 +> [37602] perishes: 1 +> [37603] perishing: 13 +> [37604] perjury: 1 +> [37605] perkhushkovo: 2 +> [37606] perlen: 1 +> [37607] permanence: 1 +> [37608] permanent: 53 +> [37609] permanently: 9 +> [37610] permanently. [37611] permeated: 3 +> [37612] permeates: 1 +> [37613] permissable: 1 +> [37614] permissible: 9 +> [37615] permission: 204 +> [37616] permission--or: 1 +> [37617] permit: 30 +> [37618] permits: 11 +> [37619] permitted: 65 +> [37620] permitting: 2 +> [37621] permitting— [37622] permutations: 1 +> [37623] pernetti: 2 +> [37624] pernicious: 10 +> [37625] peronskaya: 13 +> [37626] peronskaya's: 1 +> [37627] peroration: 3 +> [37628] peroxide: 11 +> [37629] peroxides: 2 +> [37630] perpendicularly: 5 +> [37631] perpetrate: 1 +> [37632] perpetrated: 9 +> [37633] perpetrating: 1 +> [37634] perpetration: 3 +> [37635] perpetual: 21 +> [37636] perpetual--from: 2 +> [37637] perpetually: 10 +> [37638] perpetuate: 1 +> [37639] perpetuated: 2 +> [37640] perpetuates: 3 +> [37641] perpetuating: 5 +> [37642] perpetuation: 1 +> [37643] perpetuity: 1 +> [37644] perplex: 2 +> [37645] perplexed: 34 +> [37646] perplexes: 1 +> [37647] perplexing: 5 +> [37648] perplexities: 5 +> [37649] perplexity: 92 +> [37650] perplexity--perhaps: 1 +> [37651] persecute: 7 +> [37652] persecuted: 8 +> [37653] persecuting: 4 +> [37654] persecution: 30 +> [37655] persecutions: 1 +> [37656] persecution—to: 1 +> [37657] persecutor: 7 +> [37658] persecutors: 3 +> [37659] persecutress: 1 +> [37660] perseverance: 8 +> [37661] persevere: 4 +> [37662] persevere. [37663] persevering: 2 +> [37664] perseveringly: 1 +> [37665] persia: 2 +> [37666] persian: 10 +> [37667] persians: 1 +> [37668] persist: 7 +> [37669] persisted: 62 +> [37670] persisted--and: 1 +> [37671] persistence: 9 +> [37672] persistent: 30 +> [37673] persistently: 33 +> [37674] persisting: 5 +> [37675] persists: 5 +> [37676] person: 592 +> [37677] person—a: 1 +> [37678] person—and: 1 +> [37679] person's: 10 +> [37680] person's [37681] person, [37682] person--and: 2 +> [37683] person--no: 1 +> [37684] person...i: 1 +> [37685] person. [37686] person.”: 1 +> [37687] person? [37688] personage: 51 +> [37689] personages: 32 +> [37690] personages--that: 1 +> [37691] personal: 200 +> [37692] personal--and: 1 +> [37693] personalities: 6 +> [37694] personality: 27 +> [37695] personality--free: 1 +> [37696] personally: 65 +> [37697] personally--are: 1 +> [37698] personification: 3 +> [37699] personifications: 1 +> [37700] personified: 1 +> [37701] personne: 1 +> [37702] personne [37703] persons: 219 +> [37704] persons—the: 1 +> [37705] persons--a: 1 +> [37706] persons--in: 1 +> [37707] person’s: 3 +> [37708] perspective: 2 +> [37709] perspicacity: 1 +> [37710] perspicuity: 1 +> [37711] perspicuous: 2 +> [37712] perspiration: 37 +> [37713] perspired: 4 +> [37714] perspiring: 25 +> [37715] persuade: 70 +> [37716] persuaded: 97 +> [37717] persuadest: 1 +> [37718] persuading: 14 +> [37719] persuasion: 6 +> [37720] persuasions: 1 +> [37721] persuasive: 3 +> [37722] persuasively: 5 +> [37723] persuasiveness: 2 +> [37724] pert: 3 +> [37725] pertaining: 2 +> [37726] pertinacious: 1 +> [37727] pertinaciously: 1 +> [37728] pertinent: 1 +> [37729] pertinently: 1 +> [37730] perturb: 1 +> [37731] perturbation: 12 +> [37732] perturbed: 15 +> [37733] peruke: 1 +> [37734] perusal: 2 +> [37735] peruse: 2 +> [37736] pervaded: 4 +> [37737] pervades: 1 +> [37738] perverse: 11 +> [37739] perverseness: 1 +> [37740] perversion: 7 +> [37741] perversity: 4 +> [37742] pervert: 3 +> [37743] perverted: 4 +> [37744] perverters: 1 +> [37745] perverting: 3 +> [37746] perverts: 2 +> [37747] pervozvanny: 1 +> [37748] peski: 4 +> [37749] pessimism: 1 +> [37750] pessimist: 1 +> [37751] pester: 3 +> [37752] pestered: 5 +> [37753] pestering: 8 +> [37754] pestewing: 1 +> [37755] pesthouse: 1 +> [37756] pestilence: 1 +> [37757] pestilent: 6 +> [37758] pestle: 35 +> [37759] pestle! [37760] pestle—i: 1 +> [37761] pestle—why: 1 +> [37762] pestle, [37763] pestle. [37764] pestle? [37765] pestryakov: 9 +> [37766] pestryakov--though: 1 +> [37767] pestsov: 36 +> [37768] pet: 27 +> [37769] petal: 2 +> [37770] petals: 5 +> [37771] petch: 30 +> [37772] petch's: 2 +> [37773] petch--couldn't: 1 +> [37774] petenka--he: 1 +> [37775] peter: 283 +> [37776] peter's: 23 +> [37777] peter--let: 1 +> [37778] peterhof: 9 +> [37779] peterkin--and: 1 +> [37780] peters: 2 +> [37781] petersbourg: 2 +> [37782] petersburg: 574 +> [37783] petersburg's: 1 +> [37784] petersburg, [37785] petersburg--bright: 1 +> [37786] petersburg--far: 1 +> [37787] petersburg--he: 1 +> [37788] petersburg--no: 1 +> [37789] petersburg. [37790] petersburg; [37791] petersburg; [37792] petersburger: 1 +> [37793] petersburgskaia: 1 +> [37794] peter’s: 1 +> [37795] petinka: 1 +> [37796] petisenfans: 1 +> [37797] petit: 17 +> [37798] petite: 4 +> [37799] petites: 2 +> [37800] petitesse: 1 +> [37801] petition: 27 +> [37802] petitioned: 3 +> [37803] petitioner: 4 +> [37804] petitioner's: 1 +> [37805] petitioners: 17 +> [37806] petitioning: 2 +> [37807] petitions: 8 +> [37808] petitot: 2 +> [37809] petrie: 2 +> [37810] petrified: 9 +> [37811] petrine: 23 +> [37812] petritsky: 31 +> [37813] petritsky's: 4 +> [37814] petro-pauline: 2 +> [37815] petroff: 5 +> [37816] petroleum: 17 +> [37817] petronilla: 51 +> [37818] petronilla's: 4 +> [37819] petronilla--a: 1 +> [37820] petronillas: 1 +> [37821] petropol: 1 +> [37822] petrov: 9 +> [37823] petrov's: 1 +> [37824] petrova: 1 +> [37825] petrovich: 3 +> [37826] petrovitch: 323 +> [37827] petrovitch's: 18 +> [37828] petrovitch--is: 1 +> [37829] petrovka: 1 +> [37830] petrovna: 103 +> [37831] petrovna's: 8 +> [37832] petrovna, [37833] petrovna--su--su--su: 1 +> [37834] petrovs: 4 +> [37835] petrovsky: 6 +> [37836] petrusha: 2 +> [37837] petrushka: 23 +> [37838] petted: 6 +> [37839] petticoat: 7 +> [37840] petticoat--fluttered: 2 +> [37841] petticoats: 8 +> [37842] pettiest: 8 +> [37843] pettifer: 2 +> [37844] pettifogger: 1 +> [37845] pettifogging: 1 +> [37846] pettily: 1 +> [37847] pettiness: 7 +> [37848] petting: 3 +> [37849] pettish: 1 +> [37850] pettishly: 4 +> [37851] petty: 44 +> [37852] petulance: 3 +> [37853] petulance--impatience: 1 +> [37854] petulant: 6 +> [37855] petulantly: 4 +> [37856] petya: 249 +> [37857] petya's: 18 +> [37858] petya--"is: 1 +> [37859] petya--abashed: 1 +> [37860] petya--pale: 1 +> [37861] petya--whom: 1 +> [37862] peu: 3 +> [37863] peu,"*(4: 1 +> [37864] peuple: 3 +> [37865] peuples: 2 +> [37866] peur: 2 +> [37867] peut: 1 +> [37868] pew: 8 +> [37869] pew-opener: 1 +> [37870] pewter: 1 +> [37871] pfeilring: 4 +> [37872] pfleiderer: 2 +> [37873] pfleiderer's: 1 +> [37874] pfoo: 4 +> [37875] pfu: 5 +> [37876] pfuel: 39 +> [37877] pfuel's: 8 +> [37878] pg: 19 +> [37879] pgcharmap: 2 +> [37880] pgextensions: 2 +> [37881] pglaf: 19 +> [37882] pgstylesheet: 2 +> [37883] ph: 1 +> [37884] phaeton: 3 +> [37885] phalanstery: 2 +> [37886] phalanstery--it: 1 +> [37887] phantasm: 4 +> [37888] phantasmagoria: 2 +> [37889] phantasms: 2 +> [37890] phantasy: 2 +> [37891] phantom: 19 +> [37892] phantoms: 8 +> [37893] phaon: 1 +> [37894] pharisaic: 4 +> [37895] pharisaical: 1 +> [37896] pharisaism: 2 +> [37897] pharisee: 7 +> [37898] pharisees: 3 +> [37899] pharmacists: 1 +> [37900] phase: 21 +> [37901] phases: 9 +> [37902] pheasants: 2 +> [37903] phenol: 5 +> [37904] phenolphthalein: 36 +> [37905] phenols: 5 +> [37906] phenomena: 25 +> [37907] phenomena--the: 1 +> [37908] phenomenal: 3 +> [37909] phenomenally: 5 +> [37910] phenomenon: 32 +> [37911] phenyl: 1 +> [37912] phew: 7 +> [37913] phials: 2 +> [37914] phil: 7 +> [37915] phila: 1 +> [37916] philadelphia: 1 +> [37917] philadelphians: 1 +> [37918] philanthropic: 9 +> [37919] philanthropic.... [37920] philanthropist: 1 +> [37921] philanthropists: 2 +> [37922] philanthropy: 10 +> [37923] philem: 1 +> [37924] philemon: 10 +> [37925] philemon-colossians-ephesians: 1 +> [37926] philimonovna: 13 +> [37927] philimonovna's: 1 +> [37928] philip: 46 +> [37929] philip's: 4 +> [37930] philipovna: 214 +> [37931] philipovna's: 32 +> [37932] philipovna--for: 1 +> [37933] philipovna--not: 1 +> [37934] philipovna--they: 1 +> [37935] philipovnas: 1 +> [37936] philippa: 2 +> [37937] philippe: 1 +> [37938] philippi: 5 +> [37939] philippians: 14 +> [37940] philippines: 1 +> [37941] phillpovna's: 1 +> [37942] philology: 1 +> [37943] philonic: 1 +> [37944] philosophe: 1 +> [37945] philosopher: 20 +> [37946] philosopher—you: 1 +> [37947] philosopher's: 1 +> [37948] philosophers: 19 +> [37949] philosophic: 7 +> [37950] philosophic--we: 1 +> [37951] philosophical: 14 +> [37952] philosophically: 1 +> [37953] philosophies: 1 +> [37954] philosophize: 1 +> [37955] philosophizing: 4 +> [37956] philosophy: 46 +> [37957] philosophy. [37958] philpovna's: 1 +> [37959] philtre: 2 +> [37960] phiz [37961] phlegm: 1 +> [37962] phlegmatic: 3 +> [37963] phoenecia: 1 +> [37964] phosphates: 1 +> [37965] phosphorescence: 1 +> [37966] phosphorus: 3 +> [37967] photius: 2 +> [37968] photo: 1 +> [37969] photograph: 12 +> [37970] photographed: 1 +> [37971] photographer: 1 +> [37972] photographs: 5 +> [37973] phrase: 162 +> [37974] phrase--that: 1 +> [37975] phrase--who: 1 +> [37976] phrase-monger: 1 +> [37977] phrased: 1 +> [37978] phrasemongers: 4 +> [37979] phraseology: 6 +> [37980] phrases: 67 +> [37981] phrases--which: 1 +> [37982] phrygia: 2 +> [37983] phrygia-galatia: 1 +> [37984] phrygian: 1 +> [37985] phrygians: 3 +> [37986] phyllis: 1 +> [37987] physic: 1 +> [37988] physical: 144 +> [37989] physical, [37990] physically: 33 +> [37991] physician: 12 +> [37992] physician's: 2 +> [37993] physicians: 1 +> [37994] physics: 7 +> [37995] physik: 2 +> [37996] physiognomist: 1 +> [37997] physiognomy: 5 +> [37998] physiognomy. [37999] physiol: 1 +> [38000] physiological: 4 +> [38001] physiology: 2 +> [38002] physiology)--utterly: 1 +> [38003] physiology--do: 1 +> [38004] phytosterol: 3 +> [38005] phœbus: 3 +> [38006] phœbus. [38007] pianist: 1 +> [38008] piano: 19 +> [38009] piano-forte: 1 +> [38010] piano-key: 8 +> [38011] pianoforte: 1 +> [38012] piantaleone: 1 +> [38013] pic-nic: 3 +> [38014] piccadilly: 2 +> [38015] pick: 55 +> [38016] pick-me-up: 2 +> [38017] picked: 122 +> [38018] pickers: 1 +> [38019] picket: 12 +> [38020] pickets: 3 +> [38021] picking: 40 +> [38022] pickle: 5 +> [38023] pickle's: 1 +> [38024] pickled: 3 +> [38025] pickpocket: 5 +> [38026] picks: 3 +> [38027] picnic: 3 +> [38028] picnics: 2 +> [38029] picture: 212 +> [38030] picture—only: 1 +> [38031] picture--a: 1 +> [38032] picture-book: 1 +> [38033] picture-stand: 1 +> [38034] pictured: 53 +> [38035] pictures: 72 +> [38036] pictures--this: 1 +> [38037] pictures--you: 1 +> [38038] pictures. [38039] picturesque: 10 +> [38040] picturesquely: 3 +> [38041] picturesqueness: 1 +> [38042] picturing: 16 +> [38043] piderit's: 1 +> [38044] pie: 8 +> [38045] piebald: 6 +> [38046] piece: 200 +> [38047] piece--all: 1 +> [38048] piece [38049] piecemeal: 4 +> [38050] pieces: 106 +> [38051] pieces--all: 1 +> [38052] pieces. [38053] piedmontese: 1 +> [38054] pier: 4 +> [38055] pier-glass: 1 +> [38056] pierce: 7 +> [38057] pierced: 27 +> [38058] piercing: 31 +> [38059] piercingly: 6 +> [38060] pierre: 1821 +> [38061] pierre's: 170 +> [38062] pierre--as: 1 +> [38063] pierre--have: 1 +> [38064] pierre--only: 1 +> [38065] pierre--or: 1 +> [38066] pierre--that: 1 +> [38067] pierre--there: 1 +> [38068] pierre--who: 1 +> [38069] pierrot: 3 +> [38070] piers: 2 +> [38071] pies: 15 +> [38072] pies. [38073] pietist: 1 +> [38074] pietists: 1 +> [38075] piety: 7 +> [38076] pig: 30 +> [38077] pig's: 2 +> [38078] pigeon: 5 +> [38079] pigeon-toed: 2 +> [38080] pigeonholes: 1 +> [38081] pigeons: 11 +> [38082] pigs: 8 +> [38083] pigsty: 1 +> [38084] pigtail: 1 +> [38085] pike: 4 +> [38086] pike-points: 2 +> [38087] piked: 1 +> [38088] pikes: 10 +> [38089] pikestaff--an: 1 +> [38090] pilate: 11 +> [38091] pilate's: 3 +> [38092] pile: 17 +> [38093] piled: 13 +> [38094] piled-up: 1 +> [38095] piles: 11 +> [38096] pilgrim: 8 +> [38097] pilgrim's: 1 +> [38098] pilgrimage: 11 +> [38099] pilgrims: 12 +> [38100] pill: 3 +> [38101] pillage: 8 +> [38102] pillaged: 2 +> [38103] pillaged--they: 1 +> [38104] pillaging: 3 +> [38105] pillaging--october: 1 +> [38106] pillar: 10 +> [38107] pillar—i: 1 +> [38108] pillar--they: 1 +> [38109] pillars: 13 +> [38110] pilloried: 1 +> [38111] pillory: 4 +> [38112] pillow: 135 +> [38113] pillow. [38114] pillow [38115] pillowcases: 1 +> [38116] pillowed: 2 +> [38117] pillows: 31 +> [38118] pills: 7 +> [38119] pilot: 2 +> [38120] piloted: 1 +> [38121] pimples: 2 +> [38122] pimply: 4 +> [38123] pin: 25 +> [38124] pin-money: 1 +> [38125] pin-pricks: 3 +> [38126] pinatel: 2 +> [38127] pince-nez: 6 +> [38128] pincers: 3 +> [38129] pinch: 19 +> [38130] pinched: 14 +> [38131] pinches: 2 +> [38132] pinching: 6 +> [38133] pine: 8 +> [38134] pine-tree: 4 +> [38135] pine-trees: 1 +> [38136] pine-wood: 1 +> [38137] pineapple: 6 +> [38138] pineapples: 2 +> [38139] pined: 1 +> [38140] pines: 7 +> [38141] pinfold: 1 +> [38142] pinic: 3 +> [38143] pining: 8 +> [38144] pink: 66 +> [38145] pinkish: 2 +> [38146] pinkish-gray: 1 +> [38147] pinks: 1 +> [38148] pinnacle: 8 +> [38149] pinned: 18 +> [38150] pinning: 4 +> [38151] pinpricks: 1 +> [38152] pins: 15 +> [38153] pint: 5 +> [38154] pints: 1 +> [38155] piotr: 3 +> [38156] pious: 10 +> [38157] piously: 2 +> [38158] pipe: 78 +> [38159] pipe, [38160] pipe-claying: 1 +> [38161] piped: 3 +> [38162] piper: 2 +> [38163] pipes: 19 +> [38164] pipette: 7 +> [38165] pipetted: 1 +> [38166] piping: 4 +> [38167] piping. [38168] pipings: 1 +> [38169] pipkin: 1 +> [38170] piquancy: 7 +> [38171] piquant: 3 +> [38172] piquante: 1 +> [38173] pique: 2 +> [38174] piqued: 4 +> [38175] piquet: 1 +> [38176] piqué: 1 +> [38177] pirate: 1 +> [38178] pirke: 2 +> [38179] pirogoff: 3 +> [38180] pirogoffs: 1 +> [38181] pirogov: 4 +> [38182] piron: 4 +> [38183] piron! [38184] piron? [38185] pirouetted: 1 +> [38186] pirouetting: 2 +> [38187] pis: 2 +> [38188] pis-aller: 1 +> [38189] pish: 4 +> [38190] pistil: 1 +> [38191] pistol: 90 +> [38192] pistol-barrel: 1 +> [38193] pistol-case: 2 +> [38194] pistol-loading: 1 +> [38195] pistol-shot--noises: 1 +> [38196] pistol. [38197] pistol? [38198] pistols: 51 +> [38199] pistols, [38200] pistols. [38201] piston: 2 +> [38202] pit: 22 +> [38203] pit--standing: 1 +> [38204] pitch: 45 +> [38205] pitch-black: 1 +> [38206] pitch-dark: 2 +> [38207] pitch.”: 1 +> [38208] pitched: 15 +> [38209] pitcher: 1 +> [38210] pitchers: 2 +> [38211] pitches: 2 +> [38212] pitchfork: 3 +> [38213] pitchforked: 4 +> [38214] pitchforks: 3 +> [38215] pitching: 4 +> [38216] piteous: 29 +> [38217] piteously: 15 +> [38218] piteously--he: 1 +> [38219] pitfalls: 1 +> [38220] pithily: 2 +> [38221] pithy: 1 +> [38222] piti-piti-piti: 6 +> [38223] pitiable: 10 +> [38224] pitied: 47 +> [38225] pities: 3 +> [38226] pitiful: 59 +> [38227] pitifully: 5 +> [38228] pitiless: 11 +> [38229] pitilessly: 10 +> [38230] pits: 2 +> [38231] pitt: 4 +> [38232] pitt's: 1 +> [38233] pittance: 1 +> [38234] pitted: 2 +> [38235] pitting: 1 +> [38236] pity: 299 +> [38237] pity's: 6 +> [38238] pity, [38239] pity--for: 1 +> [38240] pity--immeasurable: 1 +> [38241] pity--not: 1 +> [38242] pitying: 7 +> [38243] pityingly: 1 +> [38244] pivot: 1 +> [38245] pièce: 2 +> [38246] piété: 1 +> [38247] placard: 5 +> [38248] placarded: 2 +> [38249] placards: 2 +> [38250] place: 1464 +> [38251] place! [38252] place—and: 1 +> [38253] place—he: 1 +> [38254] place, [38255] place--a: 2 +> [38256] place--and: 2 +> [38257] place--but: 1 +> [38258] place--filthy: 1 +> [38259] place--foreign: 1 +> [38260] place--hindering: 1 +> [38261] place--iron: 1 +> [38262] place--it: 1 +> [38263] place--justice: 1 +> [38264] place--many: 1 +> [38265] place--the: 1 +> [38266] place--which: 1 +> [38267] place...i: 1 +> [38268] place. [38269] place. [38270] place='foot'>a: 1 +> [38271] place='foot'>gogol: 1 +> [38272] place='foot'>grushenka. [38273] place='foot'>i.e: 2 +> [38274] place='foot'>in: 1 +> [38275] place='foot'>literally: 1 +> [38276] place='foot'>probably: 1 +> [38277] place='foot'>when: 1 +> [38278] placed: 190 +> [38279] placed.’”: 1 +> [38280] places: 162 +> [38281] places!’: 1 +> [38282] places--there: 1 +> [38283] placid: 11 +> [38284] placidly: 5 +> [38285] placing: 23 +> [38286] plagiarism: 3 +> [38287] plagiarism, [38288] plagiarists: 1 +> [38289] plague: 17 +> [38290] plague--an: 1 +> [38291] plague-stricken: 3 +> [38292] plagued: 2 +> [38293] plagues.’: 1 +> [38294] plaguing: 2 +> [38295] plaguy: 3 +> [38296] plaid: 2 +> [38297] plain: 235 +> [38298] plain--for: 1 +> [38299] plain--it: 1 +> [38300] plain--moral: 1 +> [38301] plain--were: 1 +> [38302] plain-stained: 1 +> [38303] plain. [38304] plainer: 8 +> [38305] plainly: 109 +> [38306] plainly--the: 1 +> [38307] plainly. [38308] plainness: 9 +> [38309] plains: 1 +> [38310] plaintiff: 1 +> [38311] plaintive: 18 +> [38312] plaintively: 7 +> [38313] plaints: 1 +> [38314] plaire: 1 +> [38315] plaisanterie: 1 +> [38316] plaisir: 3 +> [38317] plait: 7 +> [38318] plaited: 8 +> [38319] plaiting: 2 +> [38320] plaits: 5 +> [38321] plan: 230 +> [38322] plan--he: 1 +> [38323] plan. [38324] plane: 5 +> [38325] planed: 3 +> [38326] planet: 6 +> [38327] planets: 4 +> [38328] planing: 1 +> [38329] plank: 8 +> [38330] plank-bridge: 1 +> [38331] planking: 2 +> [38332] planks: 21 +> [38333] planned: 29 +> [38334] planning: 19 +> [38335] plans: 137 +> [38336] plans--in: 1 +> [38337] plans--the: 1 +> [38338] plans--which: 1 +> [38339] plant: 31 +> [38340] plantation: 3 +> [38341] plantations: 1 +> [38342] planted: 19 +> [38343] planters: 1 +> [38344] plants: 16 +> [38345] plash: 5 +> [38346] plashed: 1 +> [38347] plaster: 10 +> [38348] plastered: 5 +> [38349] plasterers: 2 +> [38350] plasters: 1 +> [38351] plastic: 2 +> [38352] plastun: 1 +> [38353] plastunov's: 1 +> [38354] plastunovs: 1 +> [38355] plat: 1 +> [38356] plate: 73 +> [38357] plate-chest: 3 +> [38358] plate-glass: 1 +> [38359] plateau: 1 +> [38360] plated: 2 +> [38361] plateful: 1 +> [38362] plates: 17 +> [38363] platform: 38 +> [38364] platinum: 5 +> [38365] platitudes: 1 +> [38366] plato: 5 +> [38367] platoche: 3 +> [38368] platon: 31 +> [38369] platon's: 3 +> [38370] platon--wretched: 1 +> [38371] platon.... [38372] platonic: 3 +> [38373] platoon: 4 +> [38374] platoons: 1 +> [38375] platosha: 1 +> [38376] platov: 6 +> [38377] platov's: 6 +> [38378] platovs: 1 +> [38379] plato’s: 1 +> [38380] platter: 2 +> [38381] plaudits: 1 +> [38382] plausibility: 1 +> [38383] plausible: 6 +> [38384] plausibly: 4 +> [38385] play: 214 +> [38386] play—they: 1 +> [38387] play-acting: 1 +> [38388] playbill: 1 +> [38389] played: 149 +> [38390] player: 11 +> [38391] players: 10 +> [38392] playfellow: 2 +> [38393] playful: 33 +> [38394] playfully: 10 +> [38395] playfulness: 11 +> [38396] playground: 1 +> [38397] playing: 159 +> [38398] playing--there's: 1 +> [38399] playing. [38400] playmate: 3 +> [38401] playmates: 4 +> [38402] plays: 17 +> [38403] plaything: 8 +> [38404] plaything--for: 1 +> [38405] playthings: 3 +> [38406] playtime: 2 +> [38407] playwriter: 1 +> [38408] plea: 20 +> [38409] plead: 18 +> [38410] pleaded: 17 +> [38411] pleading: 9 +> [38412] pleadingly: 1 +> [38413] pleadings: 1 +> [38414] pleads: 1 +> [38415] pleasance: 2 +> [38416] pleasant: 252 +> [38417] pleasant-looking: 1 +> [38418] pleasanter: 10 +> [38419] pleasantest: 3 +> [38420] pleasantly: 44 +> [38421] pleasantry: 2 +> [38422] pleasant”--“blustering”--“look: 1 +> [38423] please: 590 +> [38424] please! [38425] please— [38426] please—and: 1 +> [38427] please,--excuse: 1 +> [38428] please, [38429] please--from: 1 +> [38430] please--i've: 1 +> [38431] please--is: 1 +> [38432] please--please: 1 +> [38433] please--take: 1 +> [38434] please.”: 1 +> [38435] pleased: 342 +> [38436] pleased, [38437] pleases: 20 +> [38438] pleasing: 27 +> [38439] pleasing.”: 1 +> [38440] pleasurable: 3 +> [38441] pleasure: 396 +> [38442] pleasure--balls: 1 +> [38443] pleasure--for: 1 +> [38444] pleasure--his: 1 +> [38445] pleasure--however: 1 +> [38446] pleasure--i: 1 +> [38447] pleasure--which: 1 +> [38448] pleasure--yes: 1 +> [38449] pleasure-garden: 1 +> [38450] pleasure. [38451] pleasure? [38452] pleasure_?”: 1 +> [38453] pleasureable: 1 +> [38454] pleasures: 37 +> [38455] pleasures--talks: 1 +> [38456] pleasures. [38457] plebeian: 2 +> [38458] pledge: 19 +> [38459] pledged: 18 +> [38460] pledges: 13 +> [38461] pledging: 1 +> [38462] plein: 1 +> [38463] pleins: 1 +> [38464] plenary: 1 +> [38465] plenteous: 1 +> [38466] plentiful: 10 +> [38467] plenty: 78 +> [38468] plessis: 2 +> [38469] plestcheiev: 1 +> [38470] plethoric: 1 +> [38471] pleuree: 1 +> [38472] pleurs: 1 +> [38473] pliable: 1 +> [38474] plied: 2 +> [38475] plight: 22 +> [38476] plight--blessings: 1 +> [38477] plighted: 4 +> [38478] plighting: 3 +> [38479] plights: 1 +> [38480] plinths: 1 +> [38481] plodded: 6 +> [38482] plodder: 4 +> [38483] plodding: 6 +> [38484] plood: 1 +> [38485] plot: 19 +> [38486] plotnikov's: 8 +> [38487] plotnikovs: 3 +> [38488] plots: 2 +> [38489] plotted: 4 +> [38490] plotter: 1 +> [38491] plotters: 1 +> [38492] plotting: 7 +> [38493] plottings: 1 +> [38494] plough: 22 +> [38495] ploughed: 9 +> [38496] ploughing: 8 +> [38497] ploughland: 2 +> [38498] ploughman: 1 +> [38499] ploughs: 7 +> [38500] ploughshares: 1 +> [38501] plovers: 1 +> [38502] plow: 3 +> [38503] plowed: 5 +> [38504] plowing: 1 +> [38505] plowland: 1 +> [38506] plowmen: 1 +> [38507] plows: 1 +> [38508] pluck: 13 +> [38509] pluck--that: 1 +> [38510] plucked: 22 +> [38511] pluckier: 1 +> [38512] plucking: 4 +> [38513] plucks: 1 +> [38514] plucky: 4 +> [38515] plug: 1 +> [38516] plugged: 1 +> [38517] pluie: 1 +> [38518] plum: 5 +> [38519] plumage: 1 +> [38520] plumb: 1 +> [38521] plumbers: 1 +> [38522] plumbing: 1 +> [38523] plume: 6 +> [38524] plumed: 2 +> [38525] plumes: 15 +> [38526] plump: 65 +> [38527] plumped: 6 +> [38528] plumper: 2 +> [38529] plumply: 1 +> [38530] plumpness: 1 +> [38531] plums: 5 +> [38532] plunder: 13 +> [38533] plunder--why: 1 +> [38534] plundered: 7 +> [38535] plunderers: 4 +> [38536] plundering: 5 +> [38537] plunge: 24 +> [38538] plunged: 58 +> [38539] plunges: 2 +> [38540] plunging: 3 +> [38541] plural: 3 +> [38542] plus: 14 +> [38543] plush: 1 +> [38544] plutarch: 2 +> [38545] plutarch's: 1 +> [38546] ply: 1 +> [38547] plying: 2 +> [38548] pneumonia: 1 +> [38549] po-o-ossible: 2 +> [38550] poached: 1 +> [38551] poches: 1 +> [38552] pock-marked: 6 +> [38553] pocked: 1 +> [38554] pocket: 241 +> [38555] pocket--"and: 1 +> [38556] pocket--across: 1 +> [38557] pocket--buy: 1 +> [38558] pocket--can't: 1 +> [38559] pocket--i: 1 +> [38560] pocket--two: 1 +> [38561] pocket-book: 11 +> [38562] pocket-handkerchief: 4 +> [38563] pocket-handkerchiefs: 1 +> [38564] pocket-money: 2 +> [38565] pocketbook: 11 +> [38566] pocketbooks: 1 +> [38567] pocketed: 5 +> [38568] pocketful: 1 +> [38569] pocketing: 1 +> [38570] pockets: 57 +> [38571] pockmarked: 12 +> [38572] podgy: 3 +> [38573] podharzhevsky: 4 +> [38574] podkoleosin: 3 +> [38575] podkoleosins: 2 +> [38576] podnovinsk: 1 +> [38577] podnovinski: 1 +> [38578] podolian: 1 +> [38579] podolsk: 3 +> [38580] pods: 1 +> [38581] podvysotsky: 7 +> [38582] podvysotsky, [38583] podvysotsky? [38584] podvysotskys: 1 +> [38585] poem: 31 +> [38586] poem? [38587] poems: 11 +> [38588] poems—and: 1 +> [38589] poet: 37 +> [38590] poetic: 27 +> [38591] poetical: 2 +> [38592] poetically: 1 +> [38593] poetry: 31 +> [38594] poetry, [38595] poetry. [38596] poets: 12 +> [38597] poets—and: 1 +> [38598] pogatchev's: 1 +> [38599] pogodin: 1 +> [38600] poictiers: 1 +> [38601] poignancy: 1 +> [38602] poignant: 13 +> [38603] point: 879 +> [38604] point! [38605] point! [38606] point--and: 1 +> [38607] point--blank: 1 +> [38608] point--his: 1 +> [38609] point--i: 1 +> [38610] point--it: 1 +> [38611] point--not: 1 +> [38612] point--the: 2 +> [38613] point-blank: 1 +> [38614] point. [38615] point. [38616] point.[33: 1 +> [38617] pointe: 1 +> [38618] pointed: 196 +> [38619] pointed.--"fetch: 1 +> [38620] pointedly: 3 +> [38621] pointer: 4 +> [38622] pointing: 203 +> [38623] points: 93 +> [38624] points--four: 1 +> [38625] points. [38626] poise: 1 +> [38627] poised: 4 +> [38628] poising: 1 +> [38629] poison: 34 +> [38630] poison--but: 1 +> [38631] poison--for: 1 +> [38632] poisoned: 20 +> [38633] poisoned--to: 1 +> [38634] poisoner: 2 +> [38635] poisoning: 5 +> [38636] poisonous: 3 +> [38637] poisons: 4 +> [38638] poissy: 1 +> [38639] poitiers: 1 +> [38640] poke: 2 +> [38641] poked: 19 +> [38642] poker: 8 +> [38643] pokes: 1 +> [38644] poking: 7 +> [38645] poklonny: 6 +> [38646] pokorev: 1 +> [38647] pokrovka: 2 +> [38648] pokrovsk: 3 +> [38649] pokrovskoe: 11 +> [38650] poland: 44 +> [38651] poland! [38652] poland, [38653] polar: 1 +> [38654] pole: 78 +> [38655] pole—the: 1 +> [38656] pole's: 4 +> [38657] pole, [38658] polechains: 1 +> [38659] polemic: 6 +> [38660] polemics: 1 +> [38661] polenka: 42 +> [38662] polenka--she: 1 +> [38663] polenka--though: 1 +> [38664] polenov: 2 +> [38665] poleon: 1 +> [38666] poles: 41 +> [38667] poles—begging: 1 +> [38668] poles--all: 1 +> [38669] police: 180 +> [38670] police—the: 1 +> [38671] police-office: 4 +> [38672] police-officer: 7 +> [38673] police-officers: 1 +> [38674] police-offices: 1 +> [38675] police-station: 9 +> [38676] police-station--and: 2 +> [38677] policeman: 37 +> [38678] policeman's: 1 +> [38679] policeman)--approached: 1 +> [38680] policemen: 5 +> [38681] policy: 22 +> [38682] polignac: 2 +> [38683] polignacs: 1 +> [38684] polish: 73 +> [38685] polished: 32 +> [38686] polishing: 4 +> [38687] polite: 87 +> [38688] polite. [38689] politely: 44 +> [38690] politeness: 104 +> [38691] politeness--alluded: 1 +> [38692] politeness. [38693] political: 101 +> [38694] politician: 8 +> [38695] politicians: 5 +> [38696] politicians--were: 1 +> [38697] politico-economical: 2 +> [38698] politics: 39 +> [38699] politics--you: 1 +> [38700] politique: 1 +> [38701] polka: 5 +> [38702] polka-mazurka: 2 +> [38703] polkas: 1 +> [38704] poll: 6 +> [38705] poll-cards: 1 +> [38706] poll-clerks: 1 +> [38707] pollard: 2 +> [38708] polled: 1 +> [38709] pollen: 4 +> [38710] polling: 2 +> [38711] polling-booth: 3 +> [38712] polling-day: 2 +> [38713] pollute: 3 +> [38714] polluted: 1 +> [38715] pollution: 1 +> [38716] pollutions: 2 +> [38717] polonaise: 5 +> [38718] polonius: 2 +> [38719] poltava: 2 +> [38720] poltavsky: 1 +> [38721] poltroon: 2 +> [38722] polya: 1 +> [38723] polyc: 1 +> [38724] polycarp: 14 +> [38725] polycarp's: 1 +> [38726] polydore: 1 +> [38727] polyglot: 1 +> [38728] polyglycerols: 1 +> [38729] polzunkov: 11 +> [38730] polzunkov's: 1 +> [38731] pomade: 2 +> [38732] pomaded: 16 +> [38733] pomading: 1 +> [38734] pomatum: 5 +> [38735] pomerania: 2 +> [38736] pommel: 1 +> [38737] pomorsky: 3 +> [38738] pomorsky--just: 1 +> [38739] pomp: 6 +> [38740] pompous: 11 +> [38741] pompously: 7 +> [38742] pon: 1 +> [38743] pond: 22 +> [38744] ponder: 6 +> [38745] pondered: 56 +> [38746] pondering: 29 +> [38747] ponderous: 3 +> [38748] ponderously: 1 +> [38749] ponds: 7 +> [38750] poniatowski: 3 +> [38751] poniatowski's: 3 +> [38752] ponies: 1 +> [38753] pont: 7 +> [38754] pontiff: 1 +> [38755] pontoon: 1 +> [38756] pontus: 1 +> [38757] pony: 5 +> [38758] poodle: 8 +> [38759] poodle's: 1 +> [38760] poodle, [38761] poodles: 1 +> [38762] poodles. [38763] poof: 4 +> [38764] poof-poof-poof: 1 +> [38765] pooh: 8 +> [38766] pooh!”: 1 +> [38767] pool: 23 +> [38768] pools: 8 +> [38769] poor: 755 +> [38770] poor--a: 1 +> [38771] poor-looking: 1 +> [38772] poor-rates: 1 +> [38773] poor-spirited: 1 +> [38774] poor. [38775] poor? [38776] poorer: 17 +> [38777] poorest: 12 +> [38778] poorhouse: 3 +> [38779] poorhouses: 1 +> [38780] poorly: 9 +> [38781] poorly-dressed: 1 +> [38782] pop: 3 +> [38783] pope: 20 +> [38784] pope's: 7 +> [38785] pope, [38786] popedom: 1 +> [38787] popery: 5 +> [38788] popes: 3 +> [38789] pope’s: 3 +> [38790] popinjay: 1 +> [38791] poplar: 1 +> [38792] poplar-trees: 2 +> [38793] poplars: 9 +> [38794] poplin: 1 +> [38795] popped: 7 +> [38796] poppet: 4 +> [38797] popping: 5 +> [38798] poppy: 7 +> [38799] poppy-seed: 2 +> [38800] poppyseed: 1 +> [38801] populace: 5 +> [38802] popular: 33 +> [38803] popularity: 5 +> [38804] popularization: 1 +> [38805] popularly: 1 +> [38806] populated: 2 +> [38807] population: 18 +> [38808] population,--artisans: 1 +> [38809] populations: 3 +> [38810] populous: 2 +> [38811] porcelain: 4 +> [38812] porcelaine--for: 1 +> [38813] porch: 125 +> [38814] porch! [38815] porch; [38816] porches: 1 +> [38817] porcupine: 4 +> [38818] pore: 2 +> [38819] pored: 3 +> [38820] porfiry: 200 +> [38821] porfiry's: 13 +> [38822] porfiry? [38823] poring: 2 +> [38824] pork-butcher's: 1 +> [38825] porkunoff: 1 +> [38826] porphyry: 2 +> [38827] porpoise: 2 +> [38828] porridge: 16 +> [38829] port: 12 +> [38830] port--english: 1 +> [38831] portable: 3 +> [38832] portal: 4 +> [38833] portal--the: 1 +> [38834] portcullis: 9 +> [38835] portend: 1 +> [38836] portent: 3 +> [38837] portentous: 3 +> [38838] porter: 140 +> [38839] porter's: 20 +> [38840] porter...you: 1 +> [38841] porters: 24 +> [38842] portfolio: 22 +> [38843] portfolio--stood: 1 +> [38844] portico: 7 +> [38845] portion: 53 +> [38846] portioned: 2 +> [38847] portionless: 1 +> [38848] portions: 19 +> [38849] portions--one: 1 +> [38850] portière: 3 +> [38851] portières: 1 +> [38852] portly: 8 +> [38853] portmanteau: 6 +> [38854] portmanteaus: 4 +> [38855] portrait: 125 +> [38856] portrait--frowned: 1 +> [38857] portrait--the: 1 +> [38858] portrait-face: 1 +> [38859] portrait-painter: 1 +> [38860] portraits: 16 +> [38861] portraits—one: 1 +> [38862] portray: 1 +> [38863] portrayed: 1 +> [38864] portrays: 1 +> [38865] ports: 11 +> [38866] portuguese: 1 +> [38867] pose: 36 +> [38868] posed: 10 +> [38869] posen: 1 +> [38870] poses: 2 +> [38871] posing: 2 +> [38872] position: 947 +> [38873] position, [38874] position--all: 1 +> [38875] position--and: 2 +> [38876] position--at: 1 +> [38877] position--by: 1 +> [38878] position--i: 1 +> [38879] position--if: 1 +> [38880] position--incomprehensible: 1 +> [38881] position--made: 1 +> [38882] position--preternatural: 1 +> [38883] position--that's: 2 +> [38884] position--the: 1 +> [38885] position...there: 1 +> [38886] position. [38887] position? [38888] positions: 21 +> [38889] positions. [38890] positive: 71 +> [38891] positive--in: 2 +> [38892] positively: 263 +> [38893] positiveness: 3 +> [38894] posnyakov's: 1 +> [38895] posse: 3 +> [38896] possess: 30 +> [38897] possessed: 92 +> [38898] possessed--so: 1 +> [38899] possessed--you: 1 +> [38900] possesses: 17 +> [38901] possessing: 12 +> [38902] possession: 116 +> [38903] possessions: 9 +> [38904] possessor: 7 +> [38905] possessors: 1 +> [38906] posset: 4 +> [38907] posset-cup: 1 +> [38908] possibilite: 1 +> [38909] possibilities: 13 +> [38910] possibility: 146 +> [38911] possible: 731 +> [38912] possible! [38913] possible,"--if: 1 +> [38914] possible, [38915] possible--but: 1 +> [38916] possible--replied: 1 +> [38917] possible--took: 1 +> [38918] possible? [38919] possibly: 163 +> [38920] possibly— [38921] possumus: 1 +> [38922] possyolok: 3 +> [38923] post: 156 +> [38924] post--whereas: 1 +> [38925] post-and-rail: 1 +> [38926] post-apostolic: 5 +> [38927] post-boy's: 1 +> [38928] post-chaise: 1 +> [38929] post-haste: 7 +> [38930] post-horses: 1 +> [38931] post-house: 1 +> [38932] post-mortem: 1 +> [38933] post-pauline: 2 +> [38934] post-prandial: 1 +> [38935] post-reformation: 2 +> [38936] postage: 3 +> [38937] postboys: 1 +> [38938] postchaises: 2 +> [38939] posted: 104 +> [38940] posterity: 9 +> [38941] postern: 5 +> [38942] posters: 1 +> [38943] posthouses: 1 +> [38944] postilion: 5 +> [38945] postilions: 1 +> [38946] postillions: 1 +> [38947] posting: 13 +> [38948] posting-fares: 1 +> [38949] posting-horses: 3 +> [38950] posting-station: 1 +> [38951] postman: 2 +> [38952] postman's: 1 +> [38953] postmaster: 9 +> [38954] postmaster's: 1 +> [38955] postpone: 5 +> [38956] postponed: 9 +> [38957] postponement: 2 +> [38958] postpones: 1 +> [38959] postponing: 1 +> [38960] posts: 27 +> [38961] postscript: 2 +> [38962] postulant: 1 +> [38963] postulated: 1 +> [38964] postulates: 1 +> [38965] postulating: 1 +> [38966] posture: 9 +> [38967] postures: 3 +> [38968] posturing: 3 +> [38969] posturing.... [38970] pot: 37 +> [38971] pot-house: 5 +> [38972] pot-houses: 2 +> [38973] pot-sherd—and: 1 +> [38974] potanchikov: 1 +> [38975] potash: 77 +> [38976] potassium: 71 +> [38977] potato: 13 +> [38978] potato-field: 2 +> [38979] potato-hoeing: 1 +> [38980] potatoes: 23 +> [38981] potatoes--bah: 1 +> [38982] potatoes--everything: 1 +> [38983] potchinkov's: 5 +> [38984] potemkin: 1 +> [38985] potemkin's: 2 +> [38986] potemkins: 2 +> [38987] potent: 1 +> [38988] potentates: 1 +> [38989] potentially: 1 +> [38990] pothouse: 3 +> [38991] potier: 1 +> [38992] potion: 1 +> [38993] potman: 1 +> [38994] potocka: 1 +> [38995] pots: 14 +> [38996] potsdam: 4 +> [38997] potter: 1 +> [38998] potter's: 3 +> [38999] pottered: 1 +> [39000] potterer: 1 +> [39001] pottering: 1 +> [39002] potters: 1 +> [39003] pottum: 2 +> [39004] potyomkin: 1 +> [39005] pouch: 7 +> [39006] pouches: 2 +> [39007] poudre: 2 +> [39008] poulard: 1 +> [39009] poulet: 1 +> [39010] poulets: 1 +> [39011] poultry: 3 +> [39012] pounce: 8 +> [39013] pounced: 23 +> [39014] pouncing: 1 +> [39015] pound: 33 +> [39016] pound--who: 1 +> [39017] pounded: 2 +> [39018] pounding: 1 +> [39019] pounds: 94 +> [39020] pour: 48 +> [39021] poured: 78 +> [39022] pouring: 22 +> [39023] pourparlers: 1 +> [39024] pouschkin: 1 +> [39025] pout: 1 +> [39026] pouting: 6 +> [39027] povarskaya: 5 +> [39028] povarskoy: 6 +> [39029] poverty: 84 +> [39030] poverty, [39031] poverty-stricken: 6 +> [39032] powdah: 1 +> [39033] powder: 93 +> [39034] powder--in: 1 +> [39035] powder-flasks: 1 +> [39036] powder-grimed: 1 +> [39037] powder-monkey: 1 +> [39038] powder? [39039] powdered: 26 +> [39040] powdering: 3 +> [39041] powders: 41 +> [39042] powdery: 2 +> [39043] powell: 1 +> [39044] power: 515 +> [39045] power--alexander: 1 +> [39046] power--and: 1 +> [39047] power--existing: 1 +> [39048] power--i: 1 +> [39049] power--mere: 1 +> [39050] power--simple: 1 +> [39051] power--tact: 1 +> [39052] power--the: 2 +> [39053] power. [39054] powerful: 77 +> [39055] powerfully: 4 +> [39056] powerless: 12 +> [39057] powerless--to: 1 +> [39058] powers: 87 +> [39059] powers.--engage: 1 +> [39060] poésie: 1 +> [39061] pp: 48 +> [39062] pr: 2 +> [39063] practicability: 1 +> [39064] practicable: 1 +> [39065] practical: 96 +> [39066] practicality: 5 +> [39067] practically: 56 +> [39068] practice: 82 +> [39069] practiced: 10 +> [39070] practices: 2 +> [39071] practicing: 5 +> [39072] practise: 5 +> [39073] practised: 11 +> [39074] practitioners: 1 +> [39075] praise: 62 +> [39076] praise—he: 1 +> [39077] praise--of: 1 +> [39078] praised: 27 +> [39079] praised. [39080] praises: 14 +> [39081] praises--i: 1 +> [39082] praiseworthy: 13 +> [39083] praising: 12 +> [39084] prance: 2 +> [39085] pranced: 4 +> [39086] prancing: 4 +> [39087] prank: 8 +> [39088] pranks: 20 +> [39089] praskovya: 10 +> [39090] prate: 1 +> [39091] prate, [39092] prated: 1 +> [39093] prater: 2 +> [39094] praters: 1 +> [39095] prating: 4 +> [39096] pratt: 1 +> [39097] prattle: 5 +> [39098] prattled: 2 +> [39099] pratzen: 17 +> [39100] pravdin: 2 +> [39101] pray: 147 +> [39102] pray—and: 1 +> [39103] pray--for: 1 +> [39104] pray--they: 1 +> [39105] pray [39106] prayed: 79 +> [39107] prayer: 138 +> [39108] prayer-book: 1 +> [39109] prayer [39110] prayerful: 1 +> [39111] prayerfully: 2 +> [39112] prayers: 50 +> [39113] praying: 47 +> [39114] prays: 5 +> [39115] pre-arranged: 2 +> [39116] pre-christian: 1 +> [39117] pre-destined: 1 +> [39118] pre-eminence: 2 +> [39119] pre-eminent: 3 +> [39120] pre-eminently: 8 +> [39121] pre-existence: 2 +> [39122] pre-existent: 4 +> [39123] pre-pauline: 1 +> [39124] pre-raphaelite: 1 +> [39125] pre-raphaelites: 1 +> [39126] pre-revolution: 1 +> [39127] preach: 15 +> [39128] preached: 23 +> [39129] preacher: 6 +> [39130] preacher's: 1 +> [39131] preachers: 1 +> [39132] preaches: 5 +> [39133] preaching: 35 +> [39134] preachings: 2 +> [39135] preamble: 1 +> [39136] prearranged: 4 +> [39137] prebendary: 1 +> [39138] precarious: 5 +> [39139] precaution: 11 +> [39140] precautions: 16 +> [39141] precautions--(1: 1 +> [39142] precautions--it: 1 +> [39143] precautions. [39144] precede: 6 +> [39145] preceded: 22 +> [39146] precedence: 3 +> [39147] precedent: 7 +> [39148] precedents: 4 +> [39149] precedes: 4 +> [39150] preceding: 26 +> [39151] precept: 5 +> [39152] precept. [39153] precept:--be: 1 +> [39154] preceptor: 4 +> [39155] precepts: 35 +> [39156] precepts--that: 1 +> [39157] prechistenka: 1 +> [39158] precinct: 1 +> [39159] precincts: 5 +> [39160] precincts—you: 1 +> [39161] precious: 125 +> [39162] precipice: 5 +> [39163] precipitate: 11 +> [39164] precipitated: 3 +> [39165] precipitately: 1 +> [39166] precipitates: 2 +> [39167] precipitation: 3 +> [39168] precipitous: 2 +> [39169] precise: 29 +> [39170] precisely: 92 +> [39171] preciseness: 1 +> [39172] precision: 26 +> [39173] preclude: 4 +> [39174] precluded: 2 +> [39175] precludes: 1 +> [39176] precluding: 1 +> [39177] precocious: 1 +> [39178] precocity [39179] preconceived: 6 +> [39180] precursor: 1 +> [39181] predecessor: 5 +> [39182] predecessors: 7 +> [39183] predestination: 1 +> [39184] predestined: 15 +> [39185] predetermined: 3 +> [39186] predicates: 1 +> [39187] predict: 8 +> [39188] predicted: 27 +> [39189] predicting: 4 +> [39190] predicting--deaths: 1 +> [39191] prediction: 10 +> [39192] prediction [39193] predictions: 9 +> [39194] predictive: 1 +> [39195] predicts: 1 +> [39196] predilection: 3 +> [39197] predilections: 1 +> [39198] predisposed: 4 +> [39199] predisposition: 1 +> [39200] predominance: 2 +> [39201] predominant: 3 +> [39202] predominantly: 1 +> [39203] predominate: 1 +> [39204] predominated: 1 +> [39205] predominates: 2 +> [39206] preeminence: 1 +> [39207] preeminently: 1 +> [39208] preening: 3 +> [39209] preface: 10 +> [39210] preface—that: 1 +> [39211] preface, [39212] prefatory: 3 +> [39213] prefect: 2 +> [39214] prefects: 1 +> [39215] prefer: 54 +> [39216] preferable: 6 +> [39217] preferably: 7 +> [39218] preference: 23 +> [39219] preferments: 1 +> [39220] preferred: 57 +> [39221] preferring: 3 +> [39222] prefers: 10 +> [39223] prefers. [39224] prefigured: 1 +> [39225] prefix: 3 +> [39226] prefixed: 5 +> [39227] prefixes: 4 +> [39228] preformed: 1 +> [39229] pregnancies: 2 +> [39230] pregnancy: 6 +> [39231] pregnant: 13 +> [39232] preis: 2 +> [39233] prejudice: 24 +> [39234] prejudice. [39235] prejudice? [39236] prejudiced: 8 +> [39237] prejudices: 23 +> [39238] prejudicial: 1 +> [39239] prelate: 1 +> [39240] prelate--"_te: 1 +> [39241] prelates: 1 +> [39242] preliminaries: 3 +> [39243] preliminary: 26 +> [39244] prelude: 5 +> [39245] premature: 13 +> [39246] prematurely: 6 +> [39247] premeditated: 8 +> [39248] premeditates: 1 +> [39249] premeditation: 5 +> [39250] premeditation? [39251] premier: 3 +> [39252] premise: 1 +> [39253] premised: 1 +> [39254] premises: 6 +> [39255] premium: 2 +> [39256] premonition: 2 +> [39257] preobrazhensk: 11 +> [39258] preobrazhenskis: 2 +> [39259] preoccupation: 11 +> [39260] preoccupations: 2 +> [39261] preoccupied: 50 +> [39262] preopinant"--"my: 1 +> [39263] preordained: 1 +> [39264] preparation: 38 +> [39265] preparations: 54 +> [39266] preparations--the: 1 +> [39267] preparatory: 12 +> [39268] prepare: 87 +> [39269] prepare?’: 1 +> [39270] prepared: 222 +> [39271] prepared. [39272] prepares: 3 +> [39273] preparing: 100 +> [39274] prepolovenko: 3 +> [39275] preponderance: 3 +> [39276] prepossess: 1 +> [39277] prepossessed: 1 +> [39278] prepossesses: 1 +> [39279] prepossessing: 6 +> [39280] preposterous: 1 +> [39281] prerogative: 3 +> [39282] prerogative--of: 1 +> [39283] presage: 1 +> [39284] presbyter: 1 +> [39285] presbytery: 1 +> [39286] prescribe: 3 +> [39287] prescribed: 16 +> [39288] prescribing: 1 +> [39289] prescription: 4 +> [39290] presence: 357 +> [39291] presence—and: 1 +> [39292] presence, [39293] presence...i: 1 +> [39294] presence. [39295] presence? [39296] present: 685 +> [39297] present—miüsov: 1 +> [39298] present,--that: 1 +> [39299] present--no: 1 +> [39300] present--perhaps: 1 +> [39301] present--varvara: 1 +> [39302] present--well: 1 +> [39303] present-day: 2 +> [39304] present...that: 1 +> [39305] present. [39306] presentable: 4 +> [39307] presentation: 6 +> [39308] presented: 148 +> [39309] presentiment: 39 +> [39310] presentiments: 4 +> [39311] presentiments,--which: 1 +> [39312] presenting: 17 +> [39313] presently: 177 +> [39314] presentment: 1 +> [39315] presents: 52 +> [39316] present—when: 1 +> [39317] preservation: 7 +> [39318] preservative: 2 +> [39319] preservatives: 1 +> [39320] preserve: 70 +> [39321] preserved: 41 +> [39322] preserves: 9 +> [39323] preserving: 12 +> [39324] preserving-pan: 1 +> [39325] preside: 6 +> [39326] presided: 2 +> [39327] president: 124 +> [39328] president's: 6 +> [39329] president,”: 1 +> [39330] president--if: 1 +> [39331] presidential: 1 +> [39332] presidents: 1 +> [39333] presiding: 5 +> [39334] presnya: 1 +> [39335] press: 97 +> [39336] press,--like: 1 +> [39337] press--and: 1 +> [39338] press [39339] pressed: 248 +> [39340] presser: 1 +> [39341] presses: 3 +> [39342] pressing: 114 +> [39343] pressingly: 1 +> [39344] pressure: 59 +> [39345] pressures: 2 +> [39346] prestige: 1 +> [39347] prestige--do: 1 +> [39348] presto: 1 +> [39349] preston: 1 +> [39350] presumably: 3 +> [39351] presume: 17 +> [39352] presumed: 6 +> [39353] presumes: 1 +> [39354] presuming: 1 +> [39355] presumption: 6 +> [39356] presumption. [39357] presumptuous: 3 +> [39358] presupposable: 1 +> [39359] presupposed: 5 +> [39360] presupposes: 1 +> [39361] presupposing: 1 +> [39362] presupposition: 1 +> [39363] pretence: 5 +> [39364] pretences: 1 +> [39365] pretend: 32 +> [39366] pretended: 69 +> [39367] pretenders: 1 +> [39368] pretending: 64 +> [39369] pretends: 5 +> [39370] pretense: 15 +> [39371] pretension: 5 +> [39372] pretensions: 7 +> [39373] pretentions: 1 +> [39374] pretentious: 2 +> [39375] pretentious-looking: 1 +> [39376] pretentiously: 2 +> [39377] preternatural: 1 +> [39378] preternaturally: 1 +> [39379] pretext: 46 +> [39380] pretexts: 5 +> [39381] prettier: 9 +> [39382] prettier. [39383] prettiest: 4 +> [39384] prettily: 5 +> [39385] pretty: 269 +> [39386] pretty--so: 1 +> [39387] pretty. [39388] preur!--if: 1 +> [39389] preussisch-eylau: 4 +> [39390] prevail: 8 +> [39391] prevailed: 25 +> [39392] prevailing: 6 +> [39393] prevails: 6 +> [39394] prevalent: 7 +> [39395] prevaricate: 2 +> [39396] prevent: 145 +> [39397] preventative: 1 +> [39398] prevented: 59 +> [39399] preventing: 7 +> [39400] prevention: 6 +> [39401] prevents: 15 +> [39402] previous: 161 +> [39403] previously: 88 +> [39404] prevision: 1 +> [39405] prey: 10 +> [39406] preys: 1 +> [39407] price: 91 +> [39408] price--a: 1 +> [39409] price--so: 1 +> [39410] priced: 1 +> [39411] priceless: 15 +> [39412] prices: 13 +> [39413] prick: 11 +> [39414] pricked: 18 +> [39415] pricking: 6 +> [39416] pride: 230 +> [39417] pride, [39418] pride--my: 1 +> [39419] pride--so: 1 +> [39420] prided: 14 +> [39421] prides: 1 +> [39422] priding: 2 +> [39423] priest: 181 +> [39424] priest! [39425] priest's: 14 +> [39426] priest--afterwards: 1 +> [39427] priesthood: 3 +> [39428] priestly: 1 +> [39429] priests: 26 +> [39430] prig: 1 +> [39431] prilukov's: 1 +> [39432] prim: 2 +> [39433] primacy: 5 +> [39434] primarily: 11 +> [39435] primary: 19 +> [39436] prime: 9 +> [39437] primed: 4 +> [39438] primer: 7 +> [39439] primero: 1 +> [39440] primesautière: 1 +> [39441] primeval: 1 +> [39442] primitive: 24 +> [39443] primly: 1 +> [39444] primordial: 1 +> [39445] primroses: 1 +> [39446] prince: 3846 +> [39447] prince!"--and: 1 +> [39448] prince"--he: 1 +> [39449] prince's: 186 +> [39450] prince,--i: 1 +> [39451] prince,--simply: 1 +> [39452] prince--"four: 1 +> [39453] prince--a: 1 +> [39454] prince--and: 1 +> [39455] prince--before: 1 +> [39456] prince--do: 1 +> [39457] prince--fairly: 1 +> [39458] prince--go: 1 +> [39459] prince--he: 1 +> [39460] prince--in: 1 +> [39461] prince--is: 1 +> [39462] prince--let: 1 +> [39463] prince--no: 1 +> [39464] prince--tell: 1 +> [39465] prince--that's: 1 +> [39466] prince--the: 1 +> [39467] prince--there: 1 +> [39468] prince--what: 1 +> [39469] prince--why: 1 +> [39470] prince--you: 3 +> [39471] prince-how: 1 +> [39472] prince...the: 1 +> [39473] princely: 4 +> [39474] princes: 18 +> [39475] princes--be: 1 +> [39476] princes.’: 1 +> [39477] princess: 1316 +> [39478] princess's: 23 +> [39479] princess--and: 2 +> [39480] princess--influenced: 1 +> [39481] princess...the: 1 +> [39482] princesse: 3 +> [39483] princesses: 23 +> [39484] principal: 76 +> [39485] principalities: 5 +> [39486] principally: 21 +> [39487] principals: 5 +> [39488] principe: 1 +> [39489] principes: 1 +> [39490] principle: 63 +> [39491] principle! [39492] principle—not: 1 +> [39493] principles: 65 +> [39494] principles! [39495] principles—the: 1 +> [39496] principles,”: 1 +> [39497] principles--everything: 1 +> [39498] principles--of: 1 +> [39499] prinking: 1 +> [39500] print: 35 +> [39501] print—i've: 1 +> [39502] print-covered: 1 +> [39503] printaniere: 1 +> [39504] printanière: 1 +> [39505] printed: 77 +> [39506] printing: 9 +> [39507] printing-office: 1 +> [39508] printing-presses: 1 +> [39509] prints: 5 +> [39510] prior: 6 +> [39511] priority: 2 +> [39512] pripasov: 1 +> [39513] pripasov--would: 1 +> [39514] prishprish: 1 +> [39515] prison: 117 +> [39516] prison, [39517] prison--i: 1 +> [39518] prison--say: 1 +> [39519] prison-dog: 1 +> [39520] prison-house: 2 +> [39521] prison-lodging: 1 +> [39522] prison. [39523] prison? [39524] prisoner: 204 +> [39525] prisoner—everything: 1 +> [39526] prisoner's: 34 +> [39527] prisoner--i: 1 +> [39528] prisoner--take: 1 +> [39529] prisoner. [39530] prisoners: 133 +> [39531] prisoners--was: 1 +> [39532] prisoners--with: 1 +> [39533] prisons: 8 +> [39534] pritchard: 2 +> [39535] pritchard's: 2 +> [39536] privacy: 7 +> [39537] privat-personen: 1 +> [39538] private: 127 +> [39539] privately: 19 +> [39540] privates: 1 +> [39541] privation: 8 +> [39542] privations: 4 +> [39543] privilege: 19 +> [39544] privilege—a: 1 +> [39545] privileged: 6 +> [39546] privileges: 24 +> [39547] privileges--of: 1 +> [39548] privy: 3 +> [39549] prize: 16 +> [39550] prize-fighting: 1 +> [39551] prized: 15 +> [39552] prizes: 6 +> [39553] prizing: 3 +> [39554] pro: 5 +> [39555] pro-consul: 1 +> [39556] pro-tem: 1 +> [39557] probabilities: 3 +> [39558] probability: 33 +> [39559] probability [39560] probable: 31 +> [39561] probably: 408 +> [39562] probably--for: 1 +> [39563] probation: 1 +> [39564] probe: 3 +> [39565] probed: 3 +> [39566] probing: 7 +> [39567] problem: 69 +> [39568] problem! [39569] problem's: 1 +> [39570] problem--how: 1 +> [39571] problems: 27 +> [39572] problems. [39573] procedure: 24 +> [39574] proceed: 43 +> [39575] proceed. [39576] proceeded: 48 +> [39577] proceeding: 23 +> [39578] proceeding,’: 1 +> [39579] proceedings: 21 +> [39580] proceedings—that: 1 +> [39581] proceedings? [39582] proceeds: 4 +> [39583] process: 212 +> [39584] processes: 11 +> [39585] processing: 19 +> [39586] procession: 28 +> [39587] procession--the: 1 +> [39588] processions: 4 +> [39589] prochain: 1 +> [39590] prochain--your: 1 +> [39591] proclaim: 7 +> [39592] proclaimed: 22 +> [39593] proclaiming: 5 +> [39594] proclaims: 5 +> [39595] proclamation: 24 +> [39596] proclamations: 3 +> [39597] proclivities: 1 +> [39598] proconsular: 5 +> [39599] procrastinated: 1 +> [39600] procrastinator: 1 +> [39601] procreation: 1 +> [39602] proctor: 1 +> [39603] procure: 15 +> [39604] procured: 15 +> [39605] procuring: 1 +> [39606] prod: 6 +> [39607] prodded: 2 +> [39608] prodigal: 4 +> [39609] prodigies: 2 +> [39610] prodigious: 2 +> [39611] prodigy: 2 +> [39612] produce: 83 +> [39613] produced: 181 +> [39614] produces: 37 +> [39615] producing: 20 +> [39616] product: 54 +> [39617] production: 37 +> [39618] productive: 6 +> [39619] productively: 1 +> [39620] products: 24 +> [39621] prof: 2 +> [39622] profanation: 2 +> [39623] profane: 7 +> [39624] profaned: 2 +> [39625] profaning: 1 +> [39626] profanity: 2 +> [39627] profess: 9 +> [39628] professe: 1 +> [39629] professed: 4 +> [39630] professedly: 1 +> [39631] professez: 1 +> [39632] professing: 3 +> [39633] profession: 20 +> [39634] professional: 14 +> [39635] professionals: 1 +> [39636] professions: 2 +> [39637] professor: 54 +> [39638] professor's: 3 +> [39639] professors: 6 +> [39640] professorship: 1 +> [39641] proffer: 2 +> [39642] proffered: 2 +> [39643] proffering: 1 +> [39644] proficiency: 1 +> [39645] proficient: 1 +> [39646] profile: 7 +> [39647] profiledesc: 2 +> [39648] profit: 58 +> [39649] profit--that's: 1 +> [39650] profit. [39651] profitable: 22 +> [39652] profitably: 2 +> [39653] profited: 1 +> [39654] profiting: 1 +> [39655] profitless: 2 +> [39656] profits: 30 +> [39657] profligacy: 1 +> [39658] profligate: 12 +> [39659] profligates: 2 +> [39660] profound: 63 +> [39661] profoundest: 8 +> [39662] profoundly: 10 +> [39663] profundis: 1 +> [39664] profundity: 5 +> [39665] profuse: 3 +> [39666] profusely: 4 +> [39667] profusion: 5 +> [39668] progenitors: 1 +> [39669] progeny: 2 +> [39670] progging: 1 +> [39671] program: 22 +> [39672] program--or: 1 +> [39673] programme: 3 +> [39674] progress: 84 +> [39675] progressed: 2 +> [39676] progresses: 1 +> [39677] progression: 5 +> [39678] progressive: 20 +> [39679] progressively: 2 +> [39680] progressives: 4 +> [39681] prohartchin: 32 +> [39682] prohartchin's: 2 +> [39683] prohibited: 4 +> [39684] prohibition: 24 +> [39685] prohibitions: 1 +> [39686] prohibits: 1 +> [39687] prohor: 1 +> [39688] prohor? [39689] prohoritch's: 1 +> [39690] prohorovna: 3 +> [39691] project: 1681 +> [39692] project--of: 1 +> [39693] projected: 5 +> [39694] projectiles: 8 +> [39695] projecting: 8 +> [39696] projections: 1 +> [39697] projects: 16 +> [39698] prokhor: 1 +> [39699] prokofievna: 170 +> [39700] prokofievna!"--he: 1 +> [39701] prokofievna's: 5 +> [39702] prokofievna,--with: 1 +> [39703] prokofievna--(who: 1 +> [39704] prokofievna--she: 1 +> [39705] prokofitch: 24 +> [39706] prokofy: 4 +> [39707] prokofyevitch: 14 +> [39708] prokofyevitch's: 2 +> [39709] prokofyevna: 1 +> [39710] proletarians: 1 +> [39711] prologue: 12 +> [39712] prolong: 8 +> [39713] prolonged: 28 +> [39714] prolonging: 1 +> [39715] promenade: 10 +> [39716] promenades: 1 +> [39717] promener: 1 +> [39718] prominence: 1 +> [39719] prominent: 50 +> [39720] prominently: 42 +> [39721] promis: 1 +> [39722] promise: 168 +> [39723] promise—her: 1 +> [39724] promise—to: 1 +> [39725] promise--for: 1 +> [39726] promise--it: 1 +> [39727] promise-breaker: 1 +> [39728] promise. [39729] promised: 188 +> [39730] promised— [39731] promised--go: 1 +> [39732] promises: 24 +> [39733] promises--bills: 1 +> [39734] promising: 25 +> [39735] promissory: 3 +> [39736] promontory: 1 +> [39737] promote: 4 +> [39738] promoted: 16 +> [39739] promoter: 2 +> [39740] promotes: 1 +> [39741] promoting: 44 +> [39742] promotion: 41 +> [39743] promotion? [39744] promotions: 9 +> [39745] promotive: 1 +> [39746] prompt: 15 +> [39747] prompted: 22 +> [39748] prompter's: 1 +> [39749] prompting: 9 +> [39750] promptings: 3 +> [39751] promptitude: 5 +> [39752] promptly: 71 +> [39753] promptness: 3 +> [39754] prompts: 4 +> [39755] promulgating: 1 +> [39756] prone: 18 +> [39757] prongs: 1 +> [39758] pronoun: 1 +> [39759] pronounce: 15 +> [39760] pronounced: 63 +> [39761] pronouncement: 3 +> [39762] pronounces: 2 +> [39763] pronouncing: 8 +> [39764] pronouns: 1 +> [39765] pronunciation: 3 +> [39766] proof: 97 +> [39767] proof--if: 1 +> [39768] proof. [39769] proof [39770] proofread: 19 +> [39771] proofreading: 11 +> [39772] proofs: 44 +> [39773] proofs. [39774] prop: 4 +> [39775] propaganda: 9 +> [39776] propaganda--in: 1 +> [39777] propaganda.[10: 1 +> [39778] propagandists: 1 +> [39779] propagating: 1 +> [39780] propensities: 6 +> [39781] propensities--wicked: 1 +> [39782] propensity: 7 +> [39783] proper: 164 +> [39784] properly: 76 +> [39785] properly, [39786] properly--squeeze: 1 +> [39787] properly. [39788] properties: 18 +> [39789] property: 172 +> [39790] property--and: 1 +> [39791] property--strange: 1 +> [39792] property--take: 1 +> [39793] property--that: 1 +> [39794] property.... [39795] property? [39796] prophecies: 29 +> [39797] prophecies! [39798] prophecy: 102 +> [39799] prophecy.’: 1 +> [39800] prophesied: 5 +> [39801] prophesy: 1 +> [39802] prophesying: 4 +> [39803] prophet: 54 +> [39804] prophet's: 1 +> [39805] prophetesses: 2 +> [39806] prophetic: 19 +> [39807] prophetically: 1 +> [39808] prophets: 40 +> [39809] propitiate: 1 +> [39810] propitiation: 2 +> [39811] propitiatory: 1 +> [39812] propitious: 1 +> [39813] proportion: 68 +> [39814] proportion—not: 1 +> [39815] proportional: 1 +> [39816] proportionally: 1 +> [39817] proportionate: 2 +> [39818] proportionately: 1 +> [39819] proportioned: 1 +> [39820] proportions: 15 +> [39821] propos: 24 +> [39822] propos [39823] proposal: 33 +> [39824] proposal--that: 1 +> [39825] proposals: 16 +> [39826] proposals'--is: 1 +> [39827] propose: 40 +> [39828] proposed: 88 +> [39829] proposers: 2 +> [39830] proposes: 7 +> [39831] proposing: 8 +> [39832] proposition: 14 +> [39833] proposition--that: 1 +> [39834] propositions: 5 +> [39835] propound: 1 +> [39836] propounded: 1 +> [39837] propounding: 1 +> [39838] propounds: 2 +> [39839] propped: 20 +> [39840] propping: 4 +> [39841] propre: 2 +> [39842] proprietary: 22 +> [39843] proprieties: 9 +> [39844] proprieties--a: 1 +> [39845] proprietor: 6 +> [39846] proprietor's: 3 +> [39847] proprietors: 7 +> [39848] propriety: 31 +> [39849] propriety's: 1 +> [39850] prosaic: 5 +> [39851] proscribed: 1 +> [39852] prose: 7 +> [39853] prosecute: 5 +> [39854] prosecuted: 2 +> [39855] prosecuted. [39856] prosecuting: 1 +> [39857] prosecution: 24 +> [39858] prosecutor: 164 +> [39859] prosecutor! [39860] prosecutor's: 17 +> [39861] prosecutor, [39862] prosecutor. [39863] prosecutor? [39864] proselyte: 1 +> [39865] proserpine. [39866] prospect: 47 +> [39867] prospective: 3 +> [39868] prospects: 10 +> [39869] prosper: 2 +> [39870] prospering: 1 +> [39871] prosperity: 26 +> [39872] prosperity--in: 2 +> [39873] prosperous: 5 +> [39874] prostitution: 1 +> [39875] prostrate: 18 +> [39876] prostrated: 2 +> [39877] prostration: 2 +> [39878] prostrations: 1 +> [39879] protect: 98 +> [39880] protect--i: 1 +> [39881] protected: 24 +> [39882] protecting: 8 +> [39883] protection: 50 +> [39884] protection...though: 1 +> [39885] protectionist: 1 +> [39886] protectionists: 2 +> [39887] protectionists--siamese: 1 +> [39888] protective: 1 +> [39889] protector: 16 +> [39890] protectors: 3 +> [39891] protectress: 2 +> [39892] protects: 3 +> [39893] protege: 6 +> [39894] protegee: 4 +> [39895] proteges: 1 +> [39896] protegée: 1 +> [39897] proteins: 1 +> [39898] protest: 70 +> [39899] protestant: 22 +> [39900] protestant--neither: 1 +> [39901] protestants: 10 +> [39902] protestations: 11 +> [39903] protested: 38 +> [39904] protesting: 7 +> [39905] protesting--which: 1 +> [39906] protests: 7 +> [39907] proto-deacon's: 1 +> [39908] protocol: 11 +> [39909] protoplasm: 2 +> [39910] protr: 1 +> [39911] protracted: 3 +> [39912] protrude: 1 +> [39913] protruded: 3 +> [39914] protruding: 6 +> [39915] protégée: 1 +> [39916] protégés: 1 +> [39917] proud: 230 +> [39918] proud, [39919] proud--no: 1 +> [39920] proud-looking: 1 +> [39921] proud.”: 1 +> [39922] proud?--was: 1 +> [39923] prouder: 1 +> [39924] proudest: 3 +> [39925] proudhon: 2 +> [39926] proudly: 34 +> [39927] prout: 1 +> [39928] prove: 179 +> [39929] proved: 124 +> [39930] proven: 1 +> [39931] provender: 2 +> [39932] provençal: 1 +> [39933] proverb: 18 +> [39934] proverbe: 1 +> [39935] proverbial: 3 +> [39936] proverbially: 1 +> [39937] proverbs: 6 +> [39938] proves: 35 +> [39939] provide: 162 +> [39940] provided: 153 +> [39941] providence: 49 +> [39942] providential: 6 +> [39943] provides: 2 +> [39944] providing: 82 +> [39945] province: 116 +> [39946] province--that: 1 +> [39947] provinces: 47 +> [39948] provinces--and: 1 +> [39949] provinces--you: 1 +> [39950] provincial: 32 +> [39951] provincials: 3 +> [39952] proving: 34 +> [39953] provision: 28 +> [39954] provisioning: 2 +> [39955] provisions: 57 +> [39956] provocation: 9 +> [39957] provocative: 5 +> [39958] provocatively: 2 +> [39959] provoke: 10 +> [39960] provoked: 35 +> [39961] provokes: 2 +> [39962] provoking: 5 +> [39963] provost: 2 +> [39964] prowess: 3 +> [39965] prowl: 2 +> [39966] prowling: 2 +> [39967] proximity: 14 +> [39968] prozorovski: 2 +> [39969] prude: 5 +> [39970] prudence: 19 +> [39971] prudent: 23 +> [39972] prudently: 8 +> [39973] prudhon: 1 +> [39974] prudish: 2 +> [39975] prudno: 1 +> [39976] pruning: 1 +> [39977] pruning-knife: 1 +> [39978] prusse: 6 +> [39979] prussia: 33 +> [39980] prussia's: 1 +> [39981] prussia--undertaken: 1 +> [39982] prussian: 15 +> [39983] prussians: 5 +> [39984] pry: 4 +> [39985] pryanichnikov: 2 +> [39986] pryatchnikov: 3 +> [39987] prying: 3 +> [39988] przazdziecka: 1 +> [39989] przebyszewski: 3 +> [39990] przebyszewski's: 1 +> [39991] prêtre: 1 +> [39992] prêtres: 1 +> [39993] ps: 4 +> [39994] psalm: 3 +> [39995] psalms: 10 +> [39996] psalter: 1 +> [39997] pseudepigraphic: 1 +> [39998] pseudo-apostolic: 2 +> [39999] pseudo-great: 1 +> [40000] pseudo-healers: 1 +> [40001] pseudo-matrimonial: 1 +> [40002] pseudo-orders: 1 +> [40003] pseudo-pauline: 2 +> [40004] pseudo-theory: 1 +> [40005] pseudonymity: 4 +> [40006] pseudonymous: 6 +> [40007] pshaw: 1 +> [40008] pskoff: 9 +> [40009] pskov: 1 +> [40010] pss: 1 +> [40011] psychically: 1 +> [40012] psychological: 24 +> [40013] psychologically: 8 +> [40014] psychologist: 3 +> [40015] psychology: 29 +> [40016] psychology, [40017] pt: 1 +> [40018] ptitsin: 86 +> [40019] ptitsin's: 7 +> [40020] ptitsins: 5 +> [40021] ptolemaic: 2 +> [40022] pua: 1 +> [40023] pub: 1 +> [40024] pub--heard: 1 +> [40025] public: 416 +> [40026] public—were: 1 +> [40027] public--they: 1 +> [40028] public--were: 1 +> [40029] public-house: 6 +> [40030] public-houses: 2 +> [40031] public-spirited: 1 +> [40032] publican: 11 +> [40033] publicans: 3 +> [40034] publication: 6 +> [40035] publications: 2 +> [40036] publicationstmt: 2 +> [40037] publicity: 12 +> [40038] publicly: 16 +> [40039] publics: 1 +> [40040] publish: 7 +> [40041] published: 19 +> [40042] publisher: 5 +> [40043] publisher's: 1 +> [40044] publisher...and: 1 +> [40045] publisher>project: 1 +> [40046] publishers: 6 +> [40047] publishes: 1 +> [40048] publishing: 7 +> [40049] puce: 1 +> [40050] puck: 1 +> [40051] pucker: 1 +> [40052] puckered: 20 +> [40053] puckering: 10 +> [40054] pudding: 11 +> [40055] puddings: 3 +> [40056] puddle: 5 +> [40057] puddles: 5 +> [40058] puerperal: 1 +> [40059] puff: 10 +> [40060] puff!"--and: 1 +> [40061] puff!"--suddenly: 1 +> [40062] puffed: 7 +> [40063] puffed-out: 1 +> [40064] puffing: 18 +> [40065] puffs: 10 +> [40066] puffy: 11 +> [40067] pug: 2 +> [40068] pugachev: 2 +> [40069] pugilists: 1 +> [40070] puhse: 1 +> [40071] puis: 3 +> [40072] puissant: 5 +> [40073] puissent: 1 +> [40074] pulcheria: 124 +> [40075] puling: 4 +> [40076] pull: 92 +> [40077] pulled: 208 +> [40078] pulled-up: 1 +> [40079] pulled? [40080] pulley: 2 +> [40081] pulleys: 2 +> [40082] pullies: 1 +> [40083] pulling: 114 +> [40084] pulls: 7 +> [40085] pulp: 2 +> [40086] pulpit: 3 +> [40087] pulsation: 2 +> [40088] pulse: 20 +> [40089] pulsed: 2 +> [40090] pulses: 5 +> [40091] pultusk: 6 +> [40092] pulvere: 1 +> [40093] pulverizable: 1 +> [40094] pulverized: 3 +> [40095] pulverizer: 1 +> [40096] pulverizing: 1 +> [40097] pulvis: 1 +> [40098] pumice: 13 +> [40099] pummelling: 1 +> [40100] pump: 14 +> [40101] pumped: 17 +> [40102] pumping: 8 +> [40103] pumps: 2 +> [40104] pun: 3 +> [40105] punch: 26 +> [40106] punch--they: 1 +> [40107] punched: 4 +> [40108] punchinello: 1 +> [40109] punching: 1 +> [40110] punctilio: 1 +> [40111] punctilious: 4 +> [40112] punctiliousness: 1 +> [40113] punctual: 6 +> [40114] punctuality: 4 +> [40115] punctually: 19 +> [40116] punctuate: 1 +> [40117] punctuation: 10 +> [40118] pungent: 2 +> [40119] punish: 62 +> [40120] punish! [40121] punishable: 1 +> [40122] punished: 50 +> [40123] punishes: 3 +> [40124] punishing: 12 +> [40125] punishment: 80 +> [40126] punishment--as: 1 +> [40127] punishments: 4 +> [40128] punishments—the: 1 +> [40129] punitive: 19 +> [40130] puns: 4 +> [40131] puns! [40132] punt: 1 +> [40133] puny: 4 +> [40134] pup: 5 +> [40135] pupil: 9 +> [40136] pupil's: 3 +> [40137] pupil's--i: 1 +> [40138] pupils: 6 +> [40139] pupils--you: 1 +> [40140] puppet: 4 +> [40141] puppets: 1 +> [40142] puppies: 2 +> [40143] puppy: 35 +> [40144] puppy, [40145] puppy? [40146] purblind: 1 +> [40147] purchase: 21 +> [40148] purchased: 9 +> [40149] purchased--76: 1 +> [40150] purchaser: 8 +> [40151] purchasers: 2 +> [40152] purchasers--but: 1 +> [40153] purchases: 7 +> [40154] purchasing: 7 +> [40155] pure: 160 +> [40156] pure-bred: 1 +> [40157] pure-living: 1 +> [40158] pure-souled: 1 +> [40159] purely: 29 +> [40160] purer: 8 +> [40161] purest: 11 +> [40162] purgative: 1 +> [40163] purgatory: 3 +> [40164] purge: 1 +> [40165] purged: 2 +> [40166] purification: 13 +> [40167] purifications: 1 +> [40168] purified: 13 +> [40169] purifies: 1 +> [40170] purify: 13 +> [40171] purifying: 2 +> [40172] puritanical: 1 +> [40173] purity: 42 +> [40174] purity, [40175] purity--had: 1 +> [40176] purlieus: 1 +> [40177] purloined: 1 +> [40178] purple: 30 +> [40179] purple-black: 1 +> [40180] purple-faced: 4 +> [40181] purplish: 2 +> [40182] purplish-red: 1 +> [40183] purport: 5 +> [40184] purporting: 3 +> [40185] purports: 1 +> [40186] purpose: 401 +> [40187] purpose! [40188] purpose—namely: 1 +> [40189] purpose—which: 1 +> [40190] purpose,"--to: 1 +> [40191] purpose, [40192] purpose. [40193] purpose. [40194] purpose [40195] purpose? [40196] purposed: 7 +> [40197] purposely: 88 +> [40198] purposes: 44 +> [40199] purposes--is: 1 +> [40200] purposes [40201] purring: 1 +> [40202] purse: 79 +> [40203] purse,’: 1 +> [40204] purse-strings: 1 +> [40205] purse. [40206] pursed: 3 +> [40207] purses: 2 +> [40208] pursing: 5 +> [40209] pursuance: 2 +> [40210] pursue: 20 +> [40211] pursued: 61 +> [40212] pursuer: 1 +> [40213] pursuers: 10 +> [40214] pursues: 4 +> [40215] pursuing: 24 +> [40216] pursuit: 52 +> [40217] pursuit--the: 1 +> [40218] pursuits: 26 +> [40219] purveyed: 1 +> [40220] purveyor: 6 +> [40221] purveyors: 7 +> [40222] pury: 2 +> [40223] puseyite: 2 +> [40224] push: 40 +> [40225] pushed: 164 +> [40226] pushes: 5 +> [40227] pushing: 59 +> [40228] pushkin: 19 +> [40229] pushkin— [40230] pushkin's: 7 +> [40231] pusillanimous: 2 +> [40232] puss: 1 +> [40233] pussy: 1 +> [40234] pussy-cat: 1 +> [40235] put: 1748 +> [40236] put, [40237] put--which: 1 +> [40238] put-to: 1 +> [40239] putnam's: 1 +> [40240] putnams: 1 +> [40241] puto. [40242] putrefaction: 2 +> [40243] putrid: 1 +> [40244] puts: 30 +> [40245] putting: 276 +> [40246] putty: 1 +> [40247] putyatov: 1 +> [40248] puzzle: 11 +> [40249] puzzled: 46 +> [40250] puzzles: 3 +> [40251] puzzling: 5 +> [40252] pwiests: 1 +> [40253] pwince: 3 +> [40254] pwoceed: 1 +> [40255] pwomoted: 1 +> [40256] pwonounce: 1 +> [40257] pwovince: 1 +> [40258] pwovisions: 1 +> [40259] pyevtsov: 2 +> [40260] pygmy: 2 +> [40261] pyotr: 332 +> [40262] pyramid: 4 +> [40263] pyramids: 5 +> [40264] pâté: 2 +> [40265] pæan: 2 +> [40266] père, [40267] pétersbourg: 1 +> [40268] pétrir: 1 +> [40269] q: 224 +> [40270] q-material: 1 +> [40271] q>and: 4 +> [40272] q>did [40273] q>everything: 1 +> [40274] q>his: 1 +> [40275] q>it: 1 +> [40276] q> [40277] q> [40278] q>do: 1 +> [40279] q>everything: 1 +> [40280] q>in: 1 +> [40281] q>is: 1 +> [40282] q>it's: 1 +> [40283] q>not: 1 +> [40284] q>on: 1 +> [40285] q>receiving: 1 +> [40286] q>where, [40287] q>a: 65 +> [40288] q>abandoned: 1 +> [40289] q>abandoning: 1 +> [40290] q>aberration [40291] q>about: 3 +> [40292] q>absolute: 1 +> [40293] q>absolutely: 1 +> [40294] q>absolve: 1 +> [40295] q>absurd, [40296] q>accidentally: 1 +> [40297] q>according: 2 +> [40298] q>accursed: 1 +> [40299] q>ach: 6 +> [40300] q>action [40301] q>adventure [40302] q>afanasy, [40303] q>after: 3 +> [40304] q>again: 1 +> [40305] q>agrafena: 3 +> [40306] q>ah: 64 +> [40307] q>ah! [40308] q>ah, [40309] q>aha: 3 +> [40310] q>aie: 5 +> [40311] q>aie! [40312] q>akim: 1 +> [40313] q>alexandr: 1 +> [40314] q>alexey: 9 +> [40315] q>alexey! [40316] q>alive: 1 +> [40317] q>alive? [40318] q>all: 26 +> [40319] q>all, [40320] q>allow: 13 +> [40321] q>allowed [40322] q>although: 1 +> [40323] q>alyosha: 21 +> [40324] q>alyosha, [40325] q>am: 5 +> [40326] q>among: 2 +> [40327] q>amulet, [40328] q>an: 11 +> [40329] q>and: 268 +> [40330] q>andrey: 2 +> [40331] q>anger! [40332] q>angry: 1 +> [40333] q>animal: 1 +> [40334] q>animal! [40335] q>another: 2 +> [40336] q>answer: 1 +> [40337] q>any: 2 +> [40338] q>anyway: 2 +> [40339] q>appealing: 1 +> [40340] q>apples? [40341] q>appropriated: 1 +> [40342] q>ardor: 1 +> [40343] q>are: 20 +> [40344] q>aren't: 3 +> [40345] q>aristocratic: 1 +> [40346] q>as: 31 +> [40347] q>ascetics, [40348] q>ask: 2 +> [40349] q>assured: 1 +> [40350] q>at: 21 +> [40351] q>away: 1 +> [40352] q>babe. [40353] q>babe [40354] q>babes, [40355] q>babes. [40356] q>back-way, [40357] q>bah! [40358] q>be: 14 +> [40359] q>bear: 1 +> [40360] q>beast, [40361] q>beat [40362] q>because: 8 +> [40363] q>before: 2 +> [40364] q>begin: 2 +> [40365] q>behind: 1 +> [40366] q>behold: 1 +> [40367] q>being: 1 +> [40368] q>believe: 1 +> [40369] q>bernard! [40370] q>besides: 4 +> [40371] q>better: 3 +> [40372] q>beware: 1 +> [40373] q>birds: 1 +> [40374] q>bless: 1 +> [40375] q>blessed: 4 +> [40376] q>blessing: 1 +> [40377] q>blood: 1 +> [40378] q>bodyguard, [40379] q>bored. [40380] q>both: 2 +> [40381] q>bother: 1 +> [40382] q>bottled: 1 +> [40383] q>bowing: 1 +> [40384] q>boy: 2 +> [40385] q>boy [40386] q>boys: 2 +> [40387] q>brat? [40388] q>bravo: 5 +> [40389] q>bravo! [40390] q>bravo, [40391] q>bread, [40392] q>breathless [40393] q>bring: 1 +> [40394] q>brother: 9 +> [40395] q>brother, [40396] q>brothers: 1 +> [40397] q>buffoon! [40398] q>but: 215 +> [40399] q>but—but: 1 +> [40400] q>but, [40401] q>but! [40402] q>by: 7 +> [40403] q>byelinsky: 1 +> [40404] q>cain's: 1 +> [40405] q>call: 2 +> [40406] q>can: 23 +> [40407] q>candles: 1 +> [40408] q>capital: 1 +> [40409] q>captain: 1 +> [40410] q>captain's [40411] q>captain, [40412] q>captain. [40413] q>captain [40414] q>cards? [40415] q>casting: 2 +> [40416] q>catch: 3 +> [40417] q>certain: 2 +> [40418] q>certain [40419] q>certainly: 7 +> [40420] q>champion: 1 +> [40421] q>charming: 1 +> [40422] q>chinese, [40423] q>chinese [40424] q>christ: 1 +> [40425] q>cigars: 1 +> [40426] q>clearly: 1 +> [40427] q>clericals, [40428] q>clericals. [40429] q>cleverer: 1 +> [40430] q>climb: 1 +> [40431] q>close: 1 +> [40432] q>come: 29 +> [40433] q>come, [40434] q>commanded, [40435] q>committal, [40436] q>committal [40437] q>compliments: 1 +> [40438] q>conclusive: 1 +> [40439] q>conduct. [40440] q>confess: 1 +> [40441] q>confession [40442] q>confound: 4 +> [40443] q>confront: 1 +> [40444] q>conscience: 1 +> [40445] q>consider: 2 +> [40446] q>consideration: 1 +> [40447] q>constitute: 1 +> [40448] q>consumptive-looking [40449] q>contemplating. [40450] q>contemplation. [40451] q>contemplatives [40452] q>contemporary [40453] q>conventional [40454] q>could: 3 +> [40455] q>couldn't: 1 +> [40456] q>courteously: 2 +> [40457] q>crazy: 4 +> [40458] q>crazy [40459] q>creature, [40460] q>creature! [40461] q>criminal: 1 +> [40462] q>criminal [40463] q>criticized [40464] q>crush: 1 +> [40465] q>crushed: 1 +> [40466] q>curve: 1 +> [40467] q>daddy: 1 +> [40468] q>damaging: 1 +> [40469] q>damn: 8 +> [40470] q>damnation: 3 +> [40471] q>damned [40472] q>dash: 1 +> [40473] q>dead! [40474] q>dear: 10 +> [40475] q>decide: 1 +> [40476] q>decorated: 1 +> [40477] q>defend: 1 +> [40478] q>delighted: 1 +> [40479] q>den: 1 +> [40480] q>depart: 1 +> [40481] q>desperate: 1 +> [40482] q>devouring: 1 +> [40483] q>did: 21 +> [40484] q>didn't: 3 +> [40485] q>die: 1 +> [40486] q>disgrace. [40487] q>disgraceful, [40488] q>disgraceful. [40489] q>disgracefully, [40490] q>dishonorable. [40491] q>disputes: 1 +> [40492] q>divide: 1 +> [40493] q>dmitri: 10 +> [40494] q>do: 64 +> [40495] q>doctor: 2 +> [40496] q>doctors: 1 +> [40497] q>document [40498] q>does: 3 +> [40499] q>dogs: 1 +> [40500] q>don't: 67 +> [40501] q>double: 1 +> [40502] q>double [40503] q>dreadful: 1 +> [40504] q>dreadful [40505] q>drink: 2 +> [40506] q>dripping, [40507] q>drive: 4 +> [40508] q>drunk: 1 +> [40509] q>duty [40510] q>e—ech! [40511] q>each: 1 +> [40512] q>earnest [40513] q>ech: 4 +> [40514] q>ech! [40515] q>eh: 1 +> [40516] q>either: 2 +> [40517] q>elder [40518] q>elders, [40519] q>elders [40520] q>enough: 5 +> [40521] q>enough! [40522] q>escapade [40523] q>especially: 1 +> [40524] q>etcetera: 1 +> [40525] q>ethics! [40526] q>ethics? [40527] q>european: 1 +> [40528] q>europeanism [40529] q>even: 9 +> [40530] q>ever: 1 +> [40531] q>every: 7 +> [40532] q>everything: 9 +> [40533] q>evil. [40534] q>ex-lieutenant: 1 +> [40535] q>exactly: 1 +> [40536] q>excellencies [40537] q>excellent: 1 +> [40538] q>excellent, [40539] q>except: 3 +> [40540] q>excuse: 15 +> [40541] q>expecting: 1 +> [40542] q>extraordinary [40543] q>eye-witness. [40544] q>fairs [40545] q>fancy, [40546] q>faro: 1 +> [40547] q>fascinated. [40548] q>fat [40549] q>fatal: 1 +> [40550] q>fatal. [40551] q>fatal [40552] q>father: 20 +> [40553] q>father! [40554] q>father, [40555] q>father [40556] q>fathers: 1 +> [40557] q>favorite [40558] q>fear: 1 +> [40559] q>feed: 2 +> [40560] q>feelings [40561] q>fell: 1 +> [40562] q>female: 1 +> [40563] q>fenya: 2 +> [40564] q>fib: 1 +> [40565] q>fifty: 1 +> [40566] q>filled: 1 +> [40567] q>find: 1 +> [40568] q>finish: 1 +> [40569] q>first: 4 +> [40570] q>first-class: 1 +> [40571] q>five: 2 +> [40572] q>follow: 2 +> [40573] q>following: 1 +> [40574] q>fool: 4 +> [40575] q>fool! [40576] q>fool, [40577] q>foolish: 1 +> [40578] q>foolish [40579] q>fools [40580] q>for: 44 +> [40581] q>for, [40582] q>forgive: 19 +> [40583] q>four: 3 +> [40584] q>fragrant: 1 +> [40585] q>fraud? [40586] q>free [40587] q>frigid: 1 +> [40588] q>from: 22 +> [40589] q>fundamental: 1 +> [40590] q>fyodor: 5 +> [40591] q>gaining: 1 +> [40592] q>game. [40593] q>gentle: 1 +> [40594] q>gentlemen: 15 +> [40595] q>gentlemen! [40596] q>gentlemen!—he: 1 +> [40597] q>gentlemen, [40598] q>get: 6 +> [40599] q>girls. [40600] q>give: 19 +> [40601] q>go: 18 +> [40602] q>go! [40603] q>go [40604] q>god: 15 +> [40605] q>god's: 1 +> [40606] q>going: 1 +> [40607] q>gold: 1 +> [40608] q>golden-haired: 1 +> [40609] q>good: 21 +> [40610] q>good, [40611] q>good-by: 17 +> [40612] q>good-by! [40613] q>good-by. [40614] q>good-by [40615] q>goodness: 2 +> [40616] q>granting: 1 +> [40617] q>great: 4 +> [40618] q>grigory? [40619] q>grown: 1 +> [40620] q>grown-up: 1 +> [40621] q>grusha: 2 +> [40622] q>grusha's: 1 +> [40623] q>grushenka: 10 +> [40624] q>grushenka, [40625] q>guilt! [40626] q>h'm: 4 +> [40627] q>ha: 1 +> [40628] q>had: 4 +> [40629] q>hadn't: 1 +> [40630] q>hallo: 1 +> [40631] q>hallucinations: 1 +> [40632] q>hand: 1 +> [40633] q>hang: 5 +> [40634] q>harassed: 1 +> [40635] q>has: 4 +> [40636] q>hasn't: 1 +> [40637] q>hast: 1 +> [40638] q>haunted: 1 +> [40639] q>have: 24 +> [40640] q>haven't: 4 +> [40641] q>he: 176 +> [40642] q>he'd: 2 +> [40643] q>he'll: 5 +> [40644] q>he's: 40 +> [40645] q>healing. [40646] q>healing [40647] q>heaven: 1 +> [40648] q>heaven, [40649] q>help: 2 +> [40650] q>help! [40651] q>her: 2 +> [40652] q>here: 21 +> [40653] q>here! [40654] q>here's: 7 +> [40655] q>here, [40656] q>hi: 1 +> [40657] q>hideous [40658] q>his: 15 +> [40659] q>hitherto: 1 +> [40660] q>hold: 6 +> [40661] q>holy: 3 +> [40662] q>holy [40663] q>hosannah. [40664] q>hosannah [40665] q>hot: 1 +> [40666] q>how: 90 +> [40667] q>how's: 2 +> [40668] q>how? [40669] q>however: 1 +> [40670] q>hullo: 1 +> [40671] q>human: 1 +> [40672] q>hurrah: 2 +> [40673] q>hurrah! [40674] q>hush: 7 +> [40675] q>hymn [40676] q>i: 640 +> [40677] q>i—he: 1 +> [40678] q>i—i'll: 1 +> [40679] q>i—there's: 1 +> [40680] q>i'd: 4 +> [40681] q>i'll: 56 +> [40682] q>i'm: 33 +> [40683] q>i'm—a: 1 +> [40684] q>i've: 43 +> [40685] q>ideas: 2 +> [40686] q>if: 88 +> [40687] q>ilusha: 14 +> [40688] q>ilusha, [40689] q>imagine: 1 +> [40690] q>impertinent: 1 +> [40691] q>important: 1 +> [40692] q>impossible: 1 +> [40693] q>impossible! [40694] q>in: 51 +> [40695] q>included: 2 +> [40696] q>incomplete: 1 +> [40697] q>indeed: 1 +> [40698] q>indulging, [40699] q>indulging. [40700] q>infamous, [40701] q>infinitely: 1 +> [40702] q>innocence: 1 +> [40703] q>insolent: 1 +> [40704] q>insulted [40705] q>intentionally [40706] q>investigating: 1 +> [40707] q>is: 38 +> [40708] q>isn't: 1 +> [40709] q>it: 91 +> [40710] q>it'd: 1 +> [40711] q>it'll: 3 +> [40712] q>it's: 119 +> [40713] q>ivan: 10 +> [40714] q>ivan! [40715] q>ivan's: 3 +> [40716] q>ivan, [40717] q>jade [40718] q>jealous: 1 +> [40719] q>jews: 1 +> [40720] q>join: 1 +> [40721] q>joined: 1 +> [40722] q>joking: 2 +> [40723] q>judge: 2 +> [40724] q>jump: 1 +> [40725] q>jupiter: 1 +> [40726] q>just: 10 +> [40727] q>justice [40728] q>kalganov. [40729] q>karamazov: 2 +> [40730] q>karamazov's: 1 +> [40731] q>karamazov, [40732] q>karamazov [40733] q>karl: 1 +> [40734] q>katenka [40735] q>katerina: 8 +> [40736] q>katya: 3 +> [40737] q>katya, [40738] q>kiddies, [40739] q>kids' [40740] q>kids, [40741] q>kids [40742] q>kindly: 2 +> [40743] q>knew: 1 +> [40744] q>know: 1 +> [40745] q>knowest: 1 +> [40746] q>kolya: 3 +> [40747] q>krassotkin: 2 +> [40748] q>krassotkin! [40749] q>krassotkin's: 1 +> [40750] q>lacerated [40751] q>lacerating, [40752] q>laceration: 1 +> [40753] q>laceration, [40754] q>laceration. [40755] q>laceration [40756] q>lack: 1 +> [40757] q>ladies, [40758] q>landlord: 1 +> [40759] q>landowner—for: 1 +> [40760] q>large, [40761] q>last: 3 +> [40762] q>late: 1 +> [40763] q>later: 1 +> [40764] q>latin: 1 +> [40765] q>laws: 1 +> [40766] q>learning: 1 +> [40767] q>leave: 5 +> [40768] q>let: 28 +> [40769] q>let's: 10 +> [40770] q>let's, [40771] q>liberal: 1 +> [40772] q>lies: 2 +> [40773] q>life: 1 +> [40774] q>light: 1 +> [40775] q>like: 7 +> [40776] q>likely: 1 +> [40777] q>lise: 6 +> [40778] q>lise! [40779] q>lise, [40780] q>listen: 27 +> [40781] q>listen! [40782] q>listen, [40783] q>lite: 1 +> [40784] q>lite? [40785] q>little: 3 +> [40786] q>living: 1 +> [40787] q>lock: 1 +> [40788] q>look: 16 +> [40789] q>looking: 1 +> [40790] q>lord: 5 +> [40791] q>lost! [40792] q>lots: 1 +> [40793] q>love: 5 +> [40794] q>loves: 1 +> [40795] q>mad: 1 +> [40796] q>madam: 5 +> [40797] q>madam! [40798] q>madam, [40799] q>made: 1 +> [40800] q>madman: 1 +> [40801] q>maiden: 1 +> [40802] q>make: 10 +> [40803] q>making: 1 +> [40804] q>mamma: 12 +> [40805] q>mamma, [40806] q>mamma. [40807] q>mamma [40808] q>mammy: 1 +> [40809] q>manage: 1 +> [40810] q>mania, [40811] q>manly [40812] q>many: 2 +> [40813] q>march: 1 +> [40814] q>marched: 1 +> [40815] q>marfa: 1 +> [40816] q>marriage: 1 +> [40817] q>master: 1 +> [40818] q>material: 1 +> [40819] q>mathematical: 1 +> [40820] q>maximushka [40821] q>may: 4 +> [40822] q>maybe: 3 +> [40823] q>me: 3 +> [40824] q>meant: 1 +> [40825] q>meek: 1 +> [40826] q>men: 1 +> [40827] q>mercy: 1 +> [40828] q>message, [40829] q>metropolis, [40830] q>metropolis. [40831] q>metropolis [40832] q>middle-aged: 1 +> [40833] q>mihail: 1 +> [40834] q>mind: 1 +> [40835] q>mine: 1 +> [40836] q>miracle: 1 +> [40837] q>miracle, [40838] q>miracle [40839] q>mischief [40840] q>misha: 1 +> [40841] q>misha, [40842] q>mistress: 1 +> [40843] q>mitya: 13 +> [40844] q>mitya'll: 1 +> [40845] q>mitya, [40846] q>modest [40847] q>mokroe! [40848] q>moments. [40849] q>money: 1 +> [40850] q>monk: 1 +> [40851] q>monks: 1 +> [40852] q>monster, [40853] q>monster [40854] q>months: 1 +> [40855] q>more: 3 +> [40856] q>morning: 1 +> [40857] q>most: 5 +> [40858] q>mother: 7 +> [40859] q>mother's: 1 +> [40860] q>mother [40861] q>move: 1 +> [40862] q>mr: 5 +> [40863] q>much: 3 +> [40864] q>murder: 1 +> [40865] q>murderer [40866] q>mushrooms? [40867] q>must: 1 +> [40868] q>my: 43 +> [40869] q>mystery. [40870] q>n—no: 2 +> [40871] q>n—not: 1 +> [40872] q>naked: 1 +> [40873] q>nastya: 1 +> [40874] q>native: 1 +> [40875] q>naturally: 1 +> [40876] q>naught [40877] q>naughty: 1 +> [40878] q>nearly: 1 +> [40879] q>never: 9 +> [40880] q>nevertheless: 2 +> [40881] q>new: 1 +> [40882] q>new [40883] q>news, [40884] q>nice: 1 +> [40885] q>nice? [40886] q>nikolay: 1 +> [40887] q>nikolay—nikolay: 1 +> [40888] q>no: 160 +> [40889] q>no—i: 1 +> [40890] q>no, [40891] q>no. [40892] q>noble: 1 +> [40893] q>nobody: 1 +> [40894] q>none: 2 +> [40895] q>nonsense: 2 +> [40896] q>nonsense! [40897] q>nonsense? [40898] q>nor: 1 +> [40899] q>not: 47 +> [40900] q>nothing: 11 +> [40901] q>nothing, [40902] q>nothing. [40903] q>nothing? [40904] q>now: 21 +> [40905] q>now, [40906] q>nowadays: 1 +> [40907] q>nuts? [40908] q>o: 4 +> [40909] q>o—oh! [40910] q>obedience [40911] q>observe: 1 +> [40912] q>och: 1 +> [40913] q>of: 34 +> [40914] q>officer's [40915] q>officer, [40916] q>official: 1 +> [40917] q>oh: 122 +> [40918] q>oho: 1 +> [40919] q>old: 4 +> [40920] q>on: 19 +> [40921] q>once: 3 +> [40922] q>one: 19 +> [40923] q>only: 20 +> [40924] q>open: 2 +> [40925] q>open. [40926] q>or: 12 +> [40927] q>othello: 1 +> [40928] q>other: 1 +> [40929] q>others: 1 +> [40930] q>otherwise: 2 +> [40931] q>ought: 2 +> [40932] q>ought. [40933] q>our: 5 +> [40934] q>over: 1 +> [40935] q>p.s.—alyosha: 1 +> [40936] q>paid: 1 +> [40937] q>pan: 3 +> [40938] q>pardon: 2 +> [40939] q>parricide! [40940] q>parricide. [40941] q>parricide [40942] q>pater: 1 +> [40943] q>pay: 1 +> [40944] q>perezvon: 2 +> [40945] q>perezvon, [40946] q>perezvon? [40947] q>perfectly: 1 +> [40948] q>perhaps: 18 +> [40949] q>perhaps, [40950] q>perhaps [40951] q>permission: 1 +> [40952] q>philosophical: 1 +> [40953] q>philosophy: 1 +> [40954] q>phœbus: 1 +> [40955] q>pierce: 1 +> [40956] q>pierced: 1 +> [40957] q>pious [40958] q>plan [40959] q>please: 2 +> [40960] q>poetry: 1 +> [40961] q>police: 1 +> [40962] q>polish: 1 +> [40963] q>poor: 1 +> [40964] q>porfiry: 1 +> [40965] q>possessed: 2 +> [40966] q>possessed [40967] q>possession [40968] q>possibilities, [40969] q>possibly: 1 +> [40970] q>pour: 1 +> [40971] q>precisely: 5 +> [40972] q>pride: 1 +> [40973] q>prisoner: 2 +> [40974] q>prisoner, [40975] q>provincial: 1 +> [40976] q>psychology, [40977] q>public: 1 +> [40978] q>publish: 1 +> [40979] q>punish: 1 +> [40980] q>pure: 1 +> [40981] q>put: 3 +> [40982] q>pyotr: 3 +> [40983] q>quicker: 2 +> [40984] q>quite: 9 +> [40985] q>rake: 1 +> [40986] q>rakitin: 2 +> [40987] q>rakitin, [40988] q>ready, [40989] q>realism: 1 +> [40990] q>really: 3 +> [40991] q>really? [40992] q>rebellion: 1 +> [40993] q>red's: 1 +> [40994] q>regular: 1 +> [40995] q>religion, [40996] q>remember: 1 +> [40997] q>remember, [40998] q>restrain: 1 +> [40999] q>returns [41000] q>reverend: 1 +> [41001] q>ridiculous: 1 +> [41002] q>ridiculously: 1 +> [41003] q>ring? [41004] q>rival [41005] q>rob: 1 +> [41006] q>romance, [41007] q>romancing [41008] q>romantic [41009] q>ruined: 1 +> [41010] q>run: 3 +> [41011] q>sabotière. [41012] q>sacred: 1 +> [41013] q>satan: 1 +> [41014] q>save: 2 +> [41015] q>scapegrace [41016] q>scheme [41017] q>school: 1 +> [41018] q>scolding: 1 +> [41019] q>scoundrel [41020] q>see: 3 +> [41021] q>seemed: 1 +> [41022] q>self-laceration, [41023] q>self-laceration—with: 1 +> [41024] q>self-taught, [41025] q>send: 3 +> [41026] q>sensible: 1 +> [41027] q>sensual: 1 +> [41028] q>serve: 2 +> [41029] q>set: 1 +> [41030] q>seven: 1 +> [41031] q>sh-h: 1 +> [41032] q>shall: 3 +> [41033] q>shameful: 1 +> [41034] q>shameful! [41035] q>shameless: 1 +> [41036] q>she: 43 +> [41037] q>she'll: 2 +> [41038] q>she's: 19 +> [41039] q>sheepish: 2 +> [41040] q>should: 1 +> [41041] q>shouldn't: 3 +> [41042] q>show: 4 +> [41043] q>shows: 1 +> [41044] q>sicily: 1 +> [41045] q>sign: 1 +> [41046] q>sign [41047] q>signal, [41048] q>signal [41049] q>signals: 1 +> [41050] q>signals—what: 1 +> [41051] q>silen. [41052] q>simply: 3 +> [41053] q>sin: 1 +> [41054] q>since: 6 +> [41055] q>single [41056] q>sir. [41057] q>sir [41058] q>sister, [41059] q>sit: 2 +> [41060] q>sixth [41061] q>small: 1 +> [41062] q>smashed: 1 +> [41063] q>smerdyakov: 2 +> [41064] q>smerdyakov! [41065] q>smurov: 1 +> [41066] q>sne-gi-ryov? [41067] q>so: 52 +> [41068] q>sojourn: 1 +> [41069] q>some: 8 +> [41070] q>something: 5 +> [41071] q>soon [41072] q>sorry: 1 +> [41073] q>sound: 1 +> [41074] q>soup-maker! [41075] q>sovereign, [41076] q>speak: 5 +> [41077] q>speak! [41078] q>speak, [41079] q>speculation, [41080] q>spent: 1 +> [41081] q>splendid: 1 +> [41082] q>splendid! [41083] q>spread [41084] q>stamp [41085] q>stand: 1 +> [41086] q>stay: 17 +> [41087] q>stay! [41088] q>stay, [41089] q>stay—he: 1 +> [41090] q>steal: 1 +> [41091] q>step: 1 +> [41092] q>stepping: 1 +> [41093] q>stinking: 1 +> [41094] q>stolen [41095] q>stoop: 1 +> [41096] q>stop: 5 +> [41097] q>stop! [41098] q>strange: 1 +> [41099] q>strangled: 1 +> [41100] q>struggling: 1 +> [41101] q>stupid: 1 +> [41102] q>sublime: 1 +> [41103] q>substantially: 1 +> [41104] q>such: 8 +> [41105] q>suffering: 1 +> [41106] q>suggests: 1 +> [41107] q>supercilious: 1 +> [41108] q>suppose: 1 +> [41109] q>sure: 1 +> [41110] q>surely: 5 +> [41111] q>suverin [41112] q>sweet: 2 +> [41113] q>syracuse: 1 +> [41114] q>take: 15 +> [41115] q>taken: 1 +> [41116] q>talk: 2 +> [41117] q>tapped: 1 +> [41118] q>tchizhov. [41119] q>tell: 25 +> [41120] q>tempted [41121] q>ten: 1 +> [41122] q>terrible: 2 +> [41123] q>thank: 10 +> [41124] q>thanks: 6 +> [41125] q>thanks, [41126] q>that: 91 +> [41127] q>that's: 104 +> [41128] q>that, [41129] q>that [41130] q>the: 150 +> [41131] q>then: 29 +> [41132] q>there: 49 +> [41133] q>there! [41134] q>there'll: 1 +> [41135] q>there's: 24 +> [41136] q>these: 2 +> [41137] q>they: 28 +> [41138] q>they'll: 6 +> [41139] q>they're: 7 +> [41140] q>they've: 1 +> [41141] q>think: 1 +> [41142] q>thirty: 1 +> [41143] q>this: 32 +> [41144] q>those: 1 +> [41145] q>thou: 9 +> [41146] q>though: 14 +> [41147] q>three: 9 +> [41148] q>throw: 1 +> [41149] q>till: 7 +> [41150] q>timofey: 1 +> [41151] q>to: 74 +> [41152] q>to-day: 2 +> [41153] q>to-morrow: 3 +> [41154] q>to-morrow—to: 1 +> [41155] q>to-morrow, [41156] q>told: 1 +> [41157] q>torturers. [41158] q>townfolk: 1 +> [41159] q>tragic [41160] q>treachery [41161] q>tremendously: 1 +> [41162] q>trifles [41163] q>trifling: 1 +> [41164] q>trifon: 4 +> [41165] q>troy: 1 +> [41166] q>truly, [41167] q>turned: 1 +> [41168] q>tut: 1 +> [41169] q>tut—tut—tut: 1 +> [41170] q>tut—tut—tut—sanctimoniousness: 1 +> [41171] q>two: 3 +> [41172] q>ugh: 1 +> [41173] q>um: 1 +> [41174] q>unalterable [41175] q>unappreciated [41176] q>uncle: 1 +> [41177] q>understand: 1 +> [41178] q>unfair, [41179] q>unfeeling [41180] q>unfortunately: 1 +> [41181] q>universal: 1 +> [41182] q>unluckily: 1 +> [41183] q>unseemly [41184] q>until: 1 +> [41185] q>upon: 6 +> [41186] q>upset [41187] q>vanka: 1 +> [41188] q>verily: 1 +> [41189] q>very: 14 +> [41190] q>vile: 1 +> [41191] q>virtuous [41192] q>voltaire: 1 +> [41193] q>wait: 13 +> [41194] q>wait! [41195] q>wandering? [41196] q>was: 7 +> [41197] q>wasn't: 1 +> [41198] q>water: 1 +> [41199] q>we: 47 +> [41200] q>we'll: 5 +> [41201] q>we're: 1 +> [41202] q>we've: 3 +> [41203] q>weep: 1 +> [41204] q>weeping: 1 +> [41205] q>welcome: 1 +> [41206] q>well: 113 +> [41207] q>well! [41208] q>well—and: 1 +> [41209] q>well, [41210] q>well? [41211] q>were: 1 +> [41212] q>what: 250 +> [41213] q>what! [41214] q>what's: 24 +> [41215] q>what? [41216] q>whatever: 3 +> [41217] q>when: 20 +> [41218] q>where: 31 +> [41219] q>where's: 1 +> [41220] q>where? [41221] q>whether: 2 +> [41222] q>while: 1 +> [41223] q>white: 1 +> [41224] q>who: 33 +> [41225] q>who's: 4 +> [41226] q>whom: 4 +> [41227] q>whose: 1 +> [41228] q>why: 157 +> [41229] q>why, [41230] q>why? [41231] q>wickedness, [41232] q>wife [41233] q>will: 8 +> [41234] q>wisp: 7 +> [41235] q>with: 14 +> [41236] q>without: 4 +> [41237] q>witness: 1 +> [41238] q>woman: 3 +> [41239] q>women: 2 +> [41240] q>won't: 3 +> [41241] q>would: 12 +> [41242] q>wouldn't: 1 +> [41243] q>wrath: 1 +> [41244] q>wretched: 1 +> [41245] q>write: 3 +> [41246] q>wronged [41247] q>ye—es, [41248] q>yes: 167 +> [41249] q>yes, [41250] q>yes.—but: 1 +> [41251] q>yes. [41252] q>yesterday: 1 +> [41253] q>yet: 2 +> [41254] q>you: 320 +> [41255] q>you—can: 1 +> [41256] q>you'd: 12 +> [41257] q>you'll: 13 +> [41258] q>you're: 27 +> [41259] q>you've: 21 +> [41260] q>young: 1 +> [41261] q>your: 24 +> [41262] q>zhutchka: 1 +> [41263] qu: 1 +> [41264] qu'elle: 3 +> [41265] qu'est-ce: 1 +> [41266] qu'il: 5 +> [41267] qu'ils: 2 +> [41268] qu'on: 2 +> [41269] qu'un: 3 +> [41270] qua: 1 +> [41271] quack: 2 +> [41272] quack, [41273] quacking: 1 +> [41274] quacks: 7 +> [41275] quacksalvers: 1 +> [41276] quadrangle: 2 +> [41277] quadrangular: 2 +> [41278] quadrille: 28 +> [41279] quadrille,’: 1 +> [41280] quadrille?”: 1 +> [41281] quadrilles: 1 +> [41282] quadrillion: 10 +> [41283] quadrillions: 2 +> [41284] quadrillionth: 1 +> [41285] quaff: 1 +> [41286] quahtehmasteh: 1 +> [41287] quail: 1 +> [41288] quail's: 1 +> [41289] quailed: 8 +> [41290] quailing: 1 +> [41291] quails: 1 +> [41292] quaint: 13 +> [41293] quaintness: 1 +> [41294] quake: 1 +> [41295] quaker: 2 +> [41296] quaking: 8 +> [41297] qualification: 6 +> [41298] qualifications: 7 +> [41299] qualified: 2 +> [41300] qualifies: 1 +> [41301] qualify: 1 +> [41302] qualities: 74 +> [41303] quality: 59 +> [41304] quality-as: 1 +> [41305] qualm: 4 +> [41306] qualmish: 1 +> [41307] qualms: 5 +> [41308] quand: 6 +> [41309] quandary: 1 +> [41310] quanti: 1 +> [41311] quantities: 24 +> [41312] quantity: 55 +> [41313] quarante: 1 +> [41314] quarante-deux: 1 +> [41315] quarrel: 100 +> [41316] quarrel—and: 1 +> [41317] quarrel--"you: 1 +> [41318] quarrel--a: 4 +> [41319] quarrel--no: 1 +> [41320] quarrel. [41321] quarreled: 25 +> [41322] quarreling: 12 +> [41323] quarreling! [41324] quarrelled: 26 +> [41325] quarrelled--the: 1 +> [41326] quarrelling: 16 +> [41327] quarrellings: 1 +> [41328] quarrels: 41 +> [41329] quarrelsome: 13 +> [41330] quarries: 1 +> [41331] quarry: 4 +> [41332] quart: 9 +> [41333] quarte: 1 +> [41334] quarter: 131 +> [41335] quarter--i: 1 +> [41336] quarter--to: 1 +> [41337] quarter-staves: 1 +> [41338] quartered: 12 +> [41339] quartering: 1 +> [41340] quarterings: 1 +> [41341] quarterless: 1 +> [41342] quarterlies: 1 +> [41343] quartermaster: 21 +> [41344] quartermaster's: 1 +> [41345] quartermasters: 3 +> [41346] quartern: 1 +> [41347] quarters: 91 +> [41348] quarters—mr: 1 +> [41349] quarters--a: 1 +> [41350] quarters [41351] quartette: 3 +> [41352] quartier: 6 +> [41353] quarto: 2 +> [41354] quarts: 3 +> [41355] quasi-apostolic: 1 +> [41356] quasi-deification: 1 +> [41357] quasi-political: 1 +> [41358] quatre: 2 +> [41359] quaver: 3 +> [41360] quavered: 3 +> [41361] quavered--"and: 1 +> [41362] quavering: 4 +> [41363] quay: 5 +> [41364] quays: 4 +> [41365] que: 25 +> [41366] quebec: 5 +> [41367] queen: 114 +> [41368] queen's: 30 +> [41369] queen--the: 1 +> [41370] queenless: 3 +> [41371] queens: 1 +> [41372] queens! [41373] queer: 105 +> [41374] queer-looking: 3 +> [41375] queerly: 10 +> [41376] queerness: 1 +> [41377] quell: 1 +> [41378] quelle: 1 +> [41379] quelled: 1 +> [41380] quelling: 1 +> [41381] quench: 4 +> [41382] quenched: 6 +> [41383] quenching: 2 +> [41384] quercy: 14 +> [41385] queried: 22 +> [41386] querulous: 6 +> [41387] querulously: 4 +> [41388] querulousness: 1 +> [41389] query: 1 +> [41390] quest: 10 +> [41391] question: 1052 +> [41392] question!--would: 1 +> [41393] question! [41394] question—and: 1 +> [41395] question—for: 1 +> [41396] question—that's: 1 +> [41397] question's: 1 +> [41398] question, [41399] question,—has: 1 +> [41400] question--"most: 1 +> [41401] question--"that: 1 +> [41402] question--and: 1 +> [41403] question--by: 1 +> [41404] question--he: 1 +> [41405] question--in: 1 +> [41406] question--it: 1 +> [41407] question--one: 1 +> [41408] question--poetry--everything: 1 +> [41409] question--what: 1 +> [41410] question--why: 1 +> [41411] question--would: 1 +> [41412] question. [41413] question.[23: 1 +> [41414] question [41415] question? [41416] questionable: 4 +> [41417] questionably: 1 +> [41418] questioned: 57 +> [41419] questioner: 8 +> [41420] questioning: 68 +> [41421] questioning--hostile: 1 +> [41422] questioningly: 11 +> [41423] questionings: 1 +> [41424] questions: 405 +> [41425] questions! [41426] questions,--nothing: 1 +> [41427] questions--about: 1 +> [41428] questions--not: 1 +> [41429] questions--one: 1 +> [41430] questions--the: 1 +> [41431] questions. [41432] questions? [41433] quests: 1 +> [41434] queue: 2 +> [41435] qui: 18 +> [41436] quick: 167 +> [41437] quick--come: 1 +> [41438] quick--for: 1 +> [41439] quick--he: 1 +> [41440] quick--i've: 1 +> [41441] quick-acting: 1 +> [41442] quick-glancing: 1 +> [41443] quick-witted: 3 +> [41444] quicken: 2 +> [41445] quickened: 10 +> [41446] quickening: 5 +> [41447] quickens: 1 +> [41448] quicker: 34 +> [41449] quicker! [41450] quicker--and: 1 +> [41451] quickest: 1 +> [41452] quickly: 585 +> [41453] quickly--by: 1 +> [41454] quickly--ferdishenko: 1 +> [41455] quickly--madame: 1 +> [41456] quickly--the: 1 +> [41457] quickly--up: 1 +> [41458] quickly-passing: 1 +> [41459] quickly.’: 1 +> [41460] quickly [41461] quickness: 7 +> [41462] quicksilver: 1 +> [41463] quickwittedness: 1 +> [41464] quiescent: 1 +> [41465] quiet: 326 +> [41466] quieted: 7 +> [41467] quieter: 11 +> [41468] quietest: 3 +> [41469] quieting: 2 +> [41470] quietism: 2 +> [41471] quietly: 240 +> [41472] quietly--don't: 1 +> [41473] quietly. [41474] quietness: 4 +> [41475] quietude: 1 +> [41476] quill: 7 +> [41477] quills: 2 +> [41478] quilt: 39 +> [41479] quilt--the: 1 +> [41480] quilted: 1 +> [41481] quilts: 2 +> [41482] quinn,[a: 1 +> [41483] quinsy: 1 +> [41484] quinze: 1 +> [41485] quires: 1 +> [41486] quit: 19 +> [41487] quite: 1796 +> [41488] quite--quite: 1 +> [41489] quite...soon: 1 +> [41490] quitrent: 5 +> [41491] quitrents: 1 +> [41492] quits: 5 +> [41493] quits, [41494] quits. [41495] quitted: 5 +> [41496] quitting: 5 +> [41497] quiver: 33 +> [41498] quivered: 51 +> [41499] quivering: 92 +> [41500] quixote: 7 +> [41501] quixotism: 2 +> [41502] quizzical: 2 +> [41503] quizzing: 1 +> [41504] quo: 1 +> [41505] quoique: 1 +> [41506] quoits: 1 +> [41507] quos: 3 +> [41508] quota: 1 +> [41509] quotation: 4 +> [41510] quotations: 11 +> [41511] quote: 85 +> [41512] quoted: 22 +> [41513] quotes: 2 +> [41514] quoth: 17 +> [41515] quoting: 14 +> [41516] quâ: 2 +> [41517] r: 19 +> [41518] r's: 5 +> [41519] r-r-russian! [41520] r-rubbish: 1 +> [41521] rabbinic: 3 +> [41522] rabbinism: 1 +> [41523] rabbit: 4 +> [41524] rabbit-warren: 1 +> [41525] rabbits: 4 +> [41526] rabble: 19 +> [41527] rabid: 3 +> [41528] rabid. [41529] raccoon: 9 +> [41530] race: 112 +> [41531] race--and: 1 +> [41532] race--by: 1 +> [41533] race-course: 3 +> [41534] race-horse: 1 +> [41535] race-horses: 1 +> [41536] raced: 4 +> [41537] racehorse: 1 +> [41538] racers: 7 +> [41539] races: 48 +> [41540] races...and: 1 +> [41541] rachel: 2 +> [41542] racing: 10 +> [41543] rack: 15 +> [41544] rack—but: 1 +> [41545] racked: 5 +> [41546] racking: 6 +> [41547] racks: 1 +> [41548] raconteur: 1 +> [41549] radiance: 12 +> [41550] radiant: 69 +> [41551] radiantly: 8 +> [41552] radiated: 3 +> [41553] radiating: 1 +> [41554] radiation: 1 +> [41555] radical: 20 +> [41556] radicalism: 1 +> [41557] radically: 2 +> [41558] radicals: 8 +> [41559] radish: 1 +> [41560] radish--which: 1 +> [41561] radishchev: 1 +> [41562] radius: 2 +> [41563] radomski: 2 +> [41564] radomski's: 1 +> [41565] radzivilov: 1 +> [41566] raevski: 13 +> [41567] raevski's: 8 +> [41568] raevskis: 1 +> [41569] raft: 13 +> [41570] rafters: 2 +> [41571] rafts: 2 +> [41572] rag: 36 +> [41573] rag--he: 1 +> [41574] ragamuffins--landless: 1 +> [41575] rage: 180 +> [41576] rage--distinct: 1 +> [41577] rage--for: 1 +> [41578] rage--with: 1 +> [41579] raged: 9 +> [41580] rages: 5 +> [41581] ragged: 34 +> [41582] raging: 12 +> [41583] ragozov: 1 +> [41584] rags: 61 +> [41585] rags--and: 1 +> [41586] rags--the: 1 +> [41587] raided: 1 +> [41588] raids: 1 +> [41589] rail: 17 +> [41590] railed: 4 +> [41591] railing: 12 +> [41592] railings: 5 +> [41593] raillery: 6 +> [41594] railroads: 3 +> [41595] rails: 15 +> [41596] rails, [41597] railway: 47 +> [41598] railway-carriage: 1 +> [41599] railway-porters: 1 +> [41600] railway. [41601] railwayman: 1 +> [41602] railways: 29 +> [41603] raiment: 2 +> [41604] rain: 105 +> [41605] rain--he: 1 +> [41606] rain-soaked: 2 +> [41607] rainbow: 6 +> [41608] rainbow-colored: 6 +> [41609] rainbow-colored.... [41610] rainbow-tinted: 1 +> [41611] rainbows: 1 +> [41612] raindrops: 2 +> [41613] rained: 4 +> [41614] raining: 7 +> [41615] rains: 7 +> [41616] rainy: 5 +> [41617] raise: 102 +> [41618] raise--to: 1 +> [41619] raised: 428 +> [41620] raised--sprang: 1 +> [41621] raises: 8 +> [41622] raising: 136 +> [41623] raisins: 7 +> [41624] raison: 1 +> [41625] raison_.’: 1 +> [41626] rajahs: 1 +> [41627] rake: 16 +> [41628] rake-handle: 1 +> [41629] raked: 3 +> [41630] rakes: 6 +> [41631] raking: 6 +> [41632] rakishly-tilted: 1 +> [41633] rakishness: 4 +> [41634] rakitin: 173 +> [41635] rakitin's: 13 +> [41636] rakitin, [41637] rakitin. [41638] rakitin? [41639] raleigh: 1 +> [41640] rallied: 7 +> [41641] rally: 3 +> [41642] rallying: 5 +> [41643] ram: 7 +> [41644] ramballe: 16 +> [41645] ramballe's: 3 +> [41646] rambled: 1 +> [41647] rambles: 1 +> [41648] rambling: 3 +> [41649] rambouillet: 1 +> [41650] rameau: 2 +> [41651] rameau's: 1 +> [41652] ramifications: 1 +> [41653] rammed: 1 +> [41654] rammers--you: 1 +> [41655] rampart: 5 +> [41656] ramparts: 3 +> [41657] ramrod: 6 +> [41658] ramrods: 1 +> [41659] rams: 2 +> [41660] ramsay: 1 +> [41661] ramshackle: 1 +> [41662] ran: 876 +> [41663] ran—that's: 1 +> [41664] ran--"you: 1 +> [41665] rancid: 13 +> [41666] rancidity: 28 +> [41667] rancor: 3 +> [41668] random: 34 +> [41669] rang: 117 +> [41670] rang--especially: 1 +> [41671] range: 31 +> [41672] ranged: 12 +> [41673] ranges: 1 +> [41674] ranging: 3 +> [41675] rank: 109 +> [41676] rank—two: 1 +> [41677] rank--"i: 1 +> [41678] rank--corporals: 1 +> [41679] rank--in: 1 +> [41680] ranked: 3 +> [41681] ranker: 1 +> [41682] rankled: 2 +> [41683] rankles: 2 +> [41684] rankling: 8 +> [41685] ranks: 98 +> [41686] ranks--the: 1 +> [41687] ransack: 2 +> [41688] ransacked: 2 +> [41689] ransacking: 1 +> [41690] rapacious: 3 +> [41691] rape: 1 +> [41692] rape-seed: 2 +> [41693] raphael: 6 +> [41694] raphael's: 2 +> [41695] rapid: 140 +> [41696] rapidity: 49 +> [41697] rapidly: 228 +> [41698] rapidly--they: 1 +> [41699] rapier: 5 +> [41700] rapiers: 1 +> [41701] rapp: 10 +> [41702] rapped: 14 +> [41703] rapping: 3 +> [41704] rapprochement: 1 +> [41705] rapt: 6 +> [41706] rapture: 46 +> [41707] rapture, [41708] raptures: 11 +> [41709] rapturous: 25 +> [41710] rapturously: 19 +> [41711] rapturously--"that's: 1 +> [41712] rare: 80 +> [41713] raree: 1 +> [41714] rarefied: 1 +> [41715] rarely: 97 +> [41716] rarest: 1 +> [41717] rarey’s: 1 +> [41718] rarity: 7 +> [41719] ras: 1 +> [41720] rasa_--no: 1 +> [41721] rascal: 51 +> [41722] rascal's: 1 +> [41723] rascal--that's: 1 +> [41724] rascality: 2 +> [41725] rascally: 3 +> [41726] rascals: 25 +> [41727] rascals--see: 1 +> [41728] rasgulyay--the: 1 +> [41729] rash: 6 +> [41730] rashly: 3 +> [41731] rashness: 2 +> [41732] raskolnikov: 722 +> [41733] raskolnikov's: 60 +> [41734] raskolnikov--"can: 1 +> [41735] raskolnikov--"come: 1 +> [41736] raskolnikov--"from: 1 +> [41737] rasp: 1 +> [41738] raspberries: 9 +> [41739] raspberry: 5 +> [41740] rasped: 1 +> [41741] rasping: 1 +> [41742] rat: 4 +> [41743] rat's: 2 +> [41744] rate: 122 +> [41745] rate--is: 1 +> [41746] rated: 3 +> [41747] rates: 6 +> [41748] rather: 731 +> [41749] ratifies: 1 +> [41750] ratify: 1 +> [41751] rating: 3 +> [41752] ratio: 4 +> [41753] ratiocination: 1 +> [41754] ration: 4 +> [41755] rational: 44 +> [41756] rational? [41757] rationalism: 2 +> [41758] rationally: 8 +> [41759] rations: 9 +> [41760] rats: 15 +> [41761] rattle: 23 +> [41762] rattled: 14 +> [41763] rattling: 8 +> [41764] raucous: 1 +> [41765] raum: 1 +> [41766] rave: 11 +> [41767] raved: 1 +> [41768] raveled: 1 +> [41769] raven: 5 +> [41770] raven-black: 2 +> [41771] ravenous: 1 +> [41772] raves: 1 +> [41773] ravine: 15 +> [41774] ravines: 2 +> [41775] raving: 29 +> [41776] raving, [41777] raving. [41778] raving? [41779] ravings: 1 +> [41780] ravish: 1 +> [41781] raw: 29 +> [41782] raws: 1 +> [41783] ray: 11 +> [41784] rays: 33 +> [41785] rays--even: 1 +> [41786] razed: 1 +> [41787] razins: 4 +> [41788] razor: 12 +> [41789] razor, [41790] razor.’: 1 +> [41791] razor.”: 1 +> [41792] razors: 5 +> [41793] razsudkin: 1 +> [41794] razumihin: 321 +> [41795] razumihin's: 23 +> [41796] razumihin--"we: 1 +> [41797] razumihin--he's: 1 +> [41798] razumihin--you: 1 +> [41799] razumihins: 1 +> [41800] razumovski's: 1 +> [41801] razumovskis: 5 +> [41802] re: 1 +> [41803] re-act: 1 +> [41804] re-admit: 1 +> [41805] re-al-i-ty—(can: 1 +> [41806] re-arranging: 1 +> [41807] re-assured: 1 +> [41808] re-capture: 1 +> [41809] re-cast: 1 +> [41810] re-creator: 1 +> [41811] re-crossing: 1 +> [41812] re-discover: 1 +> [41813] re-distilling: 1 +> [41814] re-echo: 1 +> [41815] re-echoed: 1 +> [41816] re-educated: 2 +> [41817] re-enter: 2 +> [41818] re-entered: 7 +> [41819] re-entering: 4 +> [41820] re-erect: 1 +> [41821] re-establish: 9 +> [41822] re-establishing: 2 +> [41823] re-experiencing: 1 +> [41824] re-form: 2 +> [41825] re-formed: 4 +> [41826] re-read: 2 +> [41827] re-reads: 1 +> [41828] re-stock: 1 +> [41829] re-sublimed: 1 +> [41830] re-test: 1 +> [41831] re-trodden: 1 +> [41832] re-use: 39 +> [41833] reach: 137 +> [41834] reached: 534 +> [41835] reached--and: 1 +> [41836] reaches: 20 +> [41837] reaching: 116 +> [41838] react: 4 +> [41839] reacted: 1 +> [41840] reacting: 1 +> [41841] reaction: 34 +> [41842] reactionaries: 3 +> [41843] reactionary: 11 +> [41844] reactionary, [41845] reactionist: 3 +> [41846] reactions: 1 +> [41847] reacts: 2 +> [41848] read: 843 +> [41849] read? [41850] readable: 38 +> [41851] reader: 57 +> [41852] reader—that: 1 +> [41853] reader's: 2 +> [41854] readers: 31 +> [41855] readeth: 2 +> [41856] readied: 1 +> [41857] readier: 1 +> [41858] readier-witted: 1 +> [41859] readiest: 1 +> [41860] readily: 105 +> [41861] readiness: 43 +> [41862] readiness—that: 1 +> [41863] readiness--the: 1 +> [41864] reading: 332 +> [41865] reading"--he: 1 +> [41866] reading--a: 1 +> [41867] reading--as: 1 +> [41868] reading--but: 1 +> [41869] reading--reading: 1 +> [41870] reading--the: 1 +> [41871] reading--whether: 1 +> [41872] reading-desk: 1 +> [41873] reading-room: 1 +> [41874] readings: 1 +> [41875] readjusted: 3 +> [41876] readjusting: 1 +> [41877] reads: 12 +> [41878] ready: 737 +> [41879] ready--it: 1 +> [41880] ready--keep: 1 +> [41881] ready-made: 5 +> [41882] ready. [41883] ready.’: 1 +> [41884] reagent: 19 +> [41885] reagents: 10 +> [41886] reagents--_wijs: 1 +> [41887] real: 454 +> [41888] real? [41889] realise: 23 +> [41890] realised: 28 +> [41891] realising: 9 +> [41892] realism: 11 +> [41893] realist: 7 +> [41894] realistic: 11 +> [41895] realists: 1 +> [41896] realities: 6 +> [41897] reality: 160 +> [41898] reality—in: 1 +> [41899] reality—that: 1 +> [41900] reality, [41901] reality--for: 1 +> [41902] reality...and: 1 +> [41903] reality. [41904] realization: 8 +> [41905] realize: 86 +> [41906] realized: 141 +> [41907] realized--and: 1 +> [41908] realized?--are: 1 +> [41909] realizes: 11 +> [41910] realizing: 31 +> [41911] really: 1198 +> [41912] really--now: 1 +> [41913] really? [41914] realm: 16 +> [41915] realms: 4 +> [41916] reap: 5 +> [41917] reaped: 3 +> [41918] reaping: 6 +> [41919] reappear: 3 +> [41920] reappearance: 3 +> [41921] reappeared: 17 +> [41922] reappearing: 3 +> [41923] reappears: 1 +> [41924] rear: 52 +> [41925] rear--for: 1 +> [41926] rear--where: 1 +> [41927] reared: 11 +> [41928] rearguard: 10 +> [41929] rearing: 5 +> [41930] rearmost: 2 +> [41931] rearrange: 3 +> [41932] rearranged: 3 +> [41933] rearrangement: 2 +> [41934] rearranging: 3 +> [41935] reascended: 1 +> [41936] reason: 666 +> [41937] reason! [41938] reason—how: 1 +> [41939] reason's: 1 +> [41940] reason, [41941] reason--and: 1 +> [41942] reason--everything: 1 +> [41943] reason--i: 2 +> [41944] reason--in: 1 +> [41945] reason--it: 2 +> [41946] reason--lord: 1 +> [41947] reason--mind: 1 +> [41948] reason--that: 1 +> [41949] reason--the: 1 +> [41950] reason. [41951] reasonable: 68 +> [41952] reasonableness: 5 +> [41953] reasonably: 15 +> [41954] reasoned: 9 +> [41955] reasoners: 1 +> [41956] reasoning: 51 +> [41957] reasoning--and: 1 +> [41958] reasonings: 1 +> [41959] reasons: 96 +> [41960] reasons--i: 1 +> [41961] reasons. [41962] reasons:—: 1 +> [41963] reassembled: 2 +> [41964] reassert: 2 +> [41965] reasserted: 1 +> [41966] reassigned: 1 +> [41967] reasson: 2 +> [41968] reassurance: 2 +> [41969] reassure: 20 +> [41970] reassured: 25 +> [41971] reassuring: 7 +> [41972] reassuringly: 1 +> [41973] reaumur: 4 +> [41974] reawaken: 1 +> [41975] reawakened: 1 +> [41976] reawakening: 1 +> [41977] reawoke: 1 +> [41978] rebecca: 4 +> [41979] rebel: 8 +> [41980] rebelled: 5 +> [41981] rebelling: 6 +> [41982] rebellion: 6 +> [41983] rebellion, [41984] rebellion [41985] rebellious: 9 +> [41986] rebels: 8 +> [41987] rebirth: 1 +> [41988] reboiled: 1 +> [41989] reborn: 2 +> [41990] rebound: 4 +> [41991] rebounded: 1 +> [41992] rebounding: 1 +> [41993] rebuff: 5 +> [41994] rebuffs: 2 +> [41995] rebuild: 5 +> [41996] rebuilding: 7 +> [41997] rebuilt: 6 +> [41998] rebuke: 16 +> [41999] rebuked: 6 +> [42000] rebukes: 3 +> [42001] rebuking: 1 +> [42002] rec: 1 +> [42003] recalcitrant: 1 +> [42004] recall: 97 +> [42005] recalled: 174 +> [42006] recalling: 72 +> [42007] recalls: 3 +> [42008] recant: 1 +> [42009] recantation: 1 +> [42010] recapitulate: 1 +> [42011] recapitulation: 1 +> [42012] recapture: 2 +> [42013] recaptured: 2 +> [42014] recasting: 2 +> [42015] recede: 5 +> [42016] receded: 6 +> [42017] receding: 3 +> [42018] receipt: 57 +> [42019] receipts: 3 +> [42020] receive: 232 +> [42021] received: 588 +> [42022] received,”: 1 +> [42023] received--assumed: 1 +> [42024] received--it: 1 +> [42025] received--news: 1 +> [42026] received--very: 1 +> [42027] receiver: 4 +> [42028] receives: 20 +> [42029] receiving: 121 +> [42030] recent: 73 +> [42031] recently: 42 +> [42032] receptacle: 3 +> [42033] receptacles: 1 +> [42034] reception: 77 +> [42035] reception-room: 2 +> [42036] receptions: 9 +> [42037] receptive: 2 +> [42038] recess: 3 +> [42039] recesses: 5 +> [42040] recherche: 2 +> [42041] recherché: 1 +> [42042] recht: 1 +> [42043] recipe: 1 +> [42044] recipes: 1 +> [42045] recipient: 6 +> [42046] reciprocal: 2 +> [42047] reciprocated: 1 +> [42048] reciprocity: 1 +> [42049] recital: 2 +> [42050] recitation: 7 +> [42051] recitations: 1 +> [42052] recite: 7 +> [42053] recited: 2 +> [42054] recited--the: 1 +> [42055] reciter: 1 +> [42056] recites: 1 +> [42057] reciting: 4 +> [42058] recked: 1 +> [42059] reckless: 33 +> [42060] recklessly: 12 +> [42061] recklessness: 10 +> [42062] reckon: 53 +> [42063] reckoned: 45 +> [42064] reckoner: 1 +> [42065] reckoning: 66 +> [42066] reckons: 1 +> [42067] reclaim: 2 +> [42068] reclining: 3 +> [42069] recognise: 16 +> [42070] recognised: 41 +> [42071] recognising: 5 +> [42072] recognition: 30 +> [42073] recognitions: 5 +> [42074] recognizable: 3 +> [42075] recognize: 112 +> [42076] recognized: 181 +> [42077] recognized--so: 1 +> [42078] recognizes: 11 +> [42079] recognizing: 57 +> [42080] recoil: 2 +> [42081] recoiled: 9 +> [42082] recoiling: 2 +> [42083] recoils: 1 +> [42084] recollect: 25 +> [42085] recollect--it: 1 +> [42086] recollected: 38 +> [42087] recollecting: 22 +> [42088] recollection: 70 +> [42089] recollection's: 4 +> [42090] recollections: 25 +> [42091] recommenced: 10 +> [42092] recommend: 17 +> [42093] recommendation: 8 +> [42094] recommendations: 1 +> [42095] recommended: 28 +> [42096] recommending: 2 +> [42097] recommends: 7 +> [42098] recompense: 9 +> [42099] recompenses: 1 +> [42100] reconcile: 15 +> [42101] reconciled: 55 +> [42102] reconciliation: 28 +> [42103] reconciling: 5 +> [42104] recondite: 1 +> [42105] reconnaissance: 1 +> [42106] reconnaissante: 1 +> [42107] reconnoiter: 1 +> [42108] reconnoitered: 2 +> [42109] reconnoitering: 1 +> [42110] reconsider: 1 +> [42111] reconsidered: 2 +> [42112] reconsidering: 1 +> [42113] reconstruct: 1 +> [42114] reconstructed: 1 +> [42115] reconstruction: 9 +> [42116] record: 13 +> [42117] recorded: 19 +> [42118] recording: 1 +> [42119] records: 4 +> [42120] recount: 1 +> [42121] recounted: 10 +> [42122] recounting: 3 +> [42123] recounts: 1 +> [42124] recourse: 19 +> [42125] recover: 59 +> [42126] recover. [42127] recovered: 108 +> [42128] recovered. [42129] recoveries: 2 +> [42130] recovering: 23 +> [42131] recovers: 2 +> [42132] recovery: 49 +> [42133] recovery, [42134] recreant: 2 +> [42135] recreate: 1 +> [42136] recreated: 1 +> [42137] recreation: 8 +> [42138] recreations: 1 +> [42139] recreative: 2 +> [42140] recrimination: 1 +> [42141] recriminations: 2 +> [42142] recross: 3 +> [42143] recrossed: 1 +> [42144] recrossing: 1 +> [42145] recruit: 10 +> [42146] recruited: 1 +> [42147] recruiting: 6 +> [42148] recruiting-sergeant--for: 1 +> [42149] recruitment: 1 +> [42150] recruits: 7 +> [42151] recruits--a: 1 +> [42152] recrystallizing: 1 +> [42153] rectangular: 1 +> [42154] rectify: 3 +> [42155] rectifying: 1 +> [42156] rectitude: 3 +> [42157] rector: 13 +> [42158] rector's: 2 +> [42159] rectors: 1 +> [42160] recuperate: 1 +> [42161] recur: 1 +> [42162] recurred: 16 +> [42163] recurrence: 1 +> [42164] recurrent: 1 +> [42165] recurring: 9 +> [42166] recurs: 1 +> [42167] red: 443 +> [42168] red,--"but--i--i: 1 +> [42169] red--but: 1 +> [42170] red--purple: 1 +> [42171] red-armed: 1 +> [42172] red-cheeked: 3 +> [42173] red-faced: 18 +> [42174] red-haired: 21 +> [42175] red-heeled: 5 +> [42176] red-hot: 2 +> [42177] red-liveried: 1 +> [42178] red-nosed: 7 +> [42179] red-palmed: 1 +> [42180] red-roofed: 2 +> [42181] red-spotted: 5 +> [42182] reddened: 21 +> [42183] reddened--"that: 1 +> [42184] reddening: 19 +> [42185] redder: 9 +> [42186] reddish: 14 +> [42187] reddish-brown: 2 +> [42188] reddish-yellow: 1 +> [42189] redecorated: 3 +> [42190] redeem: 7 +> [42191] redeemed: 12 +> [42192] redeemed--bracelets: 1 +> [42193] redeemer: 4 +> [42194] redeemer-gods: 2 +> [42195] redeeming: 2 +> [42196] redeems: 1 +> [42197] redemption: 45 +> [42198] redemptive: 2 +> [42199] redistilled: 4 +> [42200] redistribute: 19 +> [42201] redistributing: 38 +> [42202] redistribution: 38 +> [42203] redly: 1 +> [42204] redness: 4 +> [42205] redolent: 1 +> [42206] redouble: 3 +> [42207] redoubled: 21 +> [42208] redoubt: 31 +> [42209] redoubt--and: 1 +> [42210] redoubt--our: 1 +> [42211] redoubts: 2 +> [42212] redounded: 2 +> [42213] redoute: 3 +> [42214] redowa: 1 +> [42215] redress: 1 +> [42216] redressing: 1 +> [42217] reds: 2 +> [42218] redskins: 1 +> [42219] reduce: 10 +> [42220] reduce--or: 1 +> [42221] reduced: 52 +> [42222] reduces: 4 +> [42223] reducing: 5 +> [42224] reduction: 5 +> [42225] reed: 2 +> [42226] reed-thatched: 1 +> [42227] reeds: 14 +> [42228] reedy: 1 +> [42229] reefer: 1 +> [42230] reek: 5 +> [42231] reeked: 3 +> [42232] reeking: 3 +> [42233] reel: 2 +> [42234] reeled: 14 +> [42235] reeling: 9 +> [42236] reestablished: 3 +> [42237] reestablished--a: 1 +> [42238] reestablishes: 1 +> [42239] ref: 5 +> [42240] refastening: 1 +> [42241] refer: 23 +> [42242] referee: 1 +> [42243] reference: 47 +> [42244] references: 49 +> [42245] referred: 65 +> [42246] referred--how: 1 +> [42247] referring: 36 +> [42248] refers: 8 +> [42249] refill: 2 +> [42250] refilling: 1 +> [42251] refine: 1 +> [42252] refined: 51 +> [42253] refined,--i: 1 +> [42254] refinement: 30 +> [42255] refinements: 6 +> [42256] refines: 1 +> [42257] refining: 7 +> [42258] refitting: 1 +> [42259] refixing: 1 +> [42260] reflect: 40 +> [42261] reflect--"the: 1 +> [42262] reflected: 119 +> [42263] reflecting: 34 +> [42264] reflection: 81 +> [42265] reflection--and: 1 +> [42266] reflection--as: 1 +> [42267] reflection [42268] reflections: 39 +> [42269] reflectively: 3 +> [42270] reflectiveness: 1 +> [42271] reflector: 1 +> [42272] reflects: 2 +> [42273] reflex: 2 +> [42274] reflux: 4 +> [42275] refolded: 1 +> [42276] reform: 42 +> [42277] reformation: 21 +> [42278] reformed: 14 +> [42279] reformer: 3 +> [42280] reformers: 8 +> [42281] reforming: 4 +> [42282] reforms: 12 +> [42283] refractory: 2 +> [42284] refrain: 47 +> [42285] refrained: 20 +> [42286] refraining: 9 +> [42287] refresh: 7 +> [42288] refreshed: 12 +> [42289] refresher: 1 +> [42290] refreshing: 8 +> [42291] refreshment: 10 +> [42292] refreshment-room: 1 +> [42293] refreshments: 10 +> [42294] refreshments;’: 1 +> [42295] refrigerating: 1 +> [42296] refrigerator: 1 +> [42297] refuge: 42 +> [42298] refuge, [42299] refuge--madame's: 1 +> [42300] refugee: 1 +> [42301] refugees: 5 +> [42302] refuges: 1 +> [42303] refund: 190 +> [42304] refusal: 51 +> [42305] refusal's: 1 +> [42306] refuse: 180 +> [42307] refuse--but: 1 +> [42308] refused: 137 +> [42309] refuses: 13 +> [42310] refusing: 42 +> [42311] refutation: 2 +> [42312] refutations: 1 +> [42313] refute: 5 +> [42314] refuted: 1 +> [42315] refutes: 1 +> [42316] refuting: 6 +> [42317] reg="dostoyevsky: 1 +> [42318] regain: 15 +> [42319] regained: 30 +> [42320] regaining: 13 +> [42321] regale: 1 +> [42322] regaled: 2 +> [42323] regaling: 1 +> [42324] regard: 197 +> [42325] regard--great: 1 +> [42326] regarded: 126 +> [42327] regarded--as: 1 +> [42328] regarding: 47 +> [42329] regardless: 54 +> [42330] regards: 30 +> [42331] regatta: 1 +> [42332] regenerate: 6 +> [42333] regenerated: 1 +> [42334] regenerating: 3 +> [42335] regeneration: 12 +> [42336] regent's: 1 +> [42337] regicide: 3 +> [42338] regime: 2 +> [42339] regiment: 267 +> [42340] regiment's: 1 +> [42341] regiment--all: 1 +> [42342] regiment--he: 1 +> [42343] regiment--instead: 1 +> [42344] regiment--was: 1 +> [42345] regiment--white: 1 +> [42346] regiment--who: 1 +> [42347] regiment. [42348] regimental: 53 +> [42349] regiments: 36 +> [42350] reginald: 1 +> [42351] regio: 1 +> [42352] region: 30 +> [42353] region--powers: 1 +> [42354] regions: 17 +> [42355] regions [42356] register: 9 +> [42357] registered: 40 +> [42358] registrar's: 2 +> [42359] regojin's: 1 +> [42360] regret: 114 +> [42361] regret— [42362] regret--nothing: 1 +> [42363] regretful: 4 +> [42364] regretfully: 11 +> [42365] regretfully--"a: 1 +> [42366] regrets: 8 +> [42367] regrettable: 2 +> [42368] regretted: 38 +> [42369] regretting: 17 +> [42370] regular: 150 +> [42371] regularity: 7 +> [42372] regularizing: 1 +> [42373] regularly: 14 +> [42374] regulate: 5 +> [42375] regulated: 5 +> [42376] regulating: 20 +> [42377] regulation: 9 +> [42378] regulations: 11 +> [42379] regulative: 1 +> [42380] regulator: 1 +> [42381] rehabilitate: 1 +> [42382] rehabilitating: 1 +> [42383] reharnessed: 1 +> [42384] rehearsal: 8 +> [42385] rehearse: 1 +> [42386] rehearsed: 1 +> [42387] rehearsing: 3 +> [42388] reheat: 1 +> [42389] reheating: 1 +> [42390] reichert: 1 +> [42391] reichert-meissl: 1 +> [42392] reign: 60 +> [42393] reigned: 11 +> [42394] reigning: 4 +> [42395] reigns: 4 +> [42396] rein: 37 +> [42397] rein--for: 1 +> [42398] reindeer: 1 +> [42399] reined: 13 +> [42400] reinforce: 1 +> [42401] reinforced: 4 +> [42402] reinforcement: 3 +> [42403] reinforcements: 9 +> [42404] reinforcing: 1 +> [42405] reining: 4 +> [42406] reins: 89 +> [42407] reins--'catch: 1 +> [42408] reinspected: 1 +> [42409] reinstate: 1 +> [42410] reinstated: 2 +> [42411] reinstating: 2 +> [42412] reiterate: 1 +> [42413] reiterated: 8 +> [42414] reiterates: 1 +> [42415] reiteration: 2 +> [42416] reject: 30 +> [42417] rejected: 39 +> [42418] rejecting: 10 +> [42419] rejection: 11 +> [42420] rejects: 6 +> [42421] rejoice: 43 +> [42422] rejoice. [42423] rejoiced: 30 +> [42424] rejoices: 6 +> [42425] rejoicing: 34 +> [42426] rejoicing, [42427] rejoicings: 1 +> [42428] rejoin: 8 +> [42429] rejoinder: 12 +> [42430] rejoinders: 1 +> [42431] rejoined: 56 +> [42432] rejoined--having: 1 +> [42433] rejoining: 1 +> [42434] rejuvenated: 2 +> [42435] rekindle: 1 +> [42436] rekindled: 1 +> [42437] relapse: 4 +> [42438] relapsed: 16 +> [42439] relapsing: 4 +> [42440] relate: 30 +> [42441] relate--as: 1 +> [42442] related: 58 +> [42443] relater: 3 +> [42444] relates: 5 +> [42445] relating: 32 +> [42446] relation: 156 +> [42447] relations: 278 +> [42448] relationship: 19 +> [42449] relationships: 2 +> [42450] relative: 44 +> [42451] relative. [42452] relatively: 6 +> [42453] relatives: 21 +> [42454] relatives--countess: 1 +> [42455] relax: 7 +> [42456] relaxation: 6 +> [42457] relaxed: 11 +> [42458] relaxing: 3 +> [42459] relay: 4 +> [42460] relays: 3 +> [42461] relearn: 1 +> [42462] release: 53 +> [42463] released: 32 +> [42464] releasing: 5 +> [42465] relent: 1 +> [42466] relented: 2 +> [42467] relenting: 1 +> [42468] relentless: 4 +> [42469] relentlessly: 3 +> [42470] relevant: 2 +> [42471] relevantly: 1 +> [42472] reliable: 18 +> [42473] reliance: 4 +> [42474] relic: 5 +> [42475] relics: 12 +> [42476] relied: 10 +> [42477] relief: 118 +> [42478] relief--in: 1 +> [42479] relief--that: 1 +> [42480] relies: 3 +> [42481] relieve: 26 +> [42482] relieved: 39 +> [42483] relieved? [42484] relieves: 2 +> [42485] relieving: 2 +> [42486] religio: 1 +> [42487] religion: 129 +> [42488] religion!--i: 1 +> [42489] religion--and: 1 +> [42490] religion--you: 1 +> [42491] religion. [42492] religions: 7 +> [42493] religionsgeschichtlich: 1 +> [42494] religious: 89 +> [42495] religiously: 4 +> [42496] religiously-patriotic: 1 +> [42497] religiously. [42498] relinquish: 4 +> [42499] relinquished: 1 +> [42500] relinquishing: 1 +> [42501] relish: 18 +> [42502] relished: 3 +> [42503] relishing: 1 +> [42504] relit: 3 +> [42505] relive: 1 +> [42506] relived: 1 +> [42507] reload: 1 +> [42508] reloaded: 1 +> [42509] reluctance: 10 +> [42510] reluctant: 16 +> [42511] reluctantly: 69 +> [42512] rely: 14 +> [42513] relying: 7 +> [42514] remain: 251 +> [42515] remainder: 15 +> [42516] remained: 429 +> [42517] remained--a: 2 +> [42518] remained--the: 1 +> [42519] remaining: 99 +> [42520] remains: 72 +> [42521] remains,--what: 1 +> [42522] remains.[21: 1 +> [42523] remark: 140 +> [42524] remark, [42525] remark--and: 1 +> [42526] remark--showing: 1 +> [42527] remarkable: 105 +> [42528] remarkable--a: 3 +> [42529] remarkably: 20 +> [42530] remarked: 198 +> [42531] remarkedly: 1 +> [42532] remarking: 15 +> [42533] remarks: 102 +> [42534] remarriage: 2 +> [42535] remarry: 1 +> [42536] remedied: 2 +> [42537] remedies: 27 +> [42538] remedy: 34 +> [42539] remedying: 1 +> [42540] remelter: 1 +> [42541] remelters: 1 +> [42542] remember: 779 +> [42543] remember! [42544] remember, [42545] remember--'if: 1 +> [42546] remember--all: 1 +> [42547] remember--i: 2 +> [42548] remember--it: 1 +> [42549] remember--that's: 1 +> [42550] remember--when: 1 +> [42551] remember--yet: 1 +> [42552] remember.... [42553] remember. [42554] remember [42555] remember?—i: 1 +> [42556] remember?—you: 1 +> [42557] remember?--with: 1 +> [42558] remember?...what: 1 +> [42559] remember? [42560] remembered: 423 +> [42561] remembering: 99 +> [42562] remembers: 17 +> [42563] remembrance: 25 +> [42564] remembrances: 1 +> [42565] remind: 53 +> [42566] reminded: 69 +> [42567] reminder: 10 +> [42568] reminding: 16 +> [42569] reminds: 14 +> [42570] reminiscence: 5 +> [42571] reminiscences: 24 +> [42572] remiss: 4 +> [42573] remission: 2 +> [42574] remit: 1 +> [42575] remittance: 2 +> [42576] remitting: 1 +> [42577] remnant: 5 +> [42578] remnants: 6 +> [42579] remnev: 7 +> [42580] remodeled: 1 +> [42581] remonstrance: 5 +> [42582] remonstrance--though: 1 +> [42583] remonstrances: 3 +> [42584] remonstrate: 1 +> [42585] remonstrated: 6 +> [42586] remonstrating: 2 +> [42587] remorse: 81 +> [42588] remorse--for: 1 +> [42589] remorse--i: 3 +> [42590] remorseful: 8 +> [42591] remorseless: 1 +> [42592] remorselessly: 1 +> [42593] remortgaged: 1 +> [42594] remote: 71 +> [42595] remotely: 3 +> [42596] remoteness: 5 +> [42597] remoter: 1 +> [42598] remotest: 6 +> [42599] remount: 1 +> [42600] remounted: 1 +> [42601] remounts: 4 +> [42602] removable: 3 +> [42603] removal: 16 +> [42604] remove: 82 +> [42605] removed: 150 +> [42606] removed. [42607] remover: 1 +> [42608] removes: 3 +> [42609] removing: 30 +> [42610] remuneration: 8 +> [42611] renamed: 19 +> [42612] rencontre: 1 +> [42613] rencontres: 1 +> [42614] rend: 2 +> [42615] rend="font-size: 6 +> [42616] rend="page-break-before: 4 +> [42617] rend='display: 36 +> [42618] rend='italic'>(a) [42619] rend='italic'>(b: 1 +> [42620] rend='italic'>(c: 1 +> [42621] rend='italic'>(d: 1 +> [42622] rend='italic'>(e: 1 +> [42623] rend='italic'>(h: 1 +> [42624] rend='italic'>(i: 1 +> [42625] rend='italic'>a: 2 +> [42626] rend='italic'>ad: 1 +> [42627] rend='italic'>ah: 2 +> [42628] rend='italic'>an: 1 +> [42629] rend='italic'>après: 1 +> [42630] rend='italic'>arrière-pensée [42631] rend='italic'>auto: 3 +> [42632] rend='italic'>bon: 1 +> [42633] rend='italic'>c'est: 7 +> [42634] rend='italic'>candide [42635] rend='italic'>cette: 1 +> [42636] rend='italic'>chef-d'œuvre [42637] rend='italic'>chevalier? [42638] rend='italic'>compote [42639] rend='italic'>coup: 1 +> [42640] rend='italic'>credo [42641] rend='italic'>de: 1 +> [42642] rend='italic'>dead: 1 +> [42643] rend='italic'>dixi. [42644] rend='italic'>déshabillé [42645] rend='italic'>evenings: 1 +> [42646] rend='italic'>f [42647] rend='italic'>father: 1 +> [42648] rend='italic'>g [42649] rend='italic'>gatzuk [42650] rend='italic'>geological: 1 +> [42651] rend='italic'>gossip [42652] rend='italic'>gott: 10 +> [42653] rend='italic'>hamlet, [42654] rend='italic'>hymn: 1 +> [42655] rend='italic'>ici [42656] rend='italic'>il: 2 +> [42657] rend='italic'>j'ai: 1 +> [42658] rend='italic'>je: 1 +> [42659] rend='italic'>lajdak! [42660] rend='italic'>lajdak [42661] rend='italic'>lajdak [42662] rend='italic'>lajdak! [42663] rend='italic'>last: 1 +> [42664] rend='italic'>le: 4 +> [42665] rend='italic'>les: 1 +> [42666] rend='italic'>lives: 5 +> [42667] rend='italic'>long: 1 +> [42668] rend='italic'>maman [42669] rend='italic'>merci: 1 +> [42670] rend='italic'>monsieur: 1 +> [42671] rend='italic'>monsieur [42672] rend='italic'>naïveté [42673] rend='italic'>noblesse [42674] rend='italic'>notre: 1 +> [42675] rend='italic'>of: 2 +> [42676] rend='italic'>on: 1 +> [42677] rend='italic'>onyegin [42678] rend='italic'>pan's [42679] rend='italic'>pan [42680] rend='italic'>pan [42681] rend='italic'>pan-father: 1 +> [42682] rend='italic'>pan-mother: 1 +> [42683] rend='italic'>panem: 1 +> [42684] rend='italic'>pani [42685] rend='italic'>pani [42686] rend='italic'>pani, [42687] rend='italic'>panie: 1 +> [42688] rend='italic'>panie! [42689] rend='italic'>panie [42690] rend='italic'>panie! [42691] rend='italic'>panie, [42692] rend='italic'>panie? [42693] rend='italic'>panienotchka [42694] rend='italic'>panovie! [42695] rend='italic'>panovie [42696] rend='italic'>panovie! [42697] rend='italic'>panovie— [42698] rend='italic'>panovie, [42699] rend='italic'>panovie? [42700] rend='italic'>passons [42701] rend='italic'>plus: 2 +> [42702] rend='italic'>poseurs [42703] rend='italic'>professions: 1 +> [42704] rend='italic'>quelle: 1 +> [42705] rend='italic'>qui: 1 +> [42706] rend='italic'>quiproquo? [42707] rend='italic'>recherché [42708] rend='italic'>robbers [42709] rend='italic'>s'il: 1 +> [42710] rend='italic'>savant [42711] rend='italic'>sine: 1 +> [42712] rend='italic'>soirée [42713] rend='italic'>sorrow: 1 +> [42714] rend='italic'>spazieren. [42715] rend='italic'>sum: 2 +> [42716] rend='italic'>tableaux: 1 +> [42717] rend='italic'>the: 9 +> [42718] rend='italic'>tout: 1 +> [42719] rend='italic'>tête-à-tête [42720] rend='italic'>un: 1 +> [42721] rend='italic'>universal: 1 +> [42722] rend='italic'>vieilles: 1 +> [42723] rend='italic'>vivos: 1 +> [42724] rend='italic'>vonsohn [42725] rend='italic'>vous: 1 +> [42726] rend='italic'>à: 6 +> [42727] rend='italic'>ça: 1 +> [42728] rend='italic'>élite [42729] rend='italic'>étape [42730] rend='margin-left: 21 +> [42731] rend='page-break-before: 13 +> [42732] rend='post'>and: 1 +> [42733] rend='post'>but: 1 +> [42734] rend='post'>do: 1 +> [42735] rend='post'>he: 1 +> [42736] rend='post'>i: 4 +> [42737] rend='post'>i'm: 1 +> [42738] rend='post'>it: 1 +> [42739] rend='post'>man: 1 +> [42740] rend='post'>or: 1 +> [42741] rend='post'>they: 1 +> [42742] rend='post'>though: 1 +> [42743] rend='post'>well: 1 +> [42744] rend='pre: 1 +> [42745] rend='pre'>and: 1 +> [42746] rend='pre'>jesus: 2 +> [42747] rend='pre'>when: 1 +> [42748] rend='pre'> [42749] rend='pre'>ah: 1 +> [42750] rend='pre'>don't: 2 +> [42751] rend='pre'>fathers: 1 +> [42752] rend='pre'>four: 1 +> [42753] rend='pre'>my: 1 +> [42754] rend='pre'>quite: 1 +> [42755] rend='pre'>the: 1 +> [42756] rend='pre'>then: 1 +> [42757] rend='pre'>what: 1 +> [42758] rend='pre'>yes: 1 +> [42759] rend='pre'>a: 1 +> [42760] rend='pre'>ach: 1 +> [42761] rend='pre'>allow: 1 +> [42762] rend='pre'>and: 4 +> [42763] rend='pre'>at: 2 +> [42764] rend='pre'>but: 23 +> [42765] rend='pre'>by: 2 +> [42766] rend='pre'>do: 1 +> [42767] rend='pre'>every: 1 +> [42768] rend='pre'>first: 1 +> [42769] rend='pre'>from: 2 +> [42770] rend='pre'>gentlemen: 9 +> [42771] rend='pre'>getting: 1 +> [42772] rend='pre'>glory: 1 +> [42773] rend='pre'>had: 1 +> [42774] rend='pre'>he: 5 +> [42775] rend='pre'>here: 3 +> [42776] rend='pre'>his: 2 +> [42777] rend='pre'>i: 13 +> [42778] rend='pre'>i'll: 1 +> [42779] rend='pre'>i'm: 1 +> [42780] rend='pre'>i've: 1 +> [42781] rend='pre'>it: 1 +> [42782] rend='pre'>it's: 2 +> [42783] rend='pre'>ivan: 1 +> [42784] rend='pre'>judge: 1 +> [42785] rend='pre'>just: 2 +> [42786] rend='pre'>karamazov: 2 +> [42787] rend='pre'>listen: 1 +> [42788] rend='pre'>meanwhile: 1 +> [42789] rend='pre'>moreover: 1 +> [42790] rend='pre'>my: 2 +> [42791] rend='pre'>no: 2 +> [42792] rend='pre'>not: 2 +> [42793] rend='pre'>now: 2 +> [42794] rend='pre'>oh: 2 +> [42795] rend='pre'>on: 1 +> [42796] rend='pre'>one: 1 +> [42797] rend='pre'>perhaps: 2 +> [42798] rend='pre'>she: 2 +> [42799] rend='pre'>so: 1 +> [42800] rend='pre'>suddenly: 1 +> [42801] rend='pre'>that: 2 +> [42802] rend='pre'>the: 13 +> [42803] rend='pre'>then: 3 +> [42804] rend='pre'>there: 1 +> [42805] rend='pre'>this: 3 +> [42806] rend='pre'>we: 4 +> [42807] rend='pre'>well: 1 +> [42808] rend='pre'>what: 2 +> [42809] rend='pre'>what's: 1 +> [42810] rend='pre'>when: 1 +> [42811] rend='pre'>why: 1 +> [42812] rend='pre'>wild: 1 +> [42813] rend='pre'>with: 2 +> [42814] rend='pre'>yes: 5 +> [42815] rend='pre'>yet: 1 +> [42816] rend='pre'>you: 7 +> [42817] rend='pre'>you're: 1 +> [42818] rend='rule: 5 +> [42819] rend='smallcaps'>biographical: 1 +> [42820] rend='smallcaps'>d: 1 +> [42821] rend='smallcaps'>fatal: 1 +> [42822] rend='smallcaps'>k: 1 +> [42823] rend='smallcaps'>lise. [42824] rend='smallcaps'>the: 1 +> [42825] rend='smallcaps'>translator's: 1 +> [42826] render: 34 +> [42827] rendered: 32 +> [42828] rendering: 8 +> [42829] renders: 7 +> [42830] rendezvous: 9 +> [42831] rending: 8 +> [42832] renegade: 6 +> [42833] renew: 20 +> [42834] renewal: 11 +> [42835] renewed: 23 +> [42836] renewing: 3 +> [42837] renews: 1 +> [42838] rennes: 1 +> [42839] renounce: 27 +> [42840] renounce—will: 1 +> [42841] renounced: 14 +> [42842] renouncements: 1 +> [42843] renounces: 2 +> [42844] renouncing: 9 +> [42845] renovate: 1 +> [42846] renovated: 1 +> [42847] renovation: 1 +> [42848] renown: 2 +> [42849] renowned: 3 +> [42850] rent: 53 +> [42851] rent-free: 4 +> [42852] rent-roll: 3 +> [42853] rented: 6 +> [42854] rentes: 1 +> [42855] renting: 2 +> [42856] rentrez: 1 +> [42857] rents: 5 +> [42858] renunciation: 6 +> [42859] renunciation--and: 1 +> [42860] reoccupation: 1 +> [42861] reopen: 4 +> [42862] reopened: 5 +> [42863] reorganization: 3 +> [42864] reorganized: 2 +> [42865] reorganizing: 1 +> [42866] rep: 1 +> [42867] repacked: 1 +> [42868] repacking: 1 +> [42869] repaid: 10 +> [42870] repainted: 1 +> [42871] repair: 4 +> [42872] repaired: 6 +> [42873] repairing: 8 +> [42874] repairs: 4 +> [42875] repartee: 1 +> [42876] repast: 1 +> [42877] repay: 41 +> [42878] repaying: 4 +> [42879] repayment: 1 +> [42880] repays: 1 +> [42881] repeal: 25 +> [42882] repealed: 1 +> [42883] repealer: 3 +> [42884] repealers: 2 +> [42885] repeat: 175 +> [42886] repeat)--solely: 1 +> [42887] repeat, [42888] repeated: 527 +> [42889] repeated--of: 1 +> [42890] repeated--she: 1 +> [42891] repeatedly: 27 +> [42892] repeating: 92 +> [42893] repeating--"excellent: 1 +> [42894] repeats: 11 +> [42895] repel: 7 +> [42896] repellant: 1 +> [42897] repelled: 10 +> [42898] repellent: 5 +> [42899] repelling: 6 +> [42900] repels: 1 +> [42901] repent: 33 +> [42902] repentance: 29 +> [42903] repentance--burning: 1 +> [42904] repentance. [42905] repentant: 7 +> [42906] repented: 28 +> [42907] repenteth: 1 +> [42908] repenting: 4 +> [42909] repents: 3 +> [42910] repetition: 14 +> [42911] repetitions: 1 +> [42912] repine: 5 +> [42913] repined: 1 +> [42914] repining: 1 +> [42915] replace: 41 +> [42916] replaceable: 1 +> [42917] replaced: 43 +> [42918] replacement: 95 +> [42919] replaces: 3 +> [42920] replacing: 7 +> [42921] replaited: 1 +> [42922] replaiting: 1 +> [42923] replenished: 1 +> [42924] repletion: 1 +> [42925] replica: 1 +> [42926] replied: 764 +> [42927] replied,--fair: 1 +> [42928] replies: 23 +> [42929] reply: 304 +> [42930] reply--the: 1 +> [42931] reply--which: 1 +> [42932] reply.”: 1 +> [42933] replying: 36 +> [42934] repnin: 6 +> [42935] report: 172 +> [42936] report--which: 1 +> [42937] reported: 97 +> [42938] reporter: 1 +> [42939] reporting: 13 +> [42940] reports: 84 +> [42941] repose: 19 +> [42942] repose--suddenly: 1 +> [42943] reposes: 1 +> [42944] reposing: 1 +> [42945] repository: 1 +> [42946] reprehended: 1 +> [42947] reprehensible: 6 +> [42948] represent: 32 +> [42949] representation: 8 +> [42950] representations: 22 +> [42951] representative: 29 +> [42952] representatives: 17 +> [42953] represented: 49 +> [42954] represented—sometimes: 1 +> [42955] representing: 16 +> [42956] represents: 14 +> [42957] repress: 14 +> [42958] repressed: 11 +> [42959] repressing: 6 +> [42960] reprieve: 1 +> [42961] reprieved: 3 +> [42962] reprimand: 7 +> [42963] reprimanded: 4 +> [42964] reprimanding: 2 +> [42965] reproach: 111 +> [42966] reproach? [42967] reproached: 43 +> [42968] reproaches: 32 +> [42969] reproachful: 12 +> [42970] reproachfully: 34 +> [42971] reproachfulness: 4 +> [42972] reproaching: 16 +> [42973] reprobate: 3 +> [42974] reproche: 1 +> [42975] reproduce: 6 +> [42976] reproduced: 4 +> [42977] reproduces: 2 +> [42978] reproducing: 1 +> [42979] reproof: 4 +> [42980] reproofs: 1 +> [42981] reprove: 4 +> [42982] reproved: 4 +> [42983] reproving: 1 +> [42984] reprovingly: 2 +> [42985] reptile: 15 +> [42986] republic: 3 +> [42987] republican: 7 +> [42988] republican--the: 1 +> [42989] republicanism: 1 +> [42990] republished: 1 +> [42991] repudiate: 9 +> [42992] repudiated: 9 +> [42993] repudiation: 3 +> [42994] repugnance: 14 +> [42995] repugnant: 7 +> [42996] repulse: 6 +> [42997] repulsed: 20 +> [42998] repulsion: 41 +> [42999] repulsive: 30 +> [43000] repulsive--the: 1 +> [43001] repulsively: 2 +> [43002] repurchasing: 1 +> [43003] reputable: 1 +> [43004] reputation: 85 +> [43005] reputation--expected: 1 +> [43006] reputations: 3 +> [43007] repute: 1 +> [43008] reputed: 5 +> [43009] request: 114 +> [43010] request--that: 1 +> [43011] requested: 19 +> [43012] requesting: 6 +> [43013] requests: 12 +> [43014] requiem: 4 +> [43015] requiems: 2 +> [43016] require: 56 +> [43017] required: 158 +> [43018] required, [43019] required--and: 1 +> [43020] requirement: 6 +> [43021] requirements: 90 +> [43022] requirements--a: 1 +> [43023] requires: 34 +> [43024] requiring: 8 +> [43025] requisite: 13 +> [43026] requisites: 1 +> [43027] requisition: 1 +> [43028] requital: 1 +> [43029] requite: 1 +> [43030] rere-supper: 1 +> [43031] reread: 4 +> [43032] reredos: 1 +> [43033] res: 2 +> [43034] rescind: 1 +> [43035] rescript: 6 +> [43036] rescue: 31 +> [43037] rescued: 17 +> [43038] rescuing: 3 +> [43039] research: 47 +> [43040] research--that's: 1 +> [43041] reseat: 1 +> [43042] reseated: 4 +> [43043] reseating: 1 +> [43044] resemblance: 12 +> [43045] resemble: 7 +> [43046] resembled: 13 +> [43047] resembles: 5 +> [43048] resembling: 18 +> [43049] resent: 9 +> [43050] resented: 20 +> [43051] resentful: 13 +> [43052] resentfully: 8 +> [43053] resenting: 3 +> [43054] resentment: 68 +> [43055] resentment--why: 5 +> [43056] resentments: 5 +> [43057] reservation: 2 +> [43058] reservations: 1 +> [43059] reserve: 55 +> [43060] reserve, [43061] reserved: 34 +> [43062] reserves: 9 +> [43063] reserving: 1 +> [43064] reservoir: 1 +> [43065] reside: 2 +> [43066] resided: 1 +> [43067] residence: 10 +> [43068] residence--five-sixths: 1 +> [43069] resident: 6 +> [43070] residents: 6 +> [43071] resides: 3 +> [43072] residing: 2 +> [43073] residual: 1 +> [43074] residue: 41 +> [43075] residue._--subtract: 1 +> [43076] residuum: 1 +> [43077] resign: 6 +> [43078] resignation: 10 +> [43079] resigned: 22 +> [43080] resignedly: 1 +> [43081] resigning: 3 +> [43082] resin: 15 +> [43083] resina: 2 +> [43084] resinous: 1 +> [43085] resist: 71 +> [43086] resistance: 26 +> [43087] resistant: 1 +> [43088] resisted: 13 +> [43089] resisting: 7 +> [43090] resistless: 1 +> [43091] resists: 4 +> [43092] resolidifies: 1 +> [43093] resolute: 76 +> [43094] resolute--they: 1 +> [43095] resolutely: 74 +> [43096] resolution: 67 +> [43097] resolution, [43098] resolution--that: 1 +> [43099] resolution. [43100] resolution [43101] resolutions: 8 +> [43102] resolve: 19 +> [43103] resolve;--it: 1 +> [43104] resolved: 103 +> [43105] resolves: 2 +> [43106] resolving: 5 +> [43107] resonance: 3 +> [43108] resonant: 4 +> [43109] resonantly: 1 +> [43110] resorcinol: 1 +> [43111] resort: 11 +> [43112] resorted: 6 +> [43113] resorting: 3 +> [43114] resorts: 2 +> [43115] resound: 1 +> [43116] resounded: 18 +> [43117] resounding: 7 +> [43118] resource: 12 +> [43119] resource--flattery: 1 +> [43120] resourceful: 1 +> [43121] resourcefulness: 3 +> [43122] resources: 12 +> [43123] resp--yes: 1 +> [43124] respect: 352 +> [43125] respect--"that: 1 +> [43126] respect--a: 1 +> [43127] respect--since: 1 +> [43128] respectability: 5 +> [43129] respectable: 57 +> [43130] respectable--tact: 1 +> [43131] respectable-looking: 2 +> [43132] respectably: 2 +> [43133] respected: 82 +> [43134] respecters: 1 +> [43135] respectful: 77 +> [43136] respectfully: 91 +> [43137] respectfulness: 2 +> [43138] respecting: 16 +> [43139] respective: 8 +> [43140] respectively: 5 +> [43141] respectively,--were: 1 +> [43142] respects: 42 +> [43143] respects'--that's: 1 +> [43144] respiration: 1 +> [43145] respite: 10 +> [43146] resplendent: 2 +> [43147] respond: 18 +> [43148] responded: 65 +> [43149] respondent: 1 +> [43150] responding: 4 +> [43151] responds: 1 +> [43152] response: 25 +> [43153] responses: 2 +> [43154] responsibilities: 2 +> [43155] responsibility: 38 +> [43156] responsibility'--that's: 1 +> [43157] responsibility--nay: 1 +> [43158] responsibility--no: 1 +> [43159] responsibility. [43160] responsible: 62 +> [43161] responsible—the: 1 +> [43162] responsive: 6 +> [43163] respstmt: 2 +> [43164] resslich: 7 +> [43165] resslich's: 4 +> [43166] rest: 494 +> [43167] rest,’: 1 +> [43168] rest--but: 1 +> [43169] rest. [43170] restarted: 1 +> [43171] restatement: 1 +> [43172] restaurant: 26 +> [43173] restaurants: 3 +> [43174] rested: 59 +> [43175] restful: 6 +> [43176] restfully: 1 +> [43177] resting: 45 +> [43178] resting-place: 4 +> [43179] restitution: 1 +> [43180] restitution--king: 1 +> [43181] restive: 7 +> [43182] restiveness: 1 +> [43183] restless: 42 +> [43184] restlessly: 16 +> [43185] restlessness: 11 +> [43186] restoration: 15 +> [43187] restorative: 2 +> [43188] restore: 35 +> [43189] restored: 32 +> [43190] restores: 2 +> [43191] restoring: 5 +> [43192] restrain: 116 +> [43193] restrained: 43 +> [43194] restraining: 21 +> [43195] restrains: 1 +> [43196] restraint: 20 +> [43197] restraints: 2 +> [43198] restricted: 5 +> [43199] restricted--seemed: 1 +> [43200] restriction: 2 +> [43201] restrictions: 43 +> [43202] restricts: 1 +> [43203] rests: 21 +> [43204] resublimed: 1 +> [43205] result: 202 +> [43206] result--the: 1 +> [43207] resultant: 11 +> [43208] resulted: 12 +> [43209] resulted--moment: 1 +> [43210] resulted--that: 1 +> [43211] resulting: 15 +> [43212] results: 108 +> [43213] results. [43214] resume: 5 +> [43215] resumed: 43 +> [43216] resumed--"she: 1 +> [43217] resuming: 5 +> [43218] resumption: 2 +> [43219] resurrected: 1 +> [43220] resurrection: 67 +> [43221] resurrection-doctrine: 3 +> [43222] resurrection-gospel: 1 +> [43223] resuscitated: 3 +> [43224] retail: 1 +> [43225] retailed: 1 +> [43226] retailing: 1 +> [43227] retain: 28 +> [43228] retained: 24 +> [43229] retainer: 1 +> [43230] retainers: 3 +> [43231] retaining: 10 +> [43232] retains: 4 +> [43233] retaken: 2 +> [43234] retaliate: 2 +> [43235] retard: 1 +> [43236] retarded: 1 +> [43237] retards: 2 +> [43238] retell: 1 +> [43239] retelling: 1 +> [43240] retention: 1 +> [43241] retentive: 2 +> [43242] reticence: 4 +> [43243] reticence--ah: 1 +> [43244] reticent: 3 +> [43245] reticule: 9 +> [43246] retinue: 3 +> [43247] retinues: 1 +> [43248] retire: 48 +> [43249] retire--an: 1 +> [43250] retired: 82 +> [43251] retired--eropegoff--kapiton: 1 +> [43252] retirement: 8 +> [43253] retires: 3 +> [43254] retiring: 20 +> [43255] retort: 19 +> [43256] retort-made: 2 +> [43257] retorted: 113 +> [43258] retorting: 1 +> [43259] retorts: 1 +> [43260] retouched: 1 +> [43261] retrace: 1 +> [43262] retraced: 5 +> [43263] retract: 1 +> [43264] retraite: 1 +> [43265] retreat: 124 +> [43266] retreat [43267] retreat? [43268] retreated: 37 +> [43269] retreating: 38 +> [43270] retreats: 3 +> [43271] retribution: 4 +> [43272] retrieve: 1 +> [43273] retrieved: 2 +> [43274] retrieving: 1 +> [43275] retrograde: 1 +> [43276] retrospect: 8 +> [43277] retrospection: 2 +> [43278] retuned: 1 +> [43279] return: 422 +> [43280] return--at: 1 +> [43281] return--was: 1 +> [43282] returned: 374 +> [43283] returning: 119 +> [43284] returns: 39 +> [43285] retz: 4 +> [43286] retz--a: 1 +> [43287] retzs: 1 +> [43288] reunion: 6 +> [43289] reunite: 2 +> [43290] reunited: 2 +> [43291] reuss: 1 +> [43292] rev: 27 +> [43293] reveal: 21 +> [43294] revealed: 70 +> [43295] revealed! [43296] revealed. [43297] revealed;—the: 1 +> [43298] revealest: 1 +> [43299] revealing: 11 +> [43300] reveals: 2 +> [43301] revel: 4 +> [43302] revelation: 74 +> [43303] revelations: 15 +> [43304] reveled: 1 +> [43305] revelers: 4 +> [43306] revelled: 5 +> [43307] reveller: 1 +> [43308] revellers: 2 +> [43309] revelling: 1 +> [43310] revelry: 3 +> [43311] revels: 8 +> [43312] revenez: 1 +> [43313] revenge: 71 +> [43314] revenge, [43315] revenged: 10 +> [43316] revengeful: 10 +> [43317] revenges: 4 +> [43318] revenging: 3 +> [43319] revenue: 23 +> [43320] revenues: 3 +> [43321] reverberate: 1 +> [43322] reverberated: 4 +> [43323] reverberating: 1 +> [43324] reverberation: 1 +> [43325] revere: 2 +> [43326] revered: 8 +> [43327] reverence: 43 +> [43328] reverence's: 1 +> [43329] reverence, [43330] reverence-as: 1 +> [43331] reverenced: 2 +> [43332] reverend: 13 +> [43333] reverend--not: 1 +> [43334] reverent: 4 +> [43335] reverential: 4 +> [43336] reverently: 15 +> [43337] reverie: 15 +> [43338] reveries: 3 +> [43339] reversal: 1 +> [43340] reverse: 14 +> [43341] reversed: 6 +> [43342] reversed.”: 1 +> [43343] reverses: 1 +> [43344] reversing: 1 +> [43345] reversionary: 1 +> [43346] revert: 3 +> [43347] reverted: 3 +> [43348] reverting: 2 +> [43349] reverts: 1 +> [43350] reviendra: 4 +> [43351] review: 38 +> [43352] reviewed: 9 +> [43353] reviewer: 1 +> [43354] reviewing: 3 +> [43355] reviews: 12 +> [43356] reviews? [43357] revile: 1 +> [43358] reviling: 2 +> [43359] revised: 15 +> [43360] revising: 2 +> [43361] revision: 10 +> [43362] revisiondesc: 2 +> [43363] revisit: 3 +> [43364] revisited: 1 +> [43365] revival: 4 +> [43366] revive: 7 +> [43367] revived: 23 +> [43368] revives: 1 +> [43369] reviving: 4 +> [43370] revoir: 31 +> [43371] revoir!"--and: 1 +> [43372] revoir--probably: 1 +> [43373] revolt: 23 +> [43374] revolt--such: 1 +> [43375] revolted: 16 +> [43376] revolting: 40 +> [43377] revoltingly: 3 +> [43378] revolution: 42 +> [43379] revolution? [43380] revolutionaries: 1 +> [43381] revolutionary: 4 +> [43382] revolutionist: 3 +> [43383] revolutionists: 2 +> [43384] revolutionize: 1 +> [43385] revolutions: 5 +> [43386] revolutions--in: 1 +> [43387] revolve: 2 +> [43388] revolver: 24 +> [43389] revolvers: 1 +> [43390] revolves: 1 +> [43391] revolving: 3 +> [43392] revue: 1 +> [43393] revulsion: 14 +> [43394] revulsions: 1 +> [43395] reward: 75 +> [43396] rewarded: 15 +> [43397] rewarding: 2 +> [43398] rewards: 20 +> [43399] reweigh: 1 +> [43400] reweighed: 2 +> [43401] reweighing: 2 +> [43402] rewriting: 1 +> [43403] reëcho: 1 +> [43404] reëdits: 1 +> [43405] rhapsodies: 1 +> [43406] rhapsody: 1 +> [43407] rhetor: 22 +> [43408] rhetor's: 2 +> [43409] rhetoric: 5 +> [43410] rhetorical: 5 +> [43411] rheumatic: 2 +> [43412] rheumatism: 3 +> [43413] rheumatism! [43414] rhine: 16 +> [43415] rhino,’: 1 +> [43416] rhipheus: 1 +> [43417] rhodamine: 1 +> [43418] rhodes: 2 +> [43419] rhone: 11 +> [43420] rhyme: 11 +> [43421] rhyme, [43422] rhymes: 1 +> [43423] rhythm: 7 +> [43424] rhythmic: 6 +> [43425] rhythmical: 4 +> [43426] rhythmically: 12 +> [43427] rib: 1 +> [43428] ribald: 9 +> [43429] ribaldry: 4 +> [43430] ribbon: 48 +> [43431] ribbon--at: 1 +> [43432] ribbon-like: 1 +> [43433] ribbons: 39 +> [43434] ribbons--the: 1 +> [43435] ribbons--they: 1 +> [43436] ribot: 1 +> [43437] ribot[5: 1 +> [43438] ribs: 9 +> [43439] rice: 8 +> [43440] rich: 177 +> [43441] rich—used: 1 +> [43442] rich, [43443] rich--a: 1 +> [43444] rich--and: 1 +> [43445] rich--weak: 1 +> [43446] rich. [43447] rich? [43448] richard: 35 +> [43449] richard's: 1 +> [43450] richards: 1 +> [43451] richardson: 1 +> [43452] richelieu: 5 +> [43453] richer: 10 +> [43454] richer)--i: 1 +> [43455] richer--and: 1 +> [43456] riches: 12 +> [43457] riches--to: 1 +> [43458] richesse: 1 +> [43459] richest: 10 +> [43460] richly: 4 +> [43461] ricinoleic: 1 +> [43462] rick-burning: 1 +> [43463] rickety: 5 +> [43464] ricks: 1 +> [43465] rid: 110 +> [43466] riddance: 2 +> [43467] ridden: 56 +> [43468] ridding: 1 +> [43469] riddle: 27 +> [43470] riddle--do: 1 +> [43471] riddle? [43472] riddles: 9 +> [43473] riddles--the: 1 +> [43474] riddsley: 82 +> [43475] ride: 104 +> [43476] ride--to: 1 +> [43477] rider: 25 +> [43478] rider's: 3 +> [43479] riderless: 3 +> [43480] riders: 12 +> [43481] rides: 7 +> [43482] ridge: 4 +> [43483] ridges: 3 +> [43484] ridgeway: 5 +> [43485] ridicule: 55 +> [43486] ridiculed: 10 +> [43487] ridiculed. [43488] ridiculing: 5 +> [43489] ridiculous: 101 +> [43490] ridiculous--and: 1 +> [43491] ridiculous--that: 1 +> [43492] ridiculousness: 2 +> [43493] riding: 133 +> [43494] riding-cap: 1 +> [43495] riding-coat: 4 +> [43496] riding-coats: 1 +> [43497] riding-crop: 1 +> [43498] riding-switch: 1 +> [43499] rien: 3 +> [43500] rien, [43501] riez: 1 +> [43502] rife: 1 +> [43503] riff-raff: 8 +> [43504] rifles: 2 +> [43505] rifling: 1 +> [43506] rifts: 1 +> [43507] rig: 1 +> [43508] rig-out: 1 +> [43509] riga: 10 +> [43510] rigamarole: 1 +> [43511] rigged: 6 +> [43512] rigging: 2 +> [43513] right: 1888 +> [43514] right!--nastasia: 1 +> [43515] right! [43516] right—it's: 1 +> [43517] right—that: 1 +> [43518] right—thou: 1 +> [43519] right, [43520] right--"-murmured: 1 +> [43521] right--all: 2 +> [43522] right--along: 1 +> [43523] right--and: 1 +> [43524] right--freely: 5 +> [43525] right--he: 1 +> [43526] right--he'll: 1 +> [43527] right--i: 1 +> [43528] right--i've: 1 +> [43529] right--it: 3 +> [43530] right--not: 1 +> [43531] right--or: 1 +> [43532] right--serve: 1 +> [43533] right--serves: 1 +> [43534] right--so: 1 +> [43535] right--the: 2 +> [43536] right--they: 1 +> [43537] right--violence: 1 +> [43538] right--when: 1 +> [43539] right--you: 1 +> [43540] right-hand: 4 +> [43541] right.... [43542] right...but: 1 +> [43543] right. [43544] right. [43545] right [43546] right? [43547] righted: 3 +> [43548] righteous: 22 +> [43549] righteous, [43550] righteousness: 24 +> [43551] righteousness.’: 1 +> [43552] righteousness;’: 1 +> [43553] rightful: 17 +> [43554] righting: 1 +> [43555] rightly: 23 +> [43556] rights: 103 +> [43557] rights—who: 1 +> [43558] rights--all: 1 +> [43559] rights--and: 1 +> [43560] rights--power: 1 +> [43561] rigid: 26 +> [43562] rigidity: 6 +> [43563] rigidly: 4 +> [43564] rigmarole: 8 +> [43565] rigor: 1 +> [43566] rigour: 1 +> [43567] rigueur: 1 +> [43568] rile: 1 +> [43569] rill: 1 +> [43570] rim: 6 +> [43571] rimes: 2 +> [43572] ring: 125 +> [43573] ring--ring: 1 +> [43574] ring-bedecked: 1 +> [43575] ring-covered: 1 +> [43576] ring? [43577] ringing: 80 +> [43578] ringleaders: 1 +> [43579] ringlets: 9 +> [43580] rings: 38 +> [43581] rings--you: 1 +> [43582] rinse: 4 +> [43583] rinsed: 5 +> [43584] rinsing: 1 +> [43585] riot: 31 +> [43586] riot--perhaps: 1 +> [43587] rioted: 1 +> [43588] rioters: 9 +> [43589] rioting: 7 +> [43590] riotous: 7 +> [43591] riots: 4 +> [43592] riots--weeks: 1 +> [43593] rip: 2 +> [43594] ripe: 6 +> [43595] ripen: 2 +> [43596] ripened: 4 +> [43597] riper: 1 +> [43598] riposte: 1 +> [43599] ripped: 1 +> [43600] ripple: 1 +> [43601] ripples: 1 +> [43602] rippling: 4 +> [43603] rire: 1 +> [43604] rise: 163 +> [43605] risen: 95 +> [43606] rises: 20 +> [43607] rising: 199 +> [43608] risings: 2 +> [43609] risk: 71 +> [43610] risk--and: 1 +> [43611] risked: 14 +> [43612] risking: 4 +> [43613] risks: 10 +> [43614] risky: 7 +> [43615] ristitch--to: 1 +> [43616] ristitch-kudzhitsky: 1 +> [43617] rite: 7 +> [43618] rites: 3 +> [43619] ritual: 7 +> [43620] rival: 52 +> [43621] rival's: 3 +> [43622] rivaled: 1 +> [43623] rivalled: 2 +> [43624] rivalry: 14 +> [43625] rivals: 16 +> [43626] rivals—the: 1 +> [43627] riven: 4 +> [43628] river: 171 +> [43629] river's: 1 +> [43630] river--and: 1 +> [43631] river--to: 1 +> [43632] river-bank: 1 +> [43633] riverbank: 1 +> [43634] riverbanks: 1 +> [43635] rivers: 8 +> [43636] rivers,”: 1 +> [43637] rivers--was: 1 +> [43638] rivers.’: 1 +> [43639] riverside: 7 +> [43640] rivet: 2 +> [43641] riveted: 8 +> [43642] rivière: 1 +> [43643] rivulet: 2 +> [43644] riz: 1 +> [43645] ro--ro--rodionovitch: 1 +> [43646] road: 604 +> [43647] road! [43648] road—there: 1 +> [43649] road, [43650] road--as: 1 +> [43651] road--is: 2 +> [43652] road--like: 1 +> [43653] road--she: 1 +> [43654] road--that: 1 +> [43655] road. [43656] roadless: 1 +> [43657] roads: 47 +> [43658] roadside: 6 +> [43659] roadsides: 1 +> [43660] roadster: 1 +> [43661] roadway: 10 +> [43662] roam: 2 +> [43663] roaming: 1 +> [43664] roan: 3 +> [43665] roans: 4 +> [43666] roar: 66 +> [43667] roared: 55 +> [43668] roaring: 12 +> [43669] roars: 7 +> [43670] roast: 14 +> [43671] roasted: 5 +> [43672] roasting: 4 +> [43673] rob: 20 +> [43674] rob? [43675] robbed: 50 +> [43676] robber: 6 +> [43677] robberies: 2 +> [43678] robbers: 11 +> [43679] robbery: 29 +> [43680] robbery [43681] robbing: 12 +> [43682] robe: 25 +> [43683] robed: 1 +> [43684] robert: 24 +> [43685] robert's: 5 +> [43686] roberts: 1 +> [43687] robes: 4 +> [43688] robespierre: 2 +> [43689] robins: 1 +> [43690] robinson: 2 +> [43691] robinson's: 1 +> [43692] robs: 5 +> [43693] robust: 8 +> [43694] rocester: 1 +> [43695] rochefoucauld: 3 +> [43696] rochefoucaulds: 1 +> [43697] rochelle: 1 +> [43698] rochet: 1 +> [43699] rock: 19 +> [43700] rock-salt: 1 +> [43701] rocked: 3 +> [43702] rocket: 1 +> [43703] rocking: 8 +> [43704] rocking-chair: 1 +> [43705] rocks: 7 +> [43706] rocky: 3 +> [43707] rod: 6 +> [43708] rode: 304 +> [43709] rodez: 2 +> [43710] rodion: 97 +> [43711] rods: 2 +> [43712] rodya: 123 +> [43713] rodya's: 3 +> [43714] rodya--who: 1 +> [43715] roger: 1 +> [43716] rogers: 1 +> [43717] rogers--a: 1 +> [43718] rogojin: 341 +> [43719] rogojin's: 48 +> [43720] rogojin--an: 1 +> [43721] rogojin--but: 1 +> [43722] rogojin--hereditary: 1 +> [43723] rogojin--hung: 1 +> [43724] rogojins: 2 +> [43725] rogozhski: 2 +> [43726] rogue: 49 +> [43727] rogue—a: 1 +> [43728] rogue—but: 1 +> [43729] roguery: 2 +> [43730] rogues: 15 +> [43731] rogues. [43732] rogues? [43733] roguish: 4 +> [43734] roguishly: 1 +> [43735] roh: 1 +> [43736] rohan: 3 +> [43737] rohans: 1 +> [43738] roi: 21 +> [43739] rois: 3 +> [43740] roland: 6 +> [43741] rolandak: 1 +> [43742] rolandak's: 1 +> [43743] role: 25 +> [43744] roles: 1 +> [43745] roll: 54 +> [43746] roll-call: 1 +> [43747] rolled: 68 +> [43748] rolled-up: 3 +> [43749] roller: 4 +> [43750] rollers: 2 +> [43751] rollicking: 2 +> [43752] rolling: 41 +> [43753] rolling-pin: 1 +> [43754] rolls: 12 +> [43755] rom: 12 +> [43756] roman: 58 +> [43757] roman-petrine: 1 +> [43758] romance: 33 +> [43759] romance! [43760] romance—this: 1 +> [43761] romance? [43762] romancers: 1 +> [43763] romances: 3 +> [43764] romancing: 2 +> [43765] romanism: 3 +> [43766] romanistic: 1 +> [43767] romanists: 3 +> [43768] romanovitch: 86 +> [43769] romanovna: 109 +> [43770] romanovna's: 6 +> [43771] romans: 24 +> [43772] romantic: 54 +> [43773] romantic"--an: 4 +> [43774] romanticism: 8 +> [43775] romantics: 20 +> [43776] romantics"--german: 4 +> [43777] rome: 168 +> [43778] rome--may: 1 +> [43779] rome:—: 1 +> [43780] rome_--giving: 1 +> [43781] romeo: 7 +> [43782] rome’s: 1 +> [43783] romish: 3 +> [43784] romping: 2 +> [43785] rompue: 1 +> [43786] rond: 1 +> [43787] ronde: 2 +> [43788] rood: 3 +> [43789] roof: 93 +> [43790] roof--no: 1 +> [43791] roofed: 1 +> [43792] roofless: 1 +> [43793] roofs: 42 +> [43794] rook: 6 +> [43795] rook's: 1 +> [43796] rook--a: 1 +> [43797] room: 2464 +> [43798] room! [43799] room"--as: 1 +> [43800] room—to: 1 +> [43801] room's: 1 +> [43802] room--can: 1 +> [43803] room--easy: 1 +> [43804] room--for: 1 +> [43805] room--i: 2 +> [43806] room--proclaimed: 1 +> [43807] room--that: 3 +> [43808] room--the: 4 +> [43809] room--though: 1 +> [43810] room--we: 1 +> [43811] room--would: 1 +> [43812] room...i: 1 +> [43813] room. [43814] room? [43815] roomier: 1 +> [43816] rooms: 223 +> [43817] rooms--the: 1 +> [43818] rooms--with: 1 +> [43819] rooms. [43820] roomy: 9 +> [43821] roost: 2 +> [43822] root: 29 +> [43823] rooted: 12 +> [43824] roots: 19 +> [43825] roots—and: 1 +> [43826] rope: 39 +> [43827] roped: 1 +> [43828] ropes: 9 +> [43829] rosa: 1 +> [43830] rosary: 2 +> [43831] rose: 583 +> [43832] rose-colour: 1 +> [43833] rose-coloured: 1 +> [43834] rose-like: 1 +> [43835] rose-pink: 1 +> [43836] rosebud: 1 +> [43837] rosebushes: 1 +> [43838] rosemary: 1 +> [43839] rosenkampf: 1 +> [43840] roses: 24 +> [43841] rosette: 2 +> [43842] rosettes: 2 +> [43843] rosier: 2 +> [43844] rosin: 77 +> [43845] rosina: 2 +> [43846] rossi's: 1 +> [43847] rossini’s: 1 +> [43848] rostopchin: 103 +> [43849] rostopchin's: 21 +> [43850] rostopchine: 2 +> [43851] rostov: 715 +> [43852] rostov's: 57 +> [43853] rostov--a: 1 +> [43854] rostov--their: 1 +> [43855] rostov--though: 1 +> [43856] rostova: 24 +> [43857] rostova's: 5 +> [43858] rostovs: 159 +> [43859] rostovs--the: 1 +> [43860] rosy: 64 +> [43861] rosy-checked: 2 +> [43862] rosy-cheeked: 3 +> [43863] rosy-faced: 1 +> [43864] rot: 11 +> [43865] rot, [43866] rot. [43867] rotary: 3 +> [43868] rotate: 2 +> [43869] rotating: 1 +> [43870] rotation: 2 +> [43871] rotha: 4 +> [43872] rothschild: 4 +> [43873] rothschilds: 1 +> [43874] rotted: 2 +> [43875] rotten: 7 +> [43876] rottenness: 1 +> [43877] rotting: 10 +> [43878] rotund: 1 +> [43879] rouble: 56 +> [43880] rouble's: 1 +> [43881] roubles: 519 +> [43882] roubles! [43883] roubles—all: 1 +> [43884] roubles—but: 1 +> [43885] roubles—where: 1 +> [43886] roubles'--i: 1 +> [43887] roubles, [43888] roubles--a: 1 +> [43889] roubles--consisted: 1 +> [43890] roubles--i: 1 +> [43891] roubles--paid: 1 +> [43892] roubles--to: 1 +> [43893] roubles. [43894] roubles? [43895] rouen: 6 +> [43896] rouge: 1 +> [43897] rouged: 1 +> [43898] rough: 89 +> [43899] rough--it: 1 +> [43900] rough-haired: 1 +> [43901] rough-shod: 1 +> [43902] roughened: 1 +> [43903] rougher: 3 +> [43904] roughest: 1 +> [43905] roughly: 38 +> [43906] roughly--"how: 1 +> [43907] roughness: 10 +> [43908] roumania: 1 +> [43909] round: 1459 +> [43910] round! [43911] round—and: 1 +> [43912] round'll: 1 +> [43913] round, [43914] round--as: 1 +> [43915] round--drew: 1 +> [43916] round--even: 1 +> [43917] round--has: 1 +> [43918] round--i: 1 +> [43919] round--looked: 1 +> [43920] round--that's: 1 +> [43921] round-bottomed: 1 +> [43922] round-faced: 6 +> [43923] round-shouldered: 7 +> [43924] round...i: 1 +> [43925] round...i'll: 1 +> [43926] roundabout: 4 +> [43927] rounded: 12 +> [43928] rounder: 2 +> [43929] roundheads: 1 +> [43930] roundly: 9 +> [43931] rounds: 5 +> [43932] rouse: 30 +> [43933] roused: 100 +> [43934] rouses: 2 +> [43935] rousing: 21 +> [43936] rousseau: 8 +> [43937] rousseau's: 2 +> [43938] roustan: 2 +> [43939] rout: 1 +> [43940] route: 8 +> [43941] routed: 6 +> [43942] routes: 1 +> [43943] routine: 28 +> [43944] roved: 3 +> [43945] roving: 3 +> [43946] row: 91 +> [43947] row—and: 1 +> [43948] row? [43949] rowdy: 5 +> [43950] rowdyism: 1 +> [43951] rowed: 1 +> [43952] rowing: 5 +> [43953] rowlocks: 1 +> [43954] rows: 77 +> [43955] royal: 24 +> [43956] royale: 3 +> [43957] royalist: 2 +> [43958] royalists: 1 +> [43959] royally: 2 +> [43960] royalties: 38 +> [43961] royalty: 60 +> [43962] royaute: 1 +> [43963] rrrr: 1 +> [43964] rt: 1 +> [43965] rtishtcheva: 1 +> [43966] rub: 18 +> [43967] rub--unless: 1 +> [43968] rubbed: 51 +> [43969] rubber: 6 +> [43970] rubbers: 2 +> [43971] rubbing: 60 +> [43972] rubbish: 47 +> [43973] rubbish! [43974] rubbish--those: 1 +> [43975] rubbish--though: 1 +> [43976] rubbishly: 1 +> [43977] rubbishy: 1 +> [43978] rubbles: 1 +> [43979] rubens: 1 +> [43980] rubicund: 1 +> [43981] rubies: 1 +> [43982] rubinstein: 1 +> [43983] ruble: 8 +> [43984] rubles: 100 +> [43985] rubles--to: 2 +> [43986] rubs: 3 +> [43987] ruby: 3 +> [43988] ruche: 1 +> [43989] ruches: 1 +> [43990] ruck: 1 +> [43991] ruddily: 1 +> [43992] ruddy: 18 +> [43993] rude: 82 +> [43994] rudely: 28 +> [43995] rudeness: 37 +> [43996] rudeness--unintentional: 4 +> [43997] rudenesses: 1 +> [43998] ruder: 5 +> [43999] rudest: 3 +> [44000] rudiments: 1 +> [44001] rudin: 1 +> [44002] rudnick: 1 +> [44003] rue: 19 +> [44004] ruefully: 2 +> [44005] ruffed: 1 +> [44006] ruffian: 13 +> [44007] ruffianly: 1 +> [44008] ruffians: 8 +> [44009] ruffle: 4 +> [44010] ruffled: 5 +> [44011] ruffles: 2 +> [44012] ruffling: 3 +> [44013] ruffs: 1 +> [44014] rug: 35 +> [44015] rug-covered: 1 +> [44016] rugay: 8 +> [44017] rugayushka: 2 +> [44018] rugged: 4 +> [44019] rugs: 15 +> [44020] rugs--and: 1 +> [44021] ruin: 147 +> [44022] ruin--i: 1 +> [44023] ruined: 110 +> [44024] ruined [44025] ruining: 16 +> [44026] ruinous: 5 +> [44027] ruins: 20 +> [44028] rule: 160 +> [44029] rule,--everything: 1 +> [44030] rule--and: 1 +> [44031] rule--not: 1 +> [44032] rule. [44033] ruled: 15 +> [44034] ruler: 25 +> [44035] ruler-administrator: 1 +> [44036] rulers: 26 +> [44037] rulership: 1 +> [44038] rules: 141 +> [44039] rules--as: 1 +> [44040] ruling: 9 +> [44041] rum: 17 +> [44042] rumble: 9 +> [44043] rumbled: 4 +> [44044] rumbling: 4 +> [44045] ruminate: 1 +> [44046] ruminated: 2 +> [44047] rummage: 1 +> [44048] rummaged: 2 +> [44049] rummaging: 4 +> [44050] rumor: 20 +> [44051] rumored: 9 +> [44052] rumors: 28 +> [44053] rumour: 10 +> [44054] rumoured: 2 +> [44055] rumours: 20 +> [44056] rumours,--in: 1 +> [44057] rumours--of: 3 +> [44058] rumpled: 2 +> [44059] rumpus: 2 +> [44060] rumyantsev: 8 +> [44061] rumyantsovs: 1 +> [44062] run: 601 +> [44063] run! [44064] run, [44065] runaway: 6 +> [44066] rung: 7 +> [44067] runlet: 1 +> [44068] runner: 1 +> [44069] runners: 12 +> [44070] running: 324 +> [44071] running!—there: 1 +> [44072] running—the: 1 +> [44073] running--running: 1 +> [44074] running--that: 1 +> [44075] running. [44076] runs: 35 +> [44077] rupture: 23 +> [44078] rural: 8 +> [44079] rurik: 3 +> [44080] ruse: 6 +> [44081] rush: 111 +> [44082] rush-bottom: 1 +> [44083] rushed: 287 +> [44084] rushes: 19 +> [44085] rushing: 51 +> [44086] rushlight: 1 +> [44087] rushlights: 1 +> [44088] rusk: 1 +> [44089] rusks: 6 +> [44090] russe: 6 +> [44091] russell: 2 +> [44092] russell--lord: 1 +> [44093] russen: 2 +> [44094] russet: 3 +> [44095] russia: 352 +> [44096] russia—the: 1 +> [44097] russia's: 9 +> [44098] russia--and: 2 +> [44099] russia--barbaric: 1 +> [44100] russia--had: 1 +> [44101] russia--the: 1 +> [44102] russia--were: 1 +> [44103] russia. [44104] russia. [44105] russia? [44106] russian: 732 +> [44107] russian! [44108] russian's: 1 +> [44109] russian, [44110] russian--but: 1 +> [44111] russian--were: 1 +> [44112] russianised: 2 +> [44113] russianized: 1 +> [44114] russians: 172 +> [44115] russians--and: 1 +> [44116] russians--the: 1 +> [44117] russie: 1 +> [44118] russification: 4 +> [44119] russo-french: 1 +> [44120] rust: 2 +> [44121] rustan: 1 +> [44122] rustchuk: 1 +> [44123] rustic: 5 +> [44124] rusticating: 1 +> [44125] rusticity: 2 +> [44126] rustics: 3 +> [44127] rustle: 38 +> [44128] rustled: 2 +> [44129] rustling: 20 +> [44130] rusty: 9 +> [44131] rusty--the: 1 +> [44132] rusty-looking: 1 +> [44133] rut: 10 +> [44134] ruthless: 5 +> [44135] ruthlessly: 5 +> [44136] ruts: 12 +> [44137] rutty: 1 +> [44138] ruza: 1 +> [44139] ryabinin: 18 +> [44140] ryabinin's: 3 +> [44141] ryazan: 23 +> [44142] ryazana: 1 +> [44143] rye: 30 +> [44144] rye-beer: 3 +> [44145] ryefield: 5 +> [44146] ryezunov: 4 +> [44147] ryezunov's: 2 +> [44148] rykonty: 2 +> [44149] ryton: 1 +> [44150] règle: 2 +> [44151] réaumur: 1 +> [44152] régime: 5 +> [44153] régime_--in: 1 +> [44154] réunit: 1 +> [44155] réussi: 1 +> [44156] rôle: 12 +> [44157] rôles: 2 +> [44158] rôturiers: 1 +> [44159] s: 157 +> [44160] s'accuse: 1 +> [44161] s'en: 3 +> [44162] s'ensuit: 1 +> [44163] s'excuse: 1 +> [44164] s'help: 1 +> [44165] s's: 1 +> [44166] s-n-i-v-e-l-i-n-g: 1 +> [44167] s-saying: 1 +> [44168] s-sh: 1 +> [44169] s-someone: 1 +> [44170] s.'s: 3 +> [44171] s.d: 2 +> [44172] s.e: 1 +> [44173] s.s: 1 +> [44174] s.v: 1 +> [44175] s/he: 19 +> [44176] s_.--i: 1 +> [44177] sa: 5 +> [44178] sa-a-lary: 4 +> [44179] sabaneyev: 7 +> [44180] sabaneyev? [44181] sabastiani: 1 +> [44182] sabbath-keeping: 1 +> [44183] sabbaths: 2 +> [44184] saber: 42 +> [44185] saber--a: 1 +> [44186] sabered: 1 +> [44187] sabers: 14 +> [44188] sable: 10 +> [44189] sable-colored: 1 +> [44190] sabre: 1 +> [44191] sabretache: 5 +> [44192] sabretache..."--"keep: 1 +> [44193] sabretaches: 1 +> [44194] saccharine: 1 +> [44195] sacerdotal: 1 +> [44196] sachiez: 1 +> [44197] sack: 20 +> [44198] sack-maker: 1 +> [44199] sackcloth: 4 +> [44200] sacked: 8 +> [44201] sackful: 1 +> [44202] sacking: 7 +> [44203] sacks: 10 +> [44204] sacrament: 41 +> [44205] sacre: 2 +> [44206] sacred: 77 +> [44207] sacred.--never: 1 +> [44208] sacredness: 1 +> [44209] sacree: 2 +> [44210] sacrifice: 106 +> [44211] sacrifice, [44212] sacrificed: 30 +> [44213] sacrifices: 21 +> [44214] sacrificing: 18 +> [44215] sacrilege: 13 +> [44216] sacrilegious: 1 +> [44217] sacristan: 1 +> [44218] sacristy: 1 +> [44219] sacré: 4 +> [44220] sad: 182 +> [44221] sad,--and: 1 +> [44222] sad. [44223] sadden: 2 +> [44224] saddened: 2 +> [44225] sadder: 3 +> [44226] saddest: 2 +> [44227] saddle: 96 +> [44228] saddle--and: 1 +> [44229] saddle-bag: 2 +> [44230] saddle-bags: 4 +> [44231] saddle-bow: 1 +> [44232] saddle-girth: 2 +> [44233] saddle-horse: 1 +> [44234] saddle-horses: 2 +> [44235] saddle-horses--not: 1 +> [44236] saddlebow: 2 +> [44237] saddlecloth: 2 +> [44238] saddled: 11 +> [44239] saddler: 7 +> [44240] saddler's: 2 +> [44241] saddles: 10 +> [44242] saddling: 2 +> [44243] sadducean: 2 +> [44244] sades: 1 +> [44245] sadly: 56 +> [44246] sadness: 30 +> [44247] sadness--with: 1 +> [44248] sadovaya: 4 +> [44249] sadovy: 5 +> [44250] safe: 115 +> [44251] safeguard: 4 +> [44252] safeguarded: 1 +> [44253] safely: 34 +> [44254] safer: 11 +> [44255] safest: 4 +> [44256] safety: 56 +> [44257] safety's: 1 +> [44258] safety--and: 1 +> [44259] safety-valve: 1 +> [44260] safford: 1 +> [44261] saffron: 2 +> [44262] saffron-colored: 1 +> [44263] saffron-red: 1 +> [44264] saffron-yellow: 1 +> [44265] safi: 1 +> [44266] sagacious: 5 +> [44267] sagacity: 7 +> [44268] sage: 7 +> [44269] sage's: 1 +> [44270] sagely: 5 +> [44271] sages: 6 +> [44272] sagged: 1 +> [44273] said: 10991 +> [44274] said! [44275] said—his: 1 +> [44276] said—something: 1 +> [44277] said, [44278] said--"when: 1 +> [44279] said--a: 1 +> [44280] said--and: 1 +> [44281] said--but: 2 +> [44282] said--came: 1 +> [44283] said--from: 1 +> [44284] said--god: 1 +> [44285] said--her: 1 +> [44286] said--i: 2 +> [44287] said--involuntarily: 1 +> [44288] said--looked: 1 +> [44289] said--met: 1 +> [44290] said--obviously: 1 +> [44291] said--pressing: 1 +> [44292] said--that: 3 +> [44293] said--the: 1 +> [44294] said--twice: 1 +> [44295] said. [44296] sail: 5 +> [44297] sailed: 3 +> [44298] sailing: 10 +> [44299] sailor: 6 +> [44300] sailors: 4 +> [44301] sails: 4 +> [44302] saint: 54 +> [44303] saint's: 3 +> [44304] saint's-day: 1 +> [44305] saint, [44306] saint. [44307] sainte: 4 +> [44308] sainte-ni-touche: 1 +> [44309] sainted: 1 +> [44310] saintliness: 3 +> [44311] saintly: 6 +> [44312] saintly? [44313] saints: 42 +> [44314] saints [44315] sait: 5 +> [44316] sait-il: 1 +> [44317] saith: 12 +> [44318] sake: 375 +> [44319] sake! [44320] sake--but: 1 +> [44321] sake--i: 1 +> [44322] sake--i--as: 1 +> [44323] sake. [44324] sake. [44325] sakes: 5 +> [44326] sal: 18 +> [44327] salaamed: 1 +> [44328] salad: 2 +> [44329] salamanca: 2 +> [44330] salaries: 6 +> [44331] salary: 63 +> [44332] salaskin: 7 +> [44333] salaskin's: 1 +> [44334] sale: 27 +> [44335] sale! [44336] sale? [44337] sales: 2 +> [44338] salesman: 1 +> [44339] salient: 2 +> [44340] sallies: 4 +> [44341] sallow: 29 +> [44342] sallow-faced: 4 +> [44343] sallower: 2 +> [44344] sallowness: 1 +> [44345] sally: 11 +> [44346] salmon: 2 +> [44347] salol: 1 +> [44348] salomoni: 1 +> [44349] salon: 26 +> [44350] salons: 4 +> [44351] saloon: 6 +> [44352] salt: 143 +> [44353] salt--or: 1 +> [44354] salt-mouth: 2 +> [44355] salt-spoon: 1 +> [44356] saltanov: 3 +> [44357] saltcellar: 1 +> [44358] salted: 5 +> [44359] salting: 2 +> [44360] saltpeter: 4 +> [44361] salts: 14 +> [44362] saltykov: 3 +> [44363] salut: 1 +> [44364] salutary: 7 +> [44365] salutation: 4 +> [44366] salutations: 3 +> [44367] salute: 14 +> [44368] saluted: 21 +> [44369] saluting: 5 +> [44370] salvation: 60 +> [44371] salvation.’: 1 +> [44372] salvation? [44373] salver: 6 +> [44374] salzeneck: 2 +> [44375] sam: 2 +> [44376] sam.’: 1 +> [44377] samara: 1 +> [44378] samaria: 1 +> [44379] samaritan: 2 +> [44380] samaritans: 3 +> [44381] same: 2431 +> [44382] same)--"but: 1 +> [44383] same, [44384] same,”: 1 +> [44385] same--and: 1 +> [44386] same--if: 1 +> [44387] same--only: 1 +> [44388] same--you: 1 +> [44389] same. [44390] same? [44391] sameness: 3 +> [44392] sammt: 1 +> [44393] sammy: 3 +> [44394] samovar: 63 +> [44395] samovar--and: 1 +> [44396] samovars: 3 +> [44397] sample: 114 +> [44398] sample_--as: 1 +> [44399] sampled: 10 +> [44400] sampler: 16 +> [44401] samplers: 2 +> [44402] samples: 24 +> [44403] sampling: 28 +> [44404] samson: 3 +> [44405] samsonov: 34 +> [44406] samsonov's: 11 +> [44407] samsonov. [44408] samsonov [44409] samuel: 4 +> [44410] sancho: 3 +> [44411] sancta: 3 +> [44412] sanctification: 1 +> [44413] sanctified: 3 +> [44414] sanctify: 1 +> [44415] sanctifying: 1 +> [44416] sanction: 16 +> [44417] sanctioned: 5 +> [44418] sanctity: 3 +> [44419] sanctuary: 5 +> [44420] sanctæ: 1 +> [44421] sand: 34 +> [44422] sand--spread: 1 +> [44423] sand-dunes: 1 +> [44424] sandals: 1 +> [44425] sandars: 1 +> [44426] sanded: 1 +> [44427] sands: 4 +> [44428] sandwiches: 1 +> [44429] sandy: 2 +> [44430] sane: 14 +> [44431] sanest: 1 +> [44432] sang: 62 +> [44433] sanguinary: 3 +> [44434] sanguine: 4 +> [44435] sanhedrin: 1 +> [44436] sanina: 2 +> [44437] sanity: 3 +> [44438] sank: 186 +> [44439] sans: 4 +> [44440] santon: 24 +> [44441] santonese: 1 +> [44442] santonkirch: 2 +> [44443] sap: 6 +> [44444] saplings: 1 +> [44445] saponifiable: 2 +> [44446] saponification: 127 +> [44447] saponified: 32 +> [44448] saponifier: 10 +> [44449] saponify: 10 +> [44450] saponifying: 13 +> [44451] sapped: 3 +> [44452] sapphire: 1 +> [44453] sappho: 12 +> [44454] sappho's: 2 +> [44455] sappy: 2 +> [44456] sarafan: 1 +> [44457] saragossa: 1 +> [44458] sarah: 3 +> [44459] sarah--who: 1 +> [44460] saratov: 1 +> [44461] sarcasm: 18 +> [44462] sarcasm--"who: 1 +> [44463] sarcasms: 2 +> [44464] sarcastic: 44 +> [44465] sarcastically: 32 +> [44466] sardinia: 1 +> [44467] sardinian: 2 +> [44468] sardis: 4 +> [44469] sardonic: 1 +> [44470] sardonically: 3 +> [44471] sargent: 1 +> [44472] sarmatskys: 1 +> [44473] sarve: 2 +> [44474] sash: 9 +> [44475] sasha: 3 +> [44476] sashes: 2 +> [44477] sashka: 1 +> [44478] sat: 1151 +> [44479] sat--"she: 1 +> [44480] sat--and: 2 +> [44481] sat--was: 1 +> [44482] satan: 26 +> [44483] satan—all: 1 +> [44484] satan's: 1 +> [44485] satan--since: 1 +> [44486] satanic: 1 +> [44487] satchel: 8 +> [44488] satchels: 3 +> [44489] sated: 1 +> [44490] satellite: 2 +> [44491] satellites--the: 1 +> [44492] satiated: 1 +> [44493] satiety: 2 +> [44494] satin: 16 +> [44495] satins: 1 +> [44496] satiny: 1 +> [44497] satire: 8 +> [44498] satires: 1 +> [44499] satirical: 1 +> [44500] satirist: 3 +> [44501] satirists: 1 +> [44502] satisfaction: 170 +> [44503] satisfaction--"a: 1 +> [44504] satisfaction--as: 1 +> [44505] satisfaction--ended: 1 +> [44506] satisfaction. [44507] satisfactorily: 19 +> [44508] satisfactory: 55 +> [44509] satisfied: 166 +> [44510] satisfied—the: 1 +> [44511] satisfied--at: 1 +> [44512] satisfies: 3 +> [44513] satisfy: 58 +> [44514] satisfying: 19 +> [44515] saturated: 9 +> [44516] saturday: 11 +> [44517] saturdays: 3 +> [44518] saturnine: 2 +> [44519] satyr: 1 +> [44520] sauce: 28 +> [44521] saucepan: 4 +> [44522] saucepans: 1 +> [44523] saucer: 10 +> [44524] saucer-eyed: 1 +> [44525] saucers: 2 +> [44526] sauces: 3 +> [44527] saucily: 1 +> [44528] sauciness: 1 +> [44529] saucy: 6 +> [44530] sauerkraut: 1 +> [44531] saul: 5 +> [44532] saul's: 1 +> [44533] saunter: 1 +> [44534] sauntered: 1 +> [44535] sauntering: 6 +> [44536] sausage: 13 +> [44537] sausage-shaped: 1 +> [44538] sausage.... [44539] sausages: 7 +> [44540] saute: 3 +> [44541] sauvage: 1 +> [44542] sauve: 2 +> [44543] saux: 63 +> [44544] saux's: 1 +> [44545] saux--one: 1 +> [44546] saux--we: 1 +> [44547] savage: 74 +> [44548] savage-looking: 1 +> [44549] savagely: 27 +> [44550] savageness: 1 +> [44551] savages: 9 +> [44552] savant: 2 +> [44553] savant, [44554] savants: 1 +> [44555] savary: 4 +> [44556] save: 316 +> [44557] save--to: 1 +> [44558] saved: 155 +> [44559] saved--all: 1 +> [44560] saved. [44561] savelich: 6 +> [44562] savelich's: 1 +> [44563] saves: 8 +> [44564] saving: 55 +> [44565] savings: 3 +> [44566] savior: 3 +> [44567] saviors: 2 +> [44568] saviour: 36 +> [44569] saviour's: 1 +> [44570] saviour-god: 1 +> [44571] savishna: 3 +> [44572] savor: 1 +> [44573] savories: 2 +> [44574] savoring: 1 +> [44575] savory: 5 +> [44576] savostyanov's: 1 +> [44577] savour: 2 +> [44578] savouries: 2 +> [44579] savoury: 2 +> [44580] saw: 1998 +> [44581] saw! [44582] saw----.”: 1 +> [44583] saw--but: 1 +> [44584] saw--covered: 1 +> [44585] saw--the: 1 +> [44586] saw--unspeakable: 1 +> [44587] saw-pit: 1 +> [44588] sawdust: 1 +> [44589] sawest: 1 +> [44590] sawing: 1 +> [44591] saws: 1 +> [44592] sawyers: 1 +> [44593] saxe: 1 +> [44594] saxon: 1 +> [44595] saxons: 1 +> [44596] saxony: 1 +> [44597] say: 3268 +> [44598] say! [44599] say! [44600] say—and: 1 +> [44601] say—something: 1 +> [44602] say, [44603] say, [44604] say--"yes: 1 +> [44605] say--and: 1 +> [44606] say--as: 1 +> [44607] say--exquisite: 1 +> [44608] say--good-bye: 1 +> [44609] say--great: 1 +> [44610] say--i: 2 +> [44611] say--i-i-like: 1 +> [44612] say--in: 1 +> [44613] say--new: 2 +> [44614] say--oh: 1 +> [44615] say--she: 1 +> [44616] say--the: 1 +> [44617] say--those: 1 +> [44618] say--three: 1 +> [44619] say--through: 1 +> [44620] say--worse: 1 +> [44621] say--yes: 1 +> [44622] say--yet: 1 +> [44623] say--you: 1 +> [44624] say...i: 2 +> [44625] say. [44626] say. [44627] say.”: 1 +> [44628] say?—an: 1 +> [44629] say?—that: 1 +> [44630] say?--a: 1 +> [44631] say? [44632] sayde: 2 +> [44633] saying: 742 +> [44634] saying--a: 1 +> [44635] saying-character: 1 +> [44636] saying? [44637] sayings: 44 +> [44638] says: 472 +> [44639] says—ga: 1 +> [44640] says—moo: 1 +> [44641] says—quack: 1 +> [44642] says—umph: 1 +> [44643] says,--that: 1 +> [44644] says--and: 1 +> [44645] says--construe: 1 +> [44646] says. [44647] says:--“few: 1 +> [44648] says:--“if: 1 +> [44649] sazheens: 1 +> [44650] sca'cwow: 1 +> [44651] scab-covered: 1 +> [44652] scabbard: 2 +> [44653] scabbard—which: 1 +> [44654] scabbards: 1 +> [44655] scaevola: 1 +> [44656] scaffold: 24 +> [44657] scaffold! [44658] scaffold--a: 1 +> [44659] scaffold--that's: 1 +> [44660] scaffold. [44661] scaffolding: 4 +> [44662] scaffolds: 1 +> [44663] scalded: 4 +> [44664] scalding: 2 +> [44665] scalds: 1 +> [44666] scale: 34 +> [44667] scale--this: 1 +> [44668] scales: 7 +> [44669] scaling: 1 +> [44670] scalloped: 2 +> [44671] scallops: 2 +> [44672] scamp: 7 +> [44673] scampered: 1 +> [44674] scampering: 2 +> [44675] scan: 4 +> [44676] scandal: 73 +> [44677] scandal-loving: 1 +> [44678] scandal-monger: 5 +> [44679] scandalising: 1 +> [44680] scandalized: 1 +> [44681] scandalmonger: 1 +> [44682] scandalous: 18 +> [44683] scandals: 7 +> [44684] scanned: 46 +> [44685] scanning: 33 +> [44686] scans: 8 +> [44687] scant: 8 +> [44688] scant--consideration: 1 +> [44689] scant--too: 1 +> [44690] scantily: 1 +> [44691] scantily-lined: 1 +> [44692] scantiness: 1 +> [44693] scantly: 1 +> [44694] scanty: 24 +> [44695] scapegoat: 3 +> [44696] scapegrace: 2 +> [44697] scapegrace? [44698] scapegraces: 1 +> [44699] scar: 5 +> [44700] scarce: 14 +> [44701] scarcely: 334 +> [44702] scarcely-veiled: 1 +> [44703] scarce’--he: 1 +> [44704] scarcity: 2 +> [44705] scare: 12 +> [44706] scared: 75 +> [44707] scared--repeated: 1 +> [44708] scared. [44709] scarf: 28 +> [44710] scarf-like: 1 +> [44711] scarf-pin: 1 +> [44712] scarf-pins: 1 +> [44713] scarifier: 1 +> [44714] scaring: 6 +> [44715] scarlatina: 7 +> [44716] scarlatina--one: 1 +> [44717] scarlet: 18 +> [44718] scarlet-liveried: 1 +> [44719] scarred: 6 +> [44720] scars: 2 +> [44721] scarves: 4 +> [44722] scat: 1 +> [44723] scathing: 2 +> [44724] scathingly--"i: 1 +> [44725] scatter: 11 +> [44726] scatterbrain: 1 +> [44727] scattered: 69 +> [44728] scattering: 6 +> [44729] scatters: 3 +> [44730] scene: 208 +> [44731] scene!--mind: 1 +> [44732] scene!... [44733] scene, [44734] scene--drew: 1 +> [44735] scene--no: 1 +> [44736] scene-shifting: 1 +> [44737] scene. [44738] scene [44739] scenery: 2 +> [44740] scenes: 29 +> [44741] scent: 49 +> [44742] scented: 14 +> [44743] scenting: 6 +> [44744] scents: 2 +> [44745] scepter: 3 +> [44746] sceptic: 3 +> [44747] sceptical: 5 +> [44748] scepticism: 7 +> [44749] sceptics: 1 +> [44750] sceptre: 4 +> [44751] sceva: 2 +> [44752] schedule: 1 +> [44753] schegolskoy: 1 +> [44754] schelling: 3 +> [44755] scheme: 20 +> [44756] schemer: 1 +> [44757] schemes: 15 +> [44758] schene: 1 +> [44759] schepen: 1 +> [44760] scherbinin: 1 +> [44761] scherbinin's: 2 +> [44762] scherer: 6 +> [44763] scherer's: 1 +> [44764] schiller: 8 +> [44765] schiller—loving: 1 +> [44766] schiller's: 3 +> [44767] schilleresque: 1 +> [44768] schiosser's: 1 +> [44769] schism: 5 +> [44770] schlappanitz: 4 +> [44771] schlemihl: 1 +> [44772] schleswig-holstein: 5 +> [44773] schlosser: 1 +> [44774] schlosser's: 1 +> [44775] schmertsov: 1 +> [44776] schmidt: 8 +> [44777] schmidt's: 1 +> [44778] schmiedel: 1 +> [44779] schnapps: 1 +> [44780] schneider: 20 +> [44781] schneider's: 5 +> [44782] schneider--was: 1 +> [44783] scholar: 11 +> [44784] scholarly: 4 +> [44785] scholars: 6 +> [44786] scholarship: 5 +> [44787] schon: 17 +> [44788] schonbrunn: 4 +> [44789] schonsten: 1 +> [44790] school: 171 +> [44791] school,--dissipating: 1 +> [44792] school--how: 1 +> [44793] school-bags: 1 +> [44794] school-bell: 1 +> [44795] school-books: 1 +> [44796] school-boy: 2 +> [44797] school-fellows: 2 +> [44798] school-girlishness: 1 +> [44799] school-girls: 1 +> [44800] school. [44801] schoolboy: 33 +> [44802] schoolboy—from: 1 +> [44803] schoolboy, [44804] schoolboy. [44805] schoolboy [44806] schoolboyish: 1 +> [44807] schoolboys: 11 +> [44808] schoolboys [44809] schoolboys? [44810] schooled: 2 +> [44811] schoolfellow: 11 +> [44812] schoolfellows: 37 +> [44813] schooling: 1 +> [44814] schoolmaster: 6 +> [44815] schoolmate: 1 +> [44816] schoolmistress: 1 +> [44817] schoolroom: 5 +> [44818] schools: 39 +> [44819] schools. [44820] schoolteacher: 1 +> [44821] schopenhauer: 2 +> [44822] schoss: 16 +> [44823] schottische: 3 +> [44824] schout: 1 +> [44825] schröder: 1 +> [44826] schubert: 2 +> [44827] schultz: 1 +> [44828] schulze-delitsch: 1 +> [44829] schwa'tz: 1 +> [44830] schwach: 1 +> [44831] schwachen: 1 +> [44832] schwartzenberg: 1 +> [44833] schwarzenberg: 1 +> [44834] schweitzer: 3 +> [44835] schützburgs: 1 +> [44836] science: 119 +> [44837] science, [44838] science--the: 2 +> [44839] science? [44840] sciences: 17 +> [44841] scientific: 40 +> [44842] scientifically: 2 +> [44843] scientists: 2 +> [44844] scintillating: 2 +> [44845] scion: 6 +> [44846] scions: 3 +> [44847] scissors: 13 +> [44848] scoff: 2 +> [44849] scoffed: 3 +> [44850] scoffer: 2 +> [44851] scoffers: 8 +> [44852] scoffing: 2 +> [44853] scold: 11 +> [44854] scolded: 11 +> [44855] scolding: 22 +> [44856] scolds: 2 +> [44857] sconces: 6 +> [44858] scope: 14 +> [44859] scorch: 2 +> [44860] scorched: 10 +> [44861] scorches: 2 +> [44862] scorching: 3 +> [44863] score: 87 +> [44864] score--and: 1 +> [44865] scored: 4 +> [44866] scores: 10 +> [44867] scorn: 42 +> [44868] scorn--by: 1 +> [44869] scorned: 5 +> [44870] scornful: 21 +> [44871] scornful. [44872] scornfully: 18 +> [44873] scorning: 1 +> [44874] scorpion: 2 +> [44875] scot-free: 1 +> [44876] scotch: 7 +> [44877] scotfree: 1 +> [44878] scott: 4 +> [44879] scott's: 2 +> [44880] scottish: 2 +> [44881] scoundrel: 141 +> [44882] scoundrel! [44883] scoundrel!—that's: 1 +> [44884] scoundrel's: 1 +> [44885] scoundrel, [44886] scoundrel. [44887] scoundrel [44888] scoundrel? [44889] scoundrelly: 3 +> [44890] scoundrels: 24 +> [44891] scoundrels!—(i'm: 1 +> [44892] scoundwel: 1 +> [44893] scoundwels: 1 +> [44894] scour: 3 +> [44895] scourge: 3 +> [44896] scourged: 2 +> [44897] scourges—that's: 1 +> [44898] scouring: 26 +> [44899] scouted: 3 +> [44900] scouting: 1 +> [44901] scouting--was: 1 +> [44902] scouts: 6 +> [44903] scowl: 12 +> [44904] scowled: 19 +> [44905] scowling: 48 +> [44906] scraggy: 2 +> [44907] scramble: 3 +> [44908] scrambled: 9 +> [44909] scrambling: 3 +> [44910] scrap: 17 +> [44911] scrape: 8 +> [44912] scraped: 7 +> [44913] scrapes: 2 +> [44914] scraping: 10 +> [44915] scrapings: 2 +> [44916] scraps: 8 +> [44917] scratch: 18 +> [44918] scratched: 9 +> [44919] scratches: 1 +> [44920] scratching: 14 +> [44921] scrawl: 1 +> [44922] scrawl.”: 1 +> [44923] scrawled: 7 +> [44924] scream: 81 +> [44925] scream—the: 1 +> [44926] scream--a: 1 +> [44927] scream? [44928] screamed: 78 +> [44929] screamers--a: 1 +> [44930] screaming: 45 +> [44931] screams: 30 +> [44932] screech-owls: 1 +> [44933] screeched: 1 +> [44934] screen: 94 +> [44935] screen. [44936] screened: 9 +> [44937] screening: 4 +> [44938] screens: 6 +> [44939] screw: 22 +> [44940] screwed: 29 +> [44941] screwed-up: 1 +> [44942] screwing: 21 +> [44943] screws: 4 +> [44944] scribal: 1 +> [44945] scribble: 3 +> [44946] scribbled: 8 +> [44947] scribbler: 1 +> [44948] scribbling: 4 +> [44949] scribe: 6 +> [44950] scribe's: 1 +> [44951] scribes: 18 +> [44952] scribner's: 4 +> [44953] script: 1 +> [44954] scriptural: 2 +> [44955] scripture: 43 +> [44956] scriptures: 19 +> [44957] scrivener: 1 +> [44958] scriveners: 1 +> [44959] scrofulous: 1 +> [44960] scrofulous-looking: 1 +> [44961] scroll: 1 +> [44962] scrolls: 2 +> [44963] scrub: 3 +> [44964] scrubbed: 1 +> [44965] scrubbing: 5 +> [44966] scrubs: 1 +> [44967] scruff: 4 +> [44968] scrunching: 1 +> [44969] scruple: 9 +> [44970] scrupled: 1 +> [44971] scruples: 21 +> [44972] scrupling: 1 +> [44973] scrupules: 1 +> [44974] scrupulosity: 1 +> [44975] scrupulous: 10 +> [44976] scrupulously: 6 +> [44977] scrupulously--he: 1 +> [44978] scrutinised: 5 +> [44979] scrutinising: 9 +> [44980] scrutinize: 4 +> [44981] scrutinized: 12 +> [44982] scrutinizing: 17 +> [44983] scrutinizingly: 1 +> [44984] scrutiny: 8 +> [44985] scud: 3 +> [44986] scudding: 1 +> [44987] scuffle: 5 +> [44988] scuffling: 2 +> [44989] scullery: 1 +> [44990] scullery-maid: 1 +> [44991] scullions: 4 +> [44992] sculls: 1 +> [44993] sculptor: 2 +> [44994] sculptors: 1 +> [44995] sculpturesque: 1 +> [44996] scum: 9 +> [44997] scurried: 1 +> [44998] scurry: 1 +> [44999] scurrying: 6 +> [45000] scut: 2 +> [45001] scutcheon: 1 +> [45002] scuttle: 1 +> [45003] scuttling: 1 +> [45004] scythe: 33 +> [45005] scythes: 10 +> [45006] scythia: 1 +> [45007] scythian: 2 +> [45008] se: 11 +> [45009] se--di--tious: 1 +> [45010] sea: 81 +> [45011] sea! [45012] sea—except: 1 +> [45013] sea--you: 1 +> [45014] sea-bath: 1 +> [45015] sea-bathing: 1 +> [45016] sea-captain: 1 +> [45017] sea-chest: 1 +> [45018] sea-legs: 1 +> [45019] sea-level: 1 +> [45020] sea-shell: 1 +> [45021] sea-side: 1 +> [45022] sea-water: 1 +> [45023] seaboard: 1 +> [45024] seabourne: 1 +> [45025] seabourne's: 2 +> [45026] seabourne's--he: 1 +> [45027] seafaring: 1 +> [45028] seal: 42 +> [45029] sealed: 47 +> [45030] sealing: 10 +> [45031] sealing-wax: 1 +> [45032] seals: 14 +> [45033] sealskin: 1 +> [45034] seaman: 2 +> [45035] seamanship: 4 +> [45036] seamed: 1 +> [45037] seamen: 1 +> [45038] seams: 6 +> [45039] seamy: 2 +> [45040] seaports: 1 +> [45041] search: 102 +> [45042] search--so: 1 +> [45043] search--that: 1 +> [45044] search--there: 1 +> [45045] searched: 24 +> [45046] searcher: 1 +> [45047] searchers: 3 +> [45048] searches: 4 +> [45049] searching: 46 +> [45050] searching--and: 1 +> [45051] searchingly: 6 +> [45052] seas: 4 +> [45053] seasick: 1 +> [45054] season: 33 +> [45055] seasonable: 1 +> [45056] seasoned: 1 +> [45057] seasons: 10 +> [45058] seasons--if: 1 +> [45059] seasons--these: 1 +> [45060] seat: 324 +> [45061] seated: 129 +> [45062] seated, [45063] seating: 13 +> [45064] seats: 48 +> [45065] sebastian: 3 +> [45066] sebastopol: 1 +> [45067] sechem: 1 +> [45068] seclude: 1 +> [45069] secluded: 7 +> [45070] seclusion: 11 +> [45071] second: 654 +> [45072] second's: 5 +> [45073] second--control: 1 +> [45074] second-best: 1 +> [45075] second-century: 3 +> [45076] second-class: 3 +> [45077] second-grade: 1 +> [45078] second-hand: 1 +> [45079] second-rate: 1 +> [45080] secondarily: 2 +> [45081] secondary: 20 +> [45082] seconded: 2 +> [45083] seconder: 1 +> [45084] seconders: 2 +> [45085] secondly: 66 +> [45086] seconds: 98 +> [45087] secourable: 1 +> [45088] secrecy: 18 +> [45089] secresy: 1 +> [45090] secret: 296 +> [45091] secret!--and: 1 +> [45092] secret! [45093] secret—that: 1 +> [45094] secret, [45095] secret--in: 1 +> [45096] secret--two: 1 +> [45097] secret. [45098] secret [45099] secret? [45100] secretaries: 3 +> [45101] secretary: 69 +> [45102] secretary's: 2 +> [45103] secrete: 2 +> [45104] secretest: 1 +> [45105] secretions: 1 +> [45106] secretive: 3 +> [45107] secretly: 33 +> [45108] secretly. [45109] secrets: 52 +> [45110] secrets--and: 1 +> [45111] secrétaire: 1 +> [45112] sect: 10 +> [45113] sect.--translator's: 1 +> [45114] section: 159 +> [45115] sectional: 2 +> [45116] sections: 29 +> [45117] sections--against: 1 +> [45118] sects: 4 +> [45119] secular: 4 +> [45120] secularists: 1 +> [45121] secure: 83 +> [45122] secure, [45123] secure--so: 1 +> [45124] secured: 25 +> [45125] secured.[13: 1 +> [45126] securely: 1 +> [45127] secures: 3 +> [45128] securing: 13 +> [45129] securities: 1 +> [45130] security: 28 +> [45131] sedate: 5 +> [45132] sedately: 5 +> [45133] sedateness: 1 +> [45134] sedentary: 1 +> [45135] sedge: 3 +> [45136] sedges: 1 +> [45137] sediment: 7 +> [45138] sediment--which: 1 +> [45139] sedition: 1 +> [45140] seditious: 6 +> [45141] sedmoretzki: 1 +> [45142] seduce: 7 +> [45143] seduced: 7 +> [45144] seducer: 3 +> [45145] seducing: 8 +> [45146] seduction: 2 +> [45147] seductions: 1 +> [45148] seductive: 16 +> [45149] seductively: 1 +> [45150] seduisante: 1 +> [45151] sedulously: 2 +> [45152] sedyablyaka: 1 +> [45153] see: 3965 +> [45154] see! [45155] see"--he: 1 +> [45156] see,--another: 1 +> [45157] see, [45158] see--a: 1 +> [45159] see--all: 1 +> [45160] see--don't: 1 +> [45161] see--i: 4 +> [45162] see--it: 2 +> [45163] see--the: 1 +> [45164] see--there: 1 +> [45165] see--we: 1 +> [45166] see--what: 1 +> [45167] see--where: 1 +> [45168] see--you: 1 +> [45169] see-and: 1 +> [45170] see. [45171] see? [45172] seed: 37 +> [45173] seed-corn: 1 +> [45174] seed-pod: 1 +> [45175] seedless: 1 +> [45176] seeds: 12 +> [45177] seedy: 1 +> [45178] seeing: 644 +> [45179] seek: 102 +> [45180] seeker: 4 +> [45181] seekers: 1 +> [45182] seeketh: 3 +> [45183] seeking: 115 +> [45184] seeking. [45185] seeks: 20 +> [45186] seem: 349 +> [45187] seemed: 2186 +> [45188] seemed--at: 1 +> [45189] seemed--presented: 1 +> [45190] seemed--to: 1 +> [45191] seeming: 72 +> [45192] seemingly: 17 +> [45193] seemliness: 2 +> [45194] seemly: 6 +> [45195] seemly—is: 1 +> [45196] seems: 365 +> [45197] seems, [45198] seen: 1228 +> [45199] seen—he: 1 +> [45200] seer: 6 +> [45201] seers: 1 +> [45202] sees: 108 +> [45203] sees, [45204] seest: 3 +> [45205] seethed: 4 +> [45206] seething: 11 +> [45207] segreto_.’: 1 +> [45208] seifensieder: 6 +> [45209] seifs: 1 +> [45210] seigneur: 17 +> [45211] seigneur's: 1 +> [45212] seigneurial: 1 +> [45213] seigneurs: 3 +> [45214] sein: 3 +> [45215] seine: 3 +> [45216] seint: 1 +> [45217] seize: 51 +> [45218] seized: 268 +> [45219] seizes: 5 +> [45220] seizing: 69 +> [45221] seizure: 6 +> [45222] seldom: 60 +> [45223] select: 29 +> [45224] select--religious: 1 +> [45225] selected: 32 +> [45226] selecting: 6 +> [45227] selection: 9 +> [45228] selection--made: 1 +> [45229] selections: 1 +> [45230] selects: 1 +> [45231] seleznevsky: 2 +> [45232] self: 30 +> [45233] self-)reformation: 1 +> [45234] self--all: 1 +> [45235] self--assertive: 1 +> [45236] self--did: 1 +> [45237] self-abasement: 3 +> [45238] self-abnegating: 2 +> [45239] self-abnegation: 4 +> [45240] self-admiration: 1 +> [45241] self-adulation: 1 +> [45242] self-advertisement: 1 +> [45243] self-approbation: 1 +> [45244] self-approval: 1 +> [45245] self-assertion: 3 +> [45246] self-assertive: 1 +> [45247] self-assurance: 6 +> [45248] self-assured: 7 +> [45249] self-betrayal: 1 +> [45250] self-castigation: 1 +> [45251] self-censure: 1 +> [45252] self-cognition: 1 +> [45253] self-command: 2 +> [45254] self-commendation: 2 +> [45255] self-complacency: 3 +> [45256] self-complacent: 2 +> [45257] self-conceit: 3 +> [45258] self-condemnation: 1 +> [45259] self-condemned: 1 +> [45260] self-confidence: 24 +> [45261] self-confident: 29 +> [45262] self-confidently: 1 +> [45263] self-conquest: 1 +> [45264] self-conscious: 4 +> [45265] self-consciousness: 4 +> [45266] self-consciousness--either: 4 +> [45267] self-constraint: 1 +> [45268] self-contained: 1 +> [45269] self-contempt: 1 +> [45270] self-control: 13 +> [45271] self-controlled: 1 +> [45272] self-criticism: 3 +> [45273] self-deception: 7 +> [45274] self-defence: 4 +> [45275] self-defense: 3 +> [45276] self-denial: 1 +> [45277] self-depreciation--all: 1 +> [45278] self-derision: 2 +> [45279] self-destruction: 6 +> [45280] self-destructive: 1 +> [45281] self-discipline: 2 +> [45282] self-dissatisfaction: 2 +> [45283] self-effacement: 1 +> [45284] self-esteem: 8 +> [45285] self-evident: 5 +> [45286] self-examination: 1 +> [45287] self-flattery--calculated: 1 +> [45288] self-forgetfulness: 3 +> [45289] self-government: 3 +> [45290] self-humiliation: 1 +> [45291] self-immolation: 1 +> [45292] self-importance: 1 +> [45293] self-indulgence: 1 +> [45294] self-interest: 10 +> [45295] self-interest--house: 1 +> [45296] self-justifications: 1 +> [45297] self-knowledge: 1 +> [45298] self-knowledge--for: 1 +> [45299] self-laceration: 2 +> [45300] self-love: 3 +> [45301] self-loving: 2 +> [45302] self-mastery: 2 +> [45303] self-oblivion: 1 +> [45304] self-perfecting: 2 +> [45305] self-pity: 3 +> [45306] self-poisoner: 1 +> [45307] self-possessed: 8 +> [45308] self-possession: 17 +> [45309] self-possession--that: 1 +> [45310] self-preservation: 12 +> [45311] self-purification: 2 +> [45312] self-realization: 1 +> [45313] self-reformation: 1 +> [45314] self-reliance: 2 +> [45315] self-reliant: 2 +> [45316] self-reliant--the: 1 +> [45317] self-reproach: 8 +> [45318] self-respect: 10 +> [45319] self-respecting: 2 +> [45320] self-restraint: 4 +> [45321] self-sacrifice: 30 +> [45322] self-sacrifice--all: 1 +> [45323] self-sacrificing: 2 +> [45324] self-satisfaction: 13 +> [45325] self-satisfied: 20 +> [45326] self-seeker: 1 +> [45327] self-seeking: 1 +> [45328] self-styled: 1 +> [45329] self-supporting: 1 +> [45330] self-torment: 1 +> [45331] self-tricked: 1 +> [45332] self-will: 1 +> [45333] self-willed: 4 +> [45334] self-willed. [45335] selfish: 31 +> [45336] selfish--plans: 1 +> [45337] selfish--the: 1 +> [45338] selfishness: 12 +> [45339] selfishness--as: 1 +> [45340] selfishness--hanging: 1 +> [45341] selivanov: 1 +> [45342] sell: 85 +> [45343] seller: 5 +> [45344] sellers: 4 +> [45345] selling: 42 +> [45346] sells: 1 +> [45347] selo: 1 +> [45348] seltzer: 6 +> [45349] selvedges: 1 +> [45350] selves: 3 +> [45351] semblance: 16 +> [45352] semen: 2 +> [45353] semenov: 8 +> [45354] semenova: 2 +> [45355] semenovna: 4 +> [45356] semenovna's: 1 +> [45357] semenovsk: 15 +> [45358] semenovsk--his: 1 +> [45359] semeon: 1 +> [45360] semeonovitch: 5 +> [45361] semi: 1 +> [45362] semi-abstract: 1 +> [45363] semi-boiled: 14 +> [45364] semi-circular: 1 +> [45365] semi-consciousness: 1 +> [45366] semi-darkness: 1 +> [45367] semi-dazed: 1 +> [45368] semi-delirium: 3 +> [45369] semi-drying: 1 +> [45370] semi-pauline: 1 +> [45371] semi-popular: 2 +> [45372] semi-private: 1 +> [45373] semi-pseudonymous: 1 +> [45374] semi-solid: 3 +> [45375] semicircle: 4 +> [45376] semicircles: 2 +> [45377] semicircular: 2 +> [45378] semicolon: 1 +> [45379] semicouncil: 1 +> [45380] semidark: 1 +> [45381] semidarkness: 3 +> [45382] semiliterate: 1 +> [45383] seminarist: 1 +> [45384] seminarists: 4 +> [45385] seminary: 1 +> [45386] seminude: 1 +> [45387] semionovitch: 4 +> [45388] semionovitch's: 1 +> [45389] semiopen: 1 +> [45390] semitic: 2 +> [45391] sempstress: 1 +> [45392] semyenovna: 1 +> [45393] semyon: 146 +> [45394] semyonitch: 1 +> [45395] semyonova's: 1 +> [45396] semyonovitch: 26 +> [45397] semyonovna: 66 +> [45398] semyonovna's: 6 +> [45399] semyonovsky: 1 +> [45400] senate: 17 +> [45401] senator: 3 +> [45402] senator's: 1 +> [45403] senators: 1 +> [45404] send: 344 +> [45405] send-off: 1 +> [45406] sender: 1 +> [45407] sendest: 1 +> [45408] sending: 99 +> [45409] sends: 30 +> [45410] senile: 1 +> [45411] senility: 3 +> [45412] senior: 19 +> [45413] seniority: 7 +> [45414] seniors: 4 +> [45415] senka: 7 +> [45416] sens: 1 +> [45417] sensation: 109 +> [45418] sensation—retired: 1 +> [45419] sensation--but: 1 +> [45420] sensationally: 1 +> [45421] sensations: 35 +> [45422] sensations--and: 2 +> [45423] sense: 447 +> [45424] sense—oh: 1 +> [45425] sense--for: 1 +> [45426] sense-organ: 1 +> [45427] sense? [45428] senseless: 87 +> [45429] senseless--not: 1 +> [45430] senseless--was: 1 +> [45431] senselessly: 7 +> [45432] senselessness: 6 +> [45433] senses: 59 +> [45434] senses--and: 1 +> [45435] sensibilities: 1 +> [45436] sensibilities—do: 1 +> [45437] sensibility: 8 +> [45438] sensible: 97 +> [45439] sensible. [45440] sensibly: 15 +> [45441] sensibly? [45442] sensing: 2 +> [45443] sensitive: 50 +> [45444] sensitive! [45445] sensitively: 1 +> [45446] sensitiveness: 4 +> [45447] sensual: 11 +> [45448] sensualist: 10 +> [45449] sensualists: 1 +> [45450] sensualists [45451] sensuality: 6 +> [45452] sensuality—though: 1 +> [45453] sent: 730 +> [45454] sentence: 147 +> [45455] sentence--i: 1 +> [45456] sentenced: 10 +> [45457] sentences: 22 +> [45458] sentences. [45459] sentencing: 1 +> [45460] sententious: 1 +> [45461] sententiously: 12 +> [45462] sentiment: 21 +> [45463] sentiment--i: 1 +> [45464] sentimental: 30 +> [45465] sentimental, [45466] sentimentalists: 1 +> [45467] sentimentality: 22 +> [45468] sentimentality! [45469] sentimentality, [45470] sentimentally: 1 +> [45471] sentiments: 39 +> [45472] sentiments--colliding: 1 +> [45473] sentinel: 11 +> [45474] sentinelles: 1 +> [45475] sentinels: 9 +> [45476] sentry: 3 +> [45477] separable: 1 +> [45478] separate: 86 +> [45479] separate--adding: 1 +> [45480] separate--i: 1 +> [45481] separate--probably: 1 +> [45482] separated: 76 +> [45483] separately: 30 +> [45484] separates: 6 +> [45485] separating: 13 +> [45486] separation: 40 +> [45487] separation--for: 1 +> [45488] separator: 1 +> [45489] separatory: 6 +> [45490] sept: 1 +> [45491] september: 34 +> [45492] sepulchre: 4 +> [45493] sequel: 12 +> [45494] sequence: 16 +> [45495] sera: 3 +> [45496] serait: 1 +> [45497] seraphicus: 2 +> [45498] seraphicus—he: 1 +> [45499] seraphim: 3 +> [45500] serbia: 1 +> [45501] serenade: 1 +> [45502] serenades: 1 +> [45503] serene: 64 +> [45504] serenely: 14 +> [45505] serenity: 16 +> [45506] serf: 25 +> [45507] serf-boy: 1 +> [45508] serf-girl: 1 +> [45509] serf-labor: 1 +> [45510] serf-owner's: 1 +> [45511] serfdom: 19 +> [45512] serfs: 94 +> [45513] serfs!--can: 1 +> [45514] serfs—were: 1 +> [45515] serfs--and: 1 +> [45516] serfs--made: 1 +> [45517] serfs--the: 2 +> [45518] serfs--those: 1 +> [45519] serfs--were: 1 +> [45520] serge: 1 +> [45521] sergeant: 38 +> [45522] sergeant's: 1 +> [45523] sergeant-major: 1 +> [45524] sergeants: 5 +> [45525] sergeevich: 3 +> [45526] sergey: 314 +> [45527] sergius: 2 +> [45528] serial: 1 +> [45529] seriatim: 1 +> [45530] sericin: 1 +> [45531] series: 98 +> [45532] serious: 265 +> [45533] serious, [45534] serious--something: 1 +> [45535] serious-minded: 1 +> [45536] serious? [45537] seriously: 163 +> [45538] seriousness: 16 +> [45539] seriousness--"i: 1 +> [45540] seriousness--leaving: 1 +> [45541] sermon: 24 +> [45542] sermonized: 1 +> [45543] sermonizing: 1 +> [45544] sermons: 7 +> [45545] serpent: 5 +> [45546] serpent-like: 1 +> [45547] serpohovskoy's: 1 +> [45548] serpuhovskey: 1 +> [45549] serpuhovskoy: 36 +> [45550] serpuhovskoy's: 1 +> [45551] serpukhov: 1 +> [45552] serried: 3 +> [45553] servant: 281 +> [45554] servant's: 6 +> [45555] servant, [45556] servant--neither: 1 +> [45557] servant--outside: 1 +> [45558] servant-boy: 2 +> [45559] servant-girl: 1 +> [45560] servant-lad: 1 +> [45561] servant.”: 1 +> [45562] servants: 249 +> [45563] servants--the: 1 +> [45564] servants--without: 1 +> [45565] servant’s: 1 +> [45566] serve: 138 +> [45567] served: 113 +> [45568] servente: 3 +> [45569] server: 1 +> [45570] serves: 22 +> [45571] servia: 4 +> [45572] servian: 4 +> [45573] servians: 3 +> [45574] servianus: 1 +> [45575] service: 432 +> [45576] service, [45577] service--and: 1 +> [45578] service--command: 1 +> [45579] service--could: 1 +> [45580] service--ha: 1 +> [45581] service--had: 1 +> [45582] service--if: 2 +> [45583] service--oh: 1 +> [45584] service--the: 2 +> [45585] service-all: 1 +> [45586] service-book: 1 +> [45587] service. [45588] serviceable: 4 +> [45589] services: 55 +> [45590] servile: 13 +> [45591] servility: 7 +> [45592] servility--if: 1 +> [45593] serving: 46 +> [45594] serving-maid: 1 +> [45595] serving-maid's: 1 +> [45596] serving-maids: 1 +> [45597] serving-man: 1 +> [45598] serving-man's: 1 +> [45599] serving-men: 2 +> [45600] serving-room: 1 +> [45601] servitude: 12 +> [45602] seryozha: 111 +> [45603] seryozha's: 9 +> [45604] seryozha--sergey: 1 +> [45605] ses: 3 +> [45606] sesame: 7 +> [45607] seslavin: 2 +> [45608] session: 2 +> [45609] sessions: 3 +> [45610] sestrin: 1 +> [45611] set: 962 +> [45612] set! [45613] set-back: 1 +> [45614] set-up: 1 +> [45615] sets: 32 +> [45616] settee: 1 +> [45617] settees: 1 +> [45618] setter: 2 +> [45619] setter-dog: 1 +> [45620] setters: 1 +> [45621] setting: 128 +> [45622] settings: 3 +> [45623] settle: 114 +> [45624] settled: 285 +> [45625] settlement: 16 +> [45626] settlement--it: 1 +> [45627] settlement--the: 1 +> [45628] settlements: 2 +> [45629] settles: 5 +> [45630] settling: 49 +> [45631] settlings: 1 +> [45632] sevastopol: 2 +> [45633] sevastyanych: 1 +> [45634] seven: 292 +> [45635] seven! [45636] seven--it: 1 +> [45637] seven-hilled: 3 +> [45638] seven-year-old: 4 +> [45639] seven[31: 1 +> [45640] sevenfold: 1 +> [45641] sevens: 1 +> [45642] seventeen: 33 +> [45643] seventeenth: 2 +> [45644] seventh: 41 +> [45645] seventh! [45646] sevenths: 1 +> [45647] seventies: 3 +> [45648] seventieth: 1 +> [45649] seventy: 25 +> [45650] seventy-five: 17 +> [45651] seventy-pound: 1 +> [45652] seventy-seven: 1 +> [45653] seventy-seven--it: 1 +> [45654] seventy-three: 2 +> [45655] seventy-year-old: 1 +> [45656] sever: 1 +> [45657] several: 539 +> [45658] severance: 2 +> [45659] severe: 63 +> [45660] severe-looking: 1 +> [45661] severed: 7 +> [45662] severely: 67 +> [45663] severing: 1 +> [45664] severities: 1 +> [45665] severity: 36 +> [45666] seville: 9 +> [45667] seville. [45668] sevres: 2 +> [45669] sew: 6 +> [45670] sew? [45671] sewed: 17 +> [45672] sewene: 1 +> [45673] sewer: 1 +> [45674] sewers: 1 +> [45675] sewing: 13 +> [45676] sewn: 11 +> [45677] sews: 1 +> [45678] sex: 32 +> [45679] sex—no: 1 +> [45680] sexe: 1 +> [45681] sexes: 2 +> [45682] sexless: 1 +> [45683] sexton: 1 +> [45684] señor: 1 +> [45685] señorita: 1 +> [45686] sh: 1 +> [45687] sh--sh--sh: 1 +> [45688] sh...it's: 1 +> [45689] sha—all: 1 +> [45690] shabbiest: 2 +> [45691] shabbily: 1 +> [45692] shabbiness: 1 +> [45693] shabby: 38 +> [45694] shabby-looking: 1 +> [45695] shade: 83 +> [45696] shaded: 9 +> [45697] shades: 9 +> [45698] shading: 10 +> [45699] shadow: 94 +> [45700] shadow--and: 1 +> [45701] shadow--we: 1 +> [45702] shadowless: 1 +> [45703] shadows: 45 +> [45704] shadowy: 14 +> [45705] shady: 8 +> [45706] shaft: 27 +> [45707] shaft-bow: 10 +> [45708] shaft-horse: 2 +> [45709] shaft-horses: 1 +> [45710] shaftesbury: 1 +> [45711] shafts: 26 +> [45712] shafts--he: 1 +> [45713] shag: 1 +> [45714] shaggy: 25 +> [45715] shah's: 1 +> [45716] shahovskaya: 1 +> [45717] shake: 87 +> [45718] shake—he: 1 +> [45719] shaken: 53 +> [45720] shaken--i: 1 +> [45721] shakes: 10 +> [45722] shakespeare: 5 +> [45723] shakespeare's: 5 +> [45724] shakespeare’s: 1 +> [45725] shaking: 233 +> [45726] shako: 7 +> [45727] shakos: 8 +> [45728] shaky: 2 +> [45729] shale: 1 +> [45730] shall: 2080 +> [45731] shall! [45732] shall, [45733] shall--i: 1 +> [45734] shall--oh: 1 +> [45735] shall--you'll: 1 +> [45736] shallow: 17 +> [45737] shallowness: 3 +> [45738] shallows: 1 +> [45739] shalt: 9 +> [45740] sham: 29 +> [45741] shambled: 1 +> [45742] shame: 291 +> [45743] shame! [45744] shame--by: 1 +> [45745] shame--the: 1 +> [45746] shame--you: 1 +> [45747] shame-faced: 3 +> [45748] shame-stricken: 1 +> [45749] shame.... [45750] shame.’: 1 +> [45751] shame? [45752] shamed: 5 +> [45753] shamefaced: 23 +> [45754] shamefacedly: 2 +> [45755] shamefacedness: 1 +> [45756] shameful: 85 +> [45757] shameful! [45758] shameful--though: 1 +> [45759] shamefully: 12 +> [45760] shameless: 29 +> [45761] shameless. [45762] shamelessly: 14 +> [45763] shamelessness: 5 +> [45764] shamestruck: 1 +> [45765] shaming: 1 +> [45766] shammed: 3 +> [45767] shamming: 7 +> [45768] shampooer: 1 +> [45769] shamshevo: 10 +> [45770] shan't: 90 +> [45771] shan't? [45772] shanties: 2 +> [45773] shanty: 2 +> [45774] shape: 66 +> [45775] shape. [45776] shape? [45777] shaped: 15 +> [45778] shapeless: 5 +> [45779] shapely: 11 +> [45780] shapes: 13 +> [45781] shaping: 5 +> [45782] shapovalov: 1 +> [45783] share: 143 +> [45784] shared: 63 +> [45785] shareholder: 1 +> [45786] sharer: 4 +> [45787] sharers: 1 +> [45788] shares: 9 +> [45789] sharing: 36 +> [45790] shark-skin: 1 +> [45791] sharmer's: 1 +> [45792] sharp: 117 +> [45793] sharp! [45794] sharp-nosed: 1 +> [45795] sharp-pointed: 2 +> [45796] sharp-witted: 1 +> [45797] sharpen: 2 +> [45798] sharpened: 2 +> [45799] sharpeners: 1 +> [45800] sharpening: 5 +> [45801] sharper: 8 +> [45802] sharper-eyed: 1 +> [45803] sharpest: 1 +> [45804] sharpest-sighted: 1 +> [45805] sharply: 140 +> [45806] sharpness: 3 +> [45807] sharpshooter: 1 +> [45808] sharpshooters: 11 +> [45809] shatter: 4 +> [45810] shattered: 40 +> [45811] shatters: 4 +> [45812] shave: 9 +> [45813] shaved: 12 +> [45814] shaveling: 1 +> [45815] shavelings: 1 +> [45816] shaven: 14 +> [45817] shavers: 1 +> [45818] shaving: 56 +> [45819] shavings: 3 +> [45820] shaw: 1 +> [45821] shawl: 67 +> [45822] shawl--i: 1 +> [45823] shawls: 8 +> [45824] shcherbatov's: 1 +> [45825] shcherbaty: 3 +> [45826] shcherbaty--the: 1 +> [45827] shcherbinin: 5 +> [45828] shcherbinin's: 1 +> [45829] shcherbitov's: 1 +> [45830] she: 17579 +> [45831] she! [45832] she&mdash: 1 +> [45833] she—such: 1 +> [45834] she'd: 28 +> [45835] she'll: 75 +> [45836] she's: 311 +> [45837] she've: 1 +> [45838] she--ah: 1 +> [45839] she--better: 1 +> [45840] she--but: 1 +> [45841] she--do: 1 +> [45842] she--he: 1 +> [45843] she--his: 1 +> [45844] she--isn't: 1 +> [45845] she--she: 2 +> [45846] she--simple: 1 +> [45847] she--they: 1 +> [45848] she--well: 1 +> [45849] she--who: 1 +> [45850] she-bear: 2 +> [45851] she-devil: 2 +> [45852] she-wolf: 1 +> [45853] she?--and: 1 +> [45854] she? [45855] sheaf: 5 +> [45856] sheath: 2 +> [45857] sheath-knives: 1 +> [45858] sheathed: 4 +> [45859] sheathing: 2 +> [45860] sheaves: 8 +> [45861] shed: 151 +> [45862] shedding: 14 +> [45863] sheds: 11 +> [45864] sheep: 52 +> [45865] sheep—why: 1 +> [45866] sheep's: 1 +> [45867] sheep--i've: 1 +> [45868] sheep-dog: 6 +> [45869] sheep-hurdle: 1 +> [45870] sheep-skin: 3 +> [45871] sheepfold: 4 +> [45872] sheepish: 4 +> [45873] sheepishly: 4 +> [45874] sheepishness: 1 +> [45875] sheeps: 2 +> [45876] sheepshead: 4 +> [45877] sheepskin: 49 +> [45878] sheepskins: 1 +> [45879] sheer: 14 +> [45880] sheered: 1 +> [45881] sheet: 58 +> [45882] sheet!"--various: 1 +> [45883] sheet [45884] sheets: 19 +> [45885] shelf: 27 +> [45886] shell: 26 +> [45887] shell-like: 1 +> [45888] shellfire: 1 +> [45889] shells: 15 +> [45890] shelopaev: 1 +> [45891] shelter: 50 +> [45892] sheltered: 13 +> [45893] sheltering: 1 +> [45894] shelters: 4 +> [45895] shelves: 3 +> [45896] shepherd: 7 +> [45897] shepherdesses: 2 +> [45898] shepherds: 3 +> [45899] sherds: 1 +> [45900] sheriff: 18 +> [45901] sheriff's: 6 +> [45902] sherry: 9 +> [45903] shestilavochnaya: 1 +> [45904] shevardino: 29 +> [45905] shh: 1 +> [45906] shied: 3 +> [45907] shield: 13 +> [45908] shielded: 6 +> [45909] shielding: 3 +> [45910] shields: 2 +> [45911] shift: 13 +> [45912] shifted: 18 +> [45913] shiftily: 1 +> [45914] shiftiness: 1 +> [45915] shifting: 26 +> [45916] shiftless: 3 +> [45917] shifts: 2 +> [45918] shifty: 1 +> [45919] shil's: 1 +> [45920] shilling: 2 +> [45921] shillings: 13 +> [45922] shillings--your: 1 +> [45923] shillings.”: 1 +> [45924] shilton: 1 +> [45925] shimmering: 5 +> [45926] shin-bone: 1 +> [45927] shindy: 2 +> [45928] shine: 17 +> [45929] shines: 4 +> [45930] shineth: 2 +> [45931] shining: 105 +> [45932] shiningly: 1 +> [45933] shins: 1 +> [45934] shinshin: 26 +> [45935] shinshin's: 3 +> [45936] shinshina: 1 +> [45937] shiny: 4 +> [45938] ship: 47 +> [45939] ship's: 2 +> [45940] shipments: 1 +> [45941] shipped: 3 +> [45942] shipping: 1 +> [45943] ships: 8 +> [45944] shipwreck: 1 +> [45945] shire: 1 +> [45946] shirk: 1 +> [45947] shirked: 2 +> [45948] shirking: 1 +> [45949] shirkov: 1 +> [45950] shirt: 131 +> [45951] shirt--it: 1 +> [45952] shirt--then: 2 +> [45953] shirt-collar: 1 +> [45954] shirt-cuff: 1 +> [45955] shirt-cuffs: 1 +> [45956] shirt-front: 1 +> [45957] shirt-fronts: 2 +> [45958] shirt-fronts--most: 1 +> [45959] shirt-sleeves: 2 +> [45960] shirt. [45961] shirtfront: 1 +> [45962] shirtlike: 1 +> [45963] shirts: 25 +> [45964] shishkov: 3 +> [45965] shitov--a: 1 +> [45966] shiver: 39 +> [45967] shivered: 32 +> [45968] shivering: 52 +> [45969] shivers: 11 +> [45970] shivery: 1 +> [45971] shkvornev: 1 +> [45972] shlupik: 3 +> [45973] shlupiks: 4 +> [45974] sho: 1 +> [45975] shoabrin: 1 +> [45976] shoals: 1 +> [45977] shock: 53 +> [45978] shock--for: 1 +> [45979] shock-headed: 1 +> [45980] shocked: 22 +> [45981] shocking: 20 +> [45982] shockingly: 2 +> [45983] shocks: 7 +> [45984] shod: 7 +> [45985] shoddy: 2 +> [45986] shoe: 19 +> [45987] shoehorn: 1 +> [45988] shoeing: 2 +> [45989] shoeless: 1 +> [45990] shoemaker: 1 +> [45991] shoemakers: 1 +> [45992] shoes: 80 +> [45993] shoes,--gabriel's: 1 +> [45994] shoes, [45995] shoes--that: 1 +> [45996] shoes--was: 1 +> [45997] sholde: 2 +> [45998] shone: 100 +> [45999] shook: 306 +> [46000] shook--"as: 1 +> [46001] shoot: 75 +> [46002] shooting: 58 +> [46003] shooting-boots: 1 +> [46004] shooting-coat: 1 +> [46005] shoots: 9 +> [46006] shop: 98 +> [46007] shop—first-rate! [46008] shop-assistants: 1 +> [46009] shop-people: 1 +> [46010] shop-windows: 1 +> [46011] shopkeeper: 8 +> [46012] shopkeepers: 5 +> [46013] shopman: 10 +> [46014] shopmen: 3 +> [46015] shopping: 2 +> [46016] shops: 42 +> [46017] shore: 17 +> [46018] shoreless: 1 +> [46019] shores: 14 +> [46020] shores! [46021] shorn: 3 +> [46022] short: 620 +> [46023] short--began: 1 +> [46024] short-cropped: 2 +> [46025] short-cut: 1 +> [46026] short-legged: 1 +> [46027] short-lived: 3 +> [46028] short-sighted: 9 +> [46029] short-sightedness: 1 +> [46030] short-tempered: 1 +> [46031] short-waisted: 2 +> [46032] shortcoming: 1 +> [46033] shortcomings: 3 +> [46034] shorten: 5 +> [46035] shortened: 4 +> [46036] shorter: 24 +> [46037] shortest: 3 +> [46038] shortly: 47 +> [46039] shortly,--“you: 1 +> [46040] shortness: 2 +> [46041] shortsighted: 7 +> [46042] shot: 155 +> [46043] shot, [46044] shots: 36 +> [46045] should: 3290 +> [46046] should, [46047] shoulder: 217 +> [46048] shoulder--"she's: 1 +> [46049] shoulder--but: 1 +> [46050] shoulder-cape: 1 +> [46051] shoulder-high: 1 +> [46052] shoulder-straps: 3 +> [46053] shouldering: 7 +> [46054] shoulders: 331 +> [46055] shoulders--"he: 1 +> [46056] shoulders--they: 1 +> [46057] shouldest: 1 +> [46058] shouldn't: 102 +> [46059] shout: 95 +> [46060] shouted: 602 +> [46061] shouted--shouted: 1 +> [46062] shouting: 234 +> [46063] shouts: 94 +> [46064] shouts--and: 1 +> [46065] shove: 15 +> [46066] shoved: 5 +> [46067] shovel: 3 +> [46068] shovel--the: 1 +> [46069] shoveled: 3 +> [46070] shovels: 1 +> [46071] shoving: 4 +> [46072] show: 662 +> [46073] show--part: 1 +> [46074] show--when: 1 +> [46075] showed: 389 +> [46076] shower: 18 +> [46077] showered: 8 +> [46078] showering: 1 +> [46079] showers: 4 +> [46080] showing: 158 +> [46081] showman: 32 +> [46082] showman's: 7 +> [46083] showmen: 1 +> [46084] shown: 190 +> [46085] shows: 110 +> [46086] showy: 3 +> [46087] shrank: 39 +> [46088] shred: 1 +> [46089] shreds: 5 +> [46090] shrew: 1 +> [46091] shrewd: 33 +> [46092] shrewder: 1 +> [46093] shrewdly: 7 +> [46094] shrewish: 1 +> [46095] shrewsbury: 2 +> [46096] shriek: 21 +> [46097] shriek—it: 1 +> [46098] shriek--it: 1 +> [46099] shriek--that: 1 +> [46100] shrieked: 67 +> [46101] shrieking: 22 +> [46102] shrieks: 32 +> [46103] shrill: 54 +> [46104] shrillest: 1 +> [46105] shrilly: 14 +> [46106] shrimps: 1 +> [46107] shrine: 8 +> [46108] shrine. [46109] shrined: 1 +> [46110] shrines: 4 +> [46111] shrink: 18 +> [46112] shrinking: 18 +> [46113] shrinks: 4 +> [46114] shrivel: 1 +> [46115] shriveled: 12 +> [46116] shriveled-up: 1 +> [46117] shroud: 2 +> [46118] shrouded: 6 +> [46119] shrouds: 2 +> [46120] shrub: 1 +> [46121] shrub.”: 1 +> [46122] shrubbery: 2 +> [46123] shrubs: 3 +> [46124] shrug: 9 +> [46125] shrugged: 89 +> [46126] shrugging: 31 +> [46127] shrunk: 9 +> [46128] shrunken: 2 +> [46129] shtchedrin: 1 +> [46130] shtcherbatskaya: 13 +> [46131] shtcherbatskaya's: 2 +> [46132] shtcherbatsky: 29 +> [46133] shtcherbatsky's: 1 +> [46134] shtcherbatskys: 41 +> [46135] shtoltz: 4 +> [46136] shudder: 52 +> [46137] shuddered: 77 +> [46138] shuddered--his: 1 +> [46139] shuddered--yes: 1 +> [46140] shuddering: 46 +> [46141] shuddering--"is: 1 +> [46142] shudders: 1 +> [46143] shuffle: 3 +> [46144] shuffled: 2 +> [46145] shuffler: 1 +> [46146] shuffling: 11 +> [46147] shumkov: 12 +> [46148] shun: 5 +> [46149] shunned: 8 +> [46150] shuraev: 2 +> [46151] shut: 166 +> [46152] shut-up: 1 +> [46153] shut. [46154] shuts: 3 +> [46155] shutter: 4 +> [46156] shuttered: 3 +> [46157] shutters: 19 +> [46158] shutting: 11 +> [46159] shuya: 1 +> [46160] shy: 67 +> [46161] shying: 3 +> [46162] shyly: 23 +> [46163] shyness: 27 +> [46164] si: 9 +> [46165] siberia: 72 +> [46166] siberia! [46167] siberia--and: 1 +> [46168] siberia.... [46169] sic: 3 +> [46170] sich: 1 +> [46171] sicily: 1 +> [46172] sicily, [46173] sick: 268 +> [46174] sick! [46175] sick-list: 2 +> [46176] sick-nurse: 1 +> [46177] sick-room: 5 +> [46178] sicken: 5 +> [46179] sickened: 3 +> [46180] sickening: 13 +> [46181] sickens: 1 +> [46182] sickle: 2 +> [46183] sickliness: 2 +> [46184] sickly: 47 +> [46185] sickly-looking: 2 +> [46186] sickness: 10 +> [46187] sickroom: 1 +> [46188] side: 1164 +> [46189] side—a: 1 +> [46190] side--a: 1 +> [46191] side--acacias: 1 +> [46192] side--he: 1 +> [46193] side--his: 1 +> [46194] side--it: 1 +> [46195] side--one: 1 +> [46196] side--the: 3 +> [46197] side--which: 1 +> [46198] side--why: 1 +> [46199] side--you: 1 +> [46200] side-glance: 1 +> [46201] side-horse: 1 +> [46202] side-issues: 1 +> [46203] side-path: 1 +> [46204] side-paths: 1 +> [46205] side-pocket: 4 +> [46206] side-posts: 1 +> [46207] side-saddle: 4 +> [46208] side-streets: 1 +> [46209] side-table: 2 +> [46210] side-wall: 1 +> [46211] side-whiskers: 1 +> [46212] sideboard: 7 +> [46213] sided: 5 +> [46214] sidelong: 12 +> [46215] sidersky: 1 +> [46216] sides: 276 +> [46217] sides--and: 1 +> [46218] sideways: 43 +> [46219] sidled: 2 +> [46220] sidling: 1 +> [46221] sidon: 3 +> [46222] sidorov: 4 +> [46223] sidorych: 2 +> [46224] siege: 14 +> [46225] siege--of: 1 +> [46226] sierra: 4 +> [46227] sieur: 3 +> [46228] sieve: 5 +> [46229] sieve—that's: 1 +> [46230] sieves: 1 +> [46231] sift: 3 +> [46232] sifted: 4 +> [46233] sigh: 100 +> [46234] sighed: 127 +> [46235] sighing: 44 +> [46236] sighs: 15 +> [46237] sighs--in: 1 +> [46238] sight: 420 +> [46239] sight--children: 1 +> [46240] sight--looked: 1 +> [46241] sight-seeing: 1 +> [46242] sight-seers: 3 +> [46243] sight. [46244] sighted: 7 +> [46245] sights: 8 +> [46246] sigismund: 1 +> [46247] sign: 215 +> [46248] sign-board: 2 +> [46249] signal: 45 +> [46250] signal-box: 1 +> [46251] signaled: 2 +> [46252] signaler: 1 +> [46253] signalers: 1 +> [46254] signaling: 2 +> [46255] signalized: 2 +> [46256] signalizes: 1 +> [46257] signalled: 2 +> [46258] signalling: 1 +> [46259] signally: 1 +> [46260] signals: 25 +> [46261] signals. [46262] signals? [46263] signature: 24 +> [46264] signature--from: 1 +> [46265] signature--quick: 1 +> [46266] signature. [46267] signatures: 5 +> [46268] signboard: 2 +> [46269] signboards: 2 +> [46270] signed: 61 +> [46271] signet: 1 +> [46272] signet-ring: 1 +> [46273] significance: 139 +> [46274] significance--that: 1 +> [46275] significance [46276] significant: 47 +> [46277] significantly: 32 +> [46278] signification: 2 +> [46279] signified: 3 +> [46280] signifies: 3 +> [46281] signify: 6 +> [46282] signifying: 3 +> [46283] signing: 15 +> [46284] signpost: 1 +> [46285] signs: 130 +> [46286] sigonin: 1 +> [46287] sigonin's: 1 +> [46288] sila: 2 +> [46289] silas: 4 +> [46290] silence: 629 +> [46291] silence, [46292] silence--books: 1 +> [46293] silence--to: 1 +> [46294] silenced: 13 +> [46295] silences--filled: 1 +> [46296] silencing: 2 +> [46297] silent: 635 +> [46298] silent! [46299] silent, [46300] silent--he: 1 +> [46301] silent? [46302] silently: 136 +> [46303] silently--fearing: 1 +> [46304] silenus: 2 +> [46305] silex: 10 +> [46306] silhouetted: 1 +> [46307] silica: 7 +> [46308] silicate: 42 +> [46309] silicates: 5 +> [46310] silicic: 1 +> [46311] silicon: 1 +> [46312] silk: 91 +> [46313] silk--if: 1 +> [46314] silk-covered: 1 +> [46315] silk-curtained: 1 +> [46316] silk-embroidered: 1 +> [46317] silk-lined: 1 +> [46318] silken: 9 +> [46319] silks: 6 +> [46320] silky: 5 +> [46321] sill: 20 +> [46322] sillies: 1 +> [46323] silliest: 1 +> [46324] silliness: 8 +> [46325] silliness--oh: 3 +> [46326] silly: 113 +> [46327] silly--so: 1 +> [46328] silvanus: 6 +> [46329] silver: 113 +> [46330] silver--before: 1 +> [46331] silver-gray: 1 +> [46332] silver-haired: 2 +> [46333] silver-lit: 1 +> [46334] silver-rimmed: 1 +> [46335] silvered: 1 +> [46336] silversmith's: 1 +> [46337] silvery: 11 +> [46338] silvery-gray: 1 +> [46339] silvio: 3 +> [46340] simeon: 3 +> [46341] similar: 113 +> [46342] similarity: 1 +> [46343] similarly: 17 +> [46344] simile: 2 +> [46345] simile--some: 1 +> [46346] similes: 1 +> [46347] simmering: 2 +> [46348] simmons: 4 +> [46349] simon: 21 +> [46350] simon's: 1 +> [46351] simon,"[33: 1 +> [46352] simonds: 2 +> [46353] simonov: 136 +> [46354] simonov's: 13 +> [46355] simper: 3 +> [46356] simpered: 2 +> [46357] simpering: 4 +> [46358] simple: 302 +> [46359] simple, [46360] simple-hearted: 24 +> [46361] simple-minded: 10 +> [46362] simple-mindedness: 1 +> [46363] simplehearted: 2 +> [46364] simpler: 25 +> [46365] simplest: 41 +> [46366] simpleton: 9 +> [46367] simpleton--then: 1 +> [46368] simpleton--you: 1 +> [46369] simpletons: 4 +> [46370] simplicitas: 1 +> [46371] simplicity: 95 +> [46372] simplicity--and: 1 +> [46373] simplicity--here: 1 +> [46374] simplification: 1 +> [46375] simplified: 2 +> [46376] simplifies: 1 +> [46377] simplifying: 1 +> [46378] simply: 946 +> [46379] simply--my: 1 +> [46380] simulated: 3 +> [46381] simultaneous: 3 +> [46382] simultaneously: 26 +> [46383] sin: 128 +> [46384] sin! [46385] sin--i: 1 +> [46386] sin-offering: 1 +> [46387] sin. [46388] sinai: 1 +> [46389] since: 911 +> [46390] since--and--and--this: 1 +> [46391] since--offered: 1 +> [46392] since--since: 1 +> [46393] since--there'd: 1 +> [46394] since--they: 4 +> [46395] since--though: 1 +> [46396] since...stiva: 1 +> [46397] sincere: 87 +> [46398] sincere! [46399] sincere, [46400] sincere. [46401] sincerely: 69 +> [46402] sincerely, [46403] sincerest: 2 +> [46404] sincerity: 44 +> [46405] sincerity--not: 1 +> [46406] sincérité: 1 +> [46407] sincérité [46408] sine: 5 +> [46409] sinecure: 1 +> [46410] sinecures: 1 +> [46411] sinew: 2 +> [46412] sinews: 3 +> [46413] sinewy: 6 +> [46414] sinful: 20 +> [46415] sinfulness: 2 +> [46416] sing: 104 +> [46417] sing--was: 1 +> [46418] sing-song: 9 +> [46419] singed: 5 +> [46420] singer: 10 +> [46421] singer's: 1 +> [46422] singers: 21 +> [46423] singing: 127 +> [46424] single: 212 +> [46425] single-hearted: 1 +> [46426] singled: 1 +> [46427] singlehanded: 2 +> [46428] singles: 2 +> [46429] singly: 10 +> [46430] sings: 5 +> [46431] singsong: 4 +> [46432] singular: 14 +> [46433] singularity: 6 +> [46434] singularly: 7 +> [46435] siniavin: 2 +> [46436] sinister: 19 +> [46437] sinister-looking: 1 +> [46438] sink: 56 +> [46439] sink--philip: 1 +> [46440] sinking: 53 +> [46441] sinkings: 1 +> [46442] sinks: 12 +> [46443] sinless: 8 +> [46444] sinned: 23 +> [46445] sinner: 27 +> [46446] sinner? [46447] sinners: 24 +> [46448] sinners, [46449] sinning: 7 +> [46450] sins: 69 +> [46451] sins! [46452] sins,--for: 1 +> [46453] sins...are: 1 +> [46454] sin’: 1 +> [46455] sio_{2: 1 +> [46456] sip: 4 +> [46457] siphon: 2 +> [46458] sipped: 6 +> [46459] sipping: 10 +> [46460] sips: 1 +> [46461] sir: 648 +> [46462] sir! [46463] sir&mdash: 1 +> [46464] sir,--i: 1 +> [46465] sir, [46466] sir,’: 1 +> [46467] sir,”: 2 +> [46468] sir--and: 1 +> [46469] sir--in: 1 +> [46470] sir--me: 1 +> [46471] sir--nothing: 1 +> [46472] sir--on: 1 +> [46473] sir--took: 1 +> [46474] sir--very: 1 +> [46475] sir. [46476] sir;’: 1 +> [46477] sir? [46478] sird: 1 +> [46479] sire: 36 +> [46480] sirin: 1 +> [46481] sirius: 1 +> [46482] sirrah: 10 +> [46483] sirs: 2 +> [46484] sirs--know: 1 +> [46485] sister: 368 +> [46486] sister!”: 1 +> [46487] sister's: 46 +> [46488] sister--"it's: 1 +> [46489] sister--a: 1 +> [46490] sister--how: 1 +> [46491] sister--simply: 1 +> [46492] sister--that: 1 +> [46493] sister--the: 1 +> [46494] sister-in-law: 61 +> [46495] sister-in-law's: 11 +> [46496] sister-in-law--left: 1 +> [46497] sisterly: 2 +> [46498] sisters: 103 +> [46499] sisters,’: 1 +> [46500] sisters-in-law: 5 +> [46501] sister’s: 3 +> [46502] sistine: 2 +> [46503] sit: 515 +> [46504] sit,’: 1 +> [46505] sit.’: 1 +> [46506] site: 78 +> [46507] sitnikov: 2 +> [46508] sits: 19 +> [46509] sitting: 700 +> [46510] sitting-room: 3 +> [46511] sitting-with-the-hands-folded: 2 +> [46512] sittings: 3 +> [46513] situated: 8 +> [46514] situation: 64 +> [46515] situation,’: 1 +> [46516] situations: 6 +> [46517] sivtsev: 2 +> [46518] six: 356 +> [46519] six--must: 1 +> [46520] six-foot: 3 +> [46521] six-year-old: 1 +> [46522] sixes: 1 +> [46523] sixpence: 1 +> [46524] sixpenny: 1 +> [46525] sixteen: 42 +> [46526] sixteen--five: 1 +> [46527] sixteen-foot: 1 +> [46528] sixteen-year-old: 1 +> [46529] sixteenth: 5 +> [46530] sixth: 47 +> [46531] sixthly: 1 +> [46532] sixty: 55 +> [46533] sixty--followed: 1 +> [46534] sixty-five: 2 +> [46535] sixty-five--not: 1 +> [46536] sixty-four: 1 +> [46537] sixty-six: 1 +> [46538] sixty-three: 1 +> [46539] size: 37 +> [46540] size--well: 1 +> [46541] size. [46542] sizes: 5 +> [46543] siége: 1 +> [46544] skate: 16 +> [46545] skated: 11 +> [46546] skater: 2 +> [46547] skaters: 7 +> [46548] skater’s: 1 +> [46549] skates: 15 +> [46550] skating: 11 +> [46551] skating-ground: 2 +> [46552] skating-sleds: 1 +> [46553] skein: 2 +> [46554] skeleton: 12 +> [46555] skeleton's: 1 +> [46556] skeleton--i: 1 +> [46557] skeleton-like: 1 +> [46558] skeletons: 2 +> [46559] skep: 1 +> [46560] skeptical: 1 +> [46561] skeptically: 2 +> [46562] skepticism: 2 +> [46563] skeptics: 1 +> [46564] sketch: 15 +> [46565] sketched: 7 +> [46566] sketches: 4 +> [46567] sketchily: 1 +> [46568] sketching: 2 +> [46569] sketchy: 1 +> [46570] skies: 7 +> [46571] skilful: 8 +> [46572] skilfully: 6 +> [46573] skill: 36 +> [46574] skill--and: 1 +> [46575] skilled: 3 +> [46576] skillful: 22 +> [46577] skillfully: 8 +> [46578] skim: 1 +> [46579] skimmed: 7 +> [46580] skimmer: 4 +> [46581] skimpy: 1 +> [46582] skin: 57 +> [46583] skin-flint: 1 +> [46584] skinned: 5 +> [46585] skinny: 3 +> [46586] skins: 6 +> [46587] skip: 7 +> [46588] skipped: 9 +> [46589] skipping: 9 +> [46590] skips: 1 +> [46591] skirmish: 6 +> [46592] skirmishers: 4 +> [46593] skirmishes: 1 +> [46594] skirmishing: 4 +> [46595] skirt: 52 +> [46596] skirt--this: 1 +> [46597] skirted: 6 +> [46598] skirting: 5 +> [46599] skirts: 39 +> [46600] skittish: 1 +> [46601] skittles: 2 +> [46602] skorodumov: 1 +> [46603] skorohodov: 1 +> [46604] skoroplehin: 1 +> [46605] skotoprigonyevsk: 1 +> [46606] skotoprigonyevsk. [46607] skulk: 2 +> [46608] skulking: 3 +> [46609] skull: 26 +> [46610] skull--a: 1 +> [46611] skull-headed: 1 +> [46612] skullcap: 1 +> [46613] skulls: 2 +> [46614] sky: 182 +> [46615] sky—that's: 1 +> [46616] sky--the: 1 +> [46617] sky--what: 1 +> [46618] sky-blue: 1 +> [46619] skylight: 1 +> [46620] skyline: 2 +> [46621] slab: 3 +> [46622] slabbed: 8 +> [46623] slabber: 4 +> [46624] slabbing: 1 +> [46625] slabs: 6 +> [46626] slack: 3 +> [46627] slacken: 3 +> [46628] slackened: 6 +> [46629] slackening: 6 +> [46630] slackens: 1 +> [46631] slackness: 1 +> [46632] slack’s: 1 +> [46633] slag: 1 +> [46634] slag-heap: 1 +> [46635] slain: 11 +> [46636] slaked: 2 +> [46637] slaking: 1 +> [46638] slam: 10 +> [46639] slammed: 15 +> [46640] slamming: 5 +> [46641] slander: 17 +> [46642] slandered: 11 +> [46643] slanderer: 3 +> [46644] slanderers: 3 +> [46645] slandering: 3 +> [46646] slanderous: 1 +> [46647] slanders: 2 +> [46648] slang: 6 +> [46649] slanted: 1 +> [46650] slanting: 27 +> [46651] slap: 40 +> [46652] slapped: 16 +> [46653] slapping: 11 +> [46654] slaps: 5 +> [46655] slash: 3 +> [46656] slashed: 2 +> [46657] slat: 1 +> [46658] slate-colored: 1 +> [46659] slates: 1 +> [46660] slatternly: 2 +> [46661] slatterns: 1 +> [46662] slaughter: 8 +> [46663] slaughtered: 5 +> [46664] slaughterers: 2 +> [46665] slaughterhouse: 1 +> [46666] slaughtering: 1 +> [46667] slav: 3 +> [46668] slave: 86 +> [46669] slave-driving: 1 +> [46670] slave-girls: 2 +> [46671] slave-grown: 1 +> [46672] slave-man: 1 +> [46673] slave-slafe: 1 +> [46674] slavery: 15 +> [46675] slaves: 16 +> [46676] slaving: 1 +> [46677] slavish: 10 +> [46678] slavishly: 4 +> [46679] slavonic: 17 +> [46680] slavophile: 1 +> [46681] slavophiles: 1 +> [46682] slavs: 3 +> [46683] slay: 10 +> [46684] slaying: 2 +> [46685] slayne: 1 +> [46686] sledge: 181 +> [46687] sledge-driver: 7 +> [46688] sledge-drivers: 4 +> [46689] sledge-runners: 8 +> [46690] sledge-shafts: 1 +> [46691] sledges: 14 +> [46692] sledging: 1 +> [46693] sleek: 22 +> [46694] sleeker: 2 +> [46695] sleep: 354 +> [46696] sleep! [46697] sleep? [46698] sleeper: 4 +> [46699] sleepers: 4 +> [46700] sleepily: 2 +> [46701] sleepiness: 1 +> [46702] sleeping: 67 +> [46703] sleeping-carriage: 1 +> [46704] sleepless: 23 +> [46705] sleeplessness: 4 +> [46706] sleeps: 8 +> [46707] sleepwalking: 1 +> [46708] sleepy: 38 +> [46709] sleepy-looking: 2 +> [46710] sleet: 7 +> [46711] sleeve: 57 +> [46712] sleeve--he: 1 +> [46713] sleeve--who: 1 +> [46714] sleeve-buttons: 1 +> [46715] sleeveless: 2 +> [46716] sleeves: 44 +> [46717] sleeves--those: 1 +> [46718] sleigh: 40 +> [46719] sleigh--beside: 1 +> [46720] sleigh-ride: 1 +> [46721] sleighs: 11 +> [46722] sleight: 3 +> [46723] slender: 52 +> [46724] slender-stalked: 1 +> [46725] slender-tipped: 1 +> [46726] slept: 129 +> [46727] slept--you: 1 +> [46728] slew: 3 +> [46729] slice: 5 +> [46730] sliced: 1 +> [46731] slices: 2 +> [46732] slid: 14 +> [46733] slide: 2 +> [46734] slides: 1 +> [46735] sliding: 5 +> [46736] slight: 149 +> [46737] slighted: 11 +> [46738] slighter: 1 +> [46739] slightest: 171 +> [46740] slighting: 2 +> [46741] slightingly: 1 +> [46742] slightly: 148 +> [46743] slights: 1 +> [46744] slily: 2 +> [46745] slim: 15 +> [46746] slime: 2 +> [46747] slime-covered: 1 +> [46748] slimy: 1 +> [46749] sling: 4 +> [46750] slink: 10 +> [46751] slinking: 2 +> [46752] slip: 81 +> [46753] slipped: 95 +> [46754] slipper: 4 +> [46755] slippered: 3 +> [46756] slippers: 26 +> [46757] slippers--was: 1 +> [46758] slippery: 14 +> [46759] slipping: 31 +> [46760] slips: 5 +> [46761] slipt: 1 +> [46762] slit: 12 +> [46763] slits: 1 +> [46764] slitting: 1 +> [46765] slobbered: 1 +> [46766] slobbering: 1 +> [46767] sloboda: 4 +> [46768] slogan: 1 +> [46769] slop-basin: 1 +> [46770] slope: 26 +> [46771] sloped: 2 +> [46772] slopes: 16 +> [46773] sloping: 11 +> [46774] sloppy: 2 +> [46775] slops: 3 +> [46776] slot: 1 +> [46777] sloth: 4 +> [46778] slothful: 1 +> [46779] slothfulness: 2 +> [46780] slouch: 1 +> [46781] slouched: 1 +> [46782] slough: 1 +> [46783] sloven: 2 +> [46784] slovenliness: 1 +> [46785] slovenly: 4 +> [46786] slow: 71 +> [46787] slow-dropping: 1 +> [46788] slowcoach: 1 +> [46789] slower: 10 +> [46790] slowly: 338 +> [46791] slowly--hesitating: 1 +> [46792] slowly--to: 1 +> [46793] slowness: 4 +> [46794] sludge: 4 +> [46795] sludin: 5 +> [46796] sludin's: 2 +> [46797] sluggard: 10 +> [46798] sluggard"--why: 2 +> [46799] sluggards: 1 +> [46800] sluggish: 3 +> [46801] sluggishly: 2 +> [46802] slugs: 1 +> [46803] slumber: 6 +> [46804] slumbered: 2 +> [46805] slumbering: 8 +> [46806] slumbers: 2 +> [46807] slums: 2 +> [46808] slung: 6 +> [46809] slunk: 2 +> [46810] slur: 6 +> [46811] slurred: 2 +> [46812] slurring: 1 +> [46813] slush: 3 +> [46814] slushy: 2 +> [46815] slut: 4 +> [46816] sluts: 1 +> [46817] sluttishness: 1 +> [46818] sly: 79 +> [46819] sly, [46820] sly--after: 1 +> [46821] sly--he: 1 +> [46822] slyboots: 1 +> [46823] slyly: 15 +> [46824] slyness: 7 +> [46825] smack: 7 +> [46826] smacked: 6 +> [46827] smacking: 4 +> [46828] smacks: 2 +> [46829] small: 595 +> [46830] small--nay: 1 +> [46831] small--so: 1 +> [46832] small-boned: 1 +> [46833] small-caps: 1 +> [46834] small-pox: 2 +> [46835] small-shot: 1 +> [46836] small-souled: 1 +> [46837] small.’: 1 +> [46838] smallcaps: 1 +> [46839] smaller: 64 +> [46840] smallest: 32 +> [46841] smallish: 1 +> [46842] smallness: 4 +> [46843] smallpox: 4 +> [46844] small’: 1 +> [46845] smaragdov: 5 +> [46846] smaragdov's: 1 +> [46847] smart: 59 +> [46848] smart-looking: 3 +> [46849] smarted: 3 +> [46850] smarten: 2 +> [46851] smartened: 2 +> [46852] smartest: 1 +> [46853] smarting: 11 +> [46854] smartly: 26 +> [46855] smartness: 10 +> [46856] smash: 7 +> [46857] smashed: 15 +> [46858] smashes: 1 +> [46859] smashing: 3 +> [46860] smattering: 1 +> [46861] smear: 1 +> [46862] smeared: 18 +> [46863] smearing: 3 +> [46864] smell: 92 +> [46865] smell--as: 1 +> [46866] smelled: 9 +> [46867] smelling: 8 +> [46868] smells: 7 +> [46869] smelt: 13 +> [46870] smerdyakov: 318 +> [46871] smerdyakov! [46872] smerdyakov's: 38 +> [46873] smerdyakov, [46874] smerdyakov, [46875] smerdyakov. [46876] smerdyakov [46877] smerdyakov? [46878] smerdyastchaya: 1 +> [46879] smerdyastchaya! [46880] smile: 1197 +> [46881] smile,--but: 1 +> [46882] smile--"from: 1 +> [46883] smile--"it: 1 +> [46884] smile--already: 1 +> [46885] smile--for: 1 +> [46886] smile--his: 1 +> [46887] smile--not: 1 +> [46888] smile--that: 1 +> [46889] smiled: 484 +> [46890] smiled—i: 1 +> [46891] smiled--"no: 1 +> [46892] smiled--though: 1 +> [46893] smiles: 43 +> [46894] smiling: 524 +> [46895] smiling--and: 1 +> [46896] smiling--smiling: 1 +> [46897] smiling? [46898] smilingly: 26 +> [46899] smirched: 2 +> [46900] smirked: 1 +> [46901] smite: 4 +> [46902] smith: 45 +> [46903] smith's: 4 +> [46904] smith's--it: 1 +> [46905] smith--mr: 1 +> [46906] smithereens: 1 +> [46907] smithfield: 2 +> [46908] smiths: 3 +> [46909] smithy: 4 +> [46910] smiting: 3 +> [46911] smitten: 3 +> [46912] smock: 14 +> [46913] smock-frock: 1 +> [46914] smocked: 3 +> [46915] smoke: 235 +> [46916] smoke"--and: 1 +> [46917] smoke-grimed: 2 +> [46918] smoked: 13 +> [46919] smokeless: 1 +> [46920] smoker: 3 +> [46921] smokers: 4 +> [46922] smokes: 1 +> [46923] smoking: 57 +> [46924] smoking-cap: 1 +> [46925] smoky: 8 +> [46926] smoky-looking: 1 +> [46927] smoldering: 5 +> [46928] smolensk: 102 +> [46929] smolensk"--he: 1 +> [46930] smolensk--a: 1 +> [46931] smolyaninov: 2 +> [46932] smooth: 67 +> [46933] smooth--felt: 1 +> [46934] smooth-frozen: 3 +> [46935] smoothed: 21 +> [46936] smoother: 2 +> [46937] smoothing: 18 +> [46938] smoothly: 34 +> [46939] smoothness: 2 +> [46940] smote: 8 +> [46941] smother: 5 +> [46942] smothered: 14 +> [46943] smothering: 2 +> [46944] smouldered: 3 +> [46945] smouldering: 9 +> [46946] smudge: 1 +> [46947] smug: 2 +> [46948] smurov: 46 +> [46949] smurov! [46950] smurov's: 2 +> [46951] smurov, [46952] smurov. [46953] smurov—that's: 1 +> [46954] smutty: 1 +> [46955] smyrna: 2 +> [46956] snack: 1 +> [46957] snacks: 1 +> [46958] snaffle: 1 +> [46959] snail: 1 +> [46960] snail's: 1 +> [46961] snails: 1 +> [46962] snake: 5 +> [46963] snake--she: 1 +> [46964] snakes: 2 +> [46965] snaking: 1 +> [46966] snap: 18 +> [46967] snapped: 45 +> [46968] snapping: 10 +> [46969] snare: 4 +> [46970] snares: 7 +> [46971] snaring: 1 +> [46972] snarled: 12 +> [46973] snarling: 5 +> [46974] snatch: 21 +> [46975] snatched: 88 +> [46976] snatched--both: 1 +> [46977] snatches: 7 +> [46978] snatching: 28 +> [46979] sneak: 3 +> [46980] sneaked: 10 +> [46981] sneaks: 1 +> [46982] sneer: 41 +> [46983] sneered: 11 +> [46984] sneering: 17 +> [46985] sneeringly: 1 +> [46986] sneers: 4 +> [46987] sneeze: 2 +> [46988] sneeze. [46989] sneezed: 4 +> [46990] sneezing: 1 +> [46991] snegiryov: 17 +> [46992] snegiryov—is: 1 +> [46993] snegiryov's: 4 +> [46994] snegiryovs: 1 +> [46995] snetkov: 15 +> [46996] sniff: 6 +> [46997] sniffed: 10 +> [46998] sniffing: 12 +> [46999] snigger: 11 +> [47000] sniggered: 1 +> [47001] sniggering: 8 +> [47002] sniggers: 1 +> [47003] snipe: 37 +> [47004] sniveling: 3 +> [47005] sniveller: 1 +> [47006] snobbery: 1 +> [47007] snore: 3 +> [47008] snored: 2 +> [47009] snoring: 16 +> [47010] snort: 11 +> [47011] snorted: 13 +> [47012] snorting: 10 +> [47013] snorts: 1 +> [47014] snout: 2 +> [47015] snout--on: 1 +> [47016] snow: 307 +> [47017] snow--no: 4 +> [47018] snow-covered: 12 +> [47019] snow-drift: 8 +> [47020] snow-flakes: 2 +> [47021] snow-mountains: 1 +> [47022] snow-sprinkled: 1 +> [47023] snow-storm: 4 +> [47024] snow-white: 2 +> [47025] snowball-tree: 1 +> [47026] snowballing: 1 +> [47027] snowbanks: 1 +> [47028] snowdrift: 2 +> [47029] snowdrops: 1 +> [47030] snowed: 5 +> [47031] snowflakes: 1 +> [47032] snowing: 3 +> [47033] snows: 4 +> [47034] snowstorm: 5 +> [47035] snowy: 21 +> [47036] snowy-white: 1 +> [47037] snub: 8 +> [47038] snub-nosed: 5 +> [47039] snubbed: 2 +> [47040] snubbing: 1 +> [47041] snubs: 1 +> [47042] snuff: 9 +> [47043] snuff-box: 4 +> [47044] snuff-boxes: 1 +> [47045] snuff-taking: 1 +> [47046] snuff.’: 1 +> [47047] snuffbox: 25 +> [47048] snuffboxes: 2 +> [47049] snuffed: 2 +> [47050] snuffers: 1 +> [47051] snuffing: 3 +> [47052] snuffling: 1 +> [47053] snug: 22 +> [47054] snuggery: 2 +> [47055] snuggled: 1 +> [47056] snuggling: 5 +> [47057] snugly: 1 +> [47058] snugly-fitting: 1 +> [47059] so: 10251 +> [47060] so!--why: 1 +> [47061] so! [47062] so— [47063] so—and: 1 +> [47064] so—i: 1 +> [47065] so—on: 1 +> [47066] so—will: 1 +> [47067] so's: 4 +> [47068] so,--and-and: 1 +> [47069] so,--at: 1 +> [47070] so,--oh: 1 +> [47071] so, [47072] so,’: 2 +> [47073] so--all: 2 +> [47074] so--and: 4 +> [47075] so--as: 1 +> [47076] so--but: 3 +> [47077] so--churl: 1 +> [47078] so--for: 1 +> [47079] so--i: 3 +> [47080] so--let: 1 +> [47081] so--not: 1 +> [47082] so--parties--you: 1 +> [47083] so--quite: 1 +> [47084] so--so: 1 +> [47085] so--that: 2 +> [47086] so--the: 2 +> [47087] so--then: 1 +> [47088] so--there: 1 +> [47089] so--though: 1 +> [47090] so--to: 1 +> [47091] so--together: 1 +> [47092] so--towards: 1 +> [47093] so--you: 1 +> [47094] so-and-so: 17 +> [47095] so-and-so’s: 1 +> [47096] so-called: 46 +> [47097] so-o-onya: 1 +> [47098] so-so-irregular: 1 +> [47099] so...yes: 1 +> [47100] so. [47101] so.”: 1 +> [47102] so? [47103] so? [47104] so? [47105] so?’: 1 +> [47106] soak: 3 +> [47107] soaked: 31 +> [47108] soaking: 5 +> [47109] soap: 1086 +> [47110] soap-boilers: 1 +> [47111] soap-bubble: 2 +> [47112] soap-maker's: 1 +> [47113] soap-making: 13 +> [47114] soaped: 1 +> [47115] soaping: 1 +> [47116] soapmaker: 1 +> [47117] soapmakers: 3 +> [47118] soapmaking: 4 +> [47119] soaps: 271 +> [47120] soar: 2 +> [47121] soared: 3 +> [47122] soaring: 1 +> [47123] soars: 1 +> [47124] sob: 44 +> [47125] sobakevitch: 1 +> [47126] sobbed: 47 +> [47127] sobbing: 67 +> [47128] sober: 42 +> [47129] sober--he: 1 +> [47130] sobered: 6 +> [47131] soberer: 1 +> [47132] sobering: 2 +> [47133] soberly: 16 +> [47134] soberly--his: 1 +> [47135] soberly-clad: 1 +> [47136] soberness: 1 +> [47137] sobriety: 4 +> [47138] sobs: 102 +> [47139] soc: 1 +> [47140] sociability: 4 +> [47141] sociable: 2 +> [47142] social: 105 +> [47143] sociale: 1 +> [47144] socialism: 11 +> [47145] socialist: 9 +> [47146] socialist, [47147] socialist? [47148] socialistic: 3 +> [47149] socialists: 7 +> [47150] socialists? [47151] socially: 3 +> [47152] societies: 9 +> [47153] society: 521 +> [47154] society! [47155] society—that: 3 +> [47156] society's: 3 +> [47157] society, [47158] society,”: 1 +> [47159] society--a: 1 +> [47160] society--abolishing: 1 +> [47161] society--all: 1 +> [47162] society--both: 1 +> [47163] society--for: 1 +> [47164] society--i: 1 +> [47165] society--owing: 1 +> [47166] society--people: 1 +> [47167] society--so: 1 +> [47168] society--society: 1 +> [47169] society--that: 1 +> [47170] society--the: 1 +> [47171] society--will: 1 +> [47172] society. [47173] sociology: 3 +> [47174] sock: 11 +> [47175] socket: 2 +> [47176] sockets: 5 +> [47177] socks: 12 +> [47178] socks. [47179] socrates: 2 +> [47180] soda: 159 +> [47181] sodden: 7 +> [47182] soden: 5 +> [47183] sodium: 126 +> [47184] sodom: 6 +> [47185] sodom! [47186] sofa: 315 +> [47187] sofa—an: 1 +> [47188] sofa, [47189] sofa--and: 1 +> [47190] sofa--any: 1 +> [47191] sofa--my: 1 +> [47192] sofas: 6 +> [47193] sofron: 4 +> [47194] soft: 198 +> [47195] soft-hearted: 5 +> [47196] soft-toned: 1 +> [47197] soften: 26 +> [47198] softened: 63 +> [47199] softening: 26 +> [47200] softening-point: 1 +> [47201] softens: 5 +> [47202] softer: 11 +> [47203] softest: 1 +> [47204] softly: 210 +> [47205] softly--"but: 1 +> [47206] softly--and: 1 +> [47207] softly--oh: 1 +> [47208] softness: 26 +> [47209] softy: 2 +> [47210] sofya: 81 +> [47211] sofya's: 1 +> [47212] sohn: 14 +> [47213] sohn! [47214] sohn, [47215] sohn. [47216] sohn [47217] sohn, [47218] sohn. [47219] sohn? [47220] soil: 44 +> [47221] soil, [47222] soil--before: 1 +> [47223] soiled: 10 +> [47224] soiling: 3 +> [47225] soiree: 6 +> [47226] soirees: 5 +> [47227] soirèe: 1 +> [47228] soirée: 2 +> [47229] soit: 3 +> [47230] sojourn: 1 +> [47231] sojourning: 2 +> [47232] sokolniki: 8 +> [47233] sokolnitz: 4 +> [47234] sokolov: 6 +> [47235] sokolovitch: 4 +> [47236] sokolovitch's: 2 +> [47237] solace: 2 +> [47238] solar: 1 +> [47239] sold: 81 +> [47240] sold--long: 1 +> [47241] soldan: 1 +> [47242] soldier: 249 +> [47243] soldier's: 20 +> [47244] soldierless: 1 +> [47245] soldierly: 5 +> [47246] soldiers: 404 +> [47247] soldiers--ill-shod: 1 +> [47248] soldiers--like: 1 +> [47249] soldiers--wounded: 1 +> [47250] soldiers. [47251] soldiery: 2 +> [47252] sole: 59 +> [47253] solely: 40 +> [47254] solemn: 94 +> [47255] solemn'--but: 1 +> [47256] solemnity: 25 +> [47257] solemnization: 1 +> [47258] solemnly: 64 +> [47259] soles: 10 +> [47260] solfa: 1 +> [47261] solfeggio: 1 +> [47262] solicit: 41 +> [47263] solicitation: 19 +> [47264] solicitations: 1 +> [47265] solicited: 3 +> [47266] solicitor: 7 +> [47267] solicitous: 6 +> [47268] solicitude: 12 +> [47269] solid: 49 +> [47270] solid-looking: 1 +> [47271] solid._[24: 1 +> [47272] solidarity: 7 +> [47273] solidification: 4 +> [47274] solidified: 1 +> [47275] solidifies: 2 +> [47276] solidify: 8 +> [47277] solidifying: 3 +> [47278] solidity: 4 +> [47279] solidly: 5 +> [47280] solids: 3 +> [47281] solitary: 68 +> [47282] solitude: 76 +> [47283] solitude--she: 2 +> [47284] solitude. [47285] soll: 1 +> [47286] solo: 1 +> [47287] solomon: 25 +> [47288] solomon's: 1 +> [47289] solon: 1 +> [47290] solovieff's: 2 +> [47291] solubility: 2 +> [47292] soluble: 37 +> [47293] solution: 234 +> [47294] solution,--to: 1 +> [47295] solution--dissolve: 1 +> [47296] solution._--0.5: 1 +> [47297] solution._--7.4564: 1 +> [47298] solution_--dissolve: 4 +> [47299] solution_--old: 1 +> [47300] solution_--place: 1 +> [47301] solutions: 17 +> [47302] solvable: 1 +> [47303] solvay: 4 +> [47304] solve: 22 +> [47305] solved: 22 +> [47306] solved.[4: 1 +> [47307] solvent: 14 +> [47308] solvents: 3 +> [47309] solving: 3 +> [47310] somber: 4 +> [47311] somberly: 1 +> [47312] sombre: 27 +> [47313] sombrely: 1 +> [47314] some: 4193 +> [47315] some--but: 1 +> [47316] some--i: 1 +> [47317] some. [47318] some? [47319] somebody: 67 +> [47320] somebody's: 7 +> [47321] somebody--there--will: 1 +> [47322] someday: 5 +> [47323] somehow: 189 +> [47324] someone: 335 +> [47325] someone's: 14 +> [47326] someone--it: 1 +> [47327] someone--not: 1 +> [47328] someone?--he: 1 +> [47329] somersaults: 1 +> [47330] somerset: 1 +> [47331] something: 2698 +> [47332] something—ha: 1 +> [47333] something—an: 1 +> [47334] something—money: 1 +> [47335] something—something: 1 +> [47336] something's: 1 +> [47337] something)--she: 1 +> [47338] something--a: 1 +> [47339] something--and: 2 +> [47340] something--broth: 1 +> [47341] something--for: 2 +> [47342] something--i: 1 +> [47343] something--just: 1 +> [47344] something--looked: 1 +> [47345] something--occupy: 1 +> [47346] something--probably: 1 +> [47347] something--some: 1 +> [47348] something--something: 3 +> [47349] something--whether: 2 +> [47350] something-and: 1 +> [47351] something. [47352] something? [47353] sometime: 4 +> [47354] sometimes: 659 +> [47355] sometimes--in: 1 +> [47356] sometimes--when: 1 +> [47357] sometimes. [47358] sometimes? [47359] someway: 1 +> [47360] somewhat: 155 +> [47361] somewhat, [47362] somewhere: 217 +> [47363] somewhere—i: 1 +> [47364] somewhere—where: 1 +> [47365] somewhere--has: 1 +> [47366] somewhere--if: 2 +> [47367] somewhere. [47368] sommes: 1 +> [47369] sommières: 2 +> [47370] somnambulist: 1 +> [47371] son: 742 +> [47372] son! [47373] son—my: 1 +> [47374] son's: 58 +> [47375] son's--name: 1 +> [47376] son,--yes: 1 +> [47377] son, [47378] son--all: 2 +> [47379] son--and: 3 +> [47380] son--i: 1 +> [47381] son--my: 1 +> [47382] son--stood: 1 +> [47383] son--whom: 1 +> [47384] son-in-law: 6 +> [47385] son. [47386] son [47387] son—the: 1 +> [47388] son? [47389] sonata: 3 +> [47390] song: 87 +> [47391] songs: 47 +> [47392] songstress: 1 +> [47393] sonia: 369 +> [47394] sonia's: 32 +> [47395] sonia--you: 1 +> [47396] sonny: 1 +> [47397] sonorous: 7 +> [47398] sonorously: 1 +> [47399] sons: 78 +> [47400] sons-in-law: 1 +> [47401] sont: 3 +> [47402] sonya: 411 +> [47403] sonya's: 31 +> [47404] sonya--"you: 1 +> [47405] sonya--if: 1 +> [47406] sonya--should: 1 +> [47407] sonya--were: 1 +> [47408] sonya--who: 1 +> [47409] soon: 1068 +> [47410] soon, [47411] soon--even: 1 +> [47412] soon--i: 1 +> [47413] soon. [47414] soon? [47415] sooner: 121 +> [47416] sooner! [47417] soot: 5 +> [47418] soot-laden: 1 +> [47419] soothe: 35 +> [47420] soothed: 16 +> [47421] soother: 1 +> [47422] soothes: 2 +> [47423] soothing: 21 +> [47424] soothingly: 3 +> [47425] sop: 2 +> [47426] sophia: 4 +> [47427] sophie: 4 +> [47428] sophie--i: 1 +> [47429] sophism: 1 +> [47430] sophistries: 1 +> [47431] sophistry: 1 +> [47432] soporific: 1 +> [47433] sopped: 2 +> [47434] sopping: 1 +> [47435] sorbier: 1 +> [47436] sorbonne: 1 +> [47437] sorcerer: 1 +> [47438] sorceress: 1 +> [47439] sorcery: 5 +> [47440] sordid: 10 +> [47441] sore: 43 +> [47442] sorely: 3 +> [47443] soreness: 1 +> [47444] sorenson: 1 +> [47445] sores: 5 +> [47446] sores--his: 1 +> [47447] sorokina: 11 +> [47448] sorrel: 6 +> [47449] sorrento: 1 +> [47450] sorrow: 129 +> [47451] sorrow! [47452] sorrow, [47453] sorrow--he: 1 +> [47454] sorrowed: 2 +> [47455] sorrowful: 26 +> [47456] sorrowfully: 16 +> [47457] sorrowing: 1 +> [47458] sorrows: 9 +> [47459] sorrows--the: 1 +> [47460] sorry: 342 +> [47461] sorry--that: 1 +> [47462] sorry. [47463] sort: 727 +> [47464] sort—no: 1 +> [47465] sort's: 1 +> [47466] sort--(le: 1 +> [47467] sort--a: 4 +> [47468] sort--about: 1 +> [47469] sort--and: 1 +> [47470] sort--dividing: 1 +> [47471] sort. [47472] sorte: 3 +> [47473] sorted: 2 +> [47474] sorting: 13 +> [47475] sorts: 137 +> [47476] sorts. [47477] soskice: 4 +> [47478] sot: 2 +> [47479] sotnya: 1 +> [47480] sotski: 1 +> [47481] sottish: 1 +> [47482] sou: 2 +> [47483] sou--and: 1 +> [47484] soubrettes: 1 +> [47485] soubriquet: 1 +> [47486] souche: 1 +> [47487] soughing: 2 +> [47488] sought: 109 +> [47489] sought--in: 1 +> [47490] soul: 657 +> [47491] soul! [47492] soul—alyosha: 1 +> [47493] soul—he: 1 +> [47494] soul—i: 1 +> [47495] soul—its: 1 +> [47496] soul—that: 1 +> [47497] soul's: 5 +> [47498] soul, [47499] soul--and: 1 +> [47500] soul--as: 1 +> [47501] soul--shall: 1 +> [47502] soul--that: 1 +> [47503] soul--vividly: 1 +> [47504] soul--you: 1 +> [47505] soul--your: 1 +> [47506] soul-drawn: 1 +> [47507] soul-shaking: 1 +> [47508] soul-stirring: 1 +> [47509] soul.... [47510] soul. [47511] soul.’: 1 +> [47512] soul? [47513] soulful: 3 +> [47514] souls: 58 +> [47515] souls [47516] sound: 469 +> [47517] sound!--mary: 1 +> [47518] sound--a: 1 +> [47519] sound--i: 1 +> [47520] sounded: 77 +> [47521] sounder: 1 +> [47522] soundest: 2 +> [47523] sounding: 6 +> [47524] soundly: 16 +> [47525] soundness: 3 +> [47526] sounds: 147 +> [47527] sount: 1 +> [47528] soup: 79 +> [47529] soup'll: 1 +> [47530] soup-maker: 3 +> [47531] soup-makers: 1 +> [47532] soup. [47533] soupe: 1 +> [47534] soups: 1 +> [47535] sour: 16 +> [47536] sour-faced: 1 +> [47537] source: 81 +> [47538] sourcedesc: 2 +> [47539] sources: 26 +> [47540] sources--the: 1 +> [47541] sourds: 1 +> [47542] soured: 2 +> [47543] sourest: 1 +> [47544] sourly: 2 +> [47545] sous: 10 +> [47546] soused: 1 +> [47547] sousing: 2 +> [47548] soutane: 3 +> [47549] soutenir: 1 +> [47550] south: 29 +> [47551] south--in: 1 +> [47552] south-east: 1 +> [47553] south-syrian: 1 +> [47554] south-west: 2 +> [47555] southeast: 2 +> [47556] southeastward: 1 +> [47557] southerly: 1 +> [47558] southern: 22 +> [47559] southerner: 1 +> [47560] southward: 8 +> [47561] southwark: 1 +> [47562] southwest: 1 +> [47563] souverain: 1 +> [47564] souza: 1 +> [47565] souza's: 1 +> [47566] sov'weign: 2 +> [47567] sovereign: 67 +> [47568] sovereign's: 4 +> [47569] sovereigns: 15 +> [47570] sovereignty: 3 +> [47571] sow: 8 +> [47572] sow's: 1 +> [47573] sowed: 4 +> [47574] sowing: 22 +> [47575] sown: 13 +> [47576] sown,--this: 1 +> [47577] soxhlet: 2 +> [47578] soy: 1 +> [47579] soya: 9 +> [47580] soya-bean: 2 +> [47581] soyez: 1 +> [47582] sp: 16 +> [47583] spa: 1 +> [47584] space: 110 +> [47585] space, [47586] space--and: 1 +> [47587] space--ha: 1 +> [47588] space--the: 1 +> [47589] space [47590] space [47591] spaces: 13 +> [47592] spacious: 10 +> [47593] spaciously: 1 +> [47594] spade: 5 +> [47595] spadefuls: 2 +> [47596] spades: 4 +> [47597] spain: 38 +> [47598] spake: 2 +> [47599] span: 1 +> [47600] spangled: 1 +> [47601] spangles: 2 +> [47602] spaniard: 18 +> [47603] spaniard's: 1 +> [47604] spaniards: 16 +> [47605] spanish: 45 +> [47606] spanned: 1 +> [47607] spare: 91 +> [47608] spare—whom: 1 +> [47609] spare. [47610] spared: 25 +> [47611] spared--and: 1 +> [47612] sparely: 1 +> [47613] spares: 2 +> [47614] sparing: 7 +> [47615] sparingly: 6 +> [47616] spark: 23 +> [47617] sparkle: 13 +> [47618] sparkled: 21 +> [47619] sparkling: 44 +> [47620] sparks: 11 +> [47621] sparks--the: 1 +> [47622] sparring: 1 +> [47623] sparrow: 5 +> [47624] sparrow's: 1 +> [47625] sparrows: 10 +> [47626] sparrows! [47627] sparsely: 1 +> [47628] sparta: 1 +> [47629] spartan: 1 +> [47630] spartans: 1 +> [47631] spas: 1 +> [47632] spasm: 12 +> [47633] spasmodic: 4 +> [47634] spasmodically: 5 +> [47635] spasms: 1 +> [47636] spasski: 1 +> [47637] spat: 32 +> [47638] spats: 1 +> [47639] spatter: 2 +> [47640] spattered: 6 +> [47641] spatula: 2 +> [47642] spavined: 1 +> [47643] speak: 1176 +> [47644] speak! [47645] speak, [47646] speak--and: 1 +> [47647] speak--because: 1 +> [47648] speak--drew: 1 +> [47649] speak--he: 1 +> [47650] speak--i: 1 +> [47651] speak--quick: 1 +> [47652] speak--stand: 1 +> [47653] speak--the: 1 +> [47654] speak--under: 1 +> [47655] speak. [47656] speaker: 72 +> [47657] speaker's: 6 +> [47658] speaker--in: 1 +> [47659] speakers: 12 +> [47660] speaking: 600 +> [47661] speaking—that's: 1 +> [47662] speaking—this: 1 +> [47663] speaking--a: 1 +> [47664] speaking--all: 1 +> [47665] speaks: 43 +> [47666] speaks. [47667] spear: 3 +> [47668] spear-points: 1 +> [47669] spears: 2 +> [47670] special: 363 +> [47671] special? [47672] specialist: 17 +> [47673] specialists: 4 +> [47674] speciality: 4 +> [47675] specialized: 1 +> [47676] specially: 71 +> [47677] specially-built: 1 +> [47678] specially-constructed: 1 +> [47679] specially? [47680] specialties: 2 +> [47681] specialty: 4 +> [47682] species: 18 +> [47683] species--of: 1 +> [47684] specific: 34 +> [47685] specifically: 3 +> [47686] specifications: 3 +> [47687] specified: 43 +> [47688] specifies: 1 +> [47689] specify: 2 +> [47690] specimen: 5 +> [47691] specimens: 4 +> [47692] speck: 6 +> [47693] speckle: 1 +> [47694] speckly-headed: 1 +> [47695] specks: 1 +> [47696] spectacle: 26 +> [47697] spectacled: 3 +> [47698] spectacles: 73 +> [47699] spectacles! [47700] spectator: 12 +> [47701] spectator--myself: 1 +> [47702] spectator--not: 1 +> [47703] spectators: 27 +> [47704] spectres: 1 +> [47705] speculate: 2 +> [47706] speculated: 1 +> [47707] speculation: 3 +> [47708] speculation--all: 1 +> [47709] speculations: 2 +> [47710] speculative: 5 +> [47711] speculator: 2 +> [47712] speculators: 1 +> [47713] sped: 10 +> [47714] speech: 184 +> [47715] speech, [47716] speech--came: 1 +> [47717] speech--truth: 1 +> [47718] speech. [47719] speech. [47720] speech.’: 1 +> [47721] speeches: 25 +> [47722] speeches--infected: 1 +> [47723] speechifying: 2 +> [47724] speechless: 15 +> [47725] speed: 69 +> [47726] speed! [47727] speedily: 3 +> [47728] speeding: 3 +> [47729] speedy: 9 +> [47730] spell: 23 +> [47731] spell-bound: 3 +> [47732] spellbound: 3 +> [47733] spelled: 5 +> [47734] spelling: 11 +> [47735] spellings: 1 +> [47736] spells: 5 +> [47737] spencer: 4 +> [47738] spencers: 1 +> [47739] spend: 133 +> [47740] spenders: 1 +> [47741] spending: 44 +> [47742] spends: 3 +> [47743] spendthrift: 1 +> [47744] spendthrift, [47745] spent: 368 +> [47746] speranski: 58 +> [47747] speranski's: 18 +> [47748] speranski--the: 1 +> [47749] speranski--was: 1 +> [47750] sperm: 2 +> [47751] spermaceti: 3 +> [47752] sphere: 18 +> [47753] sphere--of: 1 +> [47754] spheres: 13 +> [47755] sphinx: 7 +> [47756] sphinx-like: 3 +> [47757] sphinxes: 1 +> [47758] spice: 3 +> [47759] spices: 1 +> [47760] spick: 1 +> [47761] spider: 5 +> [47762] spider's: 4 +> [47763] spider--of: 3 +> [47764] spider-web: 1 +> [47765] spiders: 8 +> [47766] spiderweb: 1 +> [47767] spied: 2 +> [47768] spies: 6 +> [47769] spiked: 1 +> [47770] spikes: 2 +> [47771] spiking: 1 +> [47772] spill: 3 +> [47773] spilled: 7 +> [47774] spilling: 3 +> [47775] spills: 1 +> [47776] spilt: 10 +> [47777] spin: 7 +> [47778] spinal: 1 +> [47779] spindle: 1 +> [47780] spindle-tree: 1 +> [47781] spindles: 2 +> [47782] spindly: 4 +> [47783] spine: 18 +> [47784] spinneys: 1 +> [47785] spinning: 10 +> [47786] spinning-jenny: 1 +> [47787] spinning-wheel: 1 +> [47788] spinoza: 1 +> [47789] spinster: 2 +> [47790] spinsters: 2 +> [47791] spiral: 4 +> [47792] spire: 6 +> [47793] spires: 2 +> [47794] spirit: 340 +> [47795] spirit—is: 1 +> [47796] spirit—whatever: 1 +> [47797] spirit--a: 1 +> [47798] spirit--and: 4 +> [47799] spirit--you're: 1 +> [47800] spirit-lamp: 1 +> [47801] spirit-tray: 1 +> [47802] spirit. [47803] spirit [47804] spirit—they're: 1 +> [47805] spirited: 12 +> [47806] spiritless: 5 +> [47807] spirits: 150 +> [47808] spirits--she: 1 +> [47809] spirits? [47810] spiritual: 135 +> [47811] spiritual'[3: 1 +> [47812] spiritualism: 3 +> [47813] spiritualists: 4 +> [47814] spirituality: 3 +> [47815] spiritualize: 1 +> [47816] spiritualized: 3 +> [47817] spiritualizing: 1 +> [47818] spiritually: 4 +> [47819] spiritually--divided: 1 +> [47820] spirituelle: 1 +> [47821] spirituous: 1 +> [47822] spirt: 3 +> [47823] spit: 20 +> [47824] spite: 524 +> [47825] spite, [47826] spiteful: 107 +> [47827] spitefully: 7 +> [47828] spitfire: 1 +> [47829] spitfire. [47830] spitting: 10 +> [47831] spittle: 1 +> [47832] splash: 3 +> [47833] splashboard: 1 +> [47834] splashed: 12 +> [47835] splashing: 25 +> [47836] spleen: 19 +> [47837] splendid: 188 +> [47838] splendid!...i: 1 +> [47839] splendid! [47840] splendid-looking: 1 +> [47841] splendidly: 21 +> [47842] splendor: 4 +> [47843] splendour: 7 +> [47844] splendours: 1 +> [47845] splenetic: 1 +> [47846] splinter: 5 +> [47847] splintered: 1 +> [47848] splintering: 1 +> [47849] splinters: 4 +> [47850] split: 31 +> [47851] splits: 2 +> [47852] splitting: 17 +> [47853] splutter: 1 +> [47854] spluttered: 10 +> [47855] spluttering: 5 +> [47856] spoil: 41 +> [47857] spoiled: 36 +> [47858] spoiled--tell: 1 +> [47859] spoiled...i've: 1 +> [47860] spoilers: 1 +> [47861] spoiling: 17 +> [47862] spoils: 4 +> [47863] spoilt: 11 +> [47864] spoilt--of: 3 +> [47865] spoke: 587 +> [47866] spoke--"that: 1 +> [47867] spoke--"to: 1 +> [47868] spoke--being: 1 +> [47869] spoken: 231 +> [47870] spoken--"the: 1 +> [47871] spoken--sir: 1 +> [47872] spokes: 1 +> [47873] spokesman: 3 +> [47874] sponge: 11 +> [47875] sponge--the: 1 +> [47876] sponging: 2 +> [47877] spongy: 3 +> [47878] sponsor: 2 +> [47879] sponsorship: 1 +> [47880] spontaneous: 13 +> [47881] spontaneously: 16 +> [47882] spoon: 29 +> [47883] spoon--almost: 1 +> [47884] spoon--i: 1 +> [47885] spoonful: 4 +> [47886] spoonfuls: 6 +> [47887] spoons: 11 +> [47888] sporadic: 1 +> [47889] sport: 32 +> [47890] sported: 3 +> [47891] sporting: 3 +> [47892] sportive: 4 +> [47893] sports: 13 +> [47894] sportsman: 15 +> [47895] sportsman's: 4 +> [47896] sportsmen: 13 +> [47897] sportsmen's: 1 +> [47898] spot: 200 +> [47899] spot--though: 1 +> [47900] spot--une: 1 +> [47901] spot-and-tan: 1 +> [47902] spot. [47903] spot [47904] spot? [47905] spotless: 6 +> [47906] spotless--but: 1 +> [47907] spotlessly: 1 +> [47908] spots: 27 +> [47909] spotted: 6 +> [47910] spotting: 1 +> [47911] spotty: 2 +> [47912] spouse: 5 +> [47913] spouter: 1 +> [47914] sprain: 1 +> [47915] sprained: 4 +> [47916] sprains: 1 +> [47917] sprang: 130 +> [47918] sprawled: 4 +> [47919] sprawling: 9 +> [47920] spray: 2 +> [47921] sprays: 2 +> [47922] spread: 146 +> [47923] spreading: 28 +> [47924] spreads: 2 +> [47925] spree: 8 +> [47926] spree—that's: 1 +> [47927] sprees: 2 +> [47928] sprightly: 2 +> [47929] spring: 164 +> [47930] spring,--one: 1 +> [47931] spring-rattle: 1 +> [47932] spring-time: 1 +> [47933] springiness: 1 +> [47934] springing: 11 +> [47935] springs: 46 +> [47936] springtime: 3 +> [47937] springy: 4 +> [47938] sprinkle: 3 +> [47939] sprinkled: 18 +> [47940] sprinkling: 6 +> [47941] spritely: 1 +> [47942] sprouted: 3 +> [47943] sprouting: 3 +> [47944] spruce: 2 +> [47945] sprung: 33 +> [47946] spuds: 1 +> [47947] spun: 9 +> [47948] spur: 12 +> [47949] spurious: 2 +> [47950] spurn: 1 +> [47951] spurned: 5 +> [47952] spurred: 17 +> [47953] spurring: 3 +> [47954] spurs: 32 +> [47955] spurt: 2 +> [47956] spurted: 3 +> [47957] spurting: 2 +> [47958] spurts: 3 +> [47959] sputter: 2 +> [47960] sputtered: 1 +> [47961] sputtering: 1 +> [47962] spy: 45 +> [47963] spy--an: 1 +> [47964] spyer: 1 +> [47965] spyglass: 1 +> [47966] spying: 12 +> [47967] spying-place: 2 +> [47968] sq: 18 +> [47969] squabble: 2 +> [47970] squabbles: 2 +> [47971] squabbling: 5 +> [47972] squad: 1 +> [47973] squadron: 65 +> [47974] squadron's: 1 +> [47975] squadron--that: 1 +> [47976] squadrons: 5 +> [47977] squadwon: 1 +> [47978] squalid: 7 +> [47979] squall: 2 +> [47980] squalling: 1 +> [47981] squalor: 2 +> [47982] squander: 2 +> [47983] squandered: 11 +> [47984] squandering: 3 +> [47985] square: 100 +> [47986] square--for: 1 +> [47987] square--last: 1 +> [47988] square--with: 1 +> [47989] square-set: 1 +> [47990] squared: 3 +> [47991] squarely: 3 +> [47992] squares: 7 +> [47993] squaring: 1 +> [47994] squash: 1 +> [47995] squat: 4 +> [47996] squatted: 5 +> [47997] squatting: 7 +> [47998] squeak: 3 +> [47999] squeaked: 10 +> [48000] squeaking: 9 +> [48001] squeaky: 2 +> [48002] squeal: 3 +> [48003] squealed: 16 +> [48004] squealing: 6 +> [48005] squealing [48006] squeals: 2 +> [48007] squeamish: 2 +> [48008] squeeze: 22 +> [48009] squeezed: 46 +> [48010] squeezes: 1 +> [48011] squeezing: 31 +> [48012] squelch: 2 +> [48013] squelching: 2 +> [48014] squint: 1 +> [48015] squinted: 1 +> [48016] squinting: 1 +> [48017] squire: 23 +> [48018] squire's: 2 +> [48019] squire--had: 1 +> [48020] squirearchy: 1 +> [48021] squires: 8 +> [48022] squires'd: 1 +> [48023] squirrel-fur: 2 +> [48024] squirrel-like: 2 +> [48025] squirrel-lined: 1 +> [48026] squirrels: 1 +> [48027] squirting: 3 +> [48028] st: 365 +> [48029] sta'ted: 1 +> [48030] stab: 10 +> [48031] stabbed: 22 +> [48032] stabbing: 5 +> [48033] stability: 2 +> [48034] stable: 42 +> [48035] stable--a: 1 +> [48036] stable-boy: 1 +> [48037] stable-boys: 6 +> [48038] stable-helpers: 1 +> [48039] stablehelps: 1 +> [48040] stablemen: 2 +> [48041] stables: 16 +> [48042] stables--and: 1 +> [48043] stabling: 1 +> [48044] stablishing: 1 +> [48045] stabs: 2 +> [48046] staccato: 3 +> [48047] stack: 8 +> [48048] stacked: 3 +> [48049] stacks: 12 +> [48050] stackyard: 2 +> [48051] stael: 6 +> [48052] staff: 173 +> [48053] staff--and: 1 +> [48054] staff-captain: 1 +> [48055] staff-officer: 1 +> [48056] stafford: 19 +> [48057] staffordshire: 10 +> [48058] staffs: 5 +> [48059] stag: 1 +> [48060] stag's: 1 +> [48061] stage: 74 +> [48062] stage--who: 1 +> [48063] stagecoach: 1 +> [48064] stages: 15 +> [48065] stagger: 3 +> [48066] staggered: 26 +> [48067] staggering: 25 +> [48068] staggers: 1 +> [48069] staghorn: 1 +> [48070] stagnant: 4 +> [48071] stagnant-tasting: 1 +> [48072] stagnate: 1 +> [48073] stagnating: 1 +> [48074] stagnation: 3 +> [48075] stahl: 46 +> [48076] stahl's: 2 +> [48077] staid: 4 +> [48078] stain: 27 +> [48079] stained: 39 +> [48080] staining--i: 1 +> [48081] stains: 12 +> [48082] stair: 5 +> [48083] stair-foot: 1 +> [48084] staircase: 151 +> [48085] staircase--by: 1 +> [48086] staircase--that: 1 +> [48087] staircases: 2 +> [48088] stairfoot: 1 +> [48089] stairs: 249 +> [48090] stairs--"that: 1 +> [48091] stairs--"the: 1 +> [48092] stairs--if: 1 +> [48093] stake: 39 +> [48094] stake, [48095] stake. [48096] staked: 7 +> [48097] stakes: 27 +> [48098] staking: 3 +> [48099] stale: 10 +> [48100] stalest: 1 +> [48101] stalk: 5 +> [48102] stalked: 9 +> [48103] stalking-horse: 2 +> [48104] stalks: 6 +> [48105] stall: 10 +> [48106] stalled--still: 1 +> [48107] stallion: 15 +> [48108] stallions: 1 +> [48109] stalls: 29 +> [48110] stalwart: 3 +> [48111] stalwarts: 1 +> [48112] stamford: 1 +> [48113] stammer: 3 +> [48114] stammered: 38 +> [48115] stammering: 12 +> [48116] stammerings: 1 +> [48117] stammers: 3 +> [48118] stamp: 23 +> [48119] stamped: 37 +> [48120] stampede: 3 +> [48121] stamping: 22 +> [48122] stamps: 5 +> [48123] stanch: 1 +> [48124] stand: 436 +> [48125] stand--a: 1 +> [48126] stand--this: 1 +> [48127] stand-off: 1 +> [48128] stand-shooting: 4 +> [48129] stand-up: 1 +> [48130] standard: 107 +> [48131] standardization: 3 +> [48132] standardize: 2 +> [48133] standardized: 10 +> [48134] standardizing: 1 +> [48135] standards: 24 +> [48136] standing: 717 +> [48137] standing--his: 1 +> [48138] standpoint: 19 +> [48139] standpoints: 2 +> [48140] stands: 72 +> [48141] stands—and: 1 +> [48142] standstill: 18 +> [48143] stanislavitch: 1 +> [48144] stanley: 19 +> [48145] stanton: 1 +> [48146] staple: 1 +> [48147] star: 27 +> [48148] star-like: 1 +> [48149] star-shaped: 3 +> [48150] starch: 21 +> [48151] starched: 6 +> [48152] starchy: 2 +> [48153] stare: 53 +> [48154] stared: 191 +> [48155] stared--he: 1 +> [48156] starers--that: 1 +> [48157] stares: 8 +> [48158] staring: 143 +> [48159] staring--when: 1 +> [48160] stark: 3 +> [48161] stark--stark: 1 +> [48162] starless: 1 +> [48163] starlight: 4 +> [48164] starling: 2 +> [48165] starring: 1 +> [48166] starry: 9 +> [48167] stars: 54 +> [48168] stars--we: 1 +> [48169] start: 236 +> [48170] start--all: 1 +> [48171] start--to: 1 +> [48172] started: 283 +> [48173] started--he: 1 +> [48174] started--i: 1 +> [48175] starter: 1 +> [48176] starting: 95 +> [48177] starting-point: 8 +> [48178] startle: 10 +> [48179] startled: 69 +> [48180] startles: 1 +> [48181] startling: 19 +> [48182] starts: 14 +> [48183] starvation: 10 +> [48184] starve: 11 +> [48185] starvecrow: 1 +> [48186] starved: 10 +> [48187] starved--who: 1 +> [48188] starveling: 2 +> [48189] starving: 21 +> [48190] starving--and: 1 +> [48191] starwise: 1 +> [48192] stassfurt: 3 +> [48193] state: 533 +> [48194] state's: 19 +> [48195] state--"as: 1 +> [48196] state--as: 1 +> [48197] state--for: 1 +> [48198] state--i: 1 +> [48199] state. [48200] statecraft: 2 +> [48201] stated: 52 +> [48202] stateliest: 1 +> [48203] stateliness: 5 +> [48204] stately: 19 +> [48205] statement: 83 +> [48206] statement? [48207] statements: 33 +> [48208] states: 298 +> [48209] states-general)--evoked: 1 +> [48210] statesman: 12 +> [48211] statesman's: 3 +> [48212] statesmen: 4 +> [48213] stating: 17 +> [48214] station: 142 +> [48215] station--on: 1 +> [48216] station--that: 1 +> [48217] station-master: 5 +> [48218] station. [48219] station? [48220] stationary: 8 +> [48221] stationed: 32 +> [48222] stationmasters: 1 +> [48223] stations: 7 +> [48224] statistic: 1 +> [48225] statistical: 2 +> [48226] statisticians: 2 +> [48227] statistics: 4 +> [48228] statuary: 1 +> [48229] statue: 11 +> [48230] statue's: 1 +> [48231] statues: 7 +> [48232] statuesque: 1 +> [48233] stature: 5 +> [48234] status: 81 +> [48235] statute: 3 +> [48236] statutes: 3 +> [48237] staunch: 3 +> [48238] staunchness: 1 +> [48239] staved: 1 +> [48240] staves: 5 +> [48241] stay: 397 +> [48242] stay! [48243] stay—have: 1 +> [48244] stay, [48245] stay. [48246] stayed: 145 +> [48247] stayed, [48248] stayer: 1 +> [48249] staying: 97 +> [48250] stays: 6 +> [48251] stead: 6 +> [48252] steadfast: 11 +> [48253] steadfastly: 6 +> [48254] steadied: 6 +> [48255] steadily: 37 +> [48256] steadiness: 1 +> [48257] steady: 55 +> [48258] steady--she: 1 +> [48259] steak: 2 +> [48260] steal: 39 +> [48261] steal—i: 1 +> [48262] steal, [48263] steal. [48264] stealing: 29 +> [48265] steals: 4 +> [48266] stealth: 4 +> [48267] stealthily: 20 +> [48268] stealthiness: 1 +> [48269] stealthy: 16 +> [48270] steam: 103 +> [48271] steamboats: 1 +> [48272] steamed: 3 +> [48273] steamer: 5 +> [48274] steamers: 1 +> [48275] steaming: 8 +> [48276] steamy: 5 +> [48277] stearate: 3 +> [48278] stearic: 56 +> [48279] stearin: 3 +> [48280] stearine: 11 +> [48281] stearines: 1 +> [48282] steed: 4 +> [48283] steeds: 1 +> [48284] steel: 29 +> [48285] steel-gray: 1 +> [48286] steel-rimmed: 1 +> [48287] steel-toothed: 1 +> [48288] steeled: 2 +> [48289] steely: 2 +> [48290] steep: 27 +> [48291] steep-roofed: 2 +> [48292] steeped: 6 +> [48293] steeper: 1 +> [48294] steeping: 1 +> [48295] steeple: 4 +> [48296] steeplechase: 4 +> [48297] steepness: 1 +> [48298] steer: 8 +> [48299] steered: 6 +> [48300] steering: 6 +> [48301] steersman's: 2 +> [48302] stein: 13 +> [48303] steins: 1 +> [48304] stem: 8 +> [48305] stemmed: 1 +> [48306] stemming: 1 +> [48307] stems: 5 +> [48308] stench: 12 +> [48309] stencil: 2 +> [48310] stenka: 4 +> [48311] stentorian: 3 +> [48312] step: 366 +> [48313] step--a: 1 +> [48314] step--why: 1 +> [48315] step-mother: 2 +> [48316] step-sister: 1 +> [48317] step? [48318] stepan: 552 +> [48319] stepanida: 4 +> [48320] stepanovich: 1 +> [48321] stepanovitch: 1 +> [48322] stepanych: 3 +> [48323] stepdaughter: 1 +> [48324] stephan: 1 +> [48325] stephen: 139 +> [48326] stephen's: 21 +> [48327] stephens: 2 +> [48328] stephens--you: 1 +> [48329] stepmother: 8 +> [48330] stepmothers: 1 +> [48331] steppe: 7 +> [48332] stepped: 163 +> [48333] steppes: 9 +> [48334] stepping: 76 +> [48335] steps: 499 +> [48336] steps--distracted: 1 +> [48337] steps--that's: 1 +> [48338] stepson: 1 +> [48339] stepsons: 1 +> [48340] stereotyped: 3 +> [48341] sterile: 4 +> [48342] sterlet: 2 +> [48343] sterlets: 2 +> [48344] sterling: 1 +> [48345] stern: 152 +> [48346] stern-looking: 2 +> [48347] sterne: 2 +> [48348] sterner: 7 +> [48349] sternest: 1 +> [48350] sternly: 103 +> [48351] sternly--and: 1 +> [48352] sternly--for: 1 +> [48353] sternly--had: 1 +> [48354] sternness: 3 +> [48355] steshka: 1 +> [48356] stethoscope: 1 +> [48357] stevens: 2 +> [48358] stew: 2 +> [48359] steward: 84 +> [48360] steward's: 9 +> [48361] steward--a: 1 +> [48362] stewards: 11 +> [48363] stewed: 1 +> [48364] stick: 102 +> [48365] stick! [48366] stick, [48367] sticking: 33 +> [48368] stickler: 1 +> [48369] sticks: 19 +> [48370] sticky: 17 +> [48371] stick’--or: 1 +> [48372] stiepel: 1 +> [48373] stiepel[17: 1 +> [48374] stiff: 49 +> [48375] stiff-necked: 1 +> [48376] stiffen: 1 +> [48377] stiffened: 11 +> [48378] stiffening: 4 +> [48379] stiffly: 22 +> [48380] stiffness: 8 +> [48381] stifle: 17 +> [48382] stifled: 25 +> [48383] stifles: 2 +> [48384] stifling: 30 +> [48385] stigmatized: 1 +> [48386] stigmatizes: 1 +> [48387] stile: 1 +> [48388] still: 2842 +> [48389] still! [48390] still— [48391] still, [48392] still--and: 1 +> [48393] still--the: 2 +> [48394] still--this: 2 +> [48395] still--those: 1 +> [48396] still--to: 1 +> [48397] still--well: 1 +> [48398] still-deeper: 1 +> [48399] still-existing: 1 +> [48400] still-green: 1 +> [48401] still-higher: 1 +> [48402] still-stronger: 1 +> [48403] still-unplastered: 1 +> [48404] still.... [48405] still. [48406] still? [48407] stillborn: 6 +> [48408] stilled: 6 +> [48409] stillness: 48 +> [48410] stills: 1 +> [48411] stillwell: 1 +> [48412] stilt-walkers: 1 +> [48413] stilted: 2 +> [48414] stimulants: 1 +> [48415] stimulate: 1 +> [48416] stimulated: 7 +> [48417] stimulating: 6 +> [48418] stimulatingly: 1 +> [48419] stimulus: 2 +> [48420] sting: 21 +> [48421] stinginess: 2 +> [48422] stinging: 14 +> [48423] stings: 4 +> [48424] stingy: 10 +> [48425] stink: 4 +> [48426] stinketh: 1 +> [48427] stinking: 27 +> [48428] stinks: 1 +> [48429] stinks. [48430] stint: 4 +> [48431] stipulated: 1 +> [48432] stipulation: 1 +> [48433] stipulations: 1 +> [48434] stipules: 1 +> [48435] stir: 99 +> [48436] stir--a: 1 +> [48437] stirabout: 1 +> [48438] stirred: 75 +> [48439] stirrer: 4 +> [48440] stirring: 61 +> [48441] stirrup: 20 +> [48442] stirrup--came: 1 +> [48443] stirrup-cup: 1 +> [48444] stirrups: 2 +> [48445] stirs: 4 +> [48446] stitches: 3 +> [48447] stitching: 1 +> [48448] stiva: 59 +> [48449] stiva"--she: 1 +> [48450] stiva's: 3 +> [48451] stiva...if: 1 +> [48452] sto-op: 1 +> [48453] stock: 51 +> [48454] stock--a: 1 +> [48455] stock--to: 1 +> [48456] stock-in-trade: 1 +> [48457] stock-still: 1 +> [48458] stocked: 5 +> [48459] stocking: 14 +> [48460] stocking, [48461] stockinged: 1 +> [48462] stockingless: 2 +> [48463] stockings: 39 +> [48464] stocks: 12 +> [48465] stoic: 5 +> [48466] stoical: 1 +> [48467] stoicism: 1 +> [48468] stole: 68 +> [48469] stolen: 75 +> [48470] stolen—three: 1 +> [48471] stolen--if: 1 +> [48472] stolen? [48473] stolid: 3 +> [48474] stolidity: 2 +> [48475] stolidly: 6 +> [48476] stolypin: 4 +> [48477] stomach: 41 +> [48478] stomach--"you: 1 +> [48479] stomach--he: 1 +> [48480] stone: 203 +> [48481] stone's: 1 +> [48482] stone--the: 1 +> [48483] stone--there: 1 +> [48484] stone-built: 1 +> [48485] stone-groined: 1 +> [48486] stone-still: 1 +> [48487] stone-work: 1 +> [48488] stone [48489] stoned: 3 +> [48490] stones: 57 +> [48491] stones--a: 1 +> [48492] stonily: 1 +> [48493] stony: 19 +> [48494] stood: 1441 +> [48495] stood--in: 1 +> [48496] stool: 14 +> [48497] stools: 5 +> [48498] stools--in: 1 +> [48499] stoop: 14 +> [48500] stooped: 53 +> [48501] stooping: 53 +> [48502] stop: 305 +> [48503] stop! [48504] stop, [48505] stop--you: 1 +> [48506] stoppage: 1 +> [48507] stopped: 606 +> [48508] stopped--the: 1 +> [48509] stopped. [48510] stopper: 9 +> [48511] stoppered: 8 +> [48512] stopping: 117 +> [48513] stopping-place: 1 +> [48514] stops: 13 +> [48515] storage: 8 +> [48516] storch: 1 +> [48517] store: 43 +> [48518] store-chest: 1 +> [48519] stored: 26 +> [48520] storeroom: 3 +> [48521] storerooms: 2 +> [48522] stores: 18 +> [48523] storey: 34 +> [48524] storeys: 6 +> [48525] stories: 96 +> [48526] storing: 7 +> [48527] storm: 75 +> [48528] storm-clouds: 3 +> [48529] storm-tossed: 1 +> [48530] stormcloud: 2 +> [48531] stormed: 10 +> [48532] stormily: 1 +> [48533] storming: 1 +> [48534] storms: 9 +> [48535] storms”--and: 1 +> [48536] stormy: 12 +> [48537] story: 538 +> [48538] story, [48539] story--exquisite: 1 +> [48540] story--he: 2 +> [48541] story--in: 1 +> [48542] story--make: 1 +> [48543] story--say: 1 +> [48544] story--the: 1 +> [48545] story--they: 1 +> [48546] story-book: 1 +> [48547] story-teller: 3 +> [48548] story-tellers: 2 +> [48549] story. [48550] story? [48551] storyteller: 1 +> [48552] storytelling: 1 +> [48553] stoughton: 1 +> [48554] stout: 118 +> [48555] stout—grew: 1 +> [48556] stouter: 9 +> [48557] stoutest: 5 +> [48558] stoutish: 1 +> [48559] stoutly: 14 +> [48560] stoutness: 2 +> [48561] stove: 57 +> [48562] stoveheater: 1 +> [48563] stoves: 3 +> [48564] stowed: 3 +> [48565] straggler: 1 +> [48566] stragglers: 7 +> [48567] straggling: 6 +> [48568] straggly: 1 +> [48569] straight: 553 +> [48570] straight--that: 1 +> [48571] straight-backed: 1 +> [48572] straight-forward: 2 +> [48573] straight-forwardly: 3 +> [48574] straightaway: 1 +> [48575] straighten: 1 +> [48576] straightened: 17 +> [48577] straightening: 7 +> [48578] straightens: 1 +> [48579] straighter: 1 +> [48580] straightforward: 21 +> [48581] straightforwardness: 7 +> [48582] straightness: 1 +> [48583] straightway: 4 +> [48584] strain: 53 +> [48585] strain! [48586] strained: 64 +> [48587] straining: 30 +> [48588] strains: 13 +> [48589] strait: 7 +> [48590] strait-jacket: 1 +> [48591] straitened: 5 +> [48592] straits: 7 +> [48593] stralsund: 1 +> [48594] strand: 1 +> [48595] stranded: 1 +> [48596] stranded [48597] strands: 4 +> [48598] strange: 891 +> [48599] strange! [48600] strange, [48601] strange--but: 1 +> [48602] strange--it's: 1 +> [48603] strange--one: 1 +> [48604] strange--the: 1 +> [48605] strange--very: 1 +> [48606] strange-looking: 2 +> [48607] strange. [48608] strange? [48609] strangely: 126 +> [48610] strangeness: 13 +> [48611] stranger: 187 +> [48612] stranger's: 5 +> [48613] stranger--yes: 1 +> [48614] stranger. [48615] strangers: 56 +> [48616] strangers--strangers: 1 +> [48617] strangest: 21 +> [48618] strangest--that: 1 +> [48619] strangeways: 2 +> [48620] strangle: 7 +> [48621] strangled: 5 +> [48622] strangled. [48623] strangling: 6 +> [48624] strap: 8 +> [48625] strapped: 3 +> [48626] strapped-up: 1 +> [48627] strapping: 2 +> [48628] straps: 4 +> [48629] strasbourg: 1 +> [48630] strasburg: 2 +> [48631] strata: 1 +> [48632] stratagem: 3 +> [48633] strategic: 8 +> [48634] strategically: 1 +> [48635] strategics: 2 +> [48636] strategist: 2 +> [48637] strategy: 2 +> [48638] stratford: 16 +> [48639] stratford-on-avon: 1 +> [48640] stratum: 3 +> [48641] strauch: 1 +> [48642] straw: 80 +> [48643] straw, [48644] strawberries: 3 +> [48645] strawberry: 1 +> [48646] straws: 4 +> [48647] stray: 17 +> [48648] strayed: 17 +> [48649] strayed.... [48650] straying: 15 +> [48651] streak: 11 +> [48652] streaked: 5 +> [48653] streaking: 3 +> [48654] streaks: 8 +> [48655] stream: 78 +> [48656] stream--agitated: 1 +> [48657] streamed: 19 +> [48658] streamers: 2 +> [48659] streaming: 16 +> [48660] streamlet: 3 +> [48661] streams: 27 +> [48662] street: 538 +> [48663] street--alone: 1 +> [48664] street--he: 1 +> [48665] street--save: 1 +> [48666] street--that: 1 +> [48667] street--this: 1 +> [48668] street--with: 1 +> [48669] street-door: 1 +> [48670] street-seller: 1 +> [48671] street? [48672] streets: 190 +> [48673] streets--england: 1 +> [48674] streets--in: 1 +> [48675] streets--publicly: 1 +> [48676] stremov: 20 +> [48677] stremov's: 2 +> [48678] strength: 331 +> [48679] strength--her: 1 +> [48680] strength--that's: 1 +> [48681] strength? [48682] strengthen: 20 +> [48683] strengthened: 31 +> [48684] strengthening: 17 +> [48685] strengthens: 1 +> [48686] strengths: 2 +> [48687] strenuous: 10 +> [48688] strenuously: 4 +> [48689] strenuously--telling: 1 +> [48690] stress: 29 +> [48691] stressing: 2 +> [48692] stretch: 32 +> [48693] stretched: 101 +> [48694] stretcher: 9 +> [48695] stretcher-bearers: 3 +> [48696] stretchers: 15 +> [48697] stretches: 6 +> [48698] stretching: 38 +> [48699] strewed: 2 +> [48700] strewing: 1 +> [48701] strewn: 16 +> [48702] stricken: 14 +> [48703] strict: 61 +> [48704] stricter: 2 +> [48705] strictest: 5 +> [48706] strictly: 43 +> [48707] strictness: 2 +> [48708] strictures: 2 +> [48709] stride: 9 +> [48710] strident: 1 +> [48711] strides: 20 +> [48712] striding: 9 +> [48713] strife: 17 +> [48714] strifes: 2 +> [48715] strike: 69 +> [48716] strikes: 11 +> [48717] striking: 86 +> [48718] strikingly: 17 +> [48719] string: 38 +> [48720] stringed: 1 +> [48721] stringency: 1 +> [48722] stringiness: 1 +> [48723] strings: 16 +> [48724] stringy: 1 +> [48725] strip: 15 +> [48726] stripe: 1 +> [48727] striped: 4 +> [48728] striped-silk: 1 +> [48729] stripes: 3 +> [48730] stripped: 25 +> [48731] stripping: 4 +> [48732] strips: 10 +> [48733] strive: 25 +> [48734] striven: 13 +> [48735] strives: 3 +> [48736] striving: 36 +> [48737] strivings: 2 +> [48738] strode: 46 +> [48739] strogonov: 1 +> [48740] strogonov--whom: 1 +> [48741] stroke: 42 +> [48742] stroked: 18 +> [48743] strokes: 8 +> [48744] stroking: 22 +> [48745] stroll: 13 +> [48746] strolled: 5 +> [48747] strolling: 7 +> [48748] strolls: 1 +> [48749] stromilova: 1 +> [48750] strong: 336 +> [48751] strong—for: 1 +> [48752] strong, [48753] strong, [48754] strong--almost: 1 +> [48755] strong-box: 1 +> [48756] strong-boxes: 1 +> [48757] strong-looking: 3 +> [48758] strong-minded: 2 +> [48759] strong-room: 1 +> [48760] strong-smelling: 2 +> [48761] strong-willed: 2 +> [48762] stronger: 123 +> [48763] strongest: 18 +> [48764] stronghold: 1 +> [48765] strongly: 63 +> [48766] strongly--"it: 1 +> [48767] strop: 2 +> [48768] stropping: 1 +> [48769] strove: 34 +> [48770] struck: 544 +> [48771] struck--not: 1 +> [48772] structural: 2 +> [48773] structure: 15 +> [48774] structures: 1 +> [48775] struggle: 111 +> [48776] struggle,--and: 1 +> [48777] struggled: 50 +> [48778] struggles: 6 +> [48779] struggles--was: 1 +> [48780] struggling: 74 +> [48781] strum: 1 +> [48782] strumming: 1 +> [48783] strung: 1 +> [48784] strunz: 2 +> [48785] strut: 1 +> [48786] strutting: 3 +> [48787] stub: 1 +> [48788] stubble: 12 +> [48789] stubble-land: 1 +> [48790] stubbly: 1 +> [48791] stubborn: 19 +> [48792] stubbornly: 25 +> [48793] stubbornness: 2 +> [48794] stubbs: 208 +> [48795] stubbs's: 13 +> [48796] stubbs--and: 1 +> [48797] stubbs--it: 1 +> [48798] stubby: 2 +> [48799] stucco: 2 +> [48800] stuccoed: 1 +> [48801] stuck: 61 +> [48802] stuck-up: 3 +> [48803] stud: 6 +> [48804] studded: 6 +> [48805] student: 85 +> [48806] student's: 6 +> [48807] student--an: 1 +> [48808] students: 23 +> [48809] studied: 42 +> [48810] studies: 31 +> [48811] studio: 6 +> [48812] studios: 1 +> [48813] studious: 1 +> [48814] studiously: 7 +> [48815] studs: 9 +> [48816] study: 282 +> [48817] study--that: 1 +> [48818] study. [48819] studying: 31 +> [48820] stuff: 39 +> [48821] stuff's: 1 +> [48822] stuff--only: 1 +> [48823] stuffed: 11 +> [48824] stuffing: 8 +> [48825] stuffy: 11 +> [48826] stumble: 6 +> [48827] stumble--see: 1 +> [48828] stumbled: 57 +> [48829] stumbles: 1 +> [48830] stumbling: 34 +> [48831] stumbling-block: 7 +> [48832] stumbling-blocks: 1 +> [48833] stump: 11 +> [48834] stumped: 1 +> [48835] stumps: 5 +> [48836] stumpy: 3 +> [48837] stun: 2 +> [48838] stung: 33 +> [48839] stunned: 14 +> [48840] stunner.’: 1 +> [48841] stunning: 5 +> [48842] stunted: 1 +> [48843] stupefaction: 12 +> [48844] stupefied: 15 +> [48845] stupefy: 2 +> [48846] stupendous: 6 +> [48847] stupid: 340 +> [48848] stupid! [48849] stupid, [48850] stupid--and: 1 +> [48851] stupid--everything: 1 +> [48852] stupid--simply: 2 +> [48853] stupid. [48854] stupid?... [48855] stupider: 18 +> [48856] stupidest: 9 +> [48857] stupidity: 54 +> [48858] stupidity—the: 1 +> [48859] stupidly: 22 +> [48860] stupidly--excuse: 1 +> [48861] stupids: 1 +> [48862] stupified: 1 +> [48863] stupifying: 1 +> [48864] stupor: 5 +> [48865] stupor--laughing: 1 +> [48866] sturdily: 4 +> [48867] sturdy: 24 +> [48868] sturdy-looking: 2 +> [48869] sturgeon: 1 +> [48870] stuttered: 3 +> [48871] stutterer: 1 +> [48872] stuttering: 3 +> [48873] stwaight: 2 +> [48874] stwuck: 1 +> [48875] sty: 1 +> [48876] style: 134 +> [48877] style--i: 1 +> [48878] style--well: 1 +> [48879] styled: 2 +> [48880] styles: 6 +> [48881] stylish: 8 +> [48882] stylishly: 1 +> [48883] stylist: 1 +> [48884] stylistic: 1 +> [48885] stylites: 1 +> [48886] suave: 1 +> [48887] suavely: 3 +> [48888] suavity: 2 +> [48889] sub-apostolic: 4 +> [48890] sub-dean: 8 +> [48891] sub-dean--he: 1 +> [48892] sub-divided: 1 +> [48893] sub-divisions: 3 +> [48894] sub-lieutenant: 2 +> [48895] subacetate: 1 +> [48896] subaltern: 2 +> [48897] subalterns: 2 +> [48898] subdivided: 2 +> [48899] subdivision: 1 +> [48900] subdivisions: 4 +> [48901] subdue: 13 +> [48902] subdued: 30 +> [48903] subdueth: 1 +> [48904] subject: 469 +> [48905] subject's: 1 +> [48906] subject, [48907] subject--"i: 1 +> [48908] subject--"you: 1 +> [48909] subject--lord: 1 +> [48910] subject--the: 1 +> [48911] subject--they: 1 +> [48912] subject--this: 1 +> [48913] subject--we: 1 +> [48914] subject-matter: 1 +> [48915] subject.... [48916] subject. [48917] subjected: 10 +> [48918] subjecting: 1 +> [48919] subjection: 18 +> [48920] subjective: 2 +> [48921] subjects: 94 +> [48922] subjects--"aline-nadine: 1 +> [48923] subjects--also: 1 +> [48924] subjugate: 9 +> [48925] subjugated: 7 +> [48926] subjugates: 1 +> [48927] subjugation: 12 +> [48928] sublieutenancy: 1 +> [48929] sublieutenant: 1 +> [48930] sublimate: 2 +> [48931] sublime: 43 +> [48932] sublimity: 4 +> [48933] submerged: 2 +> [48934] submission: 24 +> [48935] submissive: 18 +> [48936] submissively: 13 +> [48937] submissiveness: 8 +> [48938] submit: 47 +> [48939] submit—i: 1 +> [48940] submits: 3 +> [48941] submitted: 27 +> [48942] submitting: 10 +> [48943] subordinate: 18 +> [48944] subordinated: 3 +> [48945] subordinates: 15 +> [48946] subordination: 7 +> [48947] subordination--looked: 1 +> [48948] subscribe: 21 +> [48949] subscribed: 7 +> [48950] subscribing: 2 +> [48951] subscript: 1 +> [48952] subscription: 15 +> [48953] subscriptions: 5 +> [48954] subsequent: 19 +> [48955] subsequently: 18 +> [48956] subservience: 3 +> [48957] subserviency: 1 +> [48958] subside: 10 +> [48959] subsided: 26 +> [48960] subsides: 2 +> [48961] subsiding: 3 +> [48962] substance: 43 +> [48963] substances: 29 +> [48964] substantial: 16 +> [48965] substantial--a: 1 +> [48966] substantially: 2 +> [48967] substantiated: 1 +> [48968] substitute: 16 +> [48969] substituted: 9 +> [48970] substitutes: 1 +> [48971] substituting: 1 +> [48972] substitution: 3 +> [48973] subterfuge: 1 +> [48974] subterfuge. [48975] subterranean: 1 +> [48976] subtle: 50 +> [48977] subtler: 1 +> [48978] subtlest: 3 +> [48979] subtleties: 8 +> [48980] subtlety: 8 +> [48981] subtlety. [48982] subtly: 7 +> [48983] subtract: 3 +> [48984] subtracting: 1 +> [48985] subtraction: 2 +> [48986] suburb: 9 +> [48987] suburban: 2 +> [48988] subverting: 1 +> [48989] succeed: 59 +> [48990] succeeded: 161 +> [48991] succeeding: 6 +> [48992] succeeds: 7 +> [48993] success: 156 +> [48994] success--a: 1 +> [48995] success--in: 1 +> [48996] success--money: 1 +> [48997] success. [48998] successes: 10 +> [48999] successful: 50 +> [49000] successfully: 29 +> [49001] succession: 35 +> [49002] successive: 8 +> [49003] successively: 3 +> [49004] successor: 6 +> [49005] successors: 3 +> [49006] succor: 6 +> [49007] succored: 1 +> [49008] succour: 2 +> [49009] succulent: 1 +> [49010] succumb: 3 +> [49011] succumbed: 6 +> [49012] succumbing: 1 +> [49013] succumbs: 1 +> [49014] such: 3403 +> [49015] such—novices: 1 +> [49016] such, [49017] such--i: 1 +> [49018] such-a-one: 3 +> [49019] such-and-such: 8 +> [49020] suck: 3 +> [49021] suck—the: 1 +> [49022] sucked: 10 +> [49023] sucking: 14 +> [49024] sucking-pig: 1 +> [49025] sucking-pigs: 1 +> [49026] suckle: 1 +> [49027] suckled: 1 +> [49028] suckling: 1 +> [49029] sucks: 4 +> [49030] sudbin: 2 +> [49031] sudbin's: 1 +> [49032] sudden: 367 +> [49033] sudden.... [49034] sudden? [49035] suddenly: 2110 +> [49036] suddenly--"but: 1 +> [49037] suddenly--leaning: 1 +> [49038] suddenly--like: 1 +> [49039] suddenly--put: 1 +> [49040] suddenly--she: 1 +> [49041] suddenly--tomorrow: 1 +> [49042] suddenness: 4 +> [49043] sue: 2 +> [49044] sue\neanderthal\doroteer\neanderthal\josephine: 1 +> [49045] suet: 1 +> [49046] suez: 1 +> [49047] suffer: 133 +> [49048] suffer! [49049] sufferance: 1 +> [49050] suffered: 137 +> [49051] suffered--"do: 1 +> [49052] suffered--there: 1 +> [49053] sufferer: 15 +> [49054] sufferer's: 1 +> [49055] sufferers: 4 +> [49056] suffering: 324 +> [49057] suffering! [49058] suffering—for: 1 +> [49059] suffering)—what: 1 +> [49060] suffering, [49061] suffering--for: 1 +> [49062] suffering. [49063] suffering.”: 1 +> [49064] sufferings: 89 +> [49065] suffers: 12 +> [49066] suffice: 13 +> [49067] sufficed: 13 +> [49068] suffices: 2 +> [49069] sufficiency: 2 +> [49070] sufficient: 85 +> [49071] sufficiently: 45 +> [49072] suffocate: 3 +> [49073] suffocated: 3 +> [49074] suffocating: 2 +> [49075] suffocation: 2 +> [49076] suffocation.”: 1 +> [49077] suffolk: 10 +> [49078] suffolk's: 1 +> [49079] suffolk--charles: 1 +> [49080] suffragan: 1 +> [49081] suffrages: 2 +> [49082] suffused: 13 +> [49083] sugar: 71 +> [49084] sugar--and: 1 +> [49085] sugar-basin: 1 +> [49086] sugar-stick: 1 +> [49087] sugar-tongs: 1 +> [49088] sugared: 1 +> [49089] sugary: 4 +> [49090] suggest: 35 +> [49091] suggest, [49092] suggested: 104 +> [49093] suggested--on: 1 +> [49094] suggested--to: 1 +> [49095] suggesting: 15 +> [49096] suggestion: 50 +> [49097] suggestion. [49098] suggestions: 12 +> [49099] suggestive: 6 +> [49100] suggests: 11 +> [49101] suhoy: 3 +> [49102] suicide: 28 +> [49103] suicides: 2 +> [49104] suis: 4 +> [49105] suis [49106] suit: 83 +> [49107] suit--how: 1 +> [49108] suit--if: 1 +> [49109] suit--together: 1 +> [49110] suitability: 2 +> [49111] suitable: 73 +> [49112] suitably: 3 +> [49113] suite: 82 +> [49114] suite--count: 1 +> [49115] suited: 23 +> [49116] suites: 7 +> [49117] suiting: 3 +> [49118] suitor: 11 +> [49119] suitors: 16 +> [49120] suits: 26 +> [49121] sukharev: 6 +> [49122] sukhtelen: 2 +> [49123] sulfate: 23 +> [49124] sulfides: 1 +> [49125] sulfo-aromatic: 1 +> [49126] sulfonated: 1 +> [49127] sulfonation: 1 +> [49128] sulfuric: 28 +> [49129] sulked: 3 +> [49130] sulkily: 8 +> [49131] sulkily--and: 1 +> [49132] sulkiness: 2 +> [49133] sulking: 2 +> [49134] sulks: 1 +> [49135] sulky: 6 +> [49136] sullen: 50 +> [49137] sullenly: 27 +> [49138] sullenness: 3 +> [49139] sullied: 2 +> [49140] sullies: 1 +> [49141] sully: 2 +> [49142] sully's: 1 +> [49143] sullying: 1 +> [49144] sulphate: 9 +> [49145] sulphate._--it: 1 +> [49146] sulphates: 1 +> [49147] sulphide: 2 +> [49148] sulphides: 1 +> [49149] sulphonated: 7 +> [49150] sulphonic: 1 +> [49151] sulphur: 12 +> [49152] sulphur-like: 1 +> [49153] sulphuric: 19 +> [49154] sultan: 1 +> [49155] sultana: 1 +> [49156] sultry: 1 +> [49157] sum: 147 +> [49158] sum—a: 1 +> [49159] sum--exactly: 1 +> [49160] sum?—yet: 1 +> [49161] summarily: 1 +> [49162] summarising: 1 +> [49163] summarize: 1 +> [49164] summarized: 1 +> [49165] summed: 7 +> [49166] summer: 169 +> [49167] summer's: 4 +> [49168] summer--all: 1 +> [49169] summer--surprised: 1 +> [49170] summer-house: 13 +> [49171] summer-house. [49172] summer. [49173] summers: 2 +> [49174] summertime: 1 +> [49175] summer’s: 1 +> [49176] summing: 1 +> [49177] summit: 4 +> [49178] summits: 2 +> [49179] summon: 18 +> [49180] summoned: 48 +> [49181] summoning: 7 +> [49182] summons: 15 +> [49183] sumpter: 1 +> [49184] sumptuous: 8 +> [49185] sumptuousness: 3 +> [49186] sums: 20 +> [49187] suméne: 4 +> [49188] sun: 211 +> [49189] sun! [49190] sun's: 8 +> [49191] sun--and: 1 +> [49192] sun--it: 1 +> [49193] sun-baked: 1 +> [49194] sun-blackened: 1 +> [49195] sun-bonnet: 1 +> [49196] sun-burned: 1 +> [49197] sun-parched: 1 +> [49198] sunbeams: 3 +> [49199] sunburned: 5 +> [49200] sunburnt: 6 +> [49201] sunday: 43 +> [49202] sunday's: 1 +> [49203] sunday,--yet: 1 +> [49204] sunday. [49205] sundays: 13 +> [49206] sundays--sundays: 1 +> [49207] sundered: 1 +> [49208] sundial: 5 +> [49209] sundry: 2 +> [49210] sunflower: 6 +> [49211] sunflowers: 1 +> [49212] sung: 19 +> [49213] sunk: 40 +> [49214] sunken: 18 +> [49215] sunken;’: 1 +> [49216] sunless: 1 +> [49217] sunlight: 19 +> [49218] sunlit: 2 +> [49219] sunny: 20 +> [49220] sunrise: 11 +> [49221] sunrises: 1 +> [49222] sunset: 27 +> [49223] sunset--she: 1 +> [49224] sunsets: 2 +> [49225] sunshade: 3 +> [49226] sunshine: 81 +> [49227] suoi: 1 +> [49228] sup: 9 +> [49229] super: 3 +> [49230] super-earthly: 1 +> [49231] super-heated: 1 +> [49232] super-intended: 1 +> [49233] super-rogue's: 1 +> [49234] super-stellar: 1 +> [49235] super-terrestrial: 1 +> [49236] superabundance: 1 +> [49237] superb: 8 +> [49238] superbe: 1 +> [49239] superbly: 1 +> [49240] supercilious: 11 +> [49241] superciliously: 4 +> [49242] superciliousness: 3 +> [49243] superciliousness--he: 1 +> [49244] supererogatory: 2 +> [49245] superfatted: 1 +> [49246] superficial: 20 +> [49247] superficiality: 1 +> [49248] superficially: 4 +> [49249] superfluity: 3 +> [49250] superfluous: 41 +> [49251] superheated: 2 +> [49252] superhuman: 11 +> [49253] superimposed: 2 +> [49254] superintend: 3 +> [49255] superintended: 2 +> [49256] superintendence: 2 +> [49257] superintendent: 31 +> [49258] superintendent's: 1 +> [49259] superintendents: 1 +> [49260] superintending: 1 +> [49261] superior: 121 +> [49262] superior—to: 1 +> [49263] superior's: 11 +> [49264] superior, [49265] superior? [49266] superiority: 44 +> [49267] superiors: 26 +> [49268] superlative: 1 +> [49269] superlatively: 3 +> [49270] supernal: 2 +> [49271] supernatant: 2 +> [49272] supernatural: 9 +> [49273] supernaturally: 2 +> [49274] superscribed: 1 +> [49275] superscription: 8 +> [49276] superscriptions: 1 +> [49277] supersede: 5 +> [49278] superseded: 8 +> [49279] superseding: 2 +> [49280] superstitieux: 1 +> [49281] superstitio: 1 +> [49282] superstition: 16 +> [49283] superstitions: 3 +> [49284] superstitious: 26 +> [49285] superstitiously: 2 +> [49286] superstitiousness: 1 +> [49287] superstructure: 2 +> [49288] supervise: 1 +> [49289] supervision: 6 +> [49290] supervisory: 1 +> [49291] supped: 6 +> [49292] supper: 143 +> [49293] supper--she: 1 +> [49294] supper-room: 4 +> [49295] supper-room--it: 1 +> [49296] supper-table: 1 +> [49297] supper-time: 1 +> [49298] supper;’: 1 +> [49299] suppers: 7 +> [49300] suppert-roguet: 2 +> [49301] supping: 5 +> [49302] supplanter: 1 +> [49303] supplants: 1 +> [49304] supple: 14 +> [49305] supplement: 5 +> [49306] supplementary: 1 +> [49307] supplementation: 5 +> [49308] supplemented: 9 +> [49309] supplementer: 1 +> [49310] supplementing: 2 +> [49311] supplements: 8 +> [49312] suppleness: 1 +> [49313] suppliant: 3 +> [49314] supplicating: 4 +> [49315] supplication: 6 +> [49316] supplications: 2 +> [49317] supplied: 18 +> [49318] supplies: 22 +> [49319] supply: 28 +> [49320] supplying: 1 +> [49321] support: 192 +> [49322] supportable: 2 +> [49323] supported: 40 +> [49324] supporter: 5 +> [49325] supporters: 6 +> [49326] supporters--even: 1 +> [49327] supporting: 28 +> [49328] supports: 9 +> [49329] suppose: 440 +> [49330] suppose, [49331] suppose--you: 1 +> [49332] suppose--your: 1 +> [49333] suppose. [49334] suppose? [49335] supposed: 126 +> [49336] supposed--as: 1 +> [49337] supposes: 3 +> [49338] supposing: 63 +> [49339] supposition: 28 +> [49340] supposition--then: 1 +> [49341] suppositions: 10 +> [49342] suppress: 23 +> [49343] suppressed: 28 +> [49344] suppressed. [49345] suppressing: 7 +> [49346] suppression: 8 +> [49347] supremacy: 5 +> [49348] supreme: 23 +> [49349] supremely: 4 +> [49350] sur: 2 +> [49351] surcoats: 1 +> [49352] sure: 679 +> [49353] sure!--i'll: 1 +> [49354] sure! [49355] sure, [49356] sure--and: 1 +> [49357] sure--did: 1 +> [49358] sure--that: 1 +> [49359] sure. [49360] sure? [49361] surely: 188 +> [49362] surely--surely: 2 +> [49363] surer: 4 +> [49364] surest: 3 +> [49365] surety: 4 +> [49366] surface: 71 +> [49367] surge: 3 +> [49368] surged: 18 +> [49369] surgeon: 24 +> [49370] surgeon's: 1 +> [49371] surgery: 2 +> [49372] surging: 11 +> [49373] surikoff: 5 +> [49374] surlier: 1 +> [49375] surliness: 1 +> [49376] surly: 10 +> [49377] surmise: 6 +> [49378] surmised: 3 +> [49379] surmises: 12 +> [49380] surmount: 1 +> [49381] surmounted: 3 +> [49382] surmounter: 1 +> [49383] surmounting: 1 +> [49384] surname: 27 +> [49385] surnames: 1 +> [49386] surovsky: 2 +> [49387] surpass: 1 +> [49388] surpassed: 4 +> [49389] surpassing: 2 +> [49390] surplice: 3 +> [49391] surplices--all: 1 +> [49392] surplus: 4 +> [49393] surprise: 363 +> [49394] surprise--may: 1 +> [49395] surprise--such: 1 +> [49396] surprised: 304 +> [49397] surprises: 10 +> [49398] surprising: 46 +> [49399] surprisingly: 2 +> [49400] surrender: 48 +> [49401] surrendered: 22 +> [49402] surrendering: 3 +> [49403] surrenders: 2 +> [49404] surreptitiously: 1 +> [49405] surround: 9 +> [49406] surrounded: 127 +> [49407] surrounding: 29 +> [49408] surroundings: 63 +> [49409] surroundings—mamma: 1 +> [49410] surroundings--fruit: 1 +> [49411] surroundings. [49412] surrounds: 3 +> [49413] survey: 15 +> [49414] survey [49415] surveyed: 3 +> [49416] surveying: 3 +> [49417] surveyor's: 1 +> [49418] surveys: 1 +> [49419] survival: 1 +> [49420] survive: 29 +> [49421] survived: 10 +> [49422] surviving: 4 +> [49423] sury: 1 +> [49424] sus-pic-ion: 2 +> [49425] sus...pic...ion: 2 +> [49426] susceptibilities: 1 +> [49427] susceptible: 8 +> [49428] sushchevski: 1 +> [49429] suspect: 80 +> [49430] suspect? [49431] suspected: 89 +> [49432] suspected--that: 1 +> [49433] suspecting: 11 +> [49434] suspects: 9 +> [49435] suspend: 1 +> [49436] suspended: 11 +> [49437] suspense: 52 +> [49438] suspension: 2 +> [49439] suspicion: 121 +> [49440] suspicion!... [49441] suspicion--a: 1 +> [49442] suspicion. [49443] suspicion? [49444] suspicions: 45 +> [49445] suspicious: 57 +> [49446] suspicious—though: 1 +> [49447] suspiciously: 11 +> [49448] suspiciousness: 3 +> [49449] sustain: 4 +> [49450] sustained: 5 +> [49451] sustenance: 1 +> [49452] sutler: 2 +> [49453] sutler's: 2 +> [49454] sutlers: 3 +> [49455] suvara: 1 +> [49456] suverin: 1 +> [49457] suvorov: 16 +> [49458] suvorov's: 3 +> [49459] suvorov-like: 1 +> [49460] suvorovs: 3 +> [49461] svayka: 1 +> [49462] sventitsky: 2 +> [49463] sventsyani: 5 +> [49464] sviazhskaya: 2 +> [49465] sviazhsky: 114 +> [49466] sviazhsky's: 21 +> [49467] sviazhsky--"over: 1 +> [49468] sviazhsky--he's: 1 +> [49469] sviazhskys: 3 +> [49470] svidrigaïlov: 193 +> [49471] svidrigaïlov's: 14 +> [49472] svidrigaïlovs: 3 +> [49473] svidrigraïlovs: 1 +> [49474] svintitch: 1 +> [49475] svirbey: 1 +> [49476] svyetlov: 10 +> [49477] svyetlov. [49478] swaddling: 3 +> [49479] swagger: 14 +> [49480] swaggered: 5 +> [49481] swaggerer: 3 +> [49482] swaggering: 14 +> [49483] swaggeringly: 1 +> [49484] swain: 1 +> [49485] swallow: 27 +> [49486] swallow's: 2 +> [49487] swallow--ay: 1 +> [49488] swallow--you: 1 +> [49489] swallow-tail: 8 +> [49490] swallow-tailed: 1 +> [49491] swallowed: 28 +> [49492] swallowing: 10 +> [49493] swallows: 10 +> [49494] swam: 6 +> [49495] swamp: 27 +> [49496] swamps: 2 +> [49497] swampy: 2 +> [49498] swan: 6 +> [49499] swan-song: 1 +> [49500] sward: 6 +> [49501] swarm: 16 +> [49502] swarmed: 13 +> [49503] swarming: 16 +> [49504] swarms: 2 +> [49505] swart: 1 +> [49506] swarthy: 11 +> [49507] swashbuckler: 1 +> [49508] swathed: 2 +> [49509] swathes: 1 +> [49510] swathing-bands: 1 +> [49511] sway: 19 +> [49512] swayed: 40 +> [49513] swayed--so: 1 +> [49514] swaying: 55 +> [49515] sways: 2 +> [49516] swear: 124 +> [49517] swear, [49518] swearer: 1 +> [49519] swearing: 26 +> [49520] swears: 1 +> [49521] sweat: 43 +> [49522] sweat-drenched: 1 +> [49523] sweated: 4 +> [49524] sweating: 9 +> [49525] swede: 3 +> [49526] sweden: 3 +> [49527] sweden's: 1 +> [49528] swedes: 1 +> [49529] swedes--it: 1 +> [49530] swedish: 6 +> [49531] sweep: 23 +> [49532] sweeping: 18 +> [49533] sweepings: 3 +> [49534] sweeps: 3 +> [49535] sweet: 186 +> [49536] sweet--to: 1 +> [49537] sweet-locust: 1 +> [49538] sweet-smelling: 1 +> [49539] sweetbread: 1 +> [49540] sweeten: 2 +> [49541] sweetened: 1 +> [49542] sweeter: 3 +> [49543] sweeter-spirited: 1 +> [49544] sweetest: 5 +> [49545] sweetheart: 7 +> [49546] sweethearts: 2 +> [49547] sweetie: 1 +> [49548] sweetish: 2 +> [49549] sweetly: 16 +> [49550] sweetmeat: 2 +> [49551] sweetmeat. [49552] sweetmeats: 13 +> [49553] sweetmeats!...he'd: 1 +> [49554] sweetness: 14 +> [49555] sweets: 23 +> [49556] sweets—bring: 1 +> [49557] swell: 14 +> [49558] swelled: 17 +> [49559] swelling: 15 +> [49560] swells: 5 +> [49561] swept: 60 +> [49562] swerve: 1 +> [49563] swerved: 10 +> [49564] swerving: 3 +> [49565] swift: 36 +> [49566] swifter: 1 +> [49567] swiftest: 2 +> [49568] swiftly: 54 +> [49569] swiftness: 9 +> [49570] swim: 16 +> [49571] swimmers: 1 +> [49572] swimming: 10 +> [49573] swimming-mistress: 1 +> [49574] swims: 1 +> [49575] swindle: 5 +> [49576] swindled: 4 +> [49577] swindler: 5 +> [49578] swindlers: 3 +> [49579] swindling: 4 +> [49580] swindling;--they: 1 +> [49581] swine: 3 +> [49582] swing: 18 +> [49583] swinging: 30 +> [49584] swings: 1 +> [49585] swinish: 3 +> [49586] swinishness: 4 +> [49587] swirl: 4 +> [49588] swirled: 1 +> [49589] swirling: 4 +> [49590] swish: 4 +> [49591] swishing: 2 +> [49592] swiss: 16 +> [49593] switch: 8 +> [49594] switch--there: 1 +> [49595] switched: 2 +> [49596] switches: 2 +> [49597] switching: 1 +> [49598] switzerland: 45 +> [49599] swivel: 2 +> [49600] swollen: 50 +> [49601] swoon: 8 +> [49602] swooned: 7 +> [49603] swooning: 5 +> [49604] swoop: 2 +> [49605] swooped: 6 +> [49606] swooping: 4 +> [49607] swopped: 1 +> [49608] sword: 117 +> [49609] sword's: 2 +> [49610] sword, [49611] sword--heaven: 1 +> [49612] sword--i: 1 +> [49613] sword--that: 1 +> [49614] sword-belt: 1 +> [49615] sword-cut: 1 +> [49616] sword-gloves: 1 +> [49617] sword-hilt: 1 +> [49618] sword-hilt--"that: 1 +> [49619] sword-knot: 3 +> [49620] sword-knots: 1 +> [49621] swords: 26 +> [49622] swordsman: 2 +> [49623] swordsmanship: 1 +> [49624] swordsmen: 3 +> [49625] swore: 66 +> [49626] sworn: 33 +> [49627] swung: 33 +> [49628] sychophants: 1 +> [49629] syetotchkin: 6 +> [49630] sygne: 1 +> [49631] syllable: 20 +> [49632] syllables: 6 +> [49633] syllogism: 1 +> [49634] sylvester: 3 +> [49635] sylvester's: 1 +> [49636] sylvester, [49637] sylvic: 3 +> [49638] symbol: 12 +> [49639] symbolic: 6 +> [49640] symbolic, [49641] symbolical: 5 +> [49642] symbolism: 2 +> [49643] symbolize: 1 +> [49644] symbolized: 5 +> [49645] symbolizes: 1 +> [49646] symbols: 3 +> [49647] symeon: 3 +> [49648] symmetrical: 1 +> [49649] symmetrically: 4 +> [49650] symmetry: 5 +> [49651] sympathetic: 33 +> [49652] sympathetically: 11 +> [49653] sympathies: 10 +> [49654] sympathise: 3 +> [49655] sympathize: 15 +> [49656] sympathized: 8 +> [49657] sympathizers: 2 +> [49658] sympathizing: 9 +> [49659] sympathy: 167 +> [49660] sympathy--but: 1 +> [49661] sympathy--it: 1 +> [49662] symptom: 5 +> [49663] symptoms: 19 +> [49664] synagogue: 20 +> [49665] synagogue's: 2 +> [49666] synagogues: 1 +> [49667] syncope: 1 +> [49668] syndic: 4 +> [49669] syndics: 1 +> [49670] synod: 5 +> [49671] synod--a: 1 +> [49672] synonymous: 19 +> [49673] synopsis: 1 +> [49674] synoptic: 18 +> [49675] synoptics: 3 +> [49676] syntagma: 13 +> [49677] syntagmas: 2 +> [49678] syntax: 2 +> [49679] synthesis: 2 +> [49680] synthetic: 1 +> [49681] synthetics: 2 +> [49682] syphon: 2 +> [49683] syphoning: 1 +> [49684] syracuse: 2 +> [49685] syracuse! [49686] syracuse. [49687] syria: 19 +> [49688] syria,[19: 1 +> [49689] syriac: 1 +> [49690] syrian, [49691] syrian [49692] syringe: 1 +> [49693] syrup: 4 +> [49694] syrupy: 1 +> [49695] system: 101 +> [49696] system's: 1 +> [49697] system--a: 1 +> [49698] system-makers: 1 +> [49699] systematic: 6 +> [49700] systematically: 1 +> [49701] systems: 15 +> [49702] sépare: 1 +> [49703] sérieux: 1 +> [49704] t: 22 +> [49705] t'aimons: 1 +> [49706] t-wo: 1 +> [49707] t...act: 1 +> [49708] ta: 1 +> [49709] ta!--bonne: 1 +> [49710] tabac.’: 1 +> [49711] tabernacle: 1 +> [49712] tabernacled: 1 +> [49713] tabernacles: 1 +> [49714] tabernacling: 2 +> [49715] table: 1059 +> [49716] table--"i: 1 +> [49717] table--"it: 1 +> [49718] table--but: 1 +> [49719] table--in: 1 +> [49720] table--looking: 1 +> [49721] table--on: 1 +> [49722] table--very: 1 +> [49723] table-cloth: 2 +> [49724] table-fellowship: 1 +> [49725] table-land: 1 +> [49726] table-turning: 4 +> [49727] table. [49728] tableau: 2 +> [49729] tableaux: 5 +> [49730] tablecloth: 2 +> [49731] tablecloths: 2 +> [49732] tables: 68 +> [49733] tablespoonful: 1 +> [49734] tablet: 1 +> [49735] tabletop: 1 +> [49736] tabouret: 1 +> [49737] tabula: 1 +> [49738] tabulated: 4 +> [49739] tabulated--chaos: 2 +> [49740] tabulation: 2 +> [49741] tache: 2 +> [49742] tacit: 5 +> [49743] tacitly: 5 +> [49744] taciturn: 19 +> [49745] taciturnity: 2 +> [49746] tack: 3 +> [49747] tack--that: 2 +> [49748] tacked: 4 +> [49749] tacking: 1 +> [49750] tackle: 4 +> [49751] tackled: 1 +> [49752] tacks: 1 +> [49753] tact: 45 +> [49754] tactful: 3 +> [49755] tactfully: 5 +> [49756] tactical: 3 +> [49757] tactician: 2 +> [49758] tactics: 13 +> [49759] tactless: 11 +> [49760] tactlessly: 1 +> [49761] tafa: 1 +> [49762] tafa-lafa: 1 +> [49763] taffety: 1 +> [49764] tag: 2 +> [49765] taggart: 1 +> [49766] tagging: 1 +> [49767] tagrag: 2 +> [49768] tail: 90 +> [49769] tail-coat: 3 +> [49770] tailings: 1 +> [49771] tailor: 21 +> [49772] tailor's: 1 +> [49773] tailor--were: 1 +> [49774] tailors: 7 +> [49775] tailor’s: 2 +> [49776] tailpockets: 1 +> [49777] tails: 10 +> [49778] tails!--but: 1 +> [49779] tain't: 1 +> [49780] taine: 1 +> [49781] taint: 1 +> [49782] tainted: 3 +> [49783] take: 2101 +> [49784] take&mdash: 1 +> [49785] take--things: 1 +> [49786] take--without: 1 +> [49787] taken: 1099 +> [49788] taken—taken: 1 +> [49789] taken--they: 1 +> [49790] taken.[11: 1 +> [49791] takes: 159 +> [49792] takes.”: 1 +> [49793] taketh: 1 +> [49794] taking: 736 +> [49795] takings: 1 +> [49796] talc: 8 +> [49797] tale: 77 +> [49798] tale--'but: 1 +> [49799] tale--as: 1 +> [49800] tale-bearers: 1 +> [49801] tale.”: 1 +> [49802] talent: 52 +> [49803] talent--oh: 1 +> [49804] talented: 20 +> [49805] talents: 28 +> [49806] tales: 35 +> [49807] tales! [49808] talgol: 6 +> [49809] talisman: 3 +> [49810] talk: 950 +> [49811] talk, [49812] talk--all: 1 +> [49813] talk--and--and--the: 1 +> [49814] talk--as: 1 +> [49815] talk--how: 1 +> [49816] talk--pointed: 1 +> [49817] talk--so: 1 +> [49818] talk;’: 1 +> [49819] talkative: 23 +> [49820] talked: 423 +> [49821] talked! [49822] talker: 6 +> [49823] talkers: 17 +> [49824] talking: 766 +> [49825] talking--can't: 1 +> [49826] talking--even: 1 +> [49827] talking-to: 1 +> [49828] talking? [49829] talks: 47 +> [49830] talks! [49831] talks--she: 1 +> [49832] tall: 223 +> [49833] taller: 12 +> [49834] tallest: 2 +> [49835] talleyrand: 7 +> [49836] tallied: 1 +> [49837] tallow: 130 +> [49838] tallow-candle: 1 +> [49839] tallows: 1 +> [49840] tallowy: 1 +> [49841] talma: 1 +> [49842] talmud: 2 +> [49843] talmudic: 1 +> [49844] talpa: 1 +> [49845] tambourine: 1 +> [49846] tambov: 1 +> [49847] tame: 2 +> [49848] tamed: 1 +> [49849] tamely: 1 +> [49850] taming: 1 +> [49851] tammy: 1 +> [49852] tampering: 2 +> [49853] tamworth: 3 +> [49854] tan: 5 +> [49855] tancred: 16 +> [49856] tancred's: 1 +> [49857] tandem: 1 +> [49858] tandem-whip: 1 +> [49859] tangent: 2 +> [49860] tangential: 1 +> [49861] tangibility: 1 +> [49862] tangible: 7 +> [49863] tangibly: 1 +> [49864] tangle: 16 +> [49865] tangled: 8 +> [49866] tango: 4 +> [49867] tania: 1 +> [49868] tanitchka: 1 +> [49869] tank: 83 +> [49870] tankard: 2 +> [49871] tanks: 6 +> [49872] tanned: 1 +> [49873] tannin: 4 +> [49874] tanning: 1 +> [49875] tant: 6 +> [49876] tantalising: 1 +> [49877] tantalizing: 1 +> [49878] tantamount: 2 +> [49879] tante: 2 +> [49880] tantrums: 1 +> [49881] tanya: 24 +> [49882] tanya's: 3 +> [49883] tap: 14 +> [49884] tap-rooms: 1 +> [49885] tap-tap: 1 +> [49886] tape: 5 +> [49887] taper: 16 +> [49888] taper-box: 1 +> [49889] tapers: 4 +> [49890] tapes: 4 +> [49891] tapestried: 3 +> [49892] tapestries: 3 +> [49893] tapestry: 4 +> [49894] tapestry-covered: 1 +> [49895] tapped: 29 +> [49896] tapping: 20 +> [49897] taps: 4 +> [49898] tar: 25 +> [49899] tar-barrels: 2 +> [49900] taradiddle: 1 +> [49901] taras: 5 +> [49902] taras's: 2 +> [49903] tard: 1 +> [49904] tardiness: 1 +> [49905] tardy: 1 +> [49906] tared: 1 +> [49907] tares: 2 +> [49908] target: 3 +> [49909] tariff: 1 +> [49910] tarik: 1 +> [49911] tarlatan: 1 +> [49912] tarlatane: 2 +> [49913] tarn: 3 +> [49914] tarnished: 2 +> [49915] tarpaulin: 2 +> [49916] tarred: 2 +> [49917] tarry: 2 +> [49918] tars: 1 +> [49919] tarsus: 2 +> [49920] tart: 6 +> [49921] tart--he: 1 +> [49922] tartar: 7 +> [49923] tartars: 1 +> [49924] tartines: 2 +> [49925] tartly: 3 +> [49926] tartly--this: 1 +> [49927] tarts: 1 +> [49928] tartuffes: 1 +> [49929] tartuffism: 1 +> [49930] tarutino: 31 +> [49931] tasha: 1 +> [49932] tashkend: 6 +> [49933] task: 87 +> [49934] task-masters: 1 +> [49935] tasks: 5 +> [49936] tassel: 2 +> [49937] tasseled: 1 +> [49938] tasselled: 3 +> [49939] tassels: 5 +> [49940] taste: 160 +> [49941] taste--he: 1 +> [49942] tasted: 22 +> [49943] tasteful: 2 +> [49944] tastefully: 1 +> [49945] tastelessly: 1 +> [49946] tastes: 24 +> [49947] tasting: 3 +> [49948] tasty: 1 +> [49949] tat--and: 1 +> [49950] tatar: 17 +> [49951] tatarinova: 5 +> [49952] tatars: 2 +> [49953] tatawinova: 2 +> [49954] tatian: 2 +> [49955] tatterdemalions: 1 +> [49956] tattered: 21 +> [49957] tatters: 9 +> [49958] tattler: 1 +> [49959] tattoo: 3 +> [49960] tatyana: 2 +> [49961] tatyana. [49962] taught: 103 +> [49963] taught.”: 1 +> [49964] taunt: 8 +> [49965] taunted: 4 +> [49966] taunting: 12 +> [49967] tauntingly: 3 +> [49968] taunts: 10 +> [49969] taurida: 4 +> [49970] taurus: 4 +> [49971] tavern: 123 +> [49972] tavern—the: 1 +> [49973] tavern—and: 1 +> [49974] tavern—that: 1 +> [49975] tavern-brawler: 1 +> [49976] tavern-keeper: 3 +> [49977] taverns: 25 +> [49978] taverns—he: 1 +> [49979] tawny: 1 +> [49980] tax: 138 +> [49981] tax-gatherer: 1 +> [49982] taxed: 4 +> [49983] taxes: 30 +> [49984] taxes--some: 1 +> [49985] taxing: 5 +> [49986] taxpayer--though: 1 +> [49987] taylor: 1 +> [49988] tchagin: 1 +> [49989] tcharskaya: 2 +> [49990] tcharsky: 2 +> [49991] tchatsky: 1 +> [49992] tchebaroff: 19 +> [49993] tchebaroff's: 1 +> [49994] tchebarov: 6 +> [49995] tchefirovka: 1 +> [49996] tchermashnya: 30 +> [49997] tchermashnya—and: 1 +> [49998] tchermashnya—but: 1 +> [49999] tchermashnya—why: 1 +> [50000] tchermashnya, [50001] tchermashnya. [50002] tchermashnya? [50003] tchernomazov: 1 +> [50004] tchernomazov, [50005] tchernosvitoff: 1 +> [50006] tcherny: 1 +> [50007] tchetchensky: 6 +> [50008] tchibisova: 2 +> [50009] tchirikov: 8 +> [50010] tchirkova: 1 +> [50011] tchitchikov: 2 +> [50012] tchizhov: 9 +> [50013] tchizhov, [50014] tchk: 2 +> [50015] tchudovo: 1 +> [50016] tchurkin's: 3 +> [50017] tea: 357 +> [50018] tea-glass: 1 +> [50019] tea-parties: 1 +> [50020] tea-pot: 1 +> [50021] tea-table: 5 +> [50022] tea-tables: 1 +> [50023] tea-things: 2 +> [50024] tea-time: 2 +> [50025] tea-tray: 1 +> [50026] tea? [50027] teach: 84 +> [50028] teacher: 61 +> [50029] teacher! [50030] teacher's: 1 +> [50031] teacher, [50032] teachers: 44 +> [50033] teachers, [50034] teachers--his: 1 +> [50035] teaches: 16 +> [50036] teaching: 84 +> [50037] teaching? [50038] teachings: 3 +> [50039] team: 12 +> [50040] teapot: 3 +> [50041] tear: 81 +> [50042] tear--from: 1 +> [50043] tear-shedding: 1 +> [50044] tear-stained: 7 +> [50045] tear-worn: 3 +> [50046] tear. [50047] teardrops: 1 +> [50048] tearful: 22 +> [50049] tearfully: 10 +> [50050] tearing: 29 +> [50051] tearless: 3 +> [50052] tears: 731 +> [50053] tears, [50054] tears--and: 1 +> [50055] tears--it's: 1 +> [50056] tears--now: 1 +> [50057] tears--would: 1 +> [50058] tears. [50059] tease: 17 +> [50060] teased: 8 +> [50061] teasing: 19 +> [50062] teaspoon: 1 +> [50063] teatime: 2 +> [50064] technical: 7 +> [50065] technically: 2 +> [50066] technique: 9 +> [50067] technologists: 1 +> [50068] tedious: 20 +> [50069] tedious— [50070] tediously: 1 +> [50071] tedium: 1 +> [50072] teem: 1 +> [50073] teemed: 2 +> [50074] teeming: 2 +> [50075] teens: 1 +> [50076] teeth: 222 +> [50077] teeth! [50078] teetotaller: 1 +> [50079] tei: 1 +> [50080] tei.2: 3 +> [50081] teiheader: 2 +> [50082] telegram: 36 +> [50083] telegrams: 6 +> [50084] telegraph: 7 +> [50085] telegraphed: 7 +> [50086] telegraphing: 1 +> [50087] telescope: 3 +> [50088] tell: 2229 +> [50089] tell--and: 2 +> [50090] tell--but: 1 +> [50091] tell-tale: 4 +> [50092] tell? [50093] tellement: 1 +> [50094] teller: 1 +> [50095] telling: 304 +> [50096] tells: 67 +> [50097] telyanin: 23 +> [50098] telyanin's: 8 +> [50099] telyatin: 3 +> [50100] temerity: 2 +> [50101] temper: 146 +> [50102] temper'll: 1 +> [50103] temper--that's: 1 +> [50104] temperament: 19 +> [50105] temperament.--some: 1 +> [50106] temperance: 1 +> [50107] temperately: 1 +> [50108] temperature: 112 +> [50109] temperature_--from: 1 +> [50110] temperatures: 5 +> [50111] tempered: 3 +> [50112] tempers: 5 +> [50113] tempest: 12 +> [50114] tempest—worse: 1 +> [50115] tempests: 1 +> [50116] temple: 62 +> [50117] temple-priesthood: 1 +> [50118] temples: 46 +> [50119] temporal: 6 +> [50120] temporarily: 7 +> [50121] temporarily--he: 1 +> [50122] temporary: 23 +> [50123] temporize: 1 +> [50124] temps: 5 +> [50125] tempt: 8 +> [50126] temptation: 46 +> [50127] temptation! [50128] temptation—for: 1 +> [50129] temptation--the: 1 +> [50130] temptation [50131] temptation? [50132] temptations: 15 +> [50133] tempted: 33 +> [50134] tempter: 4 +> [50135] tempting: 7 +> [50136] temptingly: 1 +> [50137] tempts: 2 +> [50138] ten: 492 +> [50139] ten--but: 1 +> [50140] ten-copeck: 1 +> [50141] ten-gun: 1 +> [50142] ten-horned: 1 +> [50143] ten-mile: 1 +> [50144] ten-rouble: 5 +> [50145] ten-thousandth: 1 +> [50146] ten-year: 1 +> [50147] ten-year-old: 1 +> [50148] ten-years: 1 +> [50149] tenacious: 3 +> [50150] tenaciously: 2 +> [50151] tenacity: 2 +> [50152] tenant: 6 +> [50153] tenanted: 1 +> [50154] tenantless: 1 +> [50155] tenants: 9 +> [50156] tenants--who: 1 +> [50157] tend: 10 +> [50158] tendance: 1 +> [50159] tended: 4 +> [50160] tendencies: 13 +> [50161] tendencies--on: 1 +> [50162] tendency: 39 +> [50163] tender: 133 +> [50164] tender! [50165] tender-hearted: 2 +> [50166] tenderer: 4 +> [50167] tenderer! [50168] tenderest: 6 +> [50169] tenderly: 37 +> [50170] tenderness: 105 +> [50171] tenderness--and: 1 +> [50172] tending: 9 +> [50173] tendons: 1 +> [50174] tendre: 2 +> [50175] tendril: 1 +> [50176] tendrils: 3 +> [50177] tends: 6 +> [50178] tenements: 4 +> [50179] tenet: 1 +> [50180] tenez: 3 +> [50181] tenfold: 8 +> [50182] tennis: 3 +> [50183] tenor: 8 +> [50184] tenors: 1 +> [50185] tens: 19 +> [50186] tense: 8 +> [50187] tensely: 1 +> [50188] tenses: 1 +> [50189] tension: 12 +> [50190] tent: 22 +> [50191] tentative: 2 +> [50192] tentatively: 1 +> [50193] tenth: 34 +> [50194] tenths: 6 +> [50195] tents: 6 +> [50196] tenure: 1 +> [50197] terebyeva: 2 +> [50198] terentich: 6 +> [50199] terentieff: 15 +> [50200] terenty: 5 +> [50201] tereshtchenko: 1 +> [50202] term: 39 +> [50203] term--is: 1 +> [50204] termagant: 1 +> [50205] termed: 22 +> [50206] terminate: 1 +> [50207] terminated: 3 +> [50208] terminates: 1 +> [50209] termination: 3 +> [50210] termini: 1 +> [50211] terms: 545 +> [50212] terms--galloped: 1 +> [50213] terpenes: 1 +> [50214] terra: 1 +> [50215] terrace: 60 +> [50216] terrace-without: 1 +> [50217] terraced: 1 +> [50218] terraces: 1 +> [50219] terre-à-terre: 2 +> [50220] terrestial: 1 +> [50221] terrestrial: 7 +> [50222] terrible: 453 +> [50223] terrible! [50224] terrible--and: 1 +> [50225] terrible--disgusting: 1 +> [50226] terrible--would: 1 +> [50227] terrible-looking: 2 +> [50228] terribly: 94 +> [50229] terribly, [50230] terribly--hasn't: 1 +> [50231] terribly--her: 1 +> [50232] terribly--spoke: 1 +> [50233] terrier: 1 +> [50234] terriers: 3 +> [50235] terrific: 6 +> [50236] terrified: 31 +> [50237] terrify: 3 +> [50238] terrifying: 6 +> [50239] territories: 2 +> [50240] territory: 8 +> [50241] terror: 246 +> [50242] terror-stricken: 10 +> [50243] terror. [50244] terrors: 9 +> [50245] tertian: 1 +> [50246] tertullian: 3 +> [50247] tesoro: 1 +> [50248] tesoro_--not: 1 +> [50249] test: 62 +> [50250] test._--as: 1 +> [50251] testament: 64 +> [50252] testament [50253] tested: 19 +> [50254] tester: 3 +> [50255] tester's: 1 +> [50256] testified: 8 +> [50257] testified--he: 1 +> [50258] testifies: 3 +> [50259] testify: 7 +> [50260] testily: 2 +> [50261] testimonial: 1 +> [50262] testimonies: 2 +> [50263] testimony: 19 +> [50264] testing: 13 +> [50265] tests: 9 +> [50266] testy: 1 +> [50267] tete: 4 +> [50268] tete-a-tate: 1 +> [50269] tete-a-tete: 8 +> [50270] tete-de-pont: 2 +> [50271] tethered: 7 +> [50272] tetrachloride: 2 +> [50273] teucer: 1 +> [50274] tex5: 1 +> [50275] text: 42 +> [50276] text, [50277] text--in: 1 +> [50278] text-align: 6 +> [50279] text6: 1 +> [50280] textbooks: 1 +> [50281] textile: 14 +> [50282] texts: 7 +> [50283] texts[2: 1 +> [50284] textual: 11 +> [50285] texture: 3 +> [50286] texty10: 1 +> [50287] texty7: 1 +> [50288] texty8: 1 +> [50289] texty9: 1 +> [50290] tfoo: 4 +> [50291] tfu: 3 +> [50292] th-this: 1 +> [50293] tha-at: 4 +> [50294] tha...ank: 1 +> [50295] thabor: 3 +> [50296] thaler: 1 +> [50297] thalers: 1 +> [50298] thames: 5 +> [50299] than: 3203 +> [50300] than--never: 1 +> [50301] thank: 328 +> [50302] thank-you: 1 +> [50303] thanked: 50 +> [50304] thanked!--he: 1 +> [50305] thankful: 43 +> [50306] thankfulness: 17 +> [50307] thanking: 15 +> [50308] thankless: 1 +> [50309] thanklessness: 1 +> [50310] thanks: 126 +> [50311] thanks--which: 1 +> [50312] thanks. [50313] thanksgiving: 11 +> [50314] that: 37118 +> [50315] that!... [50316] that! [50317] that"--and: 1 +> [50318] that&mdash: 1 +> [50319] that— [50320] that—greatest: 1 +> [50321] that—this: 1 +> [50322] that—but: 2 +> [50323] that—creature: 1 +> [50324] that—creature, [50325] that—do: 1 +> [50326] that—he: 1 +> [50327] that—i: 1 +> [50328] that—it's: 1 +> [50329] that—our: 1 +> [50330] that—then: 1 +> [50331] that—why: 1 +> [50332] that—would: 1 +> [50333] that'll: 19 +> [50334] that's: 1774 +> [50335] that's--hell: 1 +> [50336] that'ud: 1 +> [50337] that)--had: 1 +> [50338] that,--but: 1 +> [50339] that, [50340] that--and: 3 +> [50341] that--but: 1 +> [50342] that--came: 1 +> [50343] that--can: 1 +> [50344] that--disgust: 1 +> [50345] that--eh: 1 +> [50346] that--eighty: 1 +> [50347] that--he: 2 +> [50348] that--here: 1 +> [50349] that--i: 4 +> [50350] that--if: 2 +> [50351] that--it: 2 +> [50352] that--no: 1 +> [50353] that--nothing: 1 +> [50354] that--now: 1 +> [50355] that--on: 2 +> [50356] that--only: 1 +> [50357] that--or: 1 +> [50358] that--she: 2 +> [50359] that--thanks: 1 +> [50360] that--that: 4 +> [50361] that--the: 1 +> [50362] that--there: 1 +> [50363] that--this: 1 +> [50364] that--though: 1 +> [50365] that--was: 2 +> [50366] that--we: 1 +> [50367] that--what: 2 +> [50368] that--which: 1 +> [50369] that--why: 1 +> [50370] that--why--it's--it's: 1 +> [50371] that--yes: 1 +> [50372] that--you: 2 +> [50373] that--you've: 1 +> [50374] that.... [50375] that...and: 1 +> [50376] that...i've: 1 +> [50377] that...that...that: 1 +> [50378] that...the: 1 +> [50379] that. [50380] that.’: 1 +> [50381] that [50382] that?--it's: 1 +> [50383] that?--there: 1 +> [50384] that?--why: 1 +> [50385] that? [50386] that_--of: 1 +> [50387] thatch: 4 +> [50388] thatched: 7 +> [50389] thatching: 1 +> [50390] thaw: 8 +> [50391] thawed: 4 +> [50392] thawing: 5 +> [50393] thaws: 1 +> [50394] the: 137465 +> [50395] the--(1: 1 +> [50396] the--the: 7 +> [50397] the--unfortunate: 1 +> [50398] the-the: 1 +> [50399] the...what's: 1 +> [50400] theah: 1 +> [50401] theater: 50 +> [50402] theater! [50403] theaters: 4 +> [50404] theaters--but: 1 +> [50405] theatre: 25 +> [50406] theatrical: 7 +> [50407] theatrically: 1 +> [50408] theatricals: 10 +> [50409] thebes: 1 +> [50410] thebuthis: 2 +> [50411] thee: 130 +> [50412] thee! [50413] thee, [50414] thee. [50415] thee.’: 1 +> [50416] theft: 15 +> [50417] theft. [50418] thefts: 1 +> [50419] their: 4917 +> [50420] theirs: 47 +> [50421] theism: 1 +> [50422] them: 6649 +> [50423] them! [50424] them"--and: 1 +> [50425] them—all: 1 +> [50426] them—i: 2 +> [50427] them—if: 1 +> [50428] them—katerina: 1 +> [50429] them—mitya: 1 +> [50430] them—neither: 1 +> [50431] them—so: 1 +> [50432] them—they're: 1 +> [50433] them—to: 1 +> [50434] them—which: 1 +> [50435] them'--we: 1 +> [50436] them,--but: 1 +> [50437] them, [50438] them,’: 1 +> [50439] them--_herself: 1 +> [50440] them--a: 4 +> [50441] them--all: 1 +> [50442] them--almost: 1 +> [50443] them--and: 6 +> [50444] them--as: 1 +> [50445] them--assumed: 1 +> [50446] them--at: 1 +> [50447] them--be: 1 +> [50448] them--been: 1 +> [50449] them--between: 1 +> [50450] them--did: 1 +> [50451] them--do: 1 +> [50452] them--he: 3 +> [50453] them--her: 1 +> [50454] them--his: 2 +> [50455] them--how: 1 +> [50456] them--i: 2 +> [50457] them--in: 2 +> [50458] them--it: 3 +> [50459] them--it's: 1 +> [50460] them--lovely: 1 +> [50461] them--not: 1 +> [50462] them--of: 2 +> [50463] them--or: 1 +> [50464] them--perhaps: 1 +> [50465] them--religious: 1 +> [50466] them--remained: 1 +> [50467] them--returned: 1 +> [50468] them--stood: 1 +> [50469] them--that: 4 +> [50470] them--that's: 1 +> [50471] them--the: 4 +> [50472] them--to: 1 +> [50473] them--toft: 1 +> [50474] them--was: 1 +> [50475] them--were: 1 +> [50476] them--what: 1 +> [50477] them--which: 1 +> [50478] them--yet: 1 +> [50479] them. [50480] them. [50481] them.”: 5 +> [50482] them;”: 1 +> [50483] them [50484] them—that: 1 +> [50485] them? [50486] them?’: 1 +> [50487] theme: 23 +> [50488] themes: 6 +> [50489] themselves: 607 +> [50490] themselves! [50491] themselves, [50492] themselves--and: 1 +> [50493] themselves--congregated: 1 +> [50494] themselves--from: 1 +> [50495] themselves--in: 1 +> [50496] themselves--indeed: 1 +> [50497] themselves...to: 1 +> [50498] then: 5009 +> [50499] then! [50500] then"--father: 1 +> [50501] then— [50502] then—a: 1 +> [50503] then—good-by: 1 +> [50504] then—only: 1 +> [50505] then—who: 1 +> [50506] then)—and: 1 +> [50507] then, [50508] then--again: 1 +> [50509] then--ah: 1 +> [50510] then--all: 1 +> [50511] then--and: 3 +> [50512] then--announce: 1 +> [50513] then--as: 2 +> [50514] then--be: 1 +> [50515] then--but: 1 +> [50516] then--flop: 1 +> [50517] then--for: 1 +> [50518] then--forty: 1 +> [50519] then--ha: 1 +> [50520] then--he: 1 +> [50521] then--heaven: 1 +> [50522] then--i: 7 +> [50523] then--if: 2 +> [50524] then--is: 1 +> [50525] then--keller: 1 +> [50526] then--no: 1 +> [50527] then--oh: 2 +> [50528] then--perhaps: 1 +> [50529] then--then: 3 +> [50530] then--they: 1 +> [50531] then--this: 3 +> [50532] then--why: 1 +> [50533] then--yes: 1 +> [50534] then.--aglaya: 1 +> [50535] then.... [50536] then...roast: 1 +> [50537] then. [50538] then?--unlighted: 1 +> [50539] then? [50540] thence: 16 +> [50541] thenceforth: 1 +> [50542] theo: 1 +> [50543] theodore: 15 +> [50544] theodosia: 4 +> [50545] theodosia's: 1 +> [50546] theol: 1 +> [50547] theologian: 5 +> [50548] theologians: 2 +> [50549] theological: 5 +> [50550] theology: 12 +> [50551] theophilus: 2 +> [50552] theoretical: 11 +> [50553] theoretically: 8 +> [50554] theoreticians: 2 +> [50555] theories: 27 +> [50556] theories--that: 1 +> [50557] theories. [50558] theorist: 2 +> [50559] theorist-generals: 1 +> [50560] theorists: 3 +> [50561] theory: 125 +> [50562] theory's: 2 +> [50563] theosophists: 1 +> [50564] theosophy: 5 +> [50565] therapeutic: 3 +> [50566] there: 7742 +> [50567] there! [50568] there! [50569] there!”: 1 +> [50570] there"--he: 2 +> [50571] there— [50572] there—i: 1 +> [50573] there—something: 1 +> [50574] there'd: 7 +> [50575] there'll: 29 +> [50576] there's: 687 +> [50577] there,--and: 1 +> [50578] there,--of: 1 +> [50579] there, [50580] there, [50581] there--a: 1 +> [50582] there--all: 1 +> [50583] there--and: 1 +> [50584] there--anything: 1 +> [50585] there--by: 4 +> [50586] there--had: 1 +> [50587] there--he: 1 +> [50588] there--i: 2 +> [50589] there--if: 1 +> [50590] there--incredibly: 1 +> [50591] there--it: 4 +> [50592] there--it's: 1 +> [50593] there--not: 1 +> [50594] there--now: 1 +> [50595] there--oh: 1 +> [50596] there--on: 1 +> [50597] there--policemen: 1 +> [50598] there--shame: 1 +> [50599] there--silent: 1 +> [50600] there--so: 2 +> [50601] there--that: 2 +> [50602] there--that's: 2 +> [50603] there--the: 3 +> [50604] there--there: 1 +> [50605] there--they: 2 +> [50606] there--those: 1 +> [50607] there--wait: 1 +> [50608] there--was: 1 +> [50609] there--what: 1 +> [50610] there--when: 1 +> [50611] there--whether: 1 +> [50612] there--will: 1 +> [50613] there--you: 3 +> [50614] there--you've: 1 +> [50615] there...i: 1 +> [50616] there...in: 1 +> [50617] there. [50618] there?--there: 1 +> [50619] there? [50620] thereabout: 1 +> [50621] thereabouts: 1 +> [50622] thereafter: 5 +> [50623] thereby: 46 +> [50624] therefore: 416 +> [50625] therefore— [50626] therefore, [50627] therefore--this: 1 +> [50628] therefore--though: 1 +> [50629] therefore--to: 1 +> [50630] therefrom: 5 +> [50631] therein: 22 +> [50632] therein.[16: 1 +> [50633] thereof: 7 +> [50634] thereof;’: 1 +> [50635] thereon: 7 +> [50636] theresa: 3 +> [50637] thereupon: 9 +> [50638] therewith: 4 +> [50639] thermometer: 33 +> [50640] thermometer--the: 1 +> [50641] thermopylae: 2 +> [50642] these: 2294 +> [50643] these--but: 1 +> [50644] these--i: 1 +> [50645] these--intriguers--especially: 1 +> [50646] these--the: 1 +> [50647] these--yes: 1 +> [50648] these--you: 1 +> [50649] these.’: 1 +> [50650] thesis: 2 +> [50651] thess: 10 +> [50652] thessalonian: 1 +> [50653] thessalonians: 5 +> [50654] thessalonica: 3 +> [50655] they: 9291 +> [50656] they'd: 30 +> [50657] they'll: 118 +> [50658] they're: 152 +> [50659] they've: 120 +> [50660] they--friends: 1 +> [50661] they--look: 1 +> [50662] they--that: 1 +> [50663] they--they're: 1 +> [50664] they--which: 1 +> [50665] they--wurt: 1 +> [50666] they--you: 1 +> [50667] they?--and: 1 +> [50668] they?--but: 1 +> [50669] they? [50670] thibaut: 2 +> [50671] thick: 148 +> [50672] thick--thick: 1 +> [50673] thick-necked: 1 +> [50674] thick-set: 7 +> [50675] thick.... [50676] thicken: 3 +> [50677] thickened: 2 +> [50678] thicker: 12 +> [50679] thickest: 5 +> [50680] thicket: 6 +> [50681] thickets: 1 +> [50682] thickly: 21 +> [50683] thickly-set: 1 +> [50684] thickness: 7 +> [50685] thief: 94 +> [50686] thief! [50687] thief, [50688] thief. [50689] thief.’: 1 +> [50690] thief?’: 1 +> [50691] thiers: 17 +> [50692] thieves: 15 +> [50693] thieving--(it: 1 +> [50694] thievish: 2 +> [50695] thigh: 6 +> [50696] thighbone: 1 +> [50697] thighs: 5 +> [50698] thimble: 3 +> [50699] thimbleful: 1 +> [50700] thin: 302 +> [50701] thin--moved: 1 +> [50702] thin-faced: 1 +> [50703] thin-walled: 1 +> [50704] thine: 21 +> [50705] thing: 1402 +> [50706] thing!--when: 1 +> [50707] thing! [50708] thing! [50709] thing"--bartnyansky: 1 +> [50710] thing—charming: 1 +> [50711] thing—i: 1 +> [50712] thing—of: 1 +> [50713] thing's: 9 +> [50714] thing, [50715] thing--a: 1 +> [50716] thing--as: 1 +> [50717] thing--don't: 1 +> [50718] thing--faith: 1 +> [50719] thing--he'd: 1 +> [50720] thing--he's: 1 +> [50721] thing--i: 3 +> [50722] thing--it's: 1 +> [50723] thing--lebedeff: 1 +> [50724] thing--love: 1 +> [50725] thing--nina: 1 +> [50726] thing--not: 1 +> [50727] thing--others: 1 +> [50728] thing--quite: 1 +> [50729] thing--silver--a: 1 +> [50730] thing--that: 1 +> [50731] thing--to: 2 +> [50732] thing--very: 1 +> [50733] thing--we: 1 +> [50734] thing--what: 1 +> [50735] thing--why: 1 +> [50736] thing--your: 1 +> [50737] thing. [50738] thing? [50739] things: 1283 +> [50740] things! [50741] things—something: 1 +> [50742] things--and: 2 +> [50743] things--chains: 1 +> [50744] things--except: 1 +> [50745] things--he: 1 +> [50746] things--how: 1 +> [50747] things--i: 1 +> [50748] things--i'll: 1 +> [50749] things--of: 1 +> [50750] things--that: 1 +> [50751] things--threatening: 1 +> [50752] things--warmer: 1 +> [50753] things--was: 1 +> [50754] things--which: 1 +> [50755] things. [50756] things.”: 1 +> [50757] things [50758] things? [50759] thingum: 1 +> [50760] think: 2312 +> [50761] think"--the: 1 +> [50762] think—! [50763] think—tfoo: 1 +> [50764] think—that's: 1 +> [50765] think—you: 1 +> [50766] think, [50767] think--a: 1 +> [50768] think--and: 3 +> [50769] think--are: 2 +> [50770] think--but: 1 +> [50771] think--especially: 1 +> [50772] think--i: 2 +> [50773] think--look: 1 +> [50774] think--my: 1 +> [50775] think--no: 1 +> [50776] think--or: 1 +> [50777] think--shall: 3 +> [50778] think--to: 1 +> [50779] think--was: 2 +> [50780] think--when: 1 +> [50781] think...of: 1 +> [50782] think...take: 1 +> [50783] think. [50784] think?"--she: 1 +> [50785] think?--are: 1 +> [50786] think? [50787] thinkable: 1 +> [50788] thinker: 9 +> [50789] thinkers: 2 +> [50790] thinking: 679 +> [50791] thinking! [50792] thinking"--for: 1 +> [50793] thinking—from: 1 +> [50794] thinking, [50795] thinking--and: 1 +> [50796] thinking--especially: 1 +> [50797] thinks: 118 +> [50798] thinly: 1 +> [50799] thinned: 3 +> [50800] thinner: 27 +> [50801] thinness: 6 +> [50802] thinning: 2 +> [50803] thinnish: 2 +> [50804] thins: 2 +> [50805] thiosulfate: 9 +> [50806] third: 405 +> [50807] third--about: 1 +> [50808] third-best,’: 1 +> [50809] third-class: 4 +> [50810] third-floor: 1 +> [50811] third-hand: 1 +> [50812] third[32: 1 +> [50813] thirdly: 19 +> [50814] thirdly--the: 1 +> [50815] thirds: 3 +> [50816] thirst: 29 +> [50817] thirsted: 7 +> [50818] thirstily: 2 +> [50819] thirsting: 12 +> [50820] thirsts: 1 +> [50821] thirsty: 4 +> [50822] thirteen: 41 +> [50823] thirteen--fourteen: 1 +> [50824] thirteen? [50825] thirteenth: 11 +> [50826] thirtieth: 3 +> [50827] thirty: 155 +> [50828] thirty-eight: 4 +> [50829] thirty-first: 4 +> [50830] thirty-five: 21 +> [50831] thirty-four: 1 +> [50832] thirty-fourth: 1 +> [50833] thirty-one: 1 +> [50834] thirty-rouble: 1 +> [50835] thirty-second: 2 +> [50836] thirty-seven: 2 +> [50837] thirty-six: 5 +> [50838] thirty-three: 1 +> [50839] thirty-two: 5 +> [50840] this: 11506 +> [50841] this! [50842] this—wouldn't: 1 +> [50843] this,--he: 1 +> [50844] this,--this: 1 +> [50845] this, [50846] this--all: 1 +> [50847] this--and: 3 +> [50848] this--answer: 1 +> [50849] this--believe: 1 +> [50850] this--do: 1 +> [50851] this--for: 1 +> [50852] this--happened: 1 +> [50853] this--he: 1 +> [50854] this--i: 2 +> [50855] this--in: 1 +> [50856] this--precious: 1 +> [50857] this--screw: 1 +> [50858] this--sheer: 1 +> [50859] this--some: 1 +> [50860] this--that: 1 +> [50861] this--this: 6 +> [50862] this--want: 1 +> [50863] this--we: 1 +> [50864] this--which: 1 +> [50865] this--with: 4 +> [50866] this--you: 1 +> [50867] this--you'll: 1 +> [50868] this-do: 1 +> [50869] this...to: 2 +> [50870] this. [50871] this?--that: 1 +> [50872] this?--that's: 1 +> [50873] this? [50874] thither: 16 +> [50875] thomas: 29 +> [50876] thomas's: 3 +> [50877] thomassin: 1 +> [50878] thompson: 1 +> [50879] thompson's: 1 +> [50880] thomson: 1 +> [50881] thomssen: 4 +> [50882] thong: 2 +> [50883] thorn: 3 +> [50884] thorn-tree: 1 +> [50885] thornton: 1 +> [50886] thorny: 2 +> [50887] thorough: 20 +> [50888] thorough--going: 1 +> [50889] thorough-going: 2 +> [50890] thoroughbred: 8 +> [50891] thoroughfare: 3 +> [50892] thoroughfares: 1 +> [50893] thoroughgoing: 1 +> [50894] thoroughly: 132 +> [50895] those: 2052 +> [50896] those--is: 1 +> [50897] those--what's: 1 +> [50898] those--you: 1 +> [50899] thou: 247 +> [50900] thou? [50901] though: 3800 +> [50902] though),--but: 1 +> [50903] though, [50904] though--of: 1 +> [50905] though.... [50906] though. [50907] thought: 3342 +> [50908] thought—i've: 1 +> [50909] thought,--but: 1 +> [50910] thought, [50911] thought--"that: 1 +> [50912] thought--a: 1 +> [50913] thought--and: 6 +> [50914] thought--but: 1 +> [50915] thought--darted: 1 +> [50916] thought--even: 1 +> [50917] thought--he: 2 +> [50918] thought--his: 1 +> [50919] thought--i: 5 +> [50920] thought--referring: 1 +> [50921] thought--that: 1 +> [50922] thought--the: 2 +> [50923] thought--to: 1 +> [50924] thought--was: 2 +> [50925] thought--with: 1 +> [50926] thought-ridden: 1 +> [50927] thought.... [50928] thought. [50929] thought [50930] thoughtful: 70 +> [50931] thoughtfully: 63 +> [50932] thoughtfulness: 5 +> [50933] thoughtless: 6 +> [50934] thoughtlessly: 2 +> [50935] thoughtlessness: 6 +> [50936] thoughts: 478 +> [50937] thoughts--came: 1 +> [50938] thoughts--the: 1 +> [50939] thoughts--to: 1 +> [50940] thoughts--would: 1 +> [50941] thousand: 751 +> [50942] thousand! [50943] thousand—but: 1 +> [50944] thousand—i: 1 +> [50945] thousand—if: 1 +> [50946] thousand—that: 1 +> [50947] thousand—the: 1 +> [50948] thousand—those: 1 +> [50949] thousand, [50950] thousand--after: 1 +> [50951] thousand--he: 1 +> [50952] thousand--the: 1 +> [50953] thousand--well: 1 +> [50954] thousand-ruble: 3 +> [50955] thousand-year: 1 +> [50956] thousand...you'd: 1 +> [50957] thousand. [50958] thousand? [50959] thousands: 126 +> [50960] thousands! [50961] thousands--hardly: 1 +> [50962] thousandth: 7 +> [50963] thraldom: 1 +> [50964] thrale: 1 +> [50965] thrash: 20 +> [50966] thrashed: 31 +> [50967] thrashed. [50968] thrashed? [50969] thrasher: 1 +> [50970] thrashes: 1 +> [50971] thrashing: 30 +> [50972] thrashing! [50973] thrashing. [50974] thrashings: 1 +> [50975] thread: 36 +> [50976] thread-bare: 1 +> [50977] thread? [50978] threadbare: 10 +> [50979] threaded: 7 +> [50980] threading: 7 +> [50981] threads: 10 +> [50982] threat: 27 +> [50983] threat--obtain: 1 +> [50984] threaten: 14 +> [50985] threatened: 60 +> [50986] threatening: 45 +> [50987] threateningly: 12 +> [50988] threatenings: 1 +> [50989] threatens: 2 +> [50990] threats: 27 +> [50991] three: 1664 +> [50992] three--and: 1 +> [50993] three--dozen: 1 +> [50994] three--remember: 1 +> [50995] three-acre: 1 +> [50996] three-barrel: 1 +> [50997] three-button: 1 +> [50998] three-cornered: 2 +> [50999] three-fourths: 2 +> [51000] three-gospel: 1 +> [51001] three-horse: 2 +> [51002] three-legged: 1 +> [51003] three-line: 1 +> [51004] three-mile: 4 +> [51005] three-month-old: 1 +> [51006] three-pronged: 1 +> [51007] three-quarters: 2 +> [51008] three-rouble: 6 +> [51009] three-ruble: 1 +> [51010] three-year-old: 5 +> [51011] three. [51012] threefold: 7 +> [51013] threes: 10 +> [51014] threescore: 1 +> [51015] thresh: 2 +> [51016] threshed: 3 +> [51017] threshing: 6 +> [51018] threshing-floor: 3 +> [51019] threshold: 58 +> [51020] threw: 236 +> [51021] thrice: 12 +> [51022] thrifty: 4 +> [51023] thrill: 18 +> [51024] thrill—and: 1 +> [51025] thrilled: 7 +> [51026] thrilling: 6 +> [51027] thrills: 1 +> [51028] thrive: 1 +> [51029] thriving: 1 +> [51030] throat: 123 +> [51031] throat's: 1 +> [51032] throat--see: 1 +> [51033] throat--you: 1 +> [51034] throat? [51035] throats: 7 +> [51036] throats--of: 1 +> [51037] throb: 7 +> [51038] throbbed: 16 +> [51039] throbbing: 41 +> [51040] throbs: 3 +> [51041] throne: 34 +> [51042] throne, [51043] throned: 1 +> [51044] thrones: 1 +> [51045] throng: 30 +> [51046] throng--when: 1 +> [51047] thronged: 23 +> [51048] thronging: 10 +> [51049] throttle: 3 +> [51050] throttling: 1 +> [51051] through: 1927 +> [51052] through, [51053] through--well: 1 +> [51054] through. [51055] throughout: 69 +> [51056] throw: 177 +> [51057] thrower's: 4 +> [51058] throwing: 74 +> [51059] thrown: 196 +> [51060] throws: 21 +> [51061] thru: 1 +> [51062] thrum: 1 +> [51063] thrummed: 1 +> [51064] thrumming: 1 +> [51065] thrush: 1 +> [51066] thrust: 137 +> [51067] thrusting: 34 +> [51068] thrusts: 1 +> [51069] thud: 20 +> [51070] thud!--and: 1 +> [51071] thudded: 2 +> [51072] thuds: 1 +> [51073] thuerassa: 2 +> [51074] thuff...thuff: 1 +> [51075] thuffering: 1 +> [51076] thule: 1 +> [51077] thumb: 14 +> [51078] thumbs: 1 +> [51079] thump: 2 +> [51080] thumped: 4 +> [51081] thumping: 10 +> [51082] thumps: 2 +> [51083] thunder: 29 +> [51084] thunder-storm: 1 +> [51085] thunderbolt: 9 +> [51086] thunderbolts: 1 +> [51087] thunderclap: 2 +> [51088] thunderclaps: 2 +> [51089] thundercloud: 1 +> [51090] thundered: 10 +> [51091] thundering: 3 +> [51092] thunderous: 3 +> [51093] thunderstorm: 4 +> [51094] thunderstruck: 9 +> [51095] thundery: 1 +> [51096] thursday: 16 +> [51097] thursday, [51098] thursday--sold: 1 +> [51099] thursdays: 4 +> [51100] thursdays--today: 1 +> [51101] thus: 294 +> [51102] thus--the: 1 +> [51103] thus:--“mr: 1 +> [51104] thwacks: 1 +> [51105] thwart: 4 +> [51106] thwarted: 5 +> [51107] thwarts: 1 +> [51108] thwash: 1 +> [51109] thwee: 3 +> [51110] thwough: 1 +> [51111] thwow: 1 +> [51112] thy: 158 +> [51113] thyatira: 2 +> [51114] thyme: 1 +> [51115] thymol: 1 +> [51116] thys: 1 +> [51117] thyself: 18 +> [51118] thèrése: 2 +> [51119] théorie: 1 +> [51120] ti-ti: 3 +> [51121] ti-ti-timofey: 1 +> [51122] tiberias: 1 +> [51123] tick: 1 +> [51124] ticked: 4 +> [51125] ticket: 18 +> [51126] ticket. [51127] tickets: 4 +> [51128] ticking: 4 +> [51129] tickle: 2 +> [51130] tickled: 8 +> [51131] tickles: 2 +> [51132] tickling: 5 +> [51133] ticklish: 2 +> [51134] tidbits: 1 +> [51135] tide: 13 +> [51136] tide-waiters: 2 +> [51137] tidied: 4 +> [51138] tidily: 4 +> [51139] tidiness: 1 +> [51140] tidings: 17 +> [51141] tidy: 20 +> [51142] tidying: 2 +> [51143] tie: 49 +> [51144] tied: 82 +> [51145] tiens: 1 +> [51146] tier: 5 +> [51147] tierce: 2 +> [51148] tierces: 4 +> [51149] tiers: 2 +> [51150] ties: 30 +> [51151] tiger: 2 +> [51152] tiger-skin: 4 +> [51153] tigers: 1 +> [51154] tight: 59 +> [51155] tight--and: 1 +> [51156] tight-laced: 1 +> [51157] tight-rope: 1 +> [51158] tight. [51159] tightened: 7 +> [51160] tightening: 4 +> [51161] tighter: 7 +> [51162] tightly: 59 +> [51163] tightly-drawn: 1 +> [51164] tightly-fitted: 1 +> [51165] tights: 2 +> [51166] tigress: 3 +> [51167] tigress! [51168] tikhon: 79 +> [51169] tikhon's: 4 +> [51170] tilbury: 1 +> [51171] tilde: 1 +> [51172] tile: 2 +> [51173] tiled: 3 +> [51174] tiles: 3 +> [51175] till: 670 +> [51176] tillage: 1 +> [51177] tiller: 2 +> [51178] tillers: 1 +> [51179] tillotson: 1 +> [51180] tilsit: 16 +> [51181] tilt: 7 +> [51182] tilted: 6 +> [51183] tilting: 3 +> [51184] tim: 11 +> [51185] timber: 14 +> [51186] timber-dealers: 3 +> [51187] timber-yard: 1 +> [51188] timbered: 1 +> [51189] timbers: 5 +> [51190] time: 4445 +> [51191] time!--do: 1 +> [51192] time!--i: 1 +> [51193] time!--the: 1 +> [51194] time! [51195] time"--his: 1 +> [51196] time— [51197] time—and: 2 +> [51198] time—need: 1 +> [51199] time—several: 1 +> [51200] time—the: 2 +> [51201] time's: 2 +> [51202] time,--in: 1 +> [51203] time, [51204] time,’: 1 +> [51205] time--_finis: 1 +> [51206] time--a: 1 +> [51207] time--and: 3 +> [51208] time--another: 1 +> [51209] time--as: 1 +> [51210] time--for: 3 +> [51211] time--from: 1 +> [51212] time--he: 1 +> [51213] time--i: 2 +> [51214] time--is: 1 +> [51215] time--lacking: 1 +> [51216] time--nor: 1 +> [51217] time--now: 1 +> [51218] time--only: 1 +> [51219] time--out: 1 +> [51220] time--proved: 1 +> [51221] time--she: 1 +> [51222] time--that: 2 +> [51223] time--that's: 1 +> [51224] time--the: 1 +> [51225] time--they: 2 +> [51226] time--throwing: 1 +> [51227] time--to: 1 +> [51228] time--twenty: 5 +> [51229] time--what: 1 +> [51230] time--while: 1 +> [51231] time--with: 1 +> [51232] time-honoured: 1 +> [51233] time-worn: 3 +> [51234] time. [51235] time [51236] time?'--answer: 1 +> [51237] time? [51238] time_--the: 1 +> [51239] timely: 5 +> [51240] times: 834 +> [51241] times, [51242] times,’: 2 +> [51243] times--"in: 1 +> [51244] times--a: 1 +> [51245] times--and: 2 +> [51246] times--ever: 1 +> [51247] times--generally: 1 +> [51248] times--sure: 1 +> [51249] times--till: 1 +> [51250] times. [51251] times [51252] times? [51253] timetable: 1 +> [51254] timid: 123 +> [51255] timidity: 31 +> [51256] timidity--or: 1 +> [51257] timidly: 140 +> [51258] timofeevich: 1 +> [51259] timofeevna: 2 +> [51260] timofei: 1 +> [51261] timofey: 11 +> [51262] timofeyovitch: 8 +> [51263] timokhin: 28 +> [51264] timokhin's: 1 +> [51265] timorous: 4 +> [51266] timorously: 1 +> [51267] timothy: 14 +> [51268] timours: 1 +> [51269] tin: 12 +> [51270] tincture: 3 +> [51271] tinctures: 1 +> [51272] tinder: 1 +> [51273] tinge: 10 +> [51274] tinged: 7 +> [51275] tingle: 1 +> [51276] tingled: 5 +> [51277] tingling: 2 +> [51278] tinier: 1 +> [51279] tiniest: 4 +> [51280] tinker: 1 +> [51281] tinkle: 5 +> [51282] tinkled: 4 +> [51283] tinkling: 4 +> [51284] tinplate: 1 +> [51285] tins: 1 +> [51286] tinsel-decorated: 1 +> [51287] tint: 12 +> [51288] tinted: 4 +> [51289] tintoretto: 1 +> [51290] tints: 1 +> [51291] tiny: 100 +> [51292] tip: 21 +> [51293] tip-toe: 7 +> [51294] tip-toes: 1 +> [51295] tipped: 3 +> [51296] tipping: 3 +> [51297] tipple: 2 +> [51298] tippler: 1 +> [51299] tips: 14 +> [51300] tipsily: 1 +> [51301] tipsy: 31 +> [51302] tipsy--and: 1 +> [51303] tiptoe: 49 +> [51304] tirade: 14 +> [51305] tirades: 1 +> [51306] tire: 9 +> [51307] tired: 136 +> [51308] tired, [51309] tired--try: 1 +> [51310] tired-looking: 1 +> [51311] tireless: 3 +> [51312] tires: 3 +> [51313] tiresome: 27 +> [51314] tiresomely: 1 +> [51315] tis: 8 +> [51316] tisanes: 1 +> [51317] tisn't: 1 +> [51318] tissue: 5 +> [51319] tit: 28 +> [51320] tit's: 3 +> [51321] tit-bits: 1 +> [51322] tit? [51323] titanic: 1 +> [51324] titer: 39 +> [51325] titering: 1 +> [51326] tithe: 3 +> [51327] tithes: 6 +> [51328] titi: 1 +> [51329] titian: 1 +> [51330] title: 80 +> [51331] title--and: 1 +> [51332] title--saving: 1 +> [51333] title-deed: 1 +> [51334] title>the: 1 +> [51335] titles: 7 +> [51336] titlestmt: 2 +> [51337] titrate: 18 +> [51338] titrated: 13 +> [51339] titrating: 3 +> [51340] titration: 9 +> [51341] titration.[32: 1 +> [51342] titrations: 6 +> [51343] titter: 1 +> [51344] tittered: 4 +> [51345] tittering: 1 +> [51346] tittle: 1 +> [51347] tittle-tattle: 2 +> [51348] titular: 2 +> [51349] titus: 13 +> [51350] tiutkin: 3 +> [51351] to: 72491 +> [51352] to!--i: 1 +> [51353] to! [51354] to! [51355] to— [51356] to—capable: 1 +> [51357] to—our: 1 +> [51358] to,--and: 1 +> [51359] to, [51360] to--all: 1 +> [51361] to--draw: 2 +> [51362] to--he'll: 1 +> [51363] to--help: 1 +> [51364] to--i: 4 +> [51365] to--in: 1 +> [51366] to--morrow: 1 +> [51367] to--pierre: 1 +> [51368] to--there: 1 +> [51369] to--to: 4 +> [51370] to--why: 1 +> [51371] to--you: 1 +> [51372] to-day: 326 +> [51373] to-day! [51374] to-day— [51375] to-day—if: 1 +> [51376] to-day—reduced: 1 +> [51377] to-day's: 3 +> [51378] to-day, [51379] to-day--and: 2 +> [51380] to-day--but: 1 +> [51381] to-day--in: 1 +> [51382] to-day--you: 1 +> [51383] to-day. [51384] to-day [51385] to-day? [51386] to-do: 6 +> [51387] to-morrow: 270 +> [51388] to-morrow! [51389] to-morrow—and: 1 +> [51390] to-morrow—but: 2 +> [51391] to-morrow—what: 1 +> [51392] to-morrow's: 2 +> [51393] to-morrow, [51394] to-morrow--at: 1 +> [51395] to-morrow--cough: 1 +> [51396] to-morrow--nay: 1 +> [51397] to-morrow--when: 1 +> [51398] to-morrow. [51399] to-morrow? [51400] to-night: 55 +> [51401] to-night, [51402] to-night--i: 1 +> [51403] to-to: 1 +> [51404] to. [51405] to [51406] to?--to: 1 +> [51407] to? [51408] toad: 8 +> [51409] toadies: 1 +> [51410] toadstool: 1 +> [51411] toady: 3 +> [51412] toadying: 1 +> [51413] toast: 13 +> [51414] toasted: 2 +> [51415] toasting: 1 +> [51416] toasts: 2 +> [51417] tobacco: 28 +> [51418] tobacco's: 1 +> [51419] tobacco-box: 1 +> [51420] tobacco-laden: 1 +> [51421] toby: 1 +> [51422] tocchi: 1 +> [51423] tochter: 1 +> [51424] tocqueville: 1 +> [51425] today: 253 +> [51426] today's: 6 +> [51427] today,--he: 1 +> [51428] today--for: 1 +> [51429] today--frightful: 1 +> [51430] today--it: 1 +> [51431] today...i: 1 +> [51432] toddling: 1 +> [51433] todmorden: 1 +> [51434] toe: 12 +> [51435] toes: 30 +> [51436] toffee: 4 +> [51437] toft: 270 +> [51438] toft!"--she: 1 +> [51439] toft'll: 1 +> [51440] toft's: 26 +> [51441] toft--she: 1 +> [51442] tofts: 3 +> [51443] together: 769 +> [51444] together!--i: 1 +> [51445] together! [51446] together—everything: 1 +> [51447] together—generally: 1 +> [51448] together—ivan: 1 +> [51449] together—then: 1 +> [51450] together, [51451] together--"to: 1 +> [51452] together--a: 1 +> [51453] together--all: 1 +> [51454] together--alone: 1 +> [51455] together--here: 1 +> [51456] together--if: 1 +> [51457] together--just: 1 +> [51458] together--shove: 1 +> [51459] together--softly: 1 +> [51460] together--the: 1 +> [51461] together--their: 1 +> [51462] together--those: 1 +> [51463] together...together: 1 +> [51464] together. [51465] together [51466] together? [51467] toggenburg: 1 +> [51468] toi: 1 +> [51469] toil: 44 +> [51470] toil--picture: 1 +> [51471] toil-worn: 1 +> [51472] toiled: 2 +> [51473] toilet: 81 +> [51474] toilet-table: 1 +> [51475] toilets: 3 +> [51476] toilette: 4 +> [51477] toiling: 9 +> [51478] toils: 4 +> [51479] toilsome: 3 +> [51480] toilsomely: 1 +> [51481] toity: 3 +> [51482] token: 26 +> [51483] tokens: 7 +> [51484] tokyo: 1 +> [51485] told: 1711 +> [51486] told--and: 1 +> [51487] toledo: 1 +> [51488] tolerable: 11 +> [51489] tolerably: 1 +> [51490] tolerance: 1 +> [51491] tolerant: 2 +> [51492] tolerate: 1 +> [51493] tolerated: 3 +> [51494] tolerates: 1 +> [51495] tolkutchy: 3 +> [51496] toll: 34 +> [51497] toll's: 1 +> [51498] tolled: 2 +> [51499] tolling: 3 +> [51500] tolls: 1 +> [51501] tolly: 17 +> [51502] tolman: 1 +> [51503] tolstoy: 23 +> [51504] tolstoy/tolstoi: 1 +> [51505] tolstyakov: 1 +> [51506] tom: 10 +> [51507] tom-cat: 1 +> [51508] tomb: 18 +> [51509] tomb. [51510] tomb? [51511] tomber: 1 +> [51512] tombs: 8 +> [51513] tombstone: 3 +> [51514] tombstones: 2 +> [51515] tome: 3 +> [51516] tomes: 2 +> [51517] tommy: 1 +> [51518] tomorrow: 261 +> [51519] tomorrow!--marry: 1 +> [51520] tomorrow's: 12 +> [51521] tomorrow--at: 1 +> [51522] tomorrow--but: 1 +> [51523] tomorrow--or: 1 +> [51524] tomorrow--perhaps: 1 +> [51525] tomorrow--that: 1 +> [51526] tomorrow...i'll: 1 +> [51527] tomowwow: 3 +> [51528] ton: 20 +> [51529] ton-weight: 1 +> [51530] tone: 565 +> [51531] tone--"if: 1 +> [51532] tone--hardly: 1 +> [51533] tone--the: 1 +> [51534] tone--through: 1 +> [51535] tone--which: 1 +> [51536] tone...but: 1 +> [51537] toned: 1 +> [51538] tones: 62 +> [51539] tones--though: 1 +> [51540] tongs: 3 +> [51541] tongue: 157 +> [51542] tongue! [51543] tongue"--that: 1 +> [51544] tongue— [51545] tongue--"it: 1 +> [51546] tongue-tied: 4 +> [51547] tongue. [51548] tongue.”: 1 +> [51549] tongues: 16 +> [51550] tonguesters: 1 +> [51551] tongue’s: 1 +> [51552] tonic: 1 +> [51553] tonight: 52 +> [51554] tonight--in: 1 +> [51555] tonight?--but: 1 +> [51556] toning: 1 +> [51557] tons: 8 +> [51558] tonsured: 1 +> [51559] too: 3494 +> [51560] too! [51561] too! [51562] too"--different: 1 +> [51563] too—and: 2 +> [51564] too—but: 1 +> [51565] too—i: 1 +> [51566] too—in: 1 +> [51567] too—that's: 1 +> [51568] too—the: 1 +> [51569] too—you: 1 +> [51570] too, [51571] too--a: 2 +> [51572] too--almost: 1 +> [51573] too--and: 1 +> [51574] too--at: 1 +> [51575] too--but: 2 +> [51576] too--damnation: 1 +> [51577] too--didn't: 1 +> [51578] too--give: 1 +> [51579] too--he: 1 +> [51580] too--i: 2 +> [51581] too--if: 1 +> [51582] too--in: 1 +> [51583] too--it: 1 +> [51584] too--no: 1 +> [51585] too--so: 1 +> [51586] too--terenty: 1 +> [51587] too--that: 4 +> [51588] too--they: 1 +> [51589] too--trifles--a: 1 +> [51590] too-and: 1 +> [51591] too-late: 1 +> [51592] too-noisy: 1 +> [51593] too.... [51594] too...where: 1 +> [51595] too. [51596] too [51597] too? [51598] too?--what: 1 +> [51599] too? [51600] took: 1697 +> [51601] tool: 13 +> [51602] tools: 18 +> [51603] tooth: 12 +> [51604] toothache: 22 +> [51605] toothless: 7 +> [51606] top: 153 +> [51607] top-boots: 4 +> [51608] top-hat: 1 +> [51609] topaz, [51610] topcheenko: 1 +> [51611] topic: 19 +> [51612] topic--gossip: 1 +> [51613] topic--making: 1 +> [51614] topical: 3 +> [51615] topics: 12 +> [51616] topmost: 3 +> [51617] topographical: 1 +> [51618] topov: 1 +> [51619] topped: 2 +> [51620] topple: 1 +> [51621] tops: 8 +> [51622] tops? [51623] topsy-turvy: 5 +> [51624] topsy-turvydom: 1 +> [51625] toqué: 1 +> [51626] torban: 1 +> [51627] torch: 5 +> [51628] torch [51629] torches: 13 +> [51630] tore: 53 +> [51631] tories: 7 +> [51632] tories--to: 1 +> [51633] tormasov: 3 +> [51634] torment: 47 +> [51635] tormented: 83 +> [51636] tormenting: 38 +> [51637] tormentor: 15 +> [51638] tormentor, [51639] tormentors, [51640] tormentors? [51641] tormentress: 1 +> [51642] torments: 18 +> [51643] torn: 130 +> [51644] tornado: 1 +> [51645] toronto: 6 +> [51646] torpid: 2 +> [51647] torpidly: 1 +> [51648] torrent: 9 +> [51649] torrents: 6 +> [51650] torrents.”: 1 +> [51651] tortoise: 9 +> [51652] tortoise-shell: 3 +> [51653] torture: 79 +> [51654] torture-chambers: 1 +> [51655] torture-rooms: 1 +> [51656] tortured: 67 +> [51657] tortured--as: 1 +> [51658] torturer: 23 +> [51659] torturers: 1 +> [51660] torturers! [51661] tortures: 17 +> [51662] torturing: 27 +> [51663] torturings: 2 +> [51664] tory: 9 +> [51665] torzhok: 6 +> [51666] toss: 6 +> [51667] toss-up: 1 +> [51668] tossed: 35 +> [51669] tossing: 14 +> [51670] total: 54 +> [51671] totally: 13 +> [51672] totals: 1 +> [51673] totski: 94 +> [51674] totski's: 15 +> [51675] totski--not: 1 +> [51676] tottenham: 4 +> [51677] totter: 1 +> [51678] tottered: 7 +> [51679] tottering: 4 +> [51680] touch: 201 +> [51681] touch-hole: 2 +> [51682] touch. [51683] touche: 1 +> [51684] touched: 234 +> [51685] touched--a: 1 +> [51686] touched--himself: 1 +> [51687] touched--i: 1 +> [51688] touchent: 1 +> [51689] touches: 17 +> [51690] touchet: 16 +> [51691] touchiness: 2 +> [51692] touching: 116 +> [51693] touchingly: 7 +> [51694] touchpans: 1 +> [51695] touchy: 3 +> [51696] tough: 4 +> [51697] toujours: 1 +> [51698] toulon: 6 +> [51699] tour: 17 +> [51700] tourelles: 1 +> [51701] tourments: 1 +> [51702] tournament: 3 +> [51703] tournaments: 1 +> [51704] tournelles: 2 +> [51705] tournois: 2 +> [51706] tournure: 1 +> [51707] tours: 2 +> [51708] tousled: 2 +> [51709] tout: 12 +> [51710] tout-à-fait: 1 +> [51711] toutes: 2 +> [51712] touts: 4 +> [51713] tow: 8 +> [51714] tow! [51715] tow, [51716] tow. [51717] tow [51718] tow? [51719] toward: 404 +> [51720] towards: 542 +> [51721] towcester: 4 +> [51722] towel: 31 +> [51723] towels: 3 +> [51724] tower: 63 +> [51725] tower, [51726] tower-roof: 1 +> [51727] tower-room: 2 +> [51728] towered: 7 +> [51729] towering: 2 +> [51730] towers: 7 +> [51731] towing-path: 1 +> [51732] town: 627 +> [51733] town—and: 1 +> [51734] town—as: 1 +> [51735] town—i: 1 +> [51736] town—spacious: 1 +> [51737] town—where: 1 +> [51738] town—who: 1 +> [51739] town's: 1 +> [51740] town, [51741] town--and: 1 +> [51742] town--are: 1 +> [51743] town--as: 1 +> [51744] town--hungry: 1 +> [51745] town--the: 1 +> [51746] town--was: 1 +> [51747] town-councillor's: 1 +> [51748] town-crier: 1 +> [51749] town-criers: 1 +> [51750] town-guard: 3 +> [51751] town. [51752] town? [51753] townfolk: 1 +> [51754] towns: 37 +> [51755] townsend: 1 +> [51756] townsfolk: 13 +> [51757] townsman: 3 +> [51758] townsmen: 1 +> [51759] townspeople: 6 +> [51760] towton: 1 +> [51761] toy: 11 +> [51762] toyed: 1 +> [51763] toying: 7 +> [51764] toys: 11 +> [51765] toyshop: 1 +> [51766] tproo: 2 +> [51767] tr-r-op: 1 +> [51768] tra-di-ri-di-ra: 1 +> [51769] trace: 98 +> [51770] trace-horse: 3 +> [51771] trace-horses: 1 +> [51772] traceable: 4 +> [51773] traced: 9 +> [51774] traces: 45 +> [51775] tracing: 3 +> [51776] track: 45 +> [51777] track[23]--(_a: 1 +> [51778] tracked: 2 +> [51779] tracking: 3 +> [51780] tracks: 18 +> [51781] tracks’--he: 1 +> [51782] tract: 4 +> [51783] tractarian: 1 +> [51784] tracts: 1 +> [51785] trade: 36 +> [51786] traded: 1 +> [51787] trademark: 190 +> [51788] trademark/copyright: 19 +> [51789] trader: 4 +> [51790] trader's: 1 +> [51791] traders: 5 +> [51792] trades: 5 +> [51793] tradesman: 13 +> [51794] tradesman's: 4 +> [51795] tradesmen: 9 +> [51796] tradesmen's: 2 +> [51797] tradespeople: 7 +> [51798] trading: 8 +> [51799] tradition: 114 +> [51800] tradition--for: 1 +> [51801] tradition--that: 1 +> [51802] traditional: 10 +> [51803] traditionalism: 1 +> [51804] traditions: 34 +> [51805] traduced: 1 +> [51806] traducers: 1 +> [51807] traffic: 5 +> [51808] tragacanth: 2 +> [51809] tragedians: 1 +> [51810] tragedies: 2 +> [51811] tragedy: 39 +> [51812] tragedy! [51813] tragic: 27 +> [51814] tragically: 5 +> [51815] tragique [51816] trail: 7 +> [51817] trailed: 5 +> [51818] trailing: 6 +> [51819] train: 164 +> [51820] train—a: 1 +> [51821] train's: 1 +> [51822] train--still: 1 +> [51823] train...who: 1 +> [51824] trained: 26 +> [51825] trainer: 3 +> [51826] trainers: 1 +> [51827] training: 10 +> [51828] trains: 19 +> [51829] trait: 19 +> [51830] traitor: 28 +> [51831] traitor!--do: 1 +> [51832] traitorous: 2 +> [51833] traitors: 14 +> [51834] traits: 19 +> [51835] trajan: 4 +> [51836] trakh-ta-ta-takh: 1 +> [51837] tram: 1 +> [51838] trammeled: 1 +> [51839] tramp: 39 +> [51840] tramped: 2 +> [51841] tramping: 4 +> [51842] trample: 18 +> [51843] trampled: 25 +> [51844] tramples: 1 +> [51845] trampling: 12 +> [51846] tramps: 3 +> [51847] trams: 1 +> [51848] trance: 7 +> [51849] tranquil: 28 +> [51850] tranquility: 2 +> [51851] tranquille: 2 +> [51852] tranquillising: 1 +> [51853] tranquillity: 19 +> [51854] tranquillize: 1 +> [51855] tranquillized: 1 +> [51856] tranquillizing: 1 +> [51857] tranquilly: 3 +> [51858] transact: 2 +> [51859] transaction: 1 +> [51860] transactions: 5 +> [51861] transcend: 1 +> [51862] transcended: 2 +> [51863] transcendental: 29 +> [51864] transcendentalized: 1 +> [51865] transcendentalizing: 1 +> [51866] transcribe: 19 +> [51867] transcribed: 1 +> [51868] transcriber's: 7 +> [51869] transcribers: 1 +> [51870] transcriber’s: 1 +> [51871] transcription: 20 +> [51872] transfer: 17 +> [51873] transference: 5 +> [51874] transferences: 1 +> [51875] transferred: 50 +> [51876] transferring: 3 +> [51877] transfers: 4 +> [51878] transfiguration: 5 +> [51879] transfiguration-scene: 1 +> [51880] transfigured: 10 +> [51881] transfixed: 1 +> [51882] transform: 6 +> [51883] transformation: 8 +> [51884] transformations: 1 +> [51885] transformed: 38 +> [51886] transforming: 2 +> [51887] transforms: 2 +> [51888] transgress: 5 +> [51889] transgressed: 4 +> [51890] transgressing: 2 +> [51891] transgression: 1 +> [51892] transgressions: 3 +> [51893] transgressors: 1 +> [51894] transient: 5 +> [51895] transit: 1 +> [51896] transition: 19 +> [51897] transitions: 4 +> [51898] transitory: 2 +> [51899] transl: 15 +> [51900] translate: 4 +> [51901] translated: 34 +> [51902] translates: 1 +> [51903] translating: 8 +> [51904] translation: 19 +> [51905] translations: 5 +> [51906] translator: 6 +> [51907] translator's: 2 +> [51908] translators: 1 +> [51909] translucency: 1 +> [51910] translucent: 2 +> [51911] translucently: 1 +> [51912] transmigration: 1 +> [51913] transmission: 3 +> [51914] transmit: 2 +> [51915] transmitted: 7 +> [51916] transmitting: 1 +> [51917] transmoskva: 1 +> [51918] transparency: 7 +> [51919] transparent: 54 +> [51920] transparent-looking: 1 +> [51921] transparently: 1 +> [51922] transport: 26 +> [51923] transport--there: 1 +> [51924] transported: 7 +> [51925] transportee: 1 +> [51926] transporting: 2 +> [51927] transports: 12 +> [51928] transposed: 3 +> [51929] trap: 79 +> [51930] trap-door: 6 +> [51931] trap-ta-ta-tap: 1 +> [51932] trapeze: 1 +> [51933] trapped: 6 +> [51934] trappings: 1 +> [51935] traps: 2 +> [51936] trash: 11 +> [51937] trash--can: 1 +> [51938] trashy: 2 +> [51939] traun: 1 +> [51940] travail: 4 +> [51941] travel: 46 +> [51942] travel-stained: 4 +> [51943] traveled: 19 +> [51944] traveler: 19 +> [51945] traveler's: 1 +> [51946] travelers: 14 +> [51947] traveling: 39 +> [51948] traveling-bag: 1 +> [51949] travelled: 18 +> [51950] traveller: 13 +> [51951] travellers: 12 +> [51952] travelling: 22 +> [51953] travels: 9 +> [51954] travels? [51955] traverse: 1 +> [51956] traversed: 5 +> [51957] traverses: 2 +> [51958] traversing: 1 +> [51959] travesty: 1 +> [51960] tray: 23 +> [51961] trays: 2 +> [51962] traître: 2 +> [51963] traîtres: 2 +> [51964] treacheries: 3 +> [51965] treacherous: 12 +> [51966] treacherously: 4 +> [51967] treachery: 33 +> [51968] treachery! [51969] treacle: 1 +> [51970] tread: 33 +> [51971] tread--caused: 1 +> [51972] treadeth: 1 +> [51973] treading: 12 +> [51974] treadmill: 1 +> [51975] treads: 1 +> [51976] treason: 16 +> [51977] treasure: 45 +> [51978] treasure—a: 1 +> [51979] treasured: 1 +> [51980] treasures: 5 +> [51981] treasuring: 1 +> [51982] treasury: 7 +> [51983] treat: 94 +> [51984] treated: 144 +> [51985] treaties: 2 +> [51986] treating: 27 +> [51987] treatise: 13 +> [51988] treatises: 3 +> [51989] treatment: 82 +> [51990] treatments: 2 +> [51991] treats: 7 +> [51992] treaty: 1 +> [51993] treble: 10 +> [51994] trebled: 4 +> [51995] tree: 148 +> [51996] tree's: 6 +> [51997] tree--on: 1 +> [51998] tree--the: 1 +> [51999] tree--well: 1 +> [52000] tree-roots: 1 +> [52001] tree-tops: 3 +> [52002] tree? [52003] trees: 152 +> [52004] trees!--that: 1 +> [52005] trees,'--as: 1 +> [52006] trees--saw: 1 +> [52007] trees--that: 1 +> [52008] treetops: 1 +> [52009] treillage: 2 +> [52010] trellis: 1 +> [52011] tremble: 37 +> [52012] tremble--as: 1 +> [52013] trembled: 149 +> [52014] tremblement: 1 +> [52015] trembles: 6 +> [52016] trembling: 287 +> [52017] trembling--and: 1 +> [52018] trembling--as: 1 +> [52019] trembling--were: 1 +> [52020] tremendous: 22 +> [52021] tremendously: 10 +> [52022] tremens: 1 +> [52023] tremor: 25 +> [52024] tremors: 1 +> [52025] tremouille: 1 +> [52026] tremulous: 10 +> [52027] tremulously: 2 +> [52028] trench: 12 +> [52029] trenches: 2 +> [52030] trend: 6 +> [52031] trending: 1 +> [52032] trent: 4 +> [52033] trepak: 2 +> [52034] trepalaf's: 1 +> [52035] trepidation: 5 +> [52036] tres: 5 +> [52037] tres-curieux: 1 +> [52038] tres-serieux: 1 +> [52039] tresor: 1 +> [52040] trespass: 5 +> [52041] trespassed: 2 +> [52042] trespasses: 1 +> [52043] trespassing: 1 +> [52044] tress: 4 +> [52045] tresses: 3 +> [52046] trestles: 1 +> [52047] tri: 1 +> [52048] trial: 91 +> [52049] trial! [52050] trial's: 1 +> [52051] trial, [52052] trials: 9 +> [52053] triangle: 7 +> [52054] triangles: 3 +> [52055] triangular: 2 +> [52056] trianon: 2 +> [52057] tribe: 3 +> [52058] tribes: 19 +> [52059] tribulation: 11 +> [52060] tribunal: 6 +> [52061] tribunals: 1 +> [52062] tribune: 12 +> [52063] tribuneship: 1 +> [52064] tribute: 9 +> [52065] trice: 16 +> [52066] trick: 56 +> [52067] trick—that: 1 +> [52068] trick, [52069] trick? [52070] tricked: 5 +> [52071] trickery: 9 +> [52072] trickle: 1 +> [52073] trickled: 9 +> [52074] trickles: 1 +> [52075] trickling: 10 +> [52076] tricks: 25 +> [52077] tricky: 1 +> [52078] tricolor: 2 +> [52079] tricolour: 31 +> [52080] tricottent [52081] trident: 1 +> [52082] tried: 749 +> [52083] tries: 22 +> [52084] trifle: 39 +> [52085] trifled: 1 +> [52086] trifles: 40 +> [52087] trifles? [52088] trifling: 29 +> [52089] trifling--and: 1 +> [52090] trifling--such: 1 +> [52091] trifon: 41 +> [52092] trifonov: 2 +> [52093] trifonov's: 1 +> [52094] trigger: 11 +> [52095] triglycerides: 4 +> [52096] trihydric: 1 +> [52097] trilled: 3 +> [52098] trilling: 3 +> [52099] trills: 3 +> [52100] trim: 11 +> [52101] trim [52102] trimethyleneglycol: 1 +> [52103] trimly: 1 +> [52104] trimmed: 13 +> [52105] trimming: 2 +> [52106] trinity: 6 +> [52107] trinity--the: 1 +> [52108] trinket: 1 +> [52109] trinkets: 6 +> [52110] trinkets--how: 1 +> [52111] trinkets--i: 1 +> [52112] trinquer: 1 +> [52113] trinques: 1 +> [52114] trio: 2 +> [52115] trio's: 1 +> [52116] trip: 11 +> [52117] tripe: 1 +> [52118] tripeman: 1 +> [52119] triple: 2 +> [52120] tripod: 1 +> [52121] tripoli: 3 +> [52122] tripped: 10 +> [52123] tripper: 1 +> [52124] tripping: 9 +> [52125] trite: 1 +> [52126] triumph: 127 +> [52127] triumph--a: 1 +> [52128] triumph--and: 1 +> [52129] triumph--crossed: 1 +> [52130] triumph.’: 1 +> [52131] triumphal: 3 +> [52132] triumphant: 45 +> [52133] triumphantly: 30 +> [52134] triumphed: 5 +> [52135] triumphing: 4 +> [52136] triumphs: 4 +> [52137] trivet: 2 +> [52138] trivial: 67 +> [52139] trivialities: 4 +> [52140] triviality: 5 +> [52141] triviality--these: 1 +> [52142] troas: 2 +> [52143] trod: 12 +> [52144] trodden: 30 +> [52145] trodden-down: 4 +> [52146] troglodyte, [52147] troika: 11 +> [52148] troikas: 4 +> [52149] trois: 6 +> [52150] trois-temps: 2 +> [52151] troitsa: 9 +> [52152] trolleys: 1 +> [52153] trompe: 3 +> [52154] troop: 11 +> [52155] troop--and: 1 +> [52156] trooped: 4 +> [52157] trooper: 3 +> [52158] troopers: 1 +> [52159] trooping: 2 +> [52160] troops: 267 +> [52161] troops)--they: 1 +> [52162] troops--ours: 1 +> [52163] trop: 2 +> [52164] tropes: 1 +> [52165] trophies: 5 +> [52166] trophy: 2 +> [52167] tros, [52168] trot: 42 +> [52169] troth: 6 +> [52170] trots: 1 +> [52171] trotted: 14 +> [52172] trotter: 4 +> [52173] trotting: 6 +> [52174] trotting-horses: 1 +> [52175] troubadour: 3 +> [52176] troubadours: 1 +> [52177] trouble: 335 +> [52178] trouble! [52179] trouble. [52180] troubled: 107 +> [52181] troubled, [52182] troubles: 55 +> [52183] troublesome: 16 +> [52184] troubling: 17 +> [52185] troublous: 1 +> [52186] trough: 9 +> [52187] troughs: 1 +> [52188] troupe: 2 +> [52189] troupes: 1 +> [52190] trouser: 3 +> [52191] trouser-pockets: 1 +> [52192] trousers: 68 +> [52193] trousers! [52194] trousers--furtively: 1 +> [52195] trousers--though: 1 +> [52196] trousseau: 17 +> [52197] trousseau--the: 1 +> [52198] trouvez: 1 +> [52199] trow: 1 +> [52200] trowel: 15 +> [52201] trowel's: 1 +> [52202] troweling: 1 +> [52203] trowels: 1 +> [52204] troy: 17 +> [52205] troy! [52206] troy, [52207] troy? [52208] troyka: 13 +> [52209] troykas: 5 +> [52210] truant: 2 +> [52211] truants: 1 +> [52212] trubetskaya: 1 +> [52213] trubin: 1 +> [52214] truce: 17 +> [52215] truckle: 1 +> [52216] truckle-bed: 1 +> [52217] trucks: 1 +> [52218] trudge: 4 +> [52219] trudged: 6 +> [52220] trudging: 11 +> [52221] trudolyubov: 94 +> [52222] true: 771 +> [52223] true!--but: 1 +> [52224] true! [52225] true—even: 1 +> [52226] true, [52227] true--and: 1 +> [52228] true--i: 1 +> [52229] true--that: 2 +> [52230] true--true: 1 +> [52231] true--word: 1 +> [52232] true...now: 1 +> [52233] true. [52234] true?--i: 1 +> [52235] truer: 5 +> [52236] truest: 5 +> [52237] truffles: 2 +> [52238] truly: 88 +> [52239] truly,”: 2 +> [52240] trump: 1 +> [52241] trumped: 2 +> [52242] trumped-up: 1 +> [52243] trumpet: 19 +> [52244] trumpet-angels: 1 +> [52245] trumpeters: 2 +> [52246] trumpets: 12 +> [52247] trumps: 1 +> [52248] truncheon-men: 1 +> [52249] trundled: 1 +> [52250] trunila: 2 +> [52251] trunk: 28 +> [52252] trunks: 17 +> [52253] truria: 5 +> [52254] truria's: 4 +> [52255] truss: 2 +> [52256] trusses: 1 +> [52257] trussing: 1 +> [52258] trust: 147 +> [52259] trusted: 42 +> [52260] trustee: 2 +> [52261] trustful: 11 +> [52262] trustful, [52263] trustfully: 3 +> [52264] trustfulness: 3 +> [52265] trusting: 13 +> [52266] trusts: 5 +> [52267] trustworthiness: 2 +> [52268] trustworthy: 14 +> [52269] trusty: 4 +> [52270] truth: 526 +> [52271] truth! [52272] truth— [52273] truth—from: 1 +> [52274] truth—he's: 1 +> [52275] truth—of: 1 +> [52276] truth's: 1 +> [52277] truth, [52278] truth,’: 1 +> [52279] truth--as: 1 +> [52280] truth--i: 1 +> [52281] truth--science--which: 1 +> [52282] truth--that: 2 +> [52283] truth--then: 1 +> [52284] truth--welcome: 1 +> [52285] truth--what: 1 +> [52286] truth--you: 1 +> [52287] truth-like: 1 +> [52288] truth. [52289] truth [52290] truth [52291] truth? [52292] truth?’: 1 +> [52293] truthful: 31 +> [52294] truthful--yes: 4 +> [52295] truthfully: 2 +> [52296] truthfulness: 4 +> [52297] truths: 8 +> [52298] truth’s: 1 +> [52299] try: 350 +> [52300] try. [52301] tryer: 8 +> [52302] tryerfuls: 1 +> [52303] trying: 526 +> [52304] tryst: 1 +> [52305] très: 4 +> [52306] trénise: 1 +> [52307] tsar: 63 +> [52308] tsar's: 11 +> [52309] tsar-cannon: 1 +> [52310] tsarevich: 11 +> [52311] tsarevich's: 1 +> [52312] tsarevo-zaymishche: 3 +> [52313] tsarevo-zaymishche--as: 1 +> [52314] tsaritsin: 1 +> [52315] tsaritsino: 1 +> [52316] tsars: 3 +> [52317] tsarsko-selski: 1 +> [52318] tsarskoe: 2 +> [52319] tserkov: 3 +> [52320] tss: 1 +> [52321] tsujimoto: 1 +> [52322] tsujimoto[3: 1 +> [52323] tt: 1 +> [52324] tu: 2 +> [52325] tub: 9 +> [52326] tube: 34 +> [52327] tubed: 1 +> [52328] tubercles: 3 +> [52329] tuberculous: 4 +> [52330] tubes: 8 +> [52331] tubing: 2 +> [52332] tubs: 8 +> [52333] tuchkov: 4 +> [52334] tuchkov's: 2 +> [52335] tuck: 7 +> [52336] tucked: 32 +> [52337] tucked-up: 3 +> [52338] tucking: 10 +> [52339] tudor: 2 +> [52340] tuesday: 17 +> [52341] tuesday--his: 3 +> [52342] tuesdays: 1 +> [52343] tuft: 15 +> [52344] tufts: 10 +> [52345] tug: 7 +> [52346] tug-of-war: 1 +> [52347] tugendbund: 5 +> [52348] tugged: 23 +> [52349] tugging: 10 +> [52350] tugs: 1 +> [52351] tuileries: 1 +> [52352] tula: 9 +> [52353] tulip: 1 +> [52354] tulips: 1 +> [52355] tulle: 10 +> [52356] tumble: 2 +> [52357] tumble-down: 2 +> [52358] tumbled: 13 +> [52359] tumbledown: 1 +> [52360] tumbler: 14 +> [52361] tumbler's: 1 +> [52362] tumbler-full: 1 +> [52363] tumbler-full. [52364] tumblers: 3 +> [52365] tumbling: 1 +> [52366] tumult: 14 +> [52367] tumult--she: 1 +> [52368] tumultuous: 2 +> [52369] tumultuously: 2 +> [52370] tunbridge: 3 +> [52371] tune: 21 +> [52372] tuned: 3 +> [52373] tuneful: 2 +> [52374] tung: 12 +> [52375] tunic: 4 +> [52376] tunics: 2 +> [52377] tuning: 1 +> [52378] tunnel: 1 +> [52379] tunneled: 1 +> [52380] turban: 4 +> [52381] turbid: 4 +> [52382] turbidity: 2 +> [52383] turbot: 7 +> [52384] turbulence: 2 +> [52385] turbulent: 11 +> [52386] tureen: 4 +> [52387] turenne: 2 +> [52388] turf: 12 +> [52389] turgenev: 3 +> [52390] turgenieff: 1 +> [52391] turgot: 1 +> [52392] turin: 8 +> [52393] turin's: 1 +> [52394] turk: 5 +> [52395] turkey: 63 +> [52396] turkey's: 1 +> [52397] turkey-cock's: 2 +> [52398] turkey-cocks! [52399] turkey-hens: 1 +> [52400] turkey:—: 1 +> [52401] turkeys: 1 +> [52402] turkin: 1 +> [52403] turkish: 31 +> [52404] turkistan: 1 +> [52405] turks: 30 +> [52406] turks--the: 1 +> [52407] turks?--ivan: 1 +> [52408] turk’s: 1 +> [52409] turmoil: 14 +> [52410] turn: 567 +> [52411] turn--even: 1 +> [52412] turn-coats: 1 +> [52413] turn-down: 4 +> [52414] turn-out: 2 +> [52415] turn-over: 1 +> [52416] turncoat: 1 +> [52417] turned: 1696 +> [52418] turned--of: 1 +> [52419] turned--or: 1 +> [52420] turned-down: 1 +> [52421] turned-in: 3 +> [52422] turned-out: 1 +> [52423] turned-up: 3 +> [52424] turned [52425] turning: 623 +> [52426] turning-point: 7 +> [52427] turnings: 1 +> [52428] turns: 82 +> [52429] turnspit: 2 +> [52430] turovtsin: 17 +> [52431] turovtsin's: 1 +> [52432] turovtsin--"_acted: 1 +> [52433] turovtsin--good: 1 +> [52434] turovtsin--he: 1 +> [52435] turpentine: 1 +> [52436] turque: 1 +> [52437] turret: 3 +> [52438] turreted: 2 +> [52439] turrets: 4 +> [52440] turtle: 2 +> [52441] turveydrop: 1 +> [52442] tuscans: 1 +> [52443] tuscany: 1 +> [52444] tushin: 58 +> [52445] tushin's: 17 +> [52446] tushkevitch: 22 +> [52447] tushkevitch--"with: 1 +> [52448] tushkevitch--you: 1 +> [52449] tusks: 1 +> [52450] tussle: 1 +> [52451] tut: 23 +> [52452] tut-tut-tut: 2 +> [52453] tutolmin: 3 +> [52454] tutor: 27 +> [52455] tutor's: 3 +> [52456] tutors: 9 +> [52457] tutti: 1 +> [52458] tuzikov: 1 +> [52459] tver: 19 +> [52460] tverskaya: 16 +> [52461] tverskaya's: 9 +> [52462] tverskoy: 2 +> [52463] tverskoys: 2 +> [52464] tversky: 2 +> [52465] twaddell: 1 +> [52466] twaddle: 6 +> [52467] twain: 4 +> [52468] twanging: 1 +> [52469] twansports: 1 +> [52470] twas: 6 +> [52471] tweasuwy: 1 +> [52472] tweed: 2 +> [52473] twelfth: 9 +> [52474] twelve: 123 +> [52475] twelve--here: 1 +> [52476] twelve-year-old: 1 +> [52477] twelve. [52478] twelvemonth: 4 +> [52479] twenties: 2 +> [52480] twentieth: 11 +> [52481] twenty: 279 +> [52482] twenty—a: 1 +> [52483] twenty--had: 1 +> [52484] twenty-copeck: 1 +> [52485] twenty-eight: 12 +> [52486] twenty-eighth: 6 +> [52487] twenty-fifth: 12 +> [52488] twenty-first: 2 +> [52489] twenty-five: 75 +> [52490] twenty-five--that: 1 +> [52491] twenty-five-ruble: 2 +> [52492] twenty-four: 43 +> [52493] twenty-fourth: 15 +> [52494] twenty-mile: 1 +> [52495] twenty-ninth: 4 +> [52496] twenty-one: 17 +> [52497] twenty-second: 2 +> [52498] twenty-seven: 12 +> [52499] twenty-seventh: 2 +> [52500] twenty-six: 6 +> [52501] twenty-sixth: 11 +> [52502] twenty-sixth--there: 1 +> [52503] twenty-thousandth: 1 +> [52504] twenty-three: 10 +> [52505] twenty-two: 17 +> [52506] twenty-year: 1 +> [52507] twenty-year-old: 1 +> [52508] twice: 267 +> [52509] twicks: 1 +> [52510] twig: 6 +> [52511] twigs: 8 +> [52512] twilight: 22 +> [52513] twilight--and: 1 +> [52514] twill: 2 +> [52515] twin: 3 +> [52516] twined: 1 +> [52517] twinge: 9 +> [52518] twinges--for: 1 +> [52519] twining: 1 +> [52520] twinkle: 4 +> [52521] twinkled: 10 +> [52522] twinkling: 33 +> [52523] twinkling--i've: 1 +> [52524] twins: 1 +> [52525] twirled: 4 +> [52526] twirling: 8 +> [52527] twist: 14 +> [52528] twisted: 33 +> [52529] twisting: 37 +> [52530] twists: 2 +> [52531] twitch: 10 +> [52532] twitched: 37 +> [52533] twitched--"that: 1 +> [52534] twitchell: 25 +> [52535] twitchell,[a: 1 +> [52536] twitchelling: 2 +> [52537] twitches: 1 +> [52538] twitching: 49 +> [52539] twitching, [52540] twitter: 5 +> [52541] twittered: 5 +> [52542] twittering: 1 +> [52543] twixt: 1 +> [52544] two: 2697 +> [52545] two,’: 1 +> [52546] two--a: 1 +> [52547] two--and: 1 +> [52548] two--father: 1 +> [52549] two--morality: 1 +> [52550] two--one--one: 1 +> [52551] two--or: 2 +> [52552] two--porfiry: 1 +> [52553] two--vulgarity: 1 +> [52554] two-and-twenty: 1 +> [52555] two-document: 1 +> [52556] two-edged: 3 +> [52557] two-fold: 1 +> [52558] two-horse: 1 +> [52559] two-inch: 1 +> [52560] two-masted: 1 +> [52561] two-seated: 1 +> [52562] two-sided: 1 +> [52563] two-tenths: 1 +> [52564] two-thirds: 5 +> [52565] two-weeks: 1 +> [52566] two? [52567] twofold: 5 +> [52568] twon't: 2 +> [52569] twopence: 2 +> [52570] twos: 7 +> [52571] twot: 1 +> [52572] twue: 1 +> [52573] twy: 3 +> [52574] tyburn: 2 +> [52575] tychicus: 2 +> [52576] tying: 5 +> [52577] tyndall: 1 +> [52578] tyndall's: 1 +> [52579] type: 107 +> [52580] type--one: 1 +> [52581] type--she: 1 +> [52582] type="encodingdesc: 1 +> [52583] type="etext-no">28054 [52584] type="footnotes: 1 +> [52585] type="pgfooter: 1 +> [52586] type="pgheader: 1 +> [52587] type="toc: 1 +> [52588] types: 35 +> [52589] typhus: 6 +> [52590] typical: 30 +> [52591] typical--for: 1 +> [52592] typically: 2 +> [52593] typographical: 1 +> [52594] typos: 1 +> [52595] tyrannical: 5 +> [52596] tyrannies: 1 +> [52597] tyrannise: 4 +> [52598] tyrannising: 8 +> [52599] tyrannize: 1 +> [52600] tyrannized: 2 +> [52601] tyrannizing: 2 +> [52602] tyrannus: 1 +> [52603] tyranny: 16 +> [52604] tyrans: 3 +> [52605] tyrant: 17 +> [52606] tyrant's: 1 +> [52607] tyrants: 6 +> [52608] tyre: 2 +> [52609] tyrolese: 1 +> [52610] tyutchev: 1 +> [52611] télégraphe: 1 +> [52612] tête: 4 +> [52613] tête-à-tête: 11 +> [52614] tübingen: 8 +> [52615] u: 47 +> [52616] u-shape: 1 +> [52617] u.s: 58 +> [52618] u.s.a: 3 +> [52619] u.s.n: 2 +> [52620] u5: 1 +> [52621] ud: 1 +> [52622] udder: 2 +> [52623] udolpho: 1 +> [52624] udolpho? [52625] ugh: 18 +> [52626] uglier: 2 +> [52627] ugliest: 1 +> [52628] ugliness: 5 +> [52629] ugly: 64 +> [52630] ugly--seemed: 1 +> [52631] uhlan: 6 +> [52632] uhlans: 29 +> [52633] ukase: 4 +> [52634] ukraine: 2 +> [52635] ukrainian: 2 +> [52636] ukranian: 1 +> [52637] ulai: 1 +> [52638] ulm: 11 +> [52639] ulterior: 4 +> [52640] ultimate: 23 +> [52641] ultimately: 13 +> [52642] ultimatum: 1 +> [52643] ultra: 1 +> [52644] ultramarine: 2 +> [52645] ultramontanism: 2 +> [52646] ultramontanism! [52647] ulysses: 1 +> [52648] ulyulyu: 6 +> [52649] ulyulyuing: 2 +> [52650] ulyulyulyu: 2 +> [52651] ulyulyulyulyu: 1 +> [52652] umbrella: 15 +> [52653] umph: 3 +> [52654] umph! [52655] umpire: 1 +> [52656] umsonst: 1 +> [52657] un: 23 +> [52658] un—der—stand! [52659] un-idiotic: 1 +> [52660] un-pauline: 1 +> [52661] un-petersburg-like: 1 +> [52662] un-russian: 3 +> [52663] unabashed: 3 +> [52664] unable: 264 +> [52665] unacceptable: 1 +> [52666] unaccommodated: 1 +> [52667] unaccountable: 12 +> [52668] unaccountably: 2 +> [52669] unaccustomed: 24 +> [52670] unacknowledged: 1 +> [52671] unacquainted: 1 +> [52672] unadjusted: 1 +> [52673] unadorned: 1 +> [52674] unadulterated: 1 +> [52675] unaffected: 13 +> [52676] unaffectedly: 1 +> [52677] unaided: 5 +> [52678] unalloyed: 2 +> [52679] unalterable: 12 +> [52680] unalterably: 3 +> [52681] unaltered: 2 +> [52682] unambiguous: 1 +> [52683] unamiable: 1 +> [52684] unanimity: 6 +> [52685] unanimity--presented: 1 +> [52686] unanimous: 8 +> [52687] unanimously: 4 +> [52688] unannounced: 2 +> [52689] unanswerable: 5 +> [52690] unanswerably: 1 +> [52691] unanswered: 4 +> [52692] unapparent: 1 +> [52693] unappeased: 1 +> [52694] unappreciated: 1 +> [52695] unapproachability: 1 +> [52696] unapproachable: 6 +> [52697] unarmed: 3 +> [52698] unarmed--and: 1 +> [52699] unasked: 4 +> [52700] unassailable: 1 +> [52701] unassisted: 2 +> [52702] unassuming: 5 +> [52703] unatoned: 1 +> [52704] unattached: 1 +> [52705] unattainable: 15 +> [52706] unattainable--so: 1 +> [52707] unattended: 4 +> [52708] unattractive: 9 +> [52709] unattractively: 1 +> [52710] unavailing: 1 +> [52711] unavenged: 3 +> [52712] unavoidable: 12 +> [52713] unavoidable, [52714] unavoidably: 1 +> [52715] unawakened: 1 +> [52716] unaware: 17 +> [52717] unawares: 15 +> [52718] unbalanced: 1 +> [52719] unbaptized, [52720] unbar: 3 +> [52721] unbarred: 3 +> [52722] unbearable: 26 +> [52723] unbearably: 3 +> [52724] unbecoming: 13 +> [52725] unbecomingly: 2 +> [52726] unbelief: 14 +> [52727] unbelief--at: 1 +> [52728] unbeliever: 11 +> [52729] unbelievers: 7 +> [52730] unbelieving: 6 +> [52731] unbend: 1 +> [52732] unbending: 4 +> [52733] unbent: 2 +> [52734] unbidden: 1 +> [52735] unbind: 1 +> [52736] unbleached: 2 +> [52737] unbolted: 1 +> [52738] unborn: 2 +> [52739] unbosom: 1 +> [52740] unbound: 2 +> [52741] unbounded: 21 +> [52742] unbridled: 10 +> [52743] unbroken: 14 +> [52744] unbrotherly: 1 +> [52745] unbrushed: 3 +> [52746] unburied: 2 +> [52747] unburned: 1 +> [52748] unbutton: 1 +> [52749] unbuttoned: 22 +> [52750] unbuttoning: 1 +> [52751] unbuttressed: 1 +> [52752] uncalled: 6 +> [52753] uncalled-for: 3 +> [52754] uncandid: 1 +> [52755] uncannily: 1 +> [52756] uncanny: 12 +> [52757] uncanonical: 1 +> [52758] unceasing: 7 +> [52759] unceasingly: 16 +> [52760] unceasingly, [52761] unceremonious: 3 +> [52762] unceremoniously: 9 +> [52763] unceremoniously--she: 1 +> [52764] uncertain: 55 +> [52765] uncertainly: 6 +> [52766] uncertainties: 5 +> [52767] uncertainty: 37 +> [52768] uncertainty. [52769] uncertificated: 1 +> [52770] unchallenged: 1 +> [52771] unchangeable: 3 +> [52772] unchanged: 19 +> [52773] unchanging: 10 +> [52774] unchangingly: 1 +> [52775] unchecked: 2 +> [52776] unchildish: 2 +> [52777] unchildlike: 1 +> [52778] unchivalrous: 1 +> [52779] unchlorinated: 1 +> [52780] unchristian: 3 +> [52781] unchristianity: 1 +> [52782] unchronological: 1 +> [52783] unchurched: 1 +> [52784] uncircumcision: 3 +> [52785] uncircumcized: 1 +> [52786] uncivil: 3 +> [52787] unclasped: 4 +> [52788] uncle: 268 +> [52789] uncle's: 54 +> [52790] uncle--any: 1 +> [52791] unclean: 18 +> [52792] unclean. [52793] uncleanliness: 2 +> [52794] uncleanness: 2 +> [52795] uncles: 2 +> [52796] unclothed--sat: 1 +> [52797] unclouded: 3 +> [52798] uncombined: 2 +> [52799] uncomely: 1 +> [52800] uncomfortable: 63 +> [52801] uncomfortableness: 1 +> [52802] uncomfortably: 5 +> [52803] uncommitted: 1 +> [52804] uncommon: 7 +> [52805] uncommonly: 7 +> [52806] uncommunicative: 2 +> [52807] uncomplaining: 1 +> [52808] uncomplainingly: 1 +> [52809] uncomprehended: 4 +> [52810] uncompromising: 4 +> [52811] uncompromisingly: 1 +> [52812] unconcealed: 4 +> [52813] unconcern: 4 +> [52814] unconcerned: 9 +> [52815] unconcernedly: 3 +> [52816] unconciously: 1 +> [52817] unconciousness: 1 +> [52818] unconditional: 2 +> [52819] unconditionally: 7 +> [52820] unconditioned: 2 +> [52821] unconfirmed: 1 +> [52822] uncongenial: 3 +> [52823] unconnected: 2 +> [52824] unconquerable: 1 +> [52825] unconscious: 91 +> [52826] unconscious, [52827] unconscious. [52828] unconsciously: 118 +> [52829] unconsciousness: 13 +> [52830] unconsidered: 1 +> [52831] unconsoled: 1 +> [52832] unconstrainedly: 3 +> [52833] uncontrollable: 8 +> [52834] uncontrollably: 3 +> [52835] uncontrolled: 8 +> [52836] unconventional: 1 +> [52837] unconverted: 3 +> [52838] unconvinced: 1 +> [52839] uncorded: 2 +> [52840] uncorked: 5 +> [52841] uncorking: 1 +> [52842] uncouth: 13 +> [52843] uncovenanted: 1 +> [52844] uncover: 8 +> [52845] uncovered: 20 +> [52846] uncovering: 3 +> [52847] uncritically: 1 +> [52848] uncrooked: 1 +> [52849] uncrossing: 1 +> [52850] unction: 9 +> [52851] unctuous: 2 +> [52852] uncultivated: 1 +> [52853] uncurled: 1 +> [52854] uncut: 7 +> [52855] und: 5 +> [52856] undah: 1 +> [52857] undated: 1 +> [52858] undaunted: 4 +> [52859] undeceive: 4 +> [52860] undeceived: 3 +> [52861] undecided: 15 +> [52862] undefended: 1 +> [52863] undefiled: 1 +> [52864] undefinable: 3 +> [52865] undefined: 9 +> [52866] undeniable: 4 +> [52867] undeniably: 1 +> [52868] under: 1532 +> [52869] under--well: 1 +> [52870] under-chord: 1 +> [52871] under-current: 1 +> [52872] under-done: 1 +> [52873] under-estimated: 1 +> [52874] under-fed: 1 +> [52875] under-flannel: 1 +> [52876] under-gardeners: 1 +> [52877] under-ground: 1 +> [52878] under-shepherd: 4 +> [52879] under-world: 2 +> [52880] underbred: 2 +> [52881] undercassock: 1 +> [52882] underclothes: 3 +> [52883] underclothes--they: 1 +> [52884] underclothes. [52885] underclothing: 1 +> [52886] undercooling: 1 +> [52887] undercurrents: 3 +> [52888] underfoot: 4 +> [52889] undergarments: 3 +> [52890] undergo: 3 +> [52891] undergoes: 1 +> [52892] undergoing: 4 +> [52893] undergone: 8 +> [52894] undergraduate: 1 +> [52895] underground: 84 +> [52896] underground, [52897] underground[1: 1 +> [52898] undergrowth: 5 +> [52899] underhand: 1 +> [52900] underlay: 5 +> [52901] underline: 2 +> [52902] underlines: 1 +> [52903] underlings: 1 +> [52904] underlining: 1 +> [52905] underlip: 3 +> [52906] underlying: 4 +> [52907] undermine: 1 +> [52908] undermined: 5 +> [52909] undermines: 1 +> [52910] undermining: 3 +> [52911] underneath: 8 +> [52912] underneath, [52913] underrate: 1 +> [52914] underscores: 2 +> [52915] underside: 1 +> [52916] undersized: 3 +> [52917] undersold: 1 +> [52918] understand: 1560 +> [52919] understand, [52920] understand--'i: 1 +> [52921] understand--and: 2 +> [52922] understand--i: 1 +> [52923] understand--it: 1 +> [52924] understand--or: 1 +> [52925] understand--that: 1 +> [52926] understand--tolstoy's: 1 +> [52927] understand--why: 1 +> [52928] understand--you: 1 +> [52929] understand.... [52930] understand. [52931] understand?--now: 1 +> [52932] understand? [52933] understandable: 2 +> [52934] understanding: 187 +> [52935] understanding--how: 1 +> [52936] understanding.”: 1 +> [52937] understandingly: 1 +> [52938] understandings: 1 +> [52939] understands: 46 +> [52940] understate: 2 +> [52941] understood: 521 +> [52942] understood--"i: 1 +> [52943] understood--how: 1 +> [52944] understood. [52945] understrappers: 1 +> [52946] undertake: 39 +> [52947] undertaken: 24 +> [52948] undertaker: 1 +> [52949] undertakers: 1 +> [52950] undertakes: 4 +> [52951] undertaking: 29 +> [52952] undertakings: 3 +> [52953] undertone: 13 +> [52954] undertones: 3 +> [52955] undertook: 19 +> [52956] undervalue: 1 +> [52957] underwent: 4 +> [52958] underwood: 2 +> [52959] underworld: 4 +> [52960] undeserved: 4 +> [52961] undeservedly: 2 +> [52962] undeserving: 2 +> [52963] undesigned: 1 +> [52964] undesirable: 4 +> [52965] undeveloped: 6 +> [52966] undid: 8 +> [52967] undignified: 9 +> [52968] undiluted: 2 +> [52969] undiscerning: 1 +> [52970] undiscerning--but: 1 +> [52971] undisguised: 7 +> [52972] undisguisedly: 1 +> [52973] undismayed: 2 +> [52974] undisputed: 3 +> [52975] undissolved: 1 +> [52976] undisturbed: 6 +> [52977] undivided: 13 +> [52978] undivided--and: 1 +> [52979] undo: 13 +> [52980] undoing: 6 +> [52981] undoing. [52982] undone: 17 +> [52983] undoubted: 7 +> [52984] undoubtedly: 65 +> [52985] undoubtedly, [52986] undoubting: 1 +> [52987] undrained: 2 +> [52988] undraped: 1 +> [52989] undress: 15 +> [52990] undressed: 30 +> [52991] undressing: 22 +> [52992] undue: 5 +> [52993] undulating: 2 +> [52994] unduly: 1 +> [52995] undutiful: 1 +> [52996] une: 15 +> [52997] unearned: 1 +> [52998] unearthed: 1 +> [52999] unearthly: 4 +> [53000] uneasily: 73 +> [53001] uneasiness: 54 +> [53002] uneasy: 114 +> [53003] uneasy—we: 1 +> [53004] uneasy, [53005] uneasy-looking: 1 +> [53006] uneasy? [53007] uneatable: 1 +> [53008] uneconomical: 2 +> [53009] uneducated: 5 +> [53010] unembarrassed: 1 +> [53011] unemployed: 1 +> [53012] unencumbered: 1 +> [53013] unending: 2 +> [53014] unendurable: 6 +> [53015] unendurable! [53016] unenforceability: 19 +> [53017] unentrenched: 3 +> [53018] unenviable: 2 +> [53019] unequal: 8 +> [53020] unequaled: 1 +> [53021] unequally: 1 +> [53022] unerring: 1 +> [53023] unerringly: 1 +> [53024] unescorted: 1 +> [53025] unethical: 1 +> [53026] uneven: 10 +> [53027] unevenly: 5 +> [53028] uneventful: 3 +> [53029] unevoked: 1 +> [53030] unexampled: 3 +> [53031] unexecuted: 4 +> [53032] unexpected: 153 +> [53033] unexpectedly: 116 +> [53034] unexpectedness: 5 +> [53035] unexpended: 1 +> [53036] unexpiated: 2 +> [53037] unexplained: 6 +> [53038] unexplained--that: 1 +> [53039] unexplored: 1 +> [53040] unexposed: 1 +> [53041] unexpressed: 2 +> [53042] unfailing: 4 +> [53043] unfailingly: 1 +> [53044] unfair: 26 +> [53045] unfair...i: 1 +> [53046] unfairly: 5 +> [53047] unfairness: 1 +> [53048] unfaithful: 10 +> [53049] unfaithfulness: 4 +> [53050] unfalteringly: 1 +> [53051] unfamiliar: 20 +> [53052] unfamiliarity: 1 +> [53053] unfashionable: 1 +> [53054] unfasten: 4 +> [53055] unfastened: 14 +> [53056] unfastening: 4 +> [53057] unfathomable: 7 +> [53058] unfavorable: 6 +> [53059] unfavorably: 1 +> [53060] unfavourable: 3 +> [53061] unfavourably: 1 +> [53062] unfeeling: 6 +> [53063] unfeigned: 2 +> [53064] unfeminine: 1 +> [53065] unfettered: 3 +> [53066] unfilial: 1 +> [53067] unfilled: 4 +> [53068] unfinished: 16 +> [53069] unfit: 3 +> [53070] unfitting: 2 +> [53071] unflagging: 4 +> [53072] unfledg’d: 1 +> [53073] unflinching: 3 +> [53074] unfold: 4 +> [53075] unfolded: 22 +> [53076] unfolding: 10 +> [53077] unfordable: 1 +> [53078] unforeseen: 7 +> [53079] unforgivable: 1 +> [53080] unforgiven: 1 +> [53081] unforgiving: 1 +> [53082] unforgotten: 3 +> [53083] unformed: 3 +> [53084] unfortunate: 72 +> [53085] unfortunate?—for: 1 +> [53086] unfortunately: 28 +> [53087] unfortunates: 5 +> [53088] unfounded: 4 +> [53089] unfrequent: 2 +> [53090] unfrequented: 1 +> [53091] unfrequently: 2 +> [53092] unfriendly: 4 +> [53093] unfrocked: 1 +> [53094] unfulfilled: 1 +> [53095] unfurnished: 1 +> [53096] ungainly: 6 +> [53097] ungenerous: 1 +> [53098] ungenteel: 1 +> [53099] ungentlemanly: 8 +> [53100] unglazed: 4 +> [53101] ungloved: 1 +> [53102] ungovernable: 3 +> [53103] ungraceful: 3 +> [53104] ungracious: 4 +> [53105] ungraciously: 5 +> [53106] ungrammatical: 2 +> [53107] ungrateful: 30 +> [53108] ungratified: 1 +> [53109] unguarded: 5 +> [53110] unhampered: 1 +> [53111] unhandy: 1 +> [53112] unhappier: 2 +> [53113] unhappily: 9 +> [53114] unhappily! [53115] unhappiness: 23 +> [53116] unhappiness—that: 1 +> [53117] unhappiness--no: 1 +> [53118] unhappy: 222 +> [53119] unhappy! [53120] unhappy. [53121] unhappy? [53122] unharmed: 7 +> [53123] unharness: 3 +> [53124] unharnessed: 6 +> [53125] unharnessing: 2 +> [53126] unhasting: 1 +> [53127] unhealthily: 1 +> [53128] unhealthy: 6 +> [53129] unheard: 6 +> [53130] unheard-of: 7 +> [53131] unheeded: 2 +> [53132] unheeding: 4 +> [53133] unheroic: 1 +> [53134] unhesitating: 6 +> [53135] unhesitatingly: 4 +> [53136] unhewn: 1 +> [53137] unhindered: 2 +> [53138] unhinge: 1 +> [53139] unhinged: 14 +> [53140] unholy: 3 +> [53141] unhooked: 4 +> [53142] unhorsed: 1 +> [53143] unhurried: 1 +> [53144] unhurt: 10 +> [53145] unicorn: 1 +> [53146] unification: 2 +> [53147] uniform: 186 +> [53148] uniform, [53149] uniform--some: 1 +> [53150] uniform.]--you: 1 +> [53151] uniformed: 2 +> [53152] uniformity: 4 +> [53153] uniformly: 5 +> [53154] uniforms: 49 +> [53155] unifrom: 4 +> [53156] unimpaired: 2 +> [53157] unimpeachable: 3 +> [53158] unimportance: 3 +> [53159] unimportant: 19 +> [53160] unincumbered: 1 +> [53161] uninfluenced: 3 +> [53162] uninhabited: 3 +> [53163] uninitiated: 1 +> [53164] uninjured: 6 +> [53165] unintelligible: 15 +> [53166] unintelligibly: 1 +> [53167] unintended: 1 +> [53168] unintentional: 5 +> [53169] unintentionally: 6 +> [53170] uninterested: 1 +> [53171] uninteresting: 6 +> [53172] uninterrupted: 8 +> [53173] uninterruptedly: 3 +> [53174] uninvited: 7 +> [53175] uninviting: 1 +> [53176] uninviting-looking: 1 +> [53177] union: 39 +> [53178] unions: 1 +> [53179] unique: 9 +> [53180] unison: 2 +> [53181] unit: 7 +> [53182] unit='tb: 5 +> [53183] unite: 31 +> [53184] united: 242 +> [53185] unites: 6 +> [53186] uniting: 17 +> [53187] units: 17 +> [53188] unity: 52 +> [53189] univ: 1 +> [53190] univalent: 1 +> [53191] universal: 73 +> [53192] universalism: 2 +> [53193] universalized: 1 +> [53194] universally: 7 +> [53195] universe: 22 +> [53196] universe--in: 1 +> [53197] universities: 3 +> [53198] university: 72 +> [53199] unjust: 33 +> [53200] unjust. [53201] unjustly: 6 +> [53202] unkempt: 10 +> [53203] unkind: 9 +> [53204] unkindly: 3 +> [53205] unkindness: 2 +> [53206] unkindnesses: 2 +> [53207] unknown: 169 +> [53208] unknown--russians: 1 +> [53209] unknowns: 1 +> [53210] unladylike: 1 +> [53211] unlarded: 1 +> [53212] unlatched: 3 +> [53213] unlawful: 2 +> [53214] unlawfully: 2 +> [53215] unlearned: 2 +> [53216] unlearning: 1 +> [53217] unleashed: 1 +> [53218] unless: 217 +> [53219] unless—unless: 1 +> [53220] unless--unless: 1 +> [53221] unlicked: 1 +> [53222] unlifting: 1 +> [53223] unlighted: 1 +> [53224] unlike: 70 +> [53225] unlikely: 11 +> [53226] unlikely--or: 1 +> [53227] unlikely-sounding: 1 +> [53228] unlimbered: 4 +> [53229] unlimited: 4 +> [53230] unlink: 19 +> [53231] unliterary: 4 +> [53232] unlived: 1 +> [53233] unload: 3 +> [53234] unloaded: 3 +> [53235] unloading: 2 +> [53236] unlock: 1 +> [53237] unlocked: 18 +> [53238] unlocking: 4 +> [53239] unlooked: 2 +> [53240] unlooked-for: 4 +> [53241] unloosed: 2 +> [53242] unloved: 2 +> [53243] unlovely: 1 +> [53244] unluckily: 12 +> [53245] unlucky: 31 +> [53246] unlucky--how: 4 +> [53247] unmade: 1 +> [53248] unmaidenly: 1 +> [53249] unmake: 1 +> [53250] unmanly: 7 +> [53251] unmanned: 4 +> [53252] unmannerly: 3 +> [53253] unmarked: 1 +> [53254] unmarried: 17 +> [53255] unmarry: 1 +> [53256] unmask: 10 +> [53257] unmasked: 2 +> [53258] unmeaning: 1 +> [53259] unmeaningly: 1 +> [53260] unmeasured: 1 +> [53261] unmelted: 2 +> [53262] unmentionable: 2 +> [53263] unmentioned: 1 +> [53264] unmerciful: 1 +> [53265] unmercifully: 2 +> [53266] unmerited: 4 +> [53267] unmilitary: 1 +> [53268] unmilled: 2 +> [53269] unmistakable: 45 +> [53270] unmistakably: 47 +> [53271] unmitigated: 1 +> [53272] unmixed: 2 +> [53273] unmolested: 2 +> [53274] unmouthed: 1 +> [53275] unmoved: 25 +> [53276] unmown: 2 +> [53277] unmusical: 1 +> [53278] unnamed: 4 +> [53279] unnatural: 90 +> [53280] unnaturally: 33 +> [53281] unnaturalness: 4 +> [53282] unnecessarily: 5 +> [53283] unnecessary: 46 +> [53284] unnecessary,--this: 1 +> [53285] unnecessary--why: 1 +> [53286] unneighborly: 1 +> [53287] unnerved: 3 +> [53288] unnoticed: 34 +> [53289] unobjectionable: 1 +> [53290] unobservant: 4 +> [53291] unobserved: 14 +> [53292] unobserved--and: 1 +> [53293] unobstructed: 1 +> [53294] unobtrusive: 2 +> [53295] unobtrusively: 5 +> [53296] unoccupied: 9 +> [53297] unofficial: 1 +> [53298] unopened: 8 +> [53299] unopened! [53300] unorthodox: 2 +> [53301] unowned: 1 +> [53302] unpack: 2 +> [53303] unpacked: 2 +> [53304] unpacking: 3 +> [53305] unpaid: 4 +> [53306] unpainted: 1 +> [53307] unpalatable: 2 +> [53308] unparalleled: 3 +> [53309] unpardonable: 18 +> [53310] unpardonably: 5 +> [53311] unpardoned: 1 +> [53312] unpeopled: 1 +> [53313] unperceived: 5 +> [53314] unpersuaded: 1 +> [53315] unperturbed: 1 +> [53316] unpick: 1 +> [53317] unpicked: 3 +> [53318] unpinning: 1 +> [53319] unplaited: 1 +> [53320] unplastered: 1 +> [53321] unpleasant: 169 +> [53322] unpleasant--suspicion: 1 +> [53323] unpleasant? [53324] unpleasantly: 17 +> [53325] unpleasantness: 20 +> [53326] unpleasing: 1 +> [53327] unpolished: 4 +> [53328] unpolled: 1 +> [53329] unpopular: 4 +> [53330] unpopularity: 1 +> [53331] unpowdered: 1 +> [53332] unpracticed: 1 +> [53333] unpractised: 1 +> [53334] unprecedented: 5 +> [53335] unprejudiced: 3 +> [53336] unprepared: 2 +> [53337] unprepossessing: 1 +> [53338] unpresentable: 1 +> [53339] unpretending: 1 +> [53340] unpretentious: 1 +> [53341] unprincipled: 1 +> [53342] unproductive: 2 +> [53343] unproductively: 1 +> [53344] unprofitable: 1 +> [53345] unprofitably: 1 +> [53346] unprogressive: 1 +> [53347] unpromising: 1 +> [53348] unpropitious: 1 +> [53349] unproportioned: 1 +> [53350] unprotected: 5 +> [53351] unproved: 2 +> [53352] unprovided: 2 +> [53353] unprovoked: 2 +> [53354] unpunctual: 1 +> [53355] unpunctualities: 1 +> [53356] unpunished: 5 +> [53357] unqualified: 3 +> [53358] unquestionable: 6 +> [53359] unquestionably: 7 +> [53360] unquestioning: 5 +> [53361] unquestioningly: 1 +> [53362] unquiet: 1 +> [53363] unravel: 1 +> [53364] unraveled: 1 +> [53365] unreal: 8 +> [53366] unreaped: 1 +> [53367] unreasonable: 18 +> [53368] unreasonableness: 1 +> [53369] unreasonably: 2 +> [53370] unreasoning: 10 +> [53371] unrebuked: 1 +> [53372] unrecognised: 1 +> [53373] unrecognizable: 2 +> [53374] unrecognized: 3 +> [53375] unreconciled: 1 +> [53376] unredeemed: 2 +> [53377] unreflecting: 1 +> [53378] unrelated: 2 +> [53379] unreliable: 1 +> [53380] unremitting: 1 +> [53381] unrepentant: 1 +> [53382] unresentful: 1 +> [53383] unreserved: 1 +> [53384] unreservedly: 2 +> [53385] unresisting: 1 +> [53386] unrest: 7 +> [53387] unresting: 1 +> [53388] unrestrainable: 1 +> [53389] unrestrained: 3 +> [53390] unrestrainedly: 1 +> [53391] unrestricted: 1 +> [53392] unrighteous: 1 +> [53393] unripe: 1 +> [53394] unrolled: 1 +> [53395] unrolling: 1 +> [53396] unromantic: 1 +> [53397] unruffled: 2 +> [53398] unruliness: 2 +> [53399] unruly: 10 +> [53400] unruly—we: 1 +> [53401] unrumpled: 1 +> [53402] uns: 2 +> [53403] unsaddling: 1 +> [53404] unsafe: 5 +> [53405] unsaid: 3 +> [53406] unsaponifiable: 26 +> [53407] unsaponified: 3 +> [53408] unsatisfactory: 17 +> [53409] unsatisfied: 7 +> [53410] unsaturated: 5 +> [53411] unsay: 2 +> [53412] unscathed: 1 +> [53413] unscrewed: 1 +> [53414] unscrupulous: 4 +> [53415] unsealed: 3 +> [53416] unseated: 2 +> [53417] unseating: 1 +> [53418] unseemliness: 3 +> [53419] unseemly: 66 +> [53420] unseemly--yet: 1 +> [53421] unseen: 47 +> [53422] unselfish: 5 +> [53423] unselfishly: 1 +> [53424] unselfishness: 3 +> [53425] unserviceable: 1 +> [53426] unsettled: 11 +> [53427] unshakable: 5 +> [53428] unshaken: 3 +> [53429] unshaven: 8 +> [53430] unsheathed: 1 +> [53431] unshuttered: 2 +> [53432] unsifted: 2 +> [53433] unsightliness: 1 +> [53434] unsightly: 6 +> [53435] unskilled: 1 +> [53436] unslaked: 1 +> [53437] unsmiling: 1 +> [53438] unsociability: 1 +> [53439] unsociable: 4 +> [53440] unsoftened: 1 +> [53441] unsoldierly: 1 +> [53442] unsolicited: 21 +> [53443] unsolved: 8 +> [53444] unsophisticated: 2 +> [53445] unsought: 1 +> [53446] unsound: 2 +> [53447] unsoundly: 1 +> [53448] unsown: 1 +> [53449] unspeakable: 5 +> [53450] unspeakably: 2 +> [53451] unspent: 1 +> [53452] unspoiled: 1 +> [53453] unspoilt: 1 +> [53454] unspoken: 6 +> [53455] unstable: 2 +> [53456] unsteadier: 1 +> [53457] unsteadily: 5 +> [53458] unsteady: 9 +> [53459] unstirred: 1 +> [53460] unstrapped: 2 +> [53461] unstrapping: 1 +> [53462] unstuck: 2 +> [53463] unsubstantial: 2 +> [53464] unsuccessful: 12 +> [53465] unsuccessfully: 1 +> [53466] unsuitability: 1 +> [53467] unsuitable: 12 +> [53468] unsuitably: 1 +> [53469] unsuited: 1 +> [53470] unsullied: 1 +> [53471] unsupported: 2 +> [53472] unsurpassable: 1 +> [53473] unsuspected: 3 +> [53474] unsuspecting: 2 +> [53475] unsuspicious: 2 +> [53476] unswervingly: 1 +> [53477] unsymmetrically: 1 +> [53478] unsympathetic: 2 +> [53479] unsympathizing: 1 +> [53480] untainted: 1 +> [53481] untaken: 1 +> [53482] untanned: 2 +> [53483] untarnished: 1 +> [53484] untaxed: 1 +> [53485] unteachable: 1 +> [53486] untenanted: 1 +> [53487] unterkunft: 4 +> [53488] unthinkable: 18 +> [53489] untidily: 1 +> [53490] untidiness: 5 +> [53491] untidy: 7 +> [53492] untie: 8 +> [53493] untied: 13 +> [53494] until: 484 +> [53495] until--until: 2 +> [53496] untilled: 1 +> [53497] untimely: 3 +> [53498] untiring: 1 +> [53499] unto: 66 +> [53500] untold: 2 +> [53501] untouched: 17 +> [53502] untrained: 5 +> [53503] untrampled: 1 +> [53504] untried: 5 +> [53505] untroubled: 11 +> [53506] untrue: 11 +> [53507] untrue, [53508] untruly: 1 +> [53509] untrussing: 1 +> [53510] untrustworthy: 3 +> [53511] untruth: 5 +> [53512] untruths: 1 +> [53513] unturned: 2 +> [53514] untwining: 1 +> [53515] untwisted: 2 +> [53516] untying: 3 +> [53517] unused: 10 +> [53518] unusual: 53 +> [53519] unusual--a: 1 +> [53520] unusually: 17 +> [53521] unutterable: 13 +> [53522] unutterably: 9 +> [53523] unvarying: 3 +> [53524] unveil: 1 +> [53525] unveiling: 2 +> [53526] unwanted: 1 +> [53527] unwarily: 4 +> [53528] unwarned: 2 +> [53529] unwarranted: 1 +> [53530] unwary: 4 +> [53531] unwashed: 6 +> [53532] unwashen: 1 +> [53533] unwatched: 1 +> [53534] unweaned: 1 +> [53535] unwearable: 1 +> [53536] unwearied: 1 +> [53537] unwearyingly: 2 +> [53538] unwelcome: 5 +> [53539] unwell: 28 +> [53540] unwell? [53541] unwhipped: 1 +> [53542] unwhitewashed: 2 +> [53543] unwholesome: 1 +> [53544] unwilling: 54 +> [53545] unwillingly: 14 +> [53546] unwillingness: 1 +> [53547] unwinding: 2 +> [53548] unwinking: 2 +> [53549] unwise: 3 +> [53550] unwisely: 2 +> [53551] unwithered: 1 +> [53552] unwittingly: 3 +> [53553] unwonted: 4 +> [53554] unwontedly: 1 +> [53555] unworthily: 1 +> [53556] unworthiness: 2 +> [53557] unworthy: 51 +> [53558] unworthy--but: 1 +> [53559] unworthy. [53560] unwound: 1 +> [53561] unwounded: 4 +> [53562] unwounded--it: 1 +> [53563] unwrapped: 5 +> [53564] unwrinkled: 2 +> [53565] unwritten: 6 +> [53566] unyielding: 5 +> [53567] unyoked: 1 +> [53568] up: 7234 +> [53569] up! [53570] up"--in: 1 +> [53571] up" [53572] up—do: 1 +> [53573] up—i: 1 +> [53574] up—i've: 1 +> [53575] up, [53576] up--"as: 1 +> [53577] up--a: 1 +> [53578] up--all: 3 +> [53579] up--an: 1 +> [53580] up--and: 3 +> [53581] up--do: 1 +> [53582] up--head: 1 +> [53583] up--i: 1 +> [53584] up--it: 1 +> [53585] up--she: 1 +> [53586] up--surely: 1 +> [53587] up--that: 1 +> [53588] up--we: 1 +> [53589] up-bringing: 1 +> [53590] up-running: 1 +> [53591] up-to-date: 2 +> [53592] up-turned: 1 +> [53593] up...but: 1 +> [53594] up...don't: 1 +> [53595] up. [53596] up.’: 2 +> [53597] up.”: 1 +> [53598] up;’: 3 +> [53599] up? [53600] upbraid: 5 +> [53601] upbraiding: 5 +> [53602] upbraids: 1 +> [53603] upbringing: 1 +> [53604] updated: 22 +> [53605] upheaval: 2 +> [53606] upheavals: 2 +> [53607] upheld: 7 +> [53608] uphill: 10 +> [53609] uphold: 7 +> [53610] upholding: 2 +> [53611] upholds: 2 +> [53612] upholstered: 3 +> [53613] upholsterers: 1 +> [53614] upkeep: 1 +> [53615] upland: 13 +> [53616] upland's: 1 +> [53617] uplands: 3 +> [53618] uplifted: 12 +> [53619] uplifted--"energized: 1 +> [53620] uplifting: 1 +> [53621] uplifts: 1 +> [53622] upon: 1887 +> [53623] upon--she: 1 +> [53624] upon. [53625] upper: 95 +> [53626] uppermost: 11 +> [53627] uppers: 1 +> [53628] uppish: 5 +> [53629] upraised: 3 +> [53630] upright: 22 +> [53631] uprightly: 1 +> [53632] uprightness: 2 +> [53633] uprising: 4 +> [53634] uproar: 28 +> [53635] uproarious: 1 +> [53636] uproot: 3 +> [53637] uprooted: 1 +> [53638] ups: 1 +> [53639] upset: 94 +> [53640] upsets: 3 +> [53641] upsetting: 17 +> [53642] upshot: 7 +> [53643] upside: 18 +> [53644] upstairs: 113 +> [53645] upstairs,--where: 1 +> [53646] upstanding: 1 +> [53647] upstarts: 2 +> [53648] upturned: 4 +> [53649] upward: 11 +> [53650] upwards: 32 +> [53651] upwards--seemed: 1 +> [53652] urbanity: 1 +> [53653] urchin: 9 +> [53654] urchins: 2 +> [53655] urge: 17 +> [53656] urged: 65 +> [53657] urgency: 3 +> [53658] urgent: 23 +> [53659] urgent--it: 1 +> [53660] urgently: 13 +> [53661] urges: 4 +> [53662] urging: 23 +> [53663] urn: 1 +> [53664] urns: 3 +> [53665] urope: 1 +> [53666] urusov: 1 +> [53667] us: 2660 +> [53668] us!--a: 1 +> [53669] us! [53670] us!... [53671] us—and: 1 +> [53672] us—here: 1 +> [53673] us—if: 1 +> [53674] us, [53675] us--a: 1 +> [53676] us--and: 4 +> [53677] us--but: 2 +> [53678] us--close: 1 +> [53679] us--doing: 1 +> [53680] us--drove: 1 +> [53681] us--even: 1 +> [53682] us--excepting: 1 +> [53683] us--excuse: 5 +> [53684] us--for: 2 +> [53685] us--he: 1 +> [53686] us--i: 2 +> [53687] us--if: 1 +> [53688] us--in: 1 +> [53689] us--it: 1 +> [53690] us--marfa: 1 +> [53691] us--namely: 1 +> [53692] us--our: 1 +> [53693] us--prince: 1 +> [53694] us--sold: 1 +> [53695] us--that: 1 +> [53696] us--the: 1 +> [53697] us--they: 1 +> [53698] us--this: 1 +> [53699] us--to: 2 +> [53700] us--was: 1 +> [53701] us--we: 1 +> [53702] us--you're: 1 +> [53703] us... [53704] us...i: 1 +> [53705] us. [53706] us.”: 1 +> [53707] us? [53708] us? [53709] usage: 1 +> [53710] use: 799 +> [53711] use--no: 1 +> [53712] use. [53713] use? [53714] useable: 1 +> [53715] used: 1003 +> [53716] useful: 79 +> [53717] usefulness: 9 +> [53718] usefulness--well: 1 +> [53719] useless: 121 +> [53720] uselessly: 11 +> [53721] uselessness: 7 +> [53722] usen't: 1 +> [53723] user: 57 +> [53724] uses: 23 +> [53725] usher: 16 +> [53726] ushered: 3 +> [53727] ushering: 2 +> [53728] ushers: 3 +> [53729] using: 177 +> [53730] usted: 2 +> [53731] ustinya: 16 +> [53732] ustinyushka: 1 +> [53733] usual: 330 +> [53734] usual--i'm: 1 +> [53735] usually: 196 +> [53736] usurer: 5 +> [53737] usurers: 1 +> [53738] usurp: 1 +> [53739] usurpation: 1 +> [53740] usurpations: 1 +> [53741] usurped: 2 +> [53742] usurper: 3 +> [53743] usurping: 1 +> [53744] usurps: 1 +> [53745] usvyazh: 1 +> [53746] ut: 19 +> [53747] utensils: 3 +> [53748] utf-8: 2 +> [53749] utility: 7 +> [53750] utility. [53751] utilization: 3 +> [53752] utilize: 3 +> [53753] utilized: 4 +> [53754] utilizes: 1 +> [53755] utilizing: 2 +> [53756] utitsa: 6 +> [53757] utmost: 110 +> [53758] utmost--bring: 1 +> [53759] utopia: 1 +> [53760] utopian: 2 +> [53761] utter: 118 +> [53762] utterance: 26 +> [53763] utterance--when: 1 +> [53764] utterances: 7 +> [53765] uttered: 182 +> [53766] uttered--"the: 1 +> [53767] uttering: 58 +> [53768] utterly: 206 +> [53769] uttermost: 2 +> [53770] utters: 1 +> [53771] uttoxeter: 1 +> [53772] uvarka: 3 +> [53773] uvarov: 4 +> [53774] uvarov's: 5 +> [53775] uz: 1 +> [53776] v: 113 +> [53777] v--vidoche: 1 +> [53778] v[oe: 1 +> [53779] va: 3 +> [53780] va-t-elle: 1 +> [53781] va-t-en: 3 +> [53782] vacancies: 1 +> [53783] vacancy: 4 +> [53784] vacant: 18 +> [53785] vacantly: 5 +> [53786] vacated: 3 +> [53787] vaccinate: 1 +> [53788] vaccinated: 1 +> [53789] vacillating: 4 +> [53790] vacillation: 2 +> [53791] vacuo: 1 +> [53792] vacuum: 18 +> [53793] vacuum-oven: 3 +> [53794] vagabond: 2 +> [53795] vagabonds: 1 +> [53796] vagaries: 3 +> [53797] vagarkoff: 1 +> [53798] vagenheims: 1 +> [53799] vagrancy: 1 +> [53800] vagrant: 3 +> [53801] vagrants: 1 +> [53802] vague: 80 +> [53803] vaguely: 47 +> [53804] vagueness: 1 +> [53805] vaguer: 2 +> [53806] vaguest: 3 +> [53807] vahrushin: 7 +> [53808] vain: 130 +> [53809] vain--no: 1 +> [53810] vain-glory: 1 +> [53811] vainest: 1 +> [53812] vainglorious: 1 +> [53813] vainly: 29 +> [53814] valandré: 2 +> [53815] valaridré: 1 +> [53816] vale: 10 +> [53817] valence: 1 +> [53818] valentinois: 1 +> [53819] vales: 1 +> [53820] valet: 83 +> [53821] valet's: 3 +> [53822] valet--lay: 1 +> [53823] valets: 8 +> [53824] valetta: 1 +> [53825] valiant: 17 +> [53826] valiantly: 2 +> [53827] valid: 3 +> [53828] validity: 1 +> [53829] valise: 3 +> [53830] valley: 38 +> [53831] valleys: 4 +> [53832] valor: 5 +> [53833] valor--what: 1 +> [53834] valorous: 2 +> [53835] valorously: 1 +> [53836] valour: 1 +> [53837] valse: 3 +> [53838] valses: 2 +> [53839] valuable: 48 +> [53840] valuables: 3 +> [53841] valuation: 1 +> [53842] value: 169 +> [53843] value="2009-02-12">february: 1 +> [53844] value? [53845] valued: 30 +> [53846] valued--"look: 1 +> [53847] valueless: 2 +> [53848] values: 9 +> [53849] valuev: 5 +> [53850] valuevo: 6 +> [53851] valuing: 2 +> [53852] valve: 10 +> [53853] valves: 4 +> [53854] van: 64 +> [53855] van!--though: 1 +> [53856] vandyked: 1 +> [53857] vanguard: 11 +> [53858] vanilla: 39 +> [53859] vanish: 21 +> [53860] vanished: 88 +> [53861] vanished--disappeared: 1 +> [53862] vanished--not: 1 +> [53863] vanishes: 3 +> [53864] vanishing: 11 +> [53865] vanishings: 1 +> [53866] vanities: 3 +> [53867] vanity: 115 +> [53868] vanity—vexation: 1 +> [53869] vanity. [53870] vanka: 1 +> [53871] vanka's: 2 +> [53872] vanquish: 3 +> [53873] vanquished: 13 +> [53874] vanquisher: 1 +> [53875] vanquishing: 1 +> [53876] vans: 2 +> [53877] vantage: 3 +> [53878] vantage-point: 1 +> [53879] vanuha: 4 +> [53880] vanya's: 1 +> [53881] vanya--clear: 1 +> [53882] vapor: 5 +> [53883] vapored: 1 +> [53884] vaporing: 1 +> [53885] vaporized: 1 +> [53886] vaporizes: 1 +> [53887] vapors: 3 +> [53888] vapour: 1 +> [53889] vapouring: 1 +> [53890] varenka: 140 +> [53891] varenka's: 14 +> [53892] varenka...i: 1 +> [53893] varents: 1 +> [53894] vargas: 2 +> [53895] varia: 100 +> [53896] varia's: 1 +> [53897] varia--that: 1 +> [53898] variable: 2 +> [53899] variance: 6 +> [53900] variant: 2 +> [53901] variation: 5 +> [53902] variations: 5 +> [53903] varied: 18 +> [53904] variegated: 1 +> [53905] varies: 18 +> [53906] varieties: 5 +> [53907] variety: 46 +> [53908] various: 261 +> [53909] variously: 11 +> [53910] varmint: 1 +> [53911] varnish: 5 +> [53912] varnished: 5 +> [53913] varnishes: 1 +> [53914] varsal: 1 +> [53915] varsonofy: 4 +> [53916] varsovienne: 2 +> [53917] varvara: 72 +> [53918] varvara! [53919] varvara's: 2 +> [53920] varvara--but: 1 +> [53921] varvara--you: 1 +> [53922] varvarka: 1 +> [53923] varvinsky: 10 +> [53924] vary: 11 +> [53925] varya: 14 +> [53926] varyagi: 1 +> [53927] varying: 15 +> [53928] vas...ya: 1 +> [53929] vase: 17 +> [53930] vase—not: 1 +> [53931] vasenka: 1 +> [53932] vases: 3 +> [53933] vashtchenkov's: 1 +> [53934] vashti: 1 +> [53935] vasilchikov: 1 +> [53936] vasilevich: 2 +> [53937] vasilevna: 1 +> [53938] vasili: 495 +> [53939] vasili's: 29 +> [53940] vasilich: 9 +> [53941] vasilich's: 1 +> [53942] vasiliefsky: 1 +> [53943] vasilisa: 1 +> [53944] vasilyevich: 3 +> [53945] vaska: 23 +> [53946] vaska--in: 1 +> [53947] vassals: 1 +> [53948] vassenka: 62 +> [53949] vassenka's: 4 +> [53950] vassili: 2 +> [53951] vassiliev: 1 +> [53952] vassilievitch: 9 +> [53953] vassilievna: 1 +> [53954] vassiliostrof: 1 +> [53955] vassilitch: 1 +> [53956] vassiltchikov: 1 +> [53957] vassiltchikova: 1 +> [53958] vassily: 40 +> [53959] vassilyevitch: 28 +> [53960] vassilyevitch—sticks: 1 +> [53961] vassilyevitch's: 2 +> [53962] vassilyevitch, [53963] vassilyevitch? [53964] vassilyevsky: 6 +> [53965] vassya: 2 +> [53966] vassya's: 1 +> [53967] vast: 64 +> [53968] vastly: 7 +> [53969] vastness: 2 +> [53970] vastnesses: 1 +> [53971] vasya: 315 +> [53972] vasya's: 17 +> [53973] vasya--come: 1 +> [53974] vasya--listen: 1 +> [53975] vasya--what: 1 +> [53976] vat: 2 +> [53977] vater: 7 +> [53978] vater. [53979] vatkovskaya: 1 +> [53980] vats: 1 +> [53981] vaudevilles: 3 +> [53982] vault: 6 +> [53983] vault--and: 1 +> [53984] vaulted: 9 +> [53985] vaults: 3 +> [53986] vaurien: 1 +> [53987] vauxhall: 11 +> [53988] ve: 4 +> [53989] veal: 8 +> [53990] veered: 1 +> [53991] veering: 1 +> [53992] vegetable: 14 +> [53993] vegetables: 5 +> [53994] vegetated: 1 +> [53995] vegetating: 1 +> [53996] vegetation: 4 +> [53997] vehemence: 10 +> [53998] vehement: 3 +> [53999] vehemently: 11 +> [54000] vehicle: 19 +> [54001] vehicles: 22 +> [54002] veil: 39 +> [54003] veiled: 20 +> [54004] veils: 2 +> [54005] veils--these: 1 +> [54006] vein: 4 +> [54007] veins: 25 +> [54008] velitchkovsky: 1 +> [54009] vell: 2 +> [54010] velocity: 8 +> [54011] velvet: 50 +> [54012] velvet-covered: 1 +> [54013] velveteen: 1 +> [54014] velveteens: 1 +> [54015] velvets: 3 +> [54016] velvety: 5 +> [54017] venal: 1 +> [54018] venden: 3 +> [54019] venden's: 1 +> [54020] vendée: 1 +> [54021] veneer: 1 +> [54022] venerable: 16 +> [54023] venerate: 1 +> [54024] veneration: 5 +> [54025] veneration--especially: 1 +> [54026] venetian: 5 +> [54027] venez: 2 +> [54028] vengeance: 45 +> [54029] vengeful: 4 +> [54030] vengefully: 1 +> [54031] venial: 2 +> [54032] venice: 7 +> [54033] venison: 1 +> [54034] venom: 11 +> [54035] venomous: 10 +> [54036] venomously: 5 +> [54037] venovsky: 3 +> [54038] vent: 29 +> [54039] vented: 6 +> [54040] ventilated: 1 +> [54041] ventilation: 1 +> [54042] ventilator: 1 +> [54043] venting: 1 +> [54044] ventre: 2 +> [54045] venture: 64 +> [54046] venture--and: 1 +> [54047] ventured: 49 +> [54048] ventured--and: 1 +> [54049] ventures: 2 +> [54050] venturing: 11 +> [54051] venue: 1 +> [54052] venus: 7 +> [54053] venuses: 2 +> [54054] ver: 14 +> [54055] vera: 110 +> [54056] vera's: 8 +> [54057] vera--and: 1 +> [54058] vera--mentioning: 1 +> [54059] vera--that: 1 +> [54060] veracity: 2 +> [54061] veranda: 7 +> [54062] verandah: 32 +> [54063] verandahs: 1 +> [54064] verb: 1 +> [54065] verbal: 8 +> [54066] verbally: 3 +> [54067] verbatim: 2 +> [54068] verbiage: 1 +> [54069] verbose: 1 +> [54070] verbosity: 1 +> [54071] verbs: 1 +> [54072] verdant: 1 +> [54073] verdict: 21 +> [54074] verdigris: 1 +> [54075] verdure: 3 +> [54076] vere: 1 +> [54077] vereshchagin: 23 +> [54078] verge: 21 +> [54079] verged: 4 +> [54080] vergil: 1 +> [54081] verging: 3 +> [54082] veriest: 3 +> [54083] verification: 1 +> [54084] verified: 6 +> [54085] verifies: 1 +> [54086] verify: 7 +> [54087] verify. [54088] verifying: 1 +> [54089] verily: 5 +> [54090] veritable: 3 +> [54091] verite: 2 +> [54092] verity: 1 +> [54093] verlegt: 1 +> [54094] verlust: 1 +> [54095] vermin: 5 +> [54096] vernal: 1 +> [54097] vernon: 2 +> [54098] vernon-bartlett: 1 +> [54099] vero: 1 +> [54100] vers: 1 +> [54101] versa: 6 +> [54102] versailles: 10 +> [54103] verse: 39 +> [54104] verse [54105] versed: 6 +> [54106] verser: 2 +> [54107] verses: 37 +> [54108] version: 29 +> [54109] version="1.0: 1 +> [54110] versions: 1 +> [54111] verst: 6 +> [54112] versts: 13 +> [54113] versus: 2 +> [54114] versâ: 2 +> [54115] vert: 2 +> [54116] vertebrae: 1 +> [54117] vertical: 4 +> [54118] vertically: 5 +> [54119] vertu: 1 +> [54120] very: 4543 +> [54121] very--well: 1 +> [54122] vesenny: 3 +> [54123] vesenya: 2 +> [54124] vesenya!--vesenny: 1 +> [54125] veslovsky: 104 +> [54126] veslovsky's: 4 +> [54127] veslovsky...you: 1 +> [54128] veslovsky?"--it: 1 +> [54129] vesna: 1 +> [54130] vespasian: 1 +> [54131] vespers: 4 +> [54132] vespers--though: 1 +> [54133] vespertime: 1 +> [54134] vessel: 31 +> [54135] vessel--acted: 1 +> [54136] vessel--i: 1 +> [54137] vessels: 4 +> [54138] vessels.... [54139] vest: 3 +> [54140] vestal: 1 +> [54141] vestals: 1 +> [54142] vested: 2 +> [54143] vestibule: 18 +> [54144] vestige: 4 +> [54145] vestment: 4 +> [54146] vestments: 3 +> [54147] vestments--one: 1 +> [54148] vests: 1 +> [54149] vet: 2 +> [54150] veteran: 3 +> [54151] veterans: 2 +> [54152] veterinary: 2 +> [54153] veto: 4 +> [54154] veux: 1 +> [54155] vewy: 8 +> [54156] vex: 5 +> [54157] vexation: 90 +> [54158] vexation--or: 1 +> [54159] vexations: 2 +> [54160] vexatious: 11 +> [54161] vexed: 90 +> [54162] vexes: 3 +> [54163] vexing: 3 +> [54164] vi: 83 +> [54165] via: 2 +> [54166] vial: 28 +> [54167] vials: 10 +> [54168] vial—the: 1 +> [54169] viands: 3 +> [54170] viaud: 36 +> [54171] viazemsky's: 1 +> [54172] viazovkin: 1 +> [54173] vibrated: 2 +> [54174] vibrates: 1 +> [54175] vibrating: 4 +> [54176] vibration: 4 +> [54177] vicar: 3 +> [54178] vicarious: 1 +> [54179] vice: 70 +> [54180] vice--idleness: 1 +> [54181] vice--you: 1 +> [54182] vice-king: 5 +> [54183] vice-king's: 2 +> [54184] vice; [54185] vicegerent: 1 +> [54186] vices: 20 +> [54187] vices--perhaps: 1 +> [54188] vicinities: 1 +> [54189] vicinity: 6 +> [54190] vicinity--certainly: 1 +> [54191] vicious: 34 +> [54192] vicious-eyed: 1 +> [54193] viciously: 10 +> [54194] vicissitudes: 3 +> [54195] vicomte: 192 +> [54196] vicomte's: 4 +> [54197] vicomte--after: 1 +> [54198] vicomte--ay: 1 +> [54199] vicomte--i: 4 +> [54200] vicomte--if: 1 +> [54201] vicomte--my: 1 +> [54202] vicomte--or: 1 +> [54203] victim: 44 +> [54204] victim! [54205] victim's: 1 +> [54206] victim--killed: 1 +> [54207] victim--that: 1 +> [54208] victimized: 1 +> [54209] victims: 7 +> [54210] victims [54211] victis: 1 +> [54212] victoire: 1 +> [54213] victor: 19 +> [54214] victories: 11 +> [54215] victorieuses: 1 +> [54216] victorious: 15 +> [54217] victoriously: 1 +> [54218] victors: 2 +> [54219] victory: 119 +> [54220] victory--for: 1 +> [54221] victuals: 2 +> [54222] vidoche: 82 +> [54223] vidoche's: 6 +> [54224] vie: 4 +> [54225] vied: 3 +> [54226] viel: 1 +> [54227] vienna: 51 +> [54228] vienna-znaim: 2 +> [54229] viennese: 3 +> [54230] viens: 2 +> [54231] vient: 1 +> [54232] vierge: 6 +> [54233] vieux: 2 +> [54234] view: 331 +> [54235] view, [54236] view--don't: 1 +> [54237] view--stupid: 1 +> [54238] view--theological: 1 +> [54239] view--to: 2 +> [54240] view--you: 1 +> [54241] view? [54242] viewed: 44 +> [54243] viewing: 28 +> [54244] views: 116 +> [54245] views--that: 1 +> [54246] vif-seruvaru: 1 +> [54247] viflyanka: 2 +> [54248] vight: 1 +> [54249] vigil: 5 +> [54250] vigilance: 4 +> [54251] vigilant: 2 +> [54252] vigilantly: 1 +> [54253] vignette: 2 +> [54254] vigor: 13 +> [54255] vigorous: 46 +> [54256] vigorous-looking: 1 +> [54257] vigorously: 30 +> [54258] vigour: 7 +> [54259] vigour--my: 1 +> [54260] vii: 84 +> [54261] viii: 68 +> [54262] viii.-ix: 1 +> [54263] viktorovna: 1 +> [54264] vile: 68 +> [54265] vile--and: 1 +> [54266] vilely: 2 +> [54267] vileness: 10 +> [54268] vileness, [54269] vileness--oh: 3 +> [54270] vileness [54271] viler: 13 +> [54272] vilest: 7 +> [54273] viliya: 1 +> [54274] vilkavisski: 2 +> [54275] vill: 3 +> [54276] villa: 27 +> [54277] village: 331 +> [54278] village--"and: 1 +> [54279] village--and: 2 +> [54280] village--very: 1 +> [54281] village-turning: 1 +> [54282] villager: 2 +> [54283] villagers: 9 +> [54284] villages: 39 +> [54285] villages--had: 1 +> [54286] villain: 23 +> [54287] villain's: 2 +> [54288] villain, [54289] villainous: 5 +> [54290] villains: 12 +> [54291] villainy: 10 +> [54292] villars: 1 +> [54293] villas: 9 +> [54294] ville: 6 +> [54295] villebon: 1 +> [54296] villeneuve: 1 +> [54297] villeneuve's: 1 +> [54298] villeraugues: 4 +> [54299] villeraugues--and: 1 +> [54300] villier: 1 +> [54301] vilna: 29 +> [54302] vilna--his: 1 +> [54303] vilna--independently: 1 +> [54304] vilna--not: 1 +> [54305] vilna--now: 1 +> [54306] vin: 2 +> [54307] vinaigre: 1 +> [54308] vinaigrette: 1 +> [54309] vincent: 3 +> [54310] vincit: 1 +> [54311] vindicate: 5 +> [54312] vindicated: 2 +> [54313] vindicating: 2 +> [54314] vindication: 3 +> [54315] vindictive: 28 +> [54316] vindictive. [54317] vindictively: 8 +> [54318] vindictiveness: 4 +> [54319] vinegar: 6 +> [54320] vines: 6 +> [54321] vinesse: 1 +> [54322] vineyards [54323] vinovsky: 1 +> [54324] viol: 2 +> [54325] violate: 3 +> [54326] violates: 21 +> [54327] violating: 1 +> [54328] violation: 5 +> [54329] violations: 1 +> [54330] violence: 49 +> [54331] violent: 114 +> [54332] violent-tempered: 1 +> [54333] violently: 86 +> [54334] violet: 8 +> [54335] violets: 7 +> [54336] violin: 5 +> [54337] violins: 1 +> [54338] viper: 1 +> [54339] virgil: 1 +> [54340] virgin: 14 +> [54341] virgin's: 4 +> [54342] virginal: 3 +> [54343] virginity: 3 +> [54344] virgins: 2 +> [54345] virile: 2 +> [54346] virtue: 95 +> [54347] virtue! [54348] virtue's: 1 +> [54349] virtue, [54350] virtue--love: 1 +> [54351] virtues: 34 +> [54352] virtues--activity: 1 +> [54353] virtues--love: 1 +> [54354] virtuous: 35 +> [54355] virtuous [54356] virulence: 2 +> [54357] virulent: 3 +> [54358] virulently: 2 +> [54359] virus: 19 +> [54360] vis: 1 +> [54361] vis-a-vis: 1 +> [54362] vis-à-vis: 1 +> [54363] visage: 4 +> [54364] visages: 1 +> [54365] viscount: 1 +> [54366] viscous: 1 +> [54367] vise: 5 +> [54368] vish: 1 +> [54369] vishegorye: 1 +> [54370] vishera: 1 +> [54371] visibility: 1 +> [54372] visible: 98 +> [54373] visibly: 15 +> [54374] vision: 49 +> [54375] vision? [54376] visionary: 2 +> [54377] visionary.--many: 1 +> [54378] visions: 33 +> [54379] visit: 342 +> [54380] visit--a: 1 +> [54381] visit--for: 1 +> [54382] visit--he: 1 +> [54383] visit--my: 1 +> [54384] visit--that: 1 +> [54385] visitation: 1 +> [54386] visitations: 1 +> [54387] visited: 88 +> [54388] visiting: 41 +> [54389] visitor: 173 +> [54390] visitor's: 8 +> [54391] visitor--a: 2 +> [54392] visitor [54393] visitors: 206 +> [54394] visitors! [54395] visitors. [54396] visitors [54397] visits: 59 +> [54398] visloukhovo: 2 +> [54399] vista: 9 +> [54400] vistas: 4 +> [54401] vistula: 6 +> [54402] visualized: 1 +> [54403] vital: 32 +> [54404] vitality: 2 +> [54405] vitality--the: 1 +> [54406] vitalized: 2 +> [54407] vitally: 4 +> [54408] vite: 1 +> [54409] vitebsk: 8 +> [54410] vitement: 2 +> [54411] vitriol: 1 +> [54412] vituperation: 1 +> [54413] viva: 1 +> [54414] vivacity: 7 +> [54415] vivacity? [54416] vivandiere: 1 +> [54417] vivants: 4 +> [54418] vivants [54419] vivarika: 1 +> [54420] vivat: 4 +> [54421] vive: 36 +> [54422] vivendi: 2 +> [54423] vivent: 2 +> [54424] vivid: 32 +> [54425] vividly: 73 +> [54426] vividness: 18 +> [54427] vivisecting: 1 +> [54428] vixen!--else: 1 +> [54429] viz: 8 +> [54430] vladimir: 8 +> [54431] vladimirovich: 10 +> [54432] vladimirsky: 1 +> [54433] vlais: 6 +> [54434] vlas: 1 +> [54435] vlassieva: 2 +> [54436] vlasyevna: 1 +> [54437] vlasyevna,"--this: 1 +> [54438] vlaye: 1 +> [54439] vobiscum: 2 +> [54440] vocal: 2 +> [54441] vocation: 20 +> [54442] vociferated: 2 +> [54443] vociferations: 1 +> [54444] vociferous: 4 +> [54445] voco! [54446] vodka: 102 +> [54447] vodka--get: 1 +> [54448] vodka? [54449] vogel: 2 +> [54450] vogels: 1 +> [54451] vogue: 8 +> [54452] voice: 1411 +> [54453] voice--"but: 1 +> [54454] voice--"free: 1 +> [54455] voice--"if: 1 +> [54456] voice--"now: 1 +> [54457] voice--"which: 1 +> [54458] voice--"you: 1 +> [54459] voice--a: 1 +> [54460] voice--it: 1 +> [54461] voice--my: 1 +> [54462] voice--which: 1 +> [54463] voice--would: 1 +> [54464] voiced: 3 +> [54465] voiceless: 1 +> [54466] voices: 290 +> [54467] voices--cheerful: 1 +> [54468] voicing: 1 +> [54469] void: 24 +> [54470] voila: 5 +> [54471] voilà: 2 +> [54472] voir: 5 +> [54473] voisinage: 2 +> [54474] voit: 1 +> [54475] vol: 3 +> [54476] volatile: 24 +> [54477] volatilization: 2 +> [54478] volcanic: 1 +> [54479] volcano: 2 +> [54480] volga: 3 +> [54481] volgarinov: 3 +> [54482] volgarinov's: 3 +> [54483] volhofskoi: 1 +> [54484] volition: 3 +> [54485] volkonski: 12 +> [54486] volkonsky: 1 +> [54487] volkov: 1 +> [54488] volkovo: 7 +> [54489] vollertsen: 1 +> [54490] volley: 8 +> [54491] volleys: 3 +> [54492] volo: 2 +> [54493] volovya: 11 +> [54494] vols: 8 +> [54495] voltaire: 9 +> [54496] voltaire? [54497] voltaires: 1 +> [54498] volte: 1 +> [54499] volte-face: 1 +> [54500] voltorn: 1 +> [54501] volume: 33 +> [54502] volumes: 10 +> [54503] volumetric: 2 +> [54504] voluminous: 1 +> [54505] voluntarily: 11 +> [54506] voluntary: 11 +> [54507] volunteer: 28 +> [54508] volunteered: 7 +> [54509] volunteers: 131 +> [54510] voluptuary: 1 +> [54511] voluptuous: 9 +> [54512] voluptuously: 1 +> [54513] voluptuousness: 3 +> [54514] vom: 1 +> [54515] von: 32 +> [54516] von't: 1 +> [54517] vorknev: 1 +> [54518] vorkuev: 10 +> [54519] vorkuev...you: 1 +> [54520] vorobeef: 1 +> [54521] voronezh: 18 +> [54522] vorontsovo: 2 +> [54523] vortex: 6 +> [54524] vos: 2 +> [54525] voskresensky: 1 +> [54526] vot: 1 +> [54527] vot'e: 1 +> [54528] vote: 41 +> [54529] vote--i: 1 +> [54530] voted: 11 +> [54531] voters: 5 +> [54532] votes: 34 +> [54533] votes--for: 1 +> [54534] votes--put: 1 +> [54535] voting: 7 +> [54536] votive: 1 +> [54537] votre: 6 +> [54538] vouched: 2 +> [54539] vouches: 1 +> [54540] vouchsafe: 5 +> [54541] vouchsafed: 9 +> [54542] vouchsafing: 1 +> [54543] voulez-vous: 1 +> [54544] voulu: 3 +> [54545] vous: 43 +> [54546] vousmemes: 1 +> [54547] vow: 16 +> [54548] vowed: 22 +> [54549] vowed&mdash: 1 +> [54550] vowed--the: 1 +> [54551] vowing: 4 +> [54552] vows: 13 +> [54553] voyage: 4 +> [54554] voyez: 3 +> [54555] voyna: 2 +> [54556] voyons: 2 +> [54557] voytov: 3 +> [54558] vozdrem: 1 +> [54559] vozdvizhenka: 7 +> [54560] vozdvizhenskoe: 8 +> [54561] voznesenky: 1 +> [54562] voznesensky: 2 +> [54563] vraie: 1 +> [54564] vrazhek: 1 +> [54565] vrazhok: 1 +> [54566] vrazumihin: 2 +> [54567] vrbna: 1 +> [54568] vreatening: 1 +> [54569] vrede: 7 +> [54570] vronskaya: 4 +> [54571] vronskaya's: 2 +> [54572] vronsky: 770 +> [54573] vronsky's: 85 +> [54574] vronsky's--a: 1 +> [54575] vronsky--a: 1 +> [54576] vronsky--i: 1 +> [54577] vronsky--since: 1 +> [54578] vronsky--that: 1 +> [54579] vronskys: 3 +> [54580] vrublevsky: 23 +> [54581] vrublevsky, [54582] vs: 2 +> [54583] vu: 1 +> [54584] vue: 1 +> [54585] vulgar: 97 +> [54586] vulgar--as: 1 +> [54587] vulgarian: 1 +> [54588] vulgarise: 1 +> [54589] vulgarities: 2 +> [54590] vulgarity: 23 +> [54591] vulgarize: 1 +> [54592] vulgarly: 1 +> [54593] vulgate: 1 +> [54594] vult: 2 +> [54595] vulture: 1 +> [54596] vultures: 1 +> [54597] vy: 1 +> [54598] vyazemski--did: 1 +> [54599] vyazma: 20 +> [54600] vyazmitinov: 5 +> [54601] vying: 1 +> [54602] vyshegorye: 1 +> [54603] vérité: 3 +> [54604] w: 46 +> [54605] w'iting: 1 +> [54606] w'ong: 1 +> [54607] w.c.2: 1 +> [54608] wa: 1 +> [54609] waal: 2 +> [54610] wadded: 12 +> [54611] waddled: 2 +> [54612] waddling: 4 +> [54613] wade: 2 +> [54614] waded: 5 +> [54615] wading: 1 +> [54616] wafer: 2 +> [54617] wafted: 2 +> [54618] wafting: 1 +> [54619] wag: 5 +> [54620] wag--whom: 1 +> [54621] wage: 3 +> [54622] wage-fund: 1 +> [54623] waged: 4 +> [54624] wagenheims: 1 +> [54625] wager: 4 +> [54626] wagered: 1 +> [54627] wagers: 1 +> [54628] wages: 77 +> [54629] wagged: 6 +> [54630] wagging: 7 +> [54631] waggish: 2 +> [54632] waggon: 6 +> [54633] waggoners: 1 +> [54634] waggonette: 3 +> [54635] waggons: 5 +> [54636] waging: 1 +> [54637] wagner: 2 +> [54638] wagner's: 1 +> [54639] wagon: 26 +> [54640] wagon-loads: 2 +> [54641] wagoner's: 1 +> [54642] wagonette: 13 +> [54643] wagonful: 1 +> [54644] wagons: 39 +> [54645] wagram: 3 +> [54646] wags: 3 +> [54647] waif: 1 +> [54648] wail: 25 +> [54649] wailed: 20 +> [54650] wailing: 37 +> [54651] wailings: 2 +> [54652] wain: 2 +> [54653] wainscot: 3 +> [54654] waise: 1 +> [54655] waising: 1 +> [54656] waist: 47 +> [54657] waistcoat: 72 +> [54658] waistcoat--silk: 1 +> [54659] waistcoat-buttons: 1 +> [54660] waistcoat-pocket: 1 +> [54661] waistcoats: 3 +> [54662] waists: 3 +> [54663] wait: 473 +> [54664] wait! [54665] wait, [54666] wait--just: 1 +> [54667] wait--listen: 1 +> [54668] wait.’: 1 +> [54669] waited: 258 +> [54670] waited--and: 1 +> [54671] waiter: 47 +> [54672] waiter's: 1 +> [54673] waiters: 22 +> [54674] waiters--all: 1 +> [54675] waiting: 497 +> [54676] waiting--prepare: 1 +> [54677] waiting--waiting: 1 +> [54678] waiting-maids: 2 +> [54679] waiting-room: 9 +> [54680] waitresses: 2 +> [54681] waits: 8 +> [54682] waive: 2 +> [54683] waived: 1 +> [54684] wake: 73 +> [54685] waked: 60 +> [54686] waked? [54687] wakeful: 2 +> [54688] waken: 2 +> [54689] wakened: 2 +> [54690] wakening: 1 +> [54691] wakes: 8 +> [54692] waking: 60 +> [54693] wakings: 1 +> [54694] wal: 2 +> [54695] wales's: 1 +> [54696] walk: 347 +> [54697] walk--from: 1 +> [54698] walk--still: 1 +> [54699] walk--with: 1 +> [54700] walk--you: 1 +> [54701] walked: 599 +> [54702] walked--as: 1 +> [54703] walkers: 1 +> [54704] walker’s: 1 +> [54705] walking: 265 +> [54706] walking-boots: 1 +> [54707] walking-dress: 3 +> [54708] walking-stick: 1 +> [54709] walks: 47 +> [54710] wall: 322 +> [54711] wall--as: 1 +> [54712] wall--he: 1 +> [54713] wall--though: 1 +> [54714] wall-flower: 2 +> [54715] wall-paper: 2 +> [54716] wall-side: 1 +> [54717] wall. [54718] wallachia: 3 +> [54719] wallachian: 1 +> [54720] walled: 1 +> [54721] wallenstein: 1 +> [54722] wallet: 4 +> [54723] wallflower: 2 +> [54724] wallow: 4 +> [54725] wallowed: 1 +> [54726] wallowing: 2 +> [54727] wallpapers--they're: 1 +> [54728] walls: 144 +> [54729] walls--that: 1 +> [54730] walnut: 8 +> [54731] walnut-wood: 1 +> [54732] walnuts: 4 +> [54733] walsall: 1 +> [54734] walter: 6 +> [54735] walters: 1 +> [54736] waltz: 29 +> [54737] waltz.’: 2 +> [54738] waltzed: 2 +> [54739] waltzer: 1 +> [54740] waltzes: 2 +> [54741] waltzing: 10 +> [54742] wan: 11 +> [54743] wan-looking: 1 +> [54744] wand: 2 +> [54745] wander: 13 +> [54746] wander--muttering: 1 +> [54747] wandered: 34 +> [54748] wandered--evidently: 1 +> [54749] wandered [54750] wanderer: 2 +> [54751] wanderers: 1 +> [54752] wandering: 34 +> [54753] wandering. [54754] wanderings: 11 +> [54755] wanders: 1 +> [54756] wane: 3 +> [54757] wane— [54758] waned: 6 +> [54759] waning: 7 +> [54760] wanly: 1 +> [54761] want: 1382 +> [54762] want! [54763] want— [54764] want--i: 1 +> [54765] want--not: 1 +> [54766] want--three: 1 +> [54767] want--well: 1 +> [54768] want--you'll: 1 +> [54769] want. [54770] want? [54771] wanted: 815 +> [54772] wanted--that: 1 +> [54773] wanted--when: 1 +> [54774] wanted...yes: 1 +> [54775] wanted. [54776] wanting: 57 +> [54777] wanton: 6 +> [54778] wantonly: 2 +> [54779] wantonness: 2 +> [54780] wants: 169 +> [54781] wapping: 1 +> [54782] war: 359 +> [54783] war's: 1 +> [54784] war--a: 1 +> [54785] war--can: 1 +> [54786] war--that's: 1 +> [54787] war-cry: 1 +> [54788] war-dance: 1 +> [54789] war-horse: 1 +> [54790] war-party: 1 +> [54791] waranty: 1 +> [54792] ward: 17 +> [54793] warden: 1 +> [54794] warder: 5 +> [54795] warding: 5 +> [54796] wardrobe: 14 +> [54797] wards: 7 +> [54798] wardship: 4 +> [54799] wardships: 1 +> [54800] ware: 3 +> [54801] warehouse: 2 +> [54802] warehouses: 1 +> [54803] wares: 4 +> [54804] warfare: 18 +> [54805] warhorse: 1 +> [54806] warily: 9 +> [54807] warlike: 8 +> [54808] warm: 253 +> [54809] warm-hearted: 1 +> [54810] warmed: 37 +> [54811] warmer: 25 +> [54812] warmest: 8 +> [54813] warming: 14 +> [54814] warming-pan: 1 +> [54815] warmly: 116 +> [54816] warms: 1 +> [54817] warmth: 60 +> [54818] warmth--"does: 1 +> [54819] warmth.”: 1 +> [54820] warn: 58 +> [54821] warned: 39 +> [54822] warned, [54823] warning: 64 +> [54824] warnings: 12 +> [54825] warnings? [54826] warns: 4 +> [54827] warp: 1 +> [54828] warped: 4 +> [54829] warrant: 24 +> [54830] warranted: 1 +> [54831] warranties: 57 +> [54832] warrants: 4 +> [54833] warranty: 40 +> [54834] warred: 1 +> [54835] warren: 3 +> [54836] warring: 1 +> [54837] warrior: 7 +> [54838] warriors: 5 +> [54839] wars: 35 +> [54840] warsaw: 7 +> [54841] wart: 3 +> [54842] wartime: 3 +> [54843] warwick: 5 +> [54844] warwickshire: 10 +> [54845] wary: 7 +> [54846] was: 33160 +> [54847] was! [54848] was—if: 1 +> [54849] was, [54850] was--a: 2 +> [54851] was--about: 1 +> [54852] was--about--you: 1 +> [54853] was--and: 3 +> [54854] was--but: 1 +> [54855] was--catholic: 1 +> [54856] was--cowering: 1 +> [54857] was--did: 1 +> [54858] was--dreadfully: 1 +> [54859] was--expressed: 1 +> [54860] was--for: 1 +> [54861] was--he: 1 +> [54862] was--in: 3 +> [54863] was--none: 1 +> [54864] was--prince: 1 +> [54865] was--quite: 1 +> [54866] was--rogojin: 1 +> [54867] was--that: 1 +> [54868] was--there: 1 +> [54869] was--to: 2 +> [54870] was--written: 1 +> [54871] was-and: 1 +> [54872] was...tries: 1 +> [54873] was. [54874] was?)--a: 1 +> [54875] was? [54876] wascal: 1 +> [54877] wash: 90 +> [54878] wash, [54879] wash-stand: 2 +> [54880] wash-tub: 1 +> [54881] washable: 1 +> [54882] washed: 71 +> [54883] washer-woman: 1 +> [54884] washerwoman: 3 +> [54885] washes: 4 +> [54886] washhouse: 1 +> [54887] washing: 48 +> [54888] washing-basin--such: 1 +> [54889] washing-stand: 1 +> [54890] washings: 7 +> [54891] washington: 2 +> [54892] washstand: 2 +> [54893] washy: 1 +> [54894] wasn't: 163 +> [54895] wasn't...i: 1 +> [54896] wasp: 3 +> [54897] wasps: 1 +> [54898] wast: 5 +> [54899] wastage: 1 +> [54900] waste: 70 +> [54901] waste-basket: 1 +> [54902] wasted: 68 +> [54903] wasted...i'd: 1 +> [54904] wasteful: 1 +> [54905] wasteland: 1 +> [54906] wastepaper: 1 +> [54907] wastes: 4 +> [54908] wasting: 22 +> [54909] wastrels: 1 +> [54910] wat: 1 +> [54911] watch: 261 +> [54912] watch's: 1 +> [54913] watch--"i: 1 +> [54914] watch--they: 1 +> [54915] watch-chain: 6 +> [54916] watch-dog: 1 +> [54917] watch-guard: 1 +> [54918] watch. [54919] watchdog: 1 +> [54920] watched: 196 +> [54921] watched--from: 1 +> [54922] watcher: 1 +> [54923] watcher's: 2 +> [54924] watchers: 2 +> [54925] watches: 4 +> [54926] watcheth: 1 +> [54927] watchful: 10 +> [54928] watchfulness: 4 +> [54929] watchhouse: 4 +> [54930] watching: 181 +> [54931] watching--as: 1 +> [54932] watchmaker: 4 +> [54933] watchman: 8 +> [54934] watchman's: 10 +> [54935] watchword: 1 +> [54936] watchword--shaft: 1 +> [54937] water: 766 +> [54938] water—comes: 1 +> [54939] water, [54940] water--a: 1 +> [54941] water--and: 1 +> [54942] water--such: 1 +> [54943] water-carrier: 1 +> [54944] water-carriers: 2 +> [54945] water-casks: 1 +> [54946] water-colour: 1 +> [54947] water-course: 2 +> [54948] water-flies: 1 +> [54949] water-fowl: 1 +> [54950] water-lane: 1 +> [54951] water-lilies: 1 +> [54952] water-logged: 1 +> [54953] water-melons: 1 +> [54954] water-springs: 1 +> [54955] water-ways: 1 +> [54956] water-worn: 1 +> [54957] water. [54958] water? [54959] watercolour: 1 +> [54960] watered: 3 +> [54961] waterfall: 7 +> [54962] watering: 10 +> [54963] watering-place: 8 +> [54964] waterlogged: 3 +> [54965] waterloo: 2 +> [54966] waterpots: 1 +> [54967] waterproof: 1 +> [54968] waters: 37 +> [54969] waterside: 2 +> [54970] waterway: 1 +> [54971] waterways: 1 +> [54972] watery: 8 +> [54973] watney's: 5 +> [54974] watt: 1 +> [54975] watteau: 1 +> [54976] watteaus: 1 +> [54977] wattle: 17 +> [54978] wattles: 1 +> [54979] wave: 51 +> [54980] waved: 79 +> [54981] waver: 7 +> [54982] wavered: 10 +> [54983] waverers: 1 +> [54984] wavering: 14 +> [54985] waves: 23 +> [54986] waving: 84 +> [54987] wawen: 4 +> [54988] wax: 53 +> [54989] wax-lights: 1 +> [54990] wax-like: 1 +> [54991] waxed: 4 +> [54992] waxen: 3 +> [54993] waxes: 5 +> [54994] waxing: 1 +> [54995] way: 2606 +> [54996] way"[1: 1 +> [54997] way's: 1 +> [54998] way,--for: 1 +> [54999] way, [55000] way--_comprenez-vous?_--we: 1 +> [55001] way--a: 1 +> [55002] way--come: 1 +> [55003] way--excuse: 1 +> [55004] way--guewilla: 1 +> [55005] way--ha: 1 +> [55006] way--in: 1 +> [55007] way--marriage: 1 +> [55008] way--or: 1 +> [55009] way--shall: 1 +> [55010] way--somewhat: 1 +> [55011] way--the: 2 +> [55012] way--toward: 1 +> [55013] way-mark: 1 +> [55014] way-mark--a: 2 +> [55015] way-marks: 8 +> [55016] way-sign: 1 +> [55017] way. [55018] wayfarers: 2 +> [55019] waylaid: 1 +> [55020] waylay: 1 +> [55021] ways: 129 +> [55022] ways--are: 1 +> [55023] ways. [55024] ways [55025] wayside: 2 +> [55026] wayward: 1 +> [55027] we: 5763 +> [55028] we! [55029] we"--he: 1 +> [55030] we'd: 25 +> [55031] we'll: 210 +> [55032] we're: 108 +> [55033] we've: 146 +> [55034] we--i: 1 +> [55035] we--old--with: 1 +> [55036] we--the: 1 +> [55037] we--we: 1 +> [55038] we--you: 1 +> [55039] we. [55040] we?--come: 1 +> [55041] we? [55042] wead: 1 +> [55043] weady: 2 +> [55044] weak: 224 +> [55045] weak--but: 1 +> [55046] weak--it: 1 +> [55047] weak-lunged: 1 +> [55048] weak-minded: 4 +> [55049] weak-minded—a: 1 +> [55050] weak.... [55051] weaken: 6 +> [55052] weakened: 11 +> [55053] weakening: 5 +> [55054] weaker: 26 +> [55055] weakest: 2 +> [55056] weakling: 2 +> [55057] weaklings: 1 +> [55058] weakly: 13 +> [55059] weakness: 111 +> [55060] weakness--the: 1 +> [55061] weaknesses: 17 +> [55062] weaknesses-very: 1 +> [55063] weal: 8 +> [55064] weally: 2 +> [55065] wealth: 68 +> [55066] wealth--as: 1 +> [55067] wealth--tact: 1 +> [55068] wealth--there: 1 +> [55069] wealth [55070] wealthier: 1 +> [55071] wealthiest: 1 +> [55072] wealthy: 48 +> [55073] wean: 1 +> [55074] weaned: 2 +> [55075] weapon: 47 +> [55076] weapon? [55077] weapons: 25 +> [55078] wear: 108 +> [55079] wear--black: 1 +> [55080] wearer: 5 +> [55081] wearers: 2 +> [55082] wearer’s: 1 +> [55083] wearied: 8 +> [55084] wearies: 1 +> [55085] wearily: 18 +> [55086] weariness: 34 +> [55087] wearing: 183 +> [55088] wearisome: 10 +> [55089] wears: 18 +> [55090] weary: 84 +> [55091] wearying: 2 +> [55092] weasel: 1 +> [55093] weason: 1 +> [55094] weather: 84 +> [55095] weather-beaten: 1 +> [55096] weather-stained: 1 +> [55097] weathercock: 2 +> [55098] weathers: 1 +> [55099] weave: 2 +> [55100] weaver: 6 +> [55101] weavers: 1 +> [55102] weaves: 2 +> [55103] weaving: 4 +> [55104] web: 128 +> [55105] webs: 3 +> [55106] weceipt: 2 +> [55107] weceives: 1 +> [55108] wecollect: 1 +> [55109] weconciliation: 1 +> [55110] wecwuits: 1 +> [55111] wed: 1 +> [55112] wedded: 1 +> [55113] wedding: 111 +> [55114] wedding--either: 1 +> [55115] wedding--from: 1 +> [55116] wedding--she: 1 +> [55117] wedding--to: 1 +> [55118] wedding-array: 1 +> [55119] wedding-day: 4 +> [55120] wedding-dress: 1 +> [55121] wedding-night: 1 +> [55122] weddings: 7 +> [55123] wedge: 1 +> [55124] wedged: 2 +> [55125] wedlock: 3 +> [55126] wednesday: 14 +> [55127] wednesday's: 1 +> [55128] wednesdays: 1 +> [55129] wee: 6 +> [55130] weed: 4 +> [55131] weed-grown: 1 +> [55132] weeding: 1 +> [55133] weeds: 6 +> [55134] week: 225 +> [55135] week—only: 1 +> [55136] week—yes: 1 +> [55137] week's: 5 +> [55138] week--he: 1 +> [55139] week--it: 1 +> [55140] week--you: 1 +> [55141] week-day: 2 +> [55142] week-days: 1 +> [55143] week. [55144] weekdays: 2 +> [55145] weekly: 6 +> [55146] weeks: 125 +> [55147] weeks--all: 1 +> [55148] weeks--as: 1 +> [55149] weeks--who: 1 +> [55150] weeks’: 1 +> [55151] weep: 80 +> [55152] weep, [55153] weep--not: 1 +> [55154] weep. [55155] weepers: 1 +> [55156] weeping: 119 +> [55157] weeping. [55158] weeping? [55159] weeps: 4 +> [55160] wefused: 1 +> [55161] wegiment: 2 +> [55162] wegular: 1 +> [55163] weib: 1 +> [55164] weibliche: 1 +> [55165] weigh: 30 +> [55166] weighed: 83 +> [55167] weighing: 42 +> [55168] weighs: 14 +> [55169] weight: 159 +> [55170] weight--"i: 1 +> [55171] weight--tact: 1 +> [55172] weight-the: 1 +> [55173] weight.”[a: 1 +> [55174] weighted: 2 +> [55175] weightier: 3 +> [55176] weightily: 2 +> [55177] weights: 4 +> [55178] weighty: 20 +> [55179] weimar: 5 +> [55180] weird: 6 +> [55181] weirdness: 1 +> [55182] weiss: 1 +> [55183] weizsäcker: 1 +> [55184] welcome: 83 +> [55185] welcome! [55186] welcome--heartily: 1 +> [55187] welcomed: 28 +> [55188] welcomes: 3 +> [55189] welcoming: 5 +> [55190] weld: 1 +> [55191] welfare: 47 +> [55192] welfare--is: 2 +> [55193] well: 3515 +> [55194] well!--and: 1 +> [55195] well! [55196] well—what: 2 +> [55197] well—you: 1 +> [55198] well, [55199] well--"i: 1 +> [55200] well--afterwards: 1 +> [55201] well--and: 2 +> [55202] well--au: 1 +> [55203] well--but: 1 +> [55204] well--come: 1 +> [55205] well--ever: 1 +> [55206] well--gentlemen--i: 1 +> [55207] well--good-bye: 1 +> [55208] well--good-bye--good-bye: 1 +> [55209] well--had: 1 +> [55210] well--he: 2 +> [55211] well--he's: 1 +> [55212] well--here: 1 +> [55213] well--how: 1 +> [55214] well--i: 1 +> [55215] well--if: 1 +> [55216] well--it's: 1 +> [55217] well--just: 1 +> [55218] well--leave: 1 +> [55219] well--let: 2 +> [55220] well--never: 1 +> [55221] well--only: 1 +> [55222] well--putting: 1 +> [55223] well--quite: 1 +> [55224] well--say: 1 +> [55225] well--that'll: 1 +> [55226] well--that's: 1 +> [55227] well--to: 1 +> [55228] well--we: 1 +> [55229] well--what: 1 +> [55230] well-arranged: 1 +> [55231] well-baked: 1 +> [55232] well-behaved: 2 +> [55233] well-being: 13 +> [55234] well-born: 2 +> [55235] well-bred: 48 +> [55236] well-bred.’: 1 +> [55237] well-brought-up: 1 +> [55238] well-brushed: 2 +> [55239] well-built: 5 +> [55240] well-cared-for: 1 +> [55241] well-chosen: 2 +> [55242] well-combed: 2 +> [55243] well-conducted: 2 +> [55244] well-connected: 1 +> [55245] well-constructed: 1 +> [55246] well-cut: 2 +> [55247] well-deserved: 1 +> [55248] well-directed: 1 +> [55249] well-disciplined: 1 +> [55250] well-disposed: 1 +> [55251] well-done: 1 +> [55252] well-dressed: 11 +> [55253] well-educated: 6 +> [55254] well-favored--he: 1 +> [55255] well-fed: 14 +> [55256] well-feigned: 1 +> [55257] well-filled: 2 +> [55258] well-finished: 1 +> [55259] well-fitted: 2 +> [55260] well-fitting: 1 +> [55261] well-furnished: 1 +> [55262] well-garnished: 1 +> [55263] well-groomed: 2 +> [55264] well-grown: 2 +> [55265] well-head: 1 +> [55266] well-informed: 1 +> [55267] well-informed.’: 1 +> [55268] well-kept: 1 +> [55269] well-known: 45 +> [55270] well-like: 3 +> [55271] well-lit: 1 +> [55272] well-made: 1 +> [55273] well-matched: 1 +> [55274] well-meaning: 2 +> [55275] well-nigh: 4 +> [55276] well-nourished: 2 +> [55277] well-ordered: 6 +> [55278] well-painted: 1 +> [55279] well-phrased: 1 +> [55280] well-preserved: 3 +> [55281] well-proportioned: 1 +> [55282] well-provisioned: 1 +> [55283] well-read: 3 +> [55284] well-remembered: 2 +> [55285] well-rounded: 1 +> [55286] well-scrubbed: 1 +> [55287] well-served: 1 +> [55288] well-set-up: 1 +> [55289] well-sounding: 1 +> [55290] well-supplied: 1 +> [55291] well-swept: 1 +> [55292] well-taught: 1 +> [55293] well-timed: 1 +> [55294] well-to-do: 14 +> [55295] well-trained: 3 +> [55296] well-travelled: 1 +> [55297] well-ventilated: 2 +> [55298] well-washed: 1 +> [55299] well-wisher,”: 1 +> [55300] well.--ste: 1 +> [55301] well. [55302] well.”: 2 +> [55303] well? [55304] welled: 4 +> [55305] wellhausen: 1 +> [55306] welling: 2 +> [55307] wellington: 1 +> [55308] wells: 6 +> [55309] welt: 2 +> [55310] wench: 19 +> [55311] wench's: 2 +> [55312] wench. [55313] wenches: 4 +> [55314] wenches—don't: 1 +> [55315] wenn: 1 +> [55316] wenn's: 1 +> [55317] went: 3334 +> [55318] went--i: 1 +> [55319] went--which: 1 +> [55320] went...to: 1 +> [55321] went. [55322] weported: 1 +> [55323] wept: 77 +> [55324] werden: 3 +> [55325] were: 8640 +> [55326] were—the: 1 +> [55327] were--a: 1 +> [55328] were--and: 1 +> [55329] were--nearly: 1 +> [55330] were--no: 1 +> [55331] were--something: 1 +> [55332] were--that: 1 +> [55333] weren't: 32 +> [55334] wernle: 1 +> [55335] wert: 1 +> [55336] wertherish: 1 +> [55337] wesel: 27 +> [55338] west: 59 +> [55339] west--paris--and: 1 +> [55340] west--similar: 1 +> [55341] west. [55342] westcheap: 1 +> [55343] westerly: 1 +> [55344] western: 14 +> [55345] westminster: 3 +> [55346] westphalians: 2 +> [55347] westward: 4 +> [55348] wet: 172 +> [55349] wet-nurse: 8 +> [55350] wet-nurse's: 1 +> [55351] wetched: 3 +> [55352] wets: 1 +> [55353] wetted: 10 +> [55354] wettest: 1 +> [55355] wetting: 6 +> [55356] wetu'n: 1 +> [55357] weturn: 1 +> [55358] wetweating: 2 +> [55359] weyman: 19 +> [55360] weyrother: 29 +> [55361] weyrother's: 9 +> [55362] weyrother--who: 1 +> [55363] wh-hat: 1 +> [55364] wh-what: 1 +> [55365] wha-at: 4 +> [55366] whacking: 2 +> [55367] whale: 3 +> [55368] whale-oil: 1 +> [55369] whales: 1 +> [55370] wharf: 16 +> [55371] wharves: 1 +> [55372] what: 10439 +> [55373] what—but: 1 +> [55374] what—sometimes: 1 +> [55375] what'd: 1 +> [55376] what's: 439 +> [55377] what, [55378] what--but: 1 +> [55379] what--shame: 1 +> [55380] what--still: 1 +> [55381] what--what: 3 +> [55382] what--you're: 1 +> [55383] what-d’ye-call-him: 1 +> [55384] what...has: 1 +> [55385] what. [55386] what [55387] what?--eternal: 1 +> [55388] what? [55389] whatever: 314 +> [55390] whatever, [55391] whatever--with: 1 +> [55392] whatnot: 1 +> [55393] whatnots: 1 +> [55394] whatsoever: 48 +> [55395] whatsoever. [55396] whatsoever.’: 1 +> [55397] wheal: 1 +> [55398] wheat: 40 +> [55399] wheat-sheaf: 1 +> [55400] wheaten: 1 +> [55401] wheatfields: 1 +> [55402] wheedled: 1 +> [55403] wheedling: 1 +> [55404] wheel: 32 +> [55405] wheelbarrow: 1 +> [55406] wheeled: 14 +> [55407] wheelers: 1 +> [55408] wheeling: 4 +> [55409] wheels: 73 +> [55410] wheels. [55411] wheezed: 1 +> [55412] wheezing: 10 +> [55413] whelp: 7 +> [55414] when: 6445 +> [55415] when—do: 1 +> [55416] when's: 2 +> [55417] when, [55418] when--as: 1 +> [55419] when--free: 1 +> [55420] when--late: 1 +> [55421] when--there: 1 +> [55422] when--when: 1 +> [55423] when? [55424] whence: 51 +> [55425] whence--a: 1 +> [55426] whenever: 100 +> [55427] where: 2356 +> [55428] where! [55429] where'er: 1 +> [55430] where'll: 5 +> [55431] where's: 33 +> [55432] where--where: 2 +> [55433] where? [55434] whereabouts: 8 +> [55435] whereas: 40 +> [55436] whereby: 10 +> [55437] wherefore: 8 +> [55438] wherein: 29 +> [55439] whereof: 3 +> [55440] whereon: 1 +> [55441] whereupon: 5 +> [55442] wherever: 45 +> [55443] wherewith: 3 +> [55444] wherewithal: 2 +> [55445] wherries: 1 +> [55446] wherry: 3 +> [55447] whet: 1 +> [55448] whether: 944 +> [55449] whetstone: 3 +> [55450] whetstones: 1 +> [55451] whetted: 1 +> [55452] whetting: 4 +> [55453] wheugh: 2 +> [55454] whew: 6 +> [55455] which: 8062 +> [55456] which— [55457] which--a: 1 +> [55458] which--as: 1 +> [55459] which--ever: 1 +> [55460] which--eyes: 1 +> [55461] which--i: 3 +> [55462] which--in: 2 +> [55463] which--spreading: 1 +> [55464] which--though: 1 +> [55465] which--van: 1 +> [55466] which--with: 1 +> [55467] which-which--well: 1 +> [55468] whichever: 4 +> [55469] whiff: 12 +> [55470] whiffs: 3 +> [55471] whig: 3 +> [55472] whigs: 4 +> [55473] while: 1947 +> [55474] while—some: 1 +> [55475] while,--look: 1 +> [55476] while--for: 1 +> [55477] while--instead: 1 +> [55478] while--not: 1 +> [55479] while--she: 1 +> [55480] whiled: 1 +> [55481] whiles: 1 +> [55482] while—within: 1 +> [55483] whilst: 19 +> [55484] whim: 13 +> [55485] whimper: 2 +> [55486] whimpered: 1 +> [55487] whimpering: 9 +> [55488] whims: 8 +> [55489] whimsical: 9 +> [55490] whimsically: 3 +> [55491] whine: 5 +> [55492] whined: 11 +> [55493] whines: 1 +> [55494] whining: 14 +> [55495] whinnied: 1 +> [55496] whinny: 3 +> [55497] whinnying: 2 +> [55498] whip: 85 +> [55499] whip's: 2 +> [55500] whip--and: 1 +> [55501] whip-lashes: 1 +> [55502] whipped: 33 +> [55503] whipped--that's: 1 +> [55504] whippers-in: 3 +> [55505] whippersnapper: 3 +> [55506] whipping: 4 +> [55507] whipping-post: 1 +> [55508] whips: 16 +> [55509] whir: 6 +> [55510] whirl: 19 +> [55511] whirled: 18 +> [55512] whirling: 19 +> [55513] whirlpool: 3 +> [55514] whirls: 1 +> [55515] whirlwind: 2 +> [55516] whirlwinds: 1 +> [55517] whirr: 2 +> [55518] whirring: 7 +> [55519] whish: 1 +> [55520] whisk: 2 +> [55521] whisked: 5 +> [55522] whisker: 1 +> [55523] whiskered: 2 +> [55524] whiskers: 49 +> [55525] whiskey: 4 +> [55526] whisking: 2 +> [55527] whisper: 165 +> [55528] whisper...but: 1 +> [55529] whisper? [55530] whispered: 311 +> [55531] whispered--in: 1 +> [55532] whisperers: 1 +> [55533] whispering: 59 +> [55534] whispering--i: 1 +> [55535] whisperings: 1 +> [55536] whispers: 27 +> [55537] whispers--and: 1 +> [55538] whist: 4 +> [55539] whistle: 42 +> [55540] whistled: 32 +> [55541] whistled--just: 1 +> [55542] whistles: 4 +> [55543] whistling: 41 +> [55544] whit: 9 +> [55545] white: 705 +> [55546] white's: 1 +> [55547] white--as: 1 +> [55548] white-bearded: 4 +> [55549] white-breasted: 1 +> [55550] white-faced: 4 +> [55551] white-haired: 2 +> [55552] white-headed: 3 +> [55553] white-hot: 1 +> [55554] white-legged: 2 +> [55555] white-looking: 1 +> [55556] white-plumed: 1 +> [55557] white-robed: 1 +> [55558] white-seal: 1 +> [55559] white-washed: 2 +> [55560] whitebeam: 2 +> [55561] whitebreast: 1 +> [55562] whitehall: 1 +> [55563] whiten: 1 +> [55564] whiteness: 9 +> [55565] whitening: 1 +> [55566] whiter: 9 +> [55567] whites: 5 +> [55568] whitest: 1 +> [55569] whitewash: 1 +> [55570] whitewashed: 7 +> [55571] whither: 32 +> [55572] whitish: 2 +> [55573] whity: 1 +> [55574] whizz: 2 +> [55575] whizzed: 3 +> [55576] whizzing: 3 +> [55577] who: 6856 +> [55578] who'd: 8 +> [55579] who'll: 10 +> [55580] who're: 3 +> [55581] who's: 69 +> [55582] who've: 4 +> [55583] who, [55584] who--and: 1 +> [55585] who--apparently: 1 +> [55586] who--dreading: 1 +> [55587] who--having: 2 +> [55588] who--her: 1 +> [55589] who--is: 1 +> [55590] who--it: 1 +> [55591] who--made--this: 1 +> [55592] who--she: 1 +> [55593] who--why: 1 +> [55594] who--“saw: 1 +> [55595] who? [55596] whoa: 4 +> [55597] whoever: 45 +> [55598] whole: 1685 +> [55599] whole--a: 1 +> [55600] whole--and: 1 +> [55601] whole--the: 1 +> [55602] whole-hearted: 4 +> [55603] whole-some: 1 +> [55604] wholeheartedly: 1 +> [55605] wholemeal: 1 +> [55606] wholeness: 1 +> [55607] wholesome: 5 +> [55608] wholly: 31 +> [55609] whom: 1417 +> [55610] whom--he: 1 +> [55611] whom? [55612] whomever: 3 +> [55613] whomsoever: 1 +> [55614] whooping-cough: 1 +> [55615] whopped: 1 +> [55616] whore: 2 +> [55617] whose: 501 +> [55618] whoso: 2 +> [55619] whosoever: 5 +> [55620] why: 3177 +> [55621] why!—hurriedly: 1 +> [55622] why!—that: 1 +> [55623] why!)--we: 1 +> [55624] why"--he: 1 +> [55625] why— [55626] why'd: 1 +> [55627] why's: 1 +> [55628] why--is: 1 +> [55629] why--rode: 1 +> [55630] why--the: 1 +> [55631] why--there's: 1 +> [55632] why--to: 2 +> [55633] why--where: 1 +> [55634] why--whether: 1 +> [55635] why--why: 5 +> [55636] why-why-why: 1 +> [55637] why...i: 1 +> [55638] why. [55639] why.’: 1 +> [55640] why?--of: 1 +> [55641] why? [55642] wi: 2 +> [55643] wick: 4 +> [55644] wicked: 62 +> [55645] wicked--for: 1 +> [55646] wickedly: 1 +> [55647] wickedness: 16 +> [55648] wickedness! [55649] wicker: 3 +> [55650] wicker-basket: 1 +> [55651] wicket: 2 +> [55652] widden: 1 +> [55653] wide: 208 +> [55654] wide-awake: 5 +> [55655] wide-beamed: 1 +> [55656] wide-brimmed: 4 +> [55657] wide-eyed: 1 +> [55658] wide-flapped: 1 +> [55659] wide-latticed: 1 +> [55660] wide-leafed: 1 +> [55661] wide-margined: 1 +> [55662] wide-mouth: 1 +> [55663] wide-mouthed: 2 +> [55664] wide-open: 24 +> [55665] wide-opened: 1 +> [55666] wide-set: 1 +> [55667] wide-spreading: 2 +> [55668] widely: 24 +> [55669] widen: 6 +> [55670] widened: 2 +> [55671] widening: 4 +> [55672] wider: 25 +> [55673] widespread: 6 +> [55674] widest: 39 +> [55675] widger: 3 +> [55676] widow: 87 +> [55677] widow's: 4 +> [55678] widowed: 1 +> [55679] widower: 13 +> [55680] widowers: 1 +> [55681] widows: 4 +> [55682] width: 10 +> [55683] widths: 1 +> [55684] wie: 1 +> [55685] wield: 1 +> [55686] wielded: 1 +> [55687] wielder: 1 +> [55688] wielding: 1 +> [55689] wields: 1 +> [55690] wiesbaden: 1 +> [55691] wife: 994 +> [55692] wife—a: 1 +> [55693] wife—and: 1 +> [55694] wife—for: 1 +> [55695] wife—said: 1 +> [55696] wife's: 125 +> [55697] wife, [55698] wife,’: 1 +> [55699] wife--a: 1 +> [55700] wife--an: 1 +> [55701] wife--and: 1 +> [55702] wife--are: 1 +> [55703] wife--as: 1 +> [55704] wife--at: 1 +> [55705] wife--here: 1 +> [55706] wife--my: 1 +> [55707] wife--of: 1 +> [55708] wife--pregnant: 3 +> [55709] wife--the: 1 +> [55710] wife--those: 1 +> [55711] wife--with: 1 +> [55712] wife--“i: 1 +> [55713] wife-ridden: 1 +> [55714] wife. [55715] wife?--perhaps: 1 +> [55716] wife? [55717] wife’s: 2 +> [55718] wig: 7 +> [55719] wig, [55720] wig-makers: 1 +> [55721] wight: 6 +> [55722] wigless: 1 +> [55723] wigs: 2 +> [55724] wijs: 17 +> [55725] wild: 158 +> [55726] wild-eyed: 2 +> [55727] wild-looking: 2 +> [55728] wilder: 2 +> [55729] wilderness: 17 +> [55730] wildest: 6 +> [55731] wildflowers: 1 +> [55732] wildly: 49 +> [55733] wilds: 5 +> [55734] wiles: 4 +> [55735] wilfred: 1 +> [55736] wilful: 3 +> [55737] wilfullness: 1 +> [55738] wilfully: 2 +> [55739] wilfulness: 1 +> [55740] wilkin's: 7 +> [55741] wilkinson: 2 +> [55742] wilkinson's: 1 +> [55743] will: 6910 +> [55744] will! [55745] will—i: 1 +> [55746] will, [55747] will--a: 1 +> [55748] will--but: 1 +> [55749] will--his: 1 +> [55750] will--so: 2 +> [55751] will--such: 1 +> [55752] will--that: 1 +> [55753] will--the: 1 +> [55754] will--ugh: 1 +> [55755] will--well: 1 +> [55756] will--which: 1 +> [55757] will-o'-the-wisp: 1 +> [55758] will-of-the-wisps: 1 +> [55759] will-power: 2 +> [55760] will. [55761] will[9: 1 +> [55762] willarski: 29 +> [55763] willed: 2 +> [55764] willet: 4 +> [55765] willeth: 1 +> [55766] willful: 6 +> [55767] willfully: 2 +> [55768] william: 6 +> [55769] williams: 4 +> [55770] willibrod: 1 +> [55771] willibrod's: 1 +> [55772] willing: 54 +> [55773] willingly: 26 +> [55774] willingness: 6 +> [55775] willoughby: 4 +> [55776] willow: 9 +> [55777] willow-leaves: 2 +> [55778] willow-stools: 1 +> [55779] willow-tree: 1 +> [55780] willows: 16 +> [55781] willowy: 1 +> [55782] wills: 23 +> [55783] willst: 2 +> [55784] wilna: 7 +> [55785] wilson: 2 +> [55786] wilson's: 2 +> [55787] wilt: 8 +> [55788] wiltshire: 1 +> [55789] wily: 4 +> [55790] wimpfen: 1 +> [55791] win: 77 +> [55792] wince: 5 +> [55793] winced: 15 +> [55794] winchester: 7 +> [55795] wincing: 9 +> [55796] wind: 243 +> [55797] wind--you: 1 +> [55798] wind-driven: 2 +> [55799] wind-like: 1 +> [55800] wind-swept: 1 +> [55801] winded: 1 +> [55802] windfall: 1 +> [55803] winding: 26 +> [55804] windings: 3 +> [55805] windlass: 1 +> [55806] windlasses: 1 +> [55807] windmill: 2 +> [55808] windmills: 4 +> [55809] window: 577 +> [55810] window—opened: 1 +> [55811] window's: 1 +> [55812] window, [55813] window--a: 1 +> [55814] window--and: 5 +> [55815] window--that's: 1 +> [55816] window--you: 1 +> [55817] window-bar: 1 +> [55818] window-frame: 2 +> [55819] window-ledge: 2 +> [55820] window-pane: 1 +> [55821] window-panes: 1 +> [55822] window-seat: 1 +> [55823] window-seats: 2 +> [55824] window-sill: 3 +> [55825] window-sills: 1 +> [55826] window.... [55827] window [55828] window? [55829] windowpanes: 1 +> [55830] windows: 175 +> [55831] windows—and: 1 +> [55832] windows--the: 1 +> [55833] windows--upon: 1 +> [55834] winds: 12 +> [55835] windswept: 4 +> [55836] windward: 1 +> [55837] windy: 11 +> [55838] wine: 207 +> [55839] wine—if: 1 +> [55840] wine, [55841] wine--followed: 1 +> [55842] wine--for: 1 +> [55843] wine-cup: 1 +> [55844] wine-dealer: 1 +> [55845] wine-glass: 7 +> [55846] wine-glasses: 1 +> [55847] wine.[28: 1 +> [55848] wine [55849] wineglass: 4 +> [55850] wineglasses: 1 +> [55851] wineglassful: 1 +> [55852] wines: 12 +> [55853] wing: 54 +> [55854] wing--he: 1 +> [55855] wing--now: 1 +> [55856] winged: 1 +> [55857] wings: 44 +> [55858] wink: 31 +> [55859] winked: 27 +> [55860] winked—only: 1 +> [55861] winking: 21 +> [55862] winner: 1 +> [55863] winnheim: 1 +> [55864] winning: 27 +> [55865] winning--he: 1 +> [55866] winning--seventeen: 1 +> [55867] winnowed: 1 +> [55868] winnowing: 1 +> [55869] wins: 5 +> [55870] winter: 155 +> [55871] winter's: 3 +> [55872] winter--this: 1 +> [55873] winter-rye: 2 +> [55874] wintering: 1 +> [55875] winter’s: 2 +> [55876] winton: 2 +> [55877] wintry: 8 +> [55878] wintzingerode: 7 +> [55879] wintzingerode's: 2 +> [55880] wintzingerodes: 2 +> [55881] wipe: 27 +> [55882] wiped: 43 +> [55883] wipes: 1 +> [55884] wiping: 43 +> [55885] wire: 2 +> [55886] wires: 2 +> [55887] wischau: 6 +> [55888] wisdom: 52 +> [55889] wise: 78 +> [55890] wise.’: 1 +> [55891] wiseacres: 2 +> [55892] wisely: 7 +> [55893] wiser: 30 +> [55894] wisest: 13 +> [55895] wish: 564 +> [55896] wish--always: 1 +> [55897] wish--could: 1 +> [55898] wish--that: 1 +> [55899] wish--to: 1 +> [55900] wish...except: 1 +> [55901] wish? [55902] wished: 388 +> [55903] wished--he: 1 +> [55904] wished--the: 1 +> [55905] wished-for: 1 +> [55906] wished...i: 1 +> [55907] wishes: 107 +> [55908] wishing: 105 +> [55909] wisp: 14 +> [55910] wisps: 4 +> [55911] wistful: 2 +> [55912] wistfully: 1 +> [55913] wit: 71 +> [55914] wit! [55915] wit's: 1 +> [55916] wit. [55917] wit [55918] witch: 13 +> [55919] witch's: 4 +> [55920] witchcraft: 3 +> [55921] witchery: 2 +> [55922] witches: 2 +> [55923] witelsbach: 1 +> [55924] with: 24338 +> [55925] with--a: 1 +> [55926] with--and: 1 +> [55927] with--but: 1 +> [55928] with--it: 2 +> [55929] with--oh: 1 +> [55930] with--with--but: 1 +> [55931] with--you: 1 +> [55932] with? [55933] withal: 1 +> [55934] withal--as: 1 +> [55935] withdraw: 41 +> [55936] withdrawal: 4 +> [55937] withdrawing: 7 +> [55938] withdrawing-room: 2 +> [55939] withdrawn: 22 +> [55940] withdraws: 4 +> [55941] withdrew: 34 +> [55942] withered: 15 +> [55943] withering: 1 +> [55944] withers: 6 +> [55945] withes: 1 +> [55946] withheld: 2 +> [55947] withhold: 5 +> [55948] withholding: 1 +> [55949] withim: 1 +> [55950] within: 443 +> [55951] without: 2906 +> [55952] without? [55953] withstand: 6 +> [55954] withstanding: 2 +> [55955] withstood: 6 +> [55956] witing: 1 +> [55957] witless--no: 1 +> [55958] witness: 117 +> [55959] witness's: 2 +> [55960] witness--and: 1 +> [55961] witness-box: 4 +> [55962] witness. [55963] witness [55964] witness? [55965] witnessed: 32 +> [55966] witnesses: 93 +> [55967] witnesses! [55968] witnesses, [55969] witnesses--qualities: 1 +> [55970] witnesses. [55971] witnesses [55972] witnessing: 1 +> [55973] wits: 39 +> [55974] wits--when: 1 +> [55975] wits’: 2 +> [55976] witte: 1 +> [55977] wittgenstein: 4 +> [55978] witticism: 3 +> [55979] witticisms: 14 +> [55980] wittier: 2 +> [55981] wittiest: 2 +> [55982] wittily: 6 +> [55983] witty: 45 +> [55984] wives: 43 +> [55985] wives, [55986] wives--you'd: 1 +> [55987] wives [55988] wiz: 1 +> [55989] wizard: 3 +> [55990] wizards: 2 +> [55991] wizened: 1 +> [55992] wladimir: 1 +> [55993] wlocki: 1 +> [55994] wo: 1 +> [55995] wobbahs: 1 +> [55996] wobbed: 1 +> [55997] wobber: 1 +> [55998] wobbers: 1 +> [55999] wobbewy: 1 +> [56000] wobbewy!'--'wobbewy: 1 +> [56001] wobbling: 2 +> [56002] woe: 11 +> [56003] woe-begone: 1 +> [56004] woe. [56005] woeful: 1 +> [56006] woes: 8 +> [56007] wogue--it's: 1 +> [56008] woke: 66 +> [56009] wolf: 65 +> [56010] wolf's: 6 +> [56011] wolf-hound: 1 +> [56012] wolfhounds: 1 +> [56013] wolfish: 3 +> [56014] wolsey: 1 +> [56015] wolves: 16 +> [56016] wolves--everyone: 1 +> [56017] wolzogen: 22 +> [56018] wolzogen--and: 1 +> [56019] woman: 1218 +> [56020] woman! [56021] woman—devil: 1 +> [56022] woman'--(which: 1 +> [56023] woman's: 119 +> [56024] woman's--"if: 1 +> [56025] woman's--that: 1 +> [56026] woman's [56027] woman, [56028] woman--ah: 1 +> [56029] woman--and: 1 +> [56030] woman--ask: 1 +> [56031] woman--but: 1 +> [56032] woman--no: 1 +> [56033] woman--prince: 1 +> [56034] woman--that: 1 +> [56035] woman--the: 1 +> [56036] woman--would: 1 +> [56037] woman-like: 1 +> [56038] woman..."--yet: 1 +> [56039] woman. [56040] woman [56041] woman—that: 1 +> [56042] woman? [56043] womanish: 11 +> [56044] womankind: 1 +> [56045] womanlike: 1 +> [56046] womanly: 6 +> [56047] woman’s: 3 +> [56048] womb: 3 +> [56049] women: 658 +> [56050] women—at: 1 +> [56051] women's: 30 +> [56052] women,--at: 1 +> [56053] women, [56054] women--and: 1 +> [56055] women--countesses: 1 +> [56056] women--even: 1 +> [56057] women--god: 1 +> [56058] women--had: 1 +> [56059] women--mostly: 1 +> [56060] women--shrieks: 1 +> [56061] women--three: 1 +> [56062] women-folk: 3 +> [56063] women-friends: 2 +> [56064] women-though: 1 +> [56065] women? [56066] womenfolk: 4 +> [56067] womenfolks: 1 +> [56068] womenkind: 1 +> [56069] won: 68 +> [56070] won't: 947 +> [56071] won't, [56072] won't--not: 1 +> [56073] won't--that's: 1 +> [56074] won't...i: 1 +> [56075] won't. [56076] wonder: 220 +> [56077] wonder—hooks: 1 +> [56078] wonder--a: 1 +> [56079] wonder--almost: 1 +> [56080] wonder--lebedeff: 1 +> [56081] wonder--look: 1 +> [56082] wonder--she: 1 +> [56083] wonder-struck: 1 +> [56084] wonder-worker: 2 +> [56085] wonder-working: 4 +> [56086] wondered: 163 +> [56087] wonderful: 107 +> [56088] wonderful--kindness: 1 +> [56089] wonderfully: 39 +> [56090] wondering: 125 +> [56091] wondering--wondering: 1 +> [56092] wonderingly: 11 +> [56093] wonderment: 1 +> [56094] wonders: 23 +> [56095] wondrous: 5 +> [56096] wondrously--"let: 1 +> [56097] wont: 17 +> [56098] wonted: 2 +> [56099] won’t: 1 +> [56100] woo: 5 +> [56101] wood: 159 +> [56102] wood-ashes: 1 +> [56103] wood-cutting: 2 +> [56104] wood-fire: 1 +> [56105] wood-merchant: 1 +> [56106] wood-pigeons: 1 +> [56107] wood-smelted: 1 +> [56108] woodcuts: 2 +> [56109] woodcutters: 1 +> [56110] woodcutting: 1 +> [56111] wooded: 9 +> [56112] wooden: 91 +> [56113] woodland: 6 +> [56114] woodland--coton: 1 +> [56115] woodlands: 2 +> [56116] woodman's: 1 +> [56117] woodmen: 1 +> [56118] woodpile: 1 +> [56119] woodruff: 1 +> [56120] woods: 25 +> [56121] woods--no: 1 +> [56122] woodstack: 1 +> [56123] woodville: 1 +> [56124] woodwork: 4 +> [56125] wooed: 6 +> [56126] wooing: 3 +> [56127] wool: 30 +> [56128] wool-fat: 2 +> [56129] wool-gathering: 1 +> [56130] wool-gathers: 1 +> [56131] woolen: 7 +> [56132] woollen: 3 +> [56133] woollens: 1 +> [56134] woolly: 2 +> [56135] woolwork: 2 +> [56136] woot: 1 +> [56137] wootton: 8 +> [56138] worcester: 3 +> [56139] worcestershire: 1 +> [56140] word: 1433 +> [56141] word!--'it's: 1 +> [56142] word!--is: 1 +> [56143] word! [56144] word—i'll: 1 +> [56145] word—that's: 1 +> [56146] word)--all: 1 +> [56147] word, [56148] word--_son: 1 +> [56149] word--a: 1 +> [56150] word--an: 1 +> [56151] word--and: 2 +> [56152] word--but: 1 +> [56153] word--by: 1 +> [56154] word--le: 1 +> [56155] word--on: 1 +> [56156] word--such: 1 +> [56157] word--that: 3 +> [56158] word--there's: 1 +> [56159] word--without: 4 +> [56160] word--you've: 1 +> [56161] word-i'll: 1 +> [56162] word. [56163] word? [56164] worded: 4 +> [56165] wording: 4 +> [56166] wordless: 1 +> [56167] words: 1589 +> [56168] words! [56169] words, [56170] words--"scoundrel: 1 +> [56171] words--'there: 1 +> [56172] words--and: 3 +> [56173] words--are: 1 +> [56174] words--even: 1 +> [56175] words--i: 1 +> [56176] words--make: 1 +> [56177] words--she: 1 +> [56178] words--that: 2 +> [56179] words--the: 1 +> [56180] words--these: 1 +> [56181] words--very: 1 +> [56182] words. [56183] words. [56184] wordy: 3 +> [56185] wore: 181 +> [56186] work: 1798 +> [56187] work! [56188] work,--but: 1 +> [56189] work, [56190] work--anything: 1 +> [56191] work--it's: 1 +> [56192] work--just: 1 +> [56193] work-a-day: 1 +> [56194] work-room: 1 +> [56195] work-table: 4 +> [56196] work [56197] workaday: 1 +> [56198] workbag: 3 +> [56199] workbox: 1 +> [56200] worked: 131 +> [56201] worker: 3 +> [56202] workers: 9 +> [56203] workers--workers: 1 +> [56204] working: 140 +> [56205] working-room: 1 +> [56206] workingman: 1 +> [56207] workingmen: 1 +> [56208] workings: 4 +> [56209] workman: 33 +> [56210] workmanship: 1 +> [56211] workmen: 27 +> [56212] workmen's: 8 +> [56213] workpeople: 1 +> [56214] works: 671 +> [56215] works [56216] workshop: 4 +> [56217] workshop--but: 1 +> [56218] workshops: 4 +> [56219] world: 1003 +> [56220] world! [56221] world!’: 1 +> [56222] world—in: 1 +> [56223] world—was: 1 +> [56224] world—which: 1 +> [56225] world's: 14 +> [56226] world)—this: 1 +> [56227] world, [56228] world, [56229] world--_and: 1 +> [56230] world--a: 2 +> [56231] world--and: 1 +> [56232] world--anything: 2 +> [56233] world--certainly: 1 +> [56234] world--far: 1 +> [56235] world--god: 1 +> [56236] world--he: 1 +> [56237] world--herself: 1 +> [56238] world--is: 1 +> [56239] world--more: 1 +> [56240] world--overflowed: 1 +> [56241] world--seemed: 1 +> [56242] world--so: 1 +> [56243] world--the: 2 +> [56244] world--to: 1 +> [56245] world--was: 1 +> [56246] world--we: 1 +> [56247] world--what: 1 +> [56248] world-conflict: 1 +> [56249] world-famous: 1 +> [56250] world-old: 1 +> [56251] world-religion: 2 +> [56252] world-rulers: 4 +> [56253] world-view: 3 +> [56254] world-wide: 2 +> [56255] world. [56256] world. [56257] world.”: 1 +> [56258] world [56259] world? [56260] worldliness: 7 +> [56261] worldlings: 1 +> [56262] worldly: 33 +> [56263] worlds: 16 +> [56264] worlds. [56265] worlds [56266] world’s: 5 +> [56267] worm: 12 +> [56268] wormed: 2 +> [56269] worming: 1 +> [56270] worms: 5 +> [56271] wormwood: 18 +> [56272] worn: 136 +> [56273] worn--he: 1 +> [56274] worn-out: 10 +> [56275] worried: 112 +> [56276] worried--and: 1 +> [56277] worried-looking: 1 +> [56278] worried. [56279] worried? [56280] worries: 23 +> [56281] worrit: 1 +> [56282] worry: 93 +> [56283] worry, [56284] worry--i'll: 1 +> [56285] worry--in: 1 +> [56286] worrying: 49 +> [56287] worryings: 1 +> [56288] worse: 337 +> [56289] worse. [56290] worse? [56291] worsening: 1 +> [56292] worship: 39 +> [56293] worshiped: 6 +> [56294] worshiper: 1 +> [56295] worshipers: 1 +> [56296] worshipped: 5 +> [56297] worshipped?’: 1 +> [56298] worshippers: 6 +> [56299] worshipping: 3 +> [56300] worships: 1 +> [56301] worst: 177 +> [56302] worst--i: 1 +> [56303] worst--road: 1 +> [56304] worst--when: 1 +> [56305] worst. [56306] worst;’: 1 +> [56307] worsted: 9 +> [56308] wort: 1 +> [56309] worth: 258 +> [56310] worth! [56311] worth—that's: 1 +> [56312] worth—you: 1 +> [56313] worth, [56314] worthier: 2 +> [56315] worthily: 1 +> [56316] worthiness: 1 +> [56317] worthless: 32 +> [56318] worthlessness: 4 +> [56319] worthwhile: 3 +> [56320] worthy: 114 +> [56321] worts: 1 +> [56322] wostov: 9 +> [56323] wostovs: 1 +> [56324] wotten: 1 +> [56325] would: 7171 +> [56326] would&mdash: 1 +> [56327] would,”: 1 +> [56328] would--have: 1 +> [56329] would--i: 1 +> [56330] would--if: 1 +> [56331] would--take: 1 +> [56332] would-be: 10 +> [56333] wouldest: 2 +> [56334] wouldn't: 240 +> [56335] wouldst: 13 +> [56336] wound: 120 +> [56337] wound-up: 1 +> [56338] wounded: 294 +> [56339] wounded--had: 1 +> [56340] wounded--some: 1 +> [56341] wounding: 8 +> [56342] wounds: 25 +> [56343] wounds. [56344] woven: 4 +> [56345] wrack: 1 +> [56346] wrangle: 3 +> [56347] wrangled: 1 +> [56348] wranglements: 1 +> [56349] wrangling: 6 +> [56350] wrap: 18 +> [56351] wrapped: 92 +> [56352] wrapped-up: 1 +> [56353] wrapper: 6 +> [56354] wrappers: 5 +> [56355] wrapping: 21 +> [56356] wrappings: 5 +> [56357] wrappings--faults: 1 +> [56358] wraps: 5 +> [56359] wrapt: 1 +> [56360] wrath: 63 +> [56361] wrath, [56362] wrath. [56363] wrathful: 12 +> [56364] wrathful-looking: 1 +> [56365] wrathfully: 23 +> [56366] wreak: 1 +> [56367] wreath: 9 +> [56368] wreathe: 1 +> [56369] wreathed: 4 +> [56370] wreaths: 2 +> [56371] wreck: 8 +> [56372] wreckage: 1 +> [56373] wrecked: 3 +> [56374] wrecking: 1 +> [56375] wrede: 2 +> [56376] wrede's: 1 +> [56377] wren: 1 +> [56378] wrenched: 9 +> [56379] wrenching: 2 +> [56380] wrested: 3 +> [56381] wrestled: 2 +> [56382] wrestling: 2 +> [56383] wretch: 52 +> [56384] wretch! [56385] wretch's: 1 +> [56386] wretch--a: 1 +> [56387] wretch--that's: 1 +> [56388] wretch--to: 1 +> [56389] wretch [56390] wretch? [56391] wretched: 165 +> [56392] wretched--oh: 1 +> [56393] wretchedest: 2 +> [56394] wretchedly: 2 +> [56395] wretchedness: 15 +> [56396] wretchedness...or: 1 +> [56397] wretches: 35 +> [56398] wriggle: 7 +> [56399] wriggled: 8 +> [56400] wriggles: 3 +> [56401] wriggling: 6 +> [56402] wright: 1 +> [56403] wring: 10 +> [56404] wringing: 23 +> [56405] wrinkle: 6 +> [56406] wrinkled: 33 +> [56407] wrinkles: 26 +> [56408] wrinkling: 4 +> [56409] wrist: 18 +> [56410] wrist-band: 1 +> [56411] wrist-links: 1 +> [56412] wristbands: 3 +> [56413] wrists: 7 +> [56414] writ: 2 +> [56415] write: 367 +> [56416] write—write: 1 +> [56417] write--so: 1 +> [56418] write--that: 1 +> [56419] writer: 71 +> [56420] writer's: 9 +> [56421] writer--style: 1 +> [56422] writer [56423] writers: 28 +> [56424] writers--scholars: 1 +> [56425] writes: 66 +> [56426] writhe: 2 +> [56427] writhed: 4 +> [56428] writhing: 21 +> [56429] writhings: 3 +> [56430] writing: 275 +> [56431] writing's: 1 +> [56432] writing--he: 1 +> [56433] writing--not: 1 +> [56434] writing-paper: 2 +> [56435] writing-room: 8 +> [56436] writing-table: 12 +> [56437] writing-tables: 2 +> [56438] writings: 74 +> [56439] writs: 1 +> [56440] written: 444 +> [56441] written--though: 1 +> [56442] written. [56443] wrong: 390 +> [56444] wrong, [56445] wrong--shameful: 1 +> [56446] wrong--was: 1 +> [56447] wrong-doing: 3 +> [56448] wrong-headed: 1 +> [56449] wrong [56450] wrong? [56451] wrongdoing: 3 +> [56452] wrongdoing? [56453] wronged: 35 +> [56454] wrongfully: 1 +> [56455] wronging: 2 +> [56456] wrongly: 15 +> [56457] wrongs: 18 +> [56458] wrote: 300 +> [56459] wrote, [56460] wrote? [56461] wroth: 2 +> [56462] wrought: 24 +> [56463] wrung: 33 +> [56464] wry: 12 +> [56465] wt: 3 +> [56466] wuined: 1 +> [56467] wurt: 1 +> [56468] wurttemberg: 6 +> [56469] wurttembergers: 2 +> [56470] wussian: 1 +> [56471] wussians: 1 +> [56472] www.gutenberg.net: 19 +> [56473] www.gutenberg.org: 34 +> [56474] www.gutenberg.org/license: 4 +> [56475] www.gutenberg.org/license [56476] wyatt: 4 +> [56477] wyatt's: 1 +> [56478] wyatts: 1 +> [56479] wynds: 1 +> [56480] wynsore: 1 +> [56481] wäsche: 2 +> [56482] wätteau-painted: 1 +> [56483] wünscht: 1 +> [56484] x: 95 +> [56485] x-class: 3 +> [56486] x-large: 1 +> [56487] x.-xi: 1 +> [56488] x.-xiii: 1 +> [56489] x/y: 1 +> [56490] xi: 60 +> [56491] xi.-xii: 1 +> [56492] xii: 51 +> [56493] xii.-xiv: 1 +> [56494] xiii: 58 +> [56495] xiii.-xiv: 1 +> [56496] xiii.-xx: 1 +> [56497] xiii.=matt: 1 +> [56498] xiv: 45 +> [56499] xiv's: 1 +> [56500] xix: 32 +> [56501] xl: 2 +> [56502] xlvi: 1 +> [56503] xml: 1 +> [56504] xray: 4 +> [56505] xv: 61 +> [56506] xv--why: 1 +> [56507] xvi: 58 +> [56508] xvi.-xxviii: 1 +> [56509] xvii: 30 +> [56510] xviii: 38 +> [56511] xx: 40 +> [56512] xx-large: 1 +> [56513] xxi: 47 +> [56514] xxii: 31 +> [56515] xxiii: 13 +> [56516] xxiv: 16 +> [56517] xxiv.=luke: 1 +> [56518] xxix: 4 +> [56519] xxv: 11 +> [56520] xxvi: 11 +> [56521] xxvii: 7 +> [56522] xxviii: 8 +> [56523] xxx: 4 +> [56524] xxxi: 4 +> [56525] xxxii: 4 +> [56526] xxxiii: 4 +> [56527] xxxiv: 4 +> [56528] xxxix: 3 +> [56529] xxxv: 3 +> [56530] xxxvi: 3 +> [56531] xxxvii: 3 +> [56532] xxxviii: 3 +> [56533] y: 14 +> [56534] y-yes: 1 +> [56535] yacht: 3 +> [56536] yachts: 1 +> [56537] yah: 4 +> [56538] yahweh: 1 +> [56539] yakov: 11 +> [56540] yakovlev: 3 +> [56541] yale: 1 +> [56542] yankee: 4 +> [56543] yankovo: 3 +> [56544] yapping: 4 +> [56545] yard: 191 +> [56546] yard--we: 1 +> [56547] yard-long: 2 +> [56548] yards: 101 +> [56549] yarn: 2 +> [56550] yaroslav: 9 +> [56551] yaroslavl: 11 +> [56552] yashvin: 64 +> [56553] yashvin's: 4 +> [56554] yashvin--a: 1 +> [56555] yausky: 1 +> [56556] yauza: 5 +> [56557] yawn: 11 +> [56558] yawned: 13 +> [56559] yawning: 11 +> [56560] yawns: 1 +> [56561] ye: 39 +> [56562] ye-yes: 2 +> [56563] yea: 2 +> [56564] yeah: 1 +> [56565] year: 408 +> [56566] year's: 29 +> [56567] year,"--he: 1 +> [56568] year, [56569] year--cold: 1 +> [56570] year--one: 1 +> [56571] year--the: 1 +> [56572] year--was: 1 +> [56573] year--when: 1 +> [56574] year--which: 1 +> [56575] year-old: 2 +> [56576] year. [56577] yearling: 1 +> [56578] yearly: 6 +> [56579] yearn: 3 +> [56580] yearned: 5 +> [56581] yearning: 14 +> [56582] yearnings: 2 +> [56583] yearns: 2 +> [56584] years: 1022 +> [56585] years! [56586] years)--'there: 1 +> [56587] years, [56588] years--a: 1 +> [56589] years--and: 1 +> [56590] years--been: 3 +> [56591] years--no: 1 +> [56592] years--thoughts: 1 +> [56593] years--whether: 1 +> [56594] years--yes: 1 +> [56595] years--you: 1 +> [56596] years. [56597] years.”: 1 +> [56598] years[7: 1 +> [56599] years’: 1 +> [56600] year’s: 1 +> [56601] yefim: 11 +> [56602] yegor: 11 +> [56603] yegorov: 1 +> [56604] yegorovna: 1 +> [56605] yegorushka: 1 +> [56606] yelagin: 3 +> [56607] yeliseev's: 1 +> [56608] yell: 12 +> [56609] yelled: 25 +> [56610] yelling: 8 +> [56611] yelling--ten: 1 +> [56612] yellow: 136 +> [56613] yellow, [56614] yellow-faced: 1 +> [56615] yellow-green: 1 +> [56616] yellow-red: 1 +> [56617] yellowing: 1 +> [56618] yellowish: 17 +> [56619] yellowish-black: 1 +> [56620] yellowish-green: 2 +> [56621] yellows: 4 +> [56622] yells: 16 +> [56623] yelp: 2 +> [56624] yelped: 4 +> [56625] yelping: 3 +> [56626] yeoman's: 1 +> [56627] yeomanry: 2 +> [56628] yeomen: 1 +> [56629] yermil: 1 +> [56630] yermilin: 1 +> [56631] yes: 2219 +> [56632] yes!--there: 1 +> [56633] yes! [56634] yes—three: 1 +> [56635] yes—to: 1 +> [56636] yes,'penates: 1 +> [56637] yes, [56638] yes--a: 1 +> [56639] yes--abbot: 1 +> [56640] yes--and: 1 +> [56641] yes--at: 1 +> [56642] yes--but: 2 +> [56643] yes--for: 1 +> [56644] yes--i: 12 +> [56645] yes--love: 1 +> [56646] yes--no-half: 1 +> [56647] yes--not: 1 +> [56648] yes--she's: 1 +> [56649] yes--take: 1 +> [56650] yes--that: 2 +> [56651] yes--that's: 1 +> [56652] yes--those: 1 +> [56653] yes--to: 1 +> [56654] yes--twenty: 1 +> [56655] yes--yes: 1 +> [56656] yes--yes--both: 1 +> [56657] yes--yes--for: 1 +> [56658] yes--yes--oh: 1 +> [56659] yes--yes--yes: 3 +> [56660] yes--you: 7 +> [56661] yes--you're: 1 +> [56662] yes...just: 1 +> [56663] yes...no: 1 +> [56664] yes...oh: 1 +> [56665] yes? [56666] yesterday: 484 +> [56667] yesterday—and: 1 +> [56668] yesterday—the: 1 +> [56669] yesterday's: 37 +> [56670] yesterday, [56671] yesterday--a: 1 +> [56672] yesterday--he: 3 +> [56673] yesterday--i: 1 +> [56674] yesterday--tell: 1 +> [56675] yesterday--that: 1 +> [56676] yesterday--we: 1 +> [56677] yesterday.... [56678] yesterday. [56679] yesterday? [56680] yet: 1686 +> [56681] yet! [56682] yet— [56683] yet—happiness: 1 +> [56684] yet,--and: 1 +> [56685] yet,--had: 1 +> [56686] yet, [56687] yet--and: 1 +> [56688] yet--he: 1 +> [56689] yet--her: 1 +> [56690] yet--i'm: 1 +> [56691] yet--idiot: 1 +> [56692] yet--it: 1 +> [56693] yet--just: 1 +> [56694] yet--neither: 1 +> [56695] yet--someday: 1 +> [56696] yet--to: 1 +> [56697] yet--where: 1 +> [56698] yet--why: 1 +> [56699] yet--yes: 1 +> [56700] yet--you: 1 +> [56701] yet...and: 1 +> [56702] yet. [56703] yet? [56704] yeux: 2 +> [56705] yevgeney: 1 +> [56706] yevgenyevna: 6 +> [56707] yew: 22 +> [56708] yew-trees: 1 +> [56709] yew-walk: 1 +> [56710] yew-wood: 2 +> [56711] yews: 6 +> [56712] yield: 54 +> [56713] yielded: 31 +> [56714] yielded--went: 1 +> [56715] yielding: 15 +> [56716] yields: 9 +> [56717] yo: 5 +> [56718] yo're: 1 +> [56719] yoicks: 1 +> [56720] yoke: 16 +> [56721] yoked: 1 +> [56722] yokels: 1 +> [56723] yonder: 17 +> [56724] yonder, [56725] yonder. [56726] yorick: 2 +> [56727] yorick! [56728] york: 24 +> [56729] york [56730] yorkshire: 1 +> [56731] you: 30935 +> [56732] you!--look: 1 +> [56733] you!--to: 1 +> [56734] you!... [56735] you! [56736] you! [56737] you! [56738] you"--but: 1 +> [56739] you"--she: 1 +> [56740] you&mdash: 2 +> [56741] you— [56742] you—? [56743] you—alas: 1 +> [56744] you—and: 1 +> [56745] you—answer: 1 +> [56746] you—are: 1 +> [56747] you—aristocrats! [56748] you—d'you: 1 +> [56749] you—he: 1 +> [56750] you—if: 1 +> [56751] you—ivan: 1 +> [56752] you—no: 2 +> [56753] you—seemed: 1 +> [56754] you—that's: 1 +> [56755] you—there's: 1 +> [56756] you—this: 1 +> [56757] you—with: 1 +> [56758] you—you: 1 +> [56759] you'd: 170 +> [56760] you'll: 365 +> [56761] you're: 458 +> [56762] you've: 418 +> [56763] you). [56764] you,--i: 1 +> [56765] you,--it: 1 +> [56766] you,--not: 1 +> [56767] you,--on: 1 +> [56768] you,--that's: 1 +> [56769] you,--wouldn't: 1 +> [56770] you, [56771] you,’: 1 +> [56772] you,”: 1 +> [56773] you--'let: 4 +> [56774] you--(excuse: 1 +> [56775] you--a: 3 +> [56776] you--all--maria--maria: 1 +> [56777] you--an: 2 +> [56778] you--and: 6 +> [56779] you--and--please: 1 +> [56780] you--are: 1 +> [56781] you--as: 2 +> [56782] you--aw--i: 1 +> [56783] you--believe: 1 +> [56784] you--both: 1 +> [56785] you--but: 3 +> [56786] you--carrying: 1 +> [56787] you--colia: 1 +> [56788] you--come: 1 +> [56789] you--desire: 1 +> [56790] you--do: 2 +> [56791] you--don't: 1 +> [56792] you--even: 1 +> [56793] you--everything--everything: 1 +> [56794] you--find: 1 +> [56795] you--for: 1 +> [56796] you--give: 1 +> [56797] you--half: 1 +> [56798] you--how: 1 +> [56799] you--i: 15 +> [56800] you--if: 4 +> [56801] you--in: 2 +> [56802] you--intelligent: 1 +> [56803] you--is: 1 +> [56804] you--it: 2 +> [56805] you--it's: 1 +> [56806] you--like: 1 +> [56807] you--much-esteemed: 1 +> [56808] you--my: 1 +> [56809] you--never: 1 +> [56810] you--no: 1 +> [56811] you--not: 1 +> [56812] you--now--to: 1 +> [56813] you--on: 1 +> [56814] you--only: 1 +> [56815] you--our: 1 +> [56816] you--peter: 1 +> [56817] you--scarecrow: 1 +> [56818] you--she: 3 +> [56819] you--sit: 1 +> [56820] you--some: 1 +> [56821] you--sonya: 1 +> [56822] you--that: 5 +> [56823] you--the: 2 +> [56824] you--those: 1 +> [56825] you--though: 2 +> [56826] you--to: 1 +> [56827] you--turn: 1 +> [56828] you--two: 1 +> [56829] you--vodka: 1 +> [56830] you--waverers: 1 +> [56831] you--what: 1 +> [56832] you--why: 1 +> [56833] you--with: 2 +> [56834] you--yes: 2 +> [56835] you--you: 12 +> [56836] you--you've: 1 +> [56837] you--your: 1 +> [56838] you-if: 1 +> [56839] you-well: 1 +> [56840] you-you: 1 +> [56841] you.... [56842] you...and: 1 +> [56843] you...at: 1 +> [56844] you...but: 1 +> [56845] you...grisha: 1 +> [56846] you...no: 1 +> [56847] you...not: 1 +> [56848] you...they: 1 +> [56849] you...with: 1 +> [56850] you...you: 2 +> [56851] you. [56852] you. [56853] you.”: 3 +> [56854] you [56855] you [56856] you—and: 1 +> [56857] you? [56858] you?)--if: 1 +> [56859] you?--a: 1 +> [56860] you?--though: 1 +> [56861] you?--why: 1 +> [56862] you?--yes: 1 +> [56863] you?--you: 1 +> [56864] you? [56865] you?—a: 1 +> [56866] you?’: 2 +> [56867] you?”: 2 +> [56868] young: 1542 +> [56869] young--accept: 1 +> [56870] young--yield: 1 +> [56871] young-looking: 6 +> [56872] younger: 142 +> [56873] youngest: 26 +> [56874] youngish: 4 +> [56875] youngster: 7 +> [56876] youngsters: 1 +> [56877] your: 6309 +> [56878] your--if: 1 +> [56879] your--let: 1 +> [56880] your--your: 1 +> [56881] yours: 188 +> [56882] yours!"--he: 1 +> [56883] yours! [56884] yours— [56885] yours—so: 1 +> [56886] yours, [56887] yours. [56888] yours? [56889] yourself: 892 +> [56890] yourself! [56891] yourself"--and: 1 +> [56892] yourself, [56893] yourself--(it's: 1 +> [56894] yourself--and: 2 +> [56895] yourself--aren't: 1 +> [56896] yourself--body: 1 +> [56897] yourself--haven't: 1 +> [56898] yourself--i: 1 +> [56899] yourself--only: 1 +> [56900] yourself--save: 1 +> [56901] yourself--you: 1 +> [56902] yourself.... [56903] yourself. [56904] yourself.”: 1 +> [56905] yourself? [56906] yourselves: 44 +> [56907] yourselves. [56908] yourselves? [56909] youth: 193 +> [56910] youth--all: 4 +> [56911] youth--for: 1 +> [56912] youth--he: 1 +> [56913] youth--youth: 1 +> [56914] youthful: 53 +> [56915] youthful-looking: 1 +> [56916] youthfully: 2 +> [56917] youthfulness: 3 +> [56918] youthfulness--and: 1 +> [56919] youthfulness--positively: 1 +> [56920] youths: 8 +> [56921] yukhnov: 1 +> [56922] yukhnovna: 1 +> [56923] yukhnovo: 1 +> [56924] yulia: 8 +> [56925] yulia's: 1 +> [56926] yulia. [56927] yulian: 76 +> [56928] yuri: 1 +> [56929] yury: 1 +> [56930] yushin: 1 +> [56931] yusupov: 6 +> [56932] yusupov's: 1 +> [56933] yusupova: 1 +> [56934] yvetot: 4 +> [56935] z: 3 +> [56936] zahar: 1 +> [56937] zaharovitch: 10 +> [56938] zahn: 3 +> [56939] zakhar: 9 +> [56940] zakharchenko: 1 +> [56941] zakharino: 1 +> [56942] zakharov: 4 +> [56943] zakharova: 2 +> [56944] zakharych: 2 +> [56945] zakkaritch: 2 +> [56946] zakret: 1 +> [56947] zakuska: 1 +> [56948] zalesheff: 1 +> [56949] zaleshoff: 7 +> [56950] zaleshoff's: 1 +> [56951] zaleshoff--if: 1 +> [56952] zaleshoff--looking: 1 +> [56953] zaletaev: 2 +> [56954] zamet's--all: 1 +> [56955] zametov: 84 +> [56956] zametov's: 6 +> [56957] zapiski: 4 +> [56958] zaraisky: 4 +> [56959] zaraïsk: 1 +> [56960] zaraïsky: 1 +> [56961] zarnitsyn: 2 +> [56962] zat: 6 +> [56963] zavarzinsk: 1 +> [56964] zdrzhinski: 4 +> [56965] zdrzhinski's: 3 +> [56966] ze: 9 +> [56967] zeal: 24 +> [56968] zealot: 1 +> [56969] zealots: 1 +> [56970] zealous: 13 +> [56971] zealous--perhaps: 1 +> [56972] zealously: 5 +> [56973] zebedee: 7 +> [56974] zeidler: 1 +> [56975] zeit: 4 +> [56976] zeitung"[9: 1 +> [56977] zeller's: 1 +> [56978] zemarin: 2 +> [56979] zemarins: 1 +> [56980] zemtuznikoff: 1 +> [56981] zen: 1 +> [56982] zenith: 2 +> [56983] zere's: 1 +> [56984] zero: 8 +> [56985] zest: 11 +> [56986] zeus: 1 +> [56987] zharov: 1 +> [56988] zherkov: 37 +> [56989] zherkov's: 3 +> [56990] zhilinski: 6 +> [56991] zhilinski's: 1 +> [56992] zhilinski--le: 1 +> [56993] zhivahov: 1 +> [56994] zhukovsky: 1 +> [56995] zhutchka: 15 +> [56996] zhutchka! [56997] zhutchka's: 2 +> [56998] zhutchka? [56999] zides: 1 +> [57000] zigzag: 2 +> [57001] zigzags: 2 +> [57002] zikin: 1 +> [57003] zimmerman's: 1 +> [57004] zimoveykin: 19 +> [57005] zimoveykin--timidly: 1 +> [57006] zimoveykin--was: 1 +> [57007] zinaida: 1 +> [57008] zinc: 12 +> [57009] zinovy: 16 +> [57010] zion: 3 +> [57011] zion.’: 1 +> [57012] zipporah: 1 +> [57013] zis: 1 +> [57014] zithers: 1 +> [57015] zlatoverhoff: 2 +> [57016] znaim: 12 +> [57017] znamenka: 2 +> [57018] zodiac: 2 +> [57019] zone: 1 +> [57020] zoological: 2 +> [57021] zoology: 5 +> [57022] zossima: 77 +> [57023] zossima— [57024] zossima—god: 1 +> [57025] zossima's: 17 +> [57026] zossima. [57027] zossima [57028] zossima [57029] zossima? [57030] zossimov: 84 +> [57031] zossimov)--i: 1 +> [57032] zossimov--that's: 1 +> [57033] zoubkoff: 1 +> [57034] ztg: 5 +> [57035] zu: 4 +> [57036] zubov: 2 +> [57037] zubova: 3 +> [57038] zubovski: 2 +> [57039] zulu: 4 +> [57040] zum: 1 +> [57041] zurich: 1 +> [57042] zverkov: 189 +> [57043] zverkov's: 9 +> [57044] zweck: 1 +> [57045] £300: 1 +> [57046] £500: 1 +> [57047] £800: 1 +> [57048] ±: 3 +> [57049] ±0.20: 1 +> [57050] ·: 3 +> [57051] À: 3 +> [57052] Ægean: 6 +> [57053] Æneas’s: 1 +> [57054] Æsop: 4 +> [57055] Æsop's: 1 +> [57056] Æsop? [57057] Ça: 2 +> [57058] Écoutez: 2 +> [57059] ×: 34 +> [57060] à: 29 +> [57061] àpropos: 1 +> [57062] á: 1 +> [57063] ægis: 1 +> [57064] æon: 1 +> [57065] æsthetic: 2 +> [57066] æsthetically: 1 +> [57067] æsthetics: 1 +> [57068] ça: 2 +> [57069] écoles: 1 +> [57070] émigrés: 1 +> [57071] épices: 1 +> [57072] éternelle_--till: 1 +> [57073] étrenne: 1 +> [57074] été: 1 +> [57075] être: 1 +> [57076] Œcumenical: 1 +> [57077] ‘_ciascun: 1 +> [57078] ‘_dot_,’: 1 +> [57079] ‘_encore: 1 +> [57080] ‘_il: 1 +> [57081] ‘_marriage: 2 +> [57082] ‘_that: 1 +> [57083] ‘a: 3 +> [57084] ‘ah: 1 +> [57085] ‘all: 3 +> [57086] ‘allow: 1 +> [57087] ‘almost: 1 +> [57088] ‘always: 1 +> [57089] ‘amen’: 1 +> [57090] ‘and: 4 +> [57091] ‘are: 1 +> [57092] ‘at’: 1 +> [57093] ‘bad: 1 +> [57094] ‘beautiful: 1 +> [57095] ‘behold: 1 +> [57096] ‘best: 1 +> [57097] ‘blessed: 2 +> [57098] ‘blows: 1 +> [57099] ‘boldly?’: 1 +> [57100] ‘bolts’--he: 1 +> [57101] ‘bore,’: 1 +> [57102] ‘but: 2 +> [57103] ‘called: 1 +> [57104] ‘certainly: 1 +> [57105] ‘certainly.’: 1 +> [57106] ‘chap: 1 +> [57107] ‘charming: 1 +> [57108] ‘charms’: 1 +> [57109] ‘choker.’: 1 +> [57110] ‘cleverness’: 1 +> [57111] ‘come: 2 +> [57112] ‘consume’: 1 +> [57113] ‘cords’: 1 +> [57114] ‘counterblast;’: 1 +> [57115] ‘counting: 1 +> [57116] ‘cuts: 2 +> [57117] ‘delightful: 1 +> [57118] ‘destroy: 1 +> [57119] ‘don: 1 +> [57120] ‘don’t.’: 1 +> [57121] ‘dreadful: 1 +> [57122] ‘dressed,’: 1 +> [57123] ‘dressed;’: 1 +> [57124] ‘dressed’: 1 +> [57125] ‘egypt: 1 +> [57126] ‘enough: 1 +> [57127] ‘even: 2 +> [57128] ‘exalteth: 1 +> [57129] ‘excellent: 1 +> [57130] ‘faultless: 1 +> [57131] ‘feeding: 1 +> [57132] ‘fidelio,’: 1 +> [57133] ‘fine: 1 +> [57134] ‘for: 2 +> [57135] ‘gentleman;’: 1 +> [57136] ‘gentlemanlike,’: 1 +> [57137] ‘god: 2 +> [57138] ‘god’s: 1 +> [57139] ‘governor,’: 1 +> [57140] ‘great: 1 +> [57141] ‘habit: 1 +> [57142] ‘hangs: 1 +> [57143] ‘happy: 2 +> [57144] ‘hard: 1 +> [57145] ‘has: 1 +> [57146] ‘he: 2 +> [57147] ‘head: 1 +> [57148] ‘his: 1 +> [57149] ‘holy: 2 +> [57150] ‘hook.’: 1 +> [57151] ‘human: 1 +> [57152] ‘hunted: 1 +> [57153] ‘i: 15 +> [57154] ‘ici: 1 +> [57155] ‘if: 2 +> [57156] ‘immediately,’: 1 +> [57157] ‘it: 1 +> [57158] ‘i’: 1 +> [57159] ‘jerusalem: 1 +> [57160] ‘jonathan: 1 +> [57161] ‘khedive,’: 1 +> [57162] ‘kind: 1 +> [57163] ‘lancers’: 1 +> [57164] ‘le: 1 +> [57165] ‘left: 1 +> [57166] ‘legs: 1 +> [57167] ‘let: 1 +> [57168] ‘little: 2 +> [57169] ‘long: 1 +> [57170] ‘look: 1 +> [57171] ‘lord: 1 +> [57172] ‘mahoganies,’: 1 +> [57173] ‘makes: 2 +> [57174] ‘man: 1 +> [57175] ‘may: 1 +> [57176] ‘mizzles’--he: 1 +> [57177] ‘morning,’: 1 +> [57178] ‘mrs: 2 +> [57179] ‘much: 3 +> [57180] ‘my: 1 +> [57181] ‘needful,’: 1 +> [57182] ‘never: 2 +> [57183] ‘newgate: 1 +> [57184] ‘no: 2 +> [57185] ‘no.’: 1 +> [57186] ‘not: 1 +> [57187] ‘nothing: 1 +> [57188] ‘of’: 1 +> [57189] ‘oh: 2 +> [57190] ‘one: 1 +> [57191] ‘or’: 1 +> [57192] ‘paul: 1 +> [57193] ‘peg-top’: 1 +> [57194] ‘pinks.’: 1 +> [57195] ‘plucky.’: 1 +> [57196] ‘points’: 1 +> [57197] ‘praise: 1 +> [57198] ‘properties.’: 1 +> [57199] ‘put: 1 +> [57200] ‘regular: 2 +> [57201] ‘resigned: 1 +> [57202] ‘rummy: 1 +> [57203] ‘setting’--where: 1 +> [57204] ‘shake: 1 +> [57205] ‘shuts: 1 +> [57206] ‘signs: 1 +> [57207] ‘sing: 1 +> [57208] ‘single: 1 +> [57209] ‘slopes’--he: 1 +> [57210] ‘so: 1 +> [57211] ‘social: 1 +> [57212] ‘something: 1 +> [57213] ‘soon,’: 1 +> [57214] ‘spouts;’: 1 +> [57215] ‘stand: 1 +> [57216] ‘strong: 1 +> [57217] ‘stumps: 1 +> [57218] ‘stunner,’: 1 +> [57219] ‘taken: 1 +> [57220] ‘thank: 4 +> [57221] ‘that: 1 +> [57222] ‘the: 25 +> [57223] ‘then: 2 +> [57224] ‘these: 1 +> [57225] ‘they: 5 +> [57226] ‘they’: 1 +> [57227] ‘thin: 1 +> [57228] ‘this: 1 +> [57229] ‘thou: 1 +> [57230] ‘though: 1 +> [57231] ‘thy: 1 +> [57232] ‘tile.’: 1 +> [57233] ‘tin,’: 1 +> [57234] ‘to: 3 +> [57235] ‘too: 1 +> [57236] ‘tops’: 1 +> [57237] ‘touch: 1 +> [57238] ‘trodden: 1 +> [57239] ‘trou: 1 +> [57240] ‘trovatore,’: 1 +> [57241] ‘tum-tum-tiddy-tum,’: 1 +> [57242] ‘ugly: 1 +> [57243] ‘under: 1 +> [57244] ‘undress,’: 1 +> [57245] ‘undressed’: 2 +> [57246] ‘until: 1 +> [57247] ‘upon: 1 +> [57248] ‘vulgar.’: 1 +> [57249] ‘wait: 1 +> [57250] ‘walks: 1 +> [57251] ‘was: 1 +> [57252] ‘watch: 2 +> [57253] ‘we: 1 +> [57254] ‘well: 2 +> [57255] ‘what: 2 +> [57256] ‘when: 7 +> [57257] ‘whom: 2 +> [57258] ‘why: 1 +> [57259] ‘will: 3 +> [57260] ‘with: 1 +> [57261] ‘ye: 1 +> [57262] ‘yes: 3 +> [57263] ‘yes,’: 1 +> [57264] ‘you: 2 +> [57265] ’: 1 +> [57266] ’tis: 1 +> [57267] ’twere: 1 +> [57268] “----.”: 1 +> [57269] “1: 1 +> [57270] “2: 1 +> [57271] “3: 1 +> [57272] “4: 1 +> [57273] “5: 1 +> [57274] “_champ: 1 +> [57275] “_reason: 1 +> [57276] “_who: 1 +> [57277] “a: 13 +> [57278] “accordingly: 1 +> [57279] “after: 1 +> [57280] “again: 1 +> [57281] “ah: 1 +> [57282] “all: 2 +> [57283] “allow: 1 +> [57284] “although: 1 +> [57285] “an: 1 +> [57286] “and: 1 +> [57287] “another: 5 +> [57288] “are: 1 +> [57289] “art: 1 +> [57290] “as: 11 +> [57291] “at: 2 +> [57292] “attention: 1 +> [57293] “beards: 1 +> [57294] “beauties,”: 1 +> [57295] “before: 1 +> [57296] “besides: 1 +> [57297] “beware: 1 +> [57298] “black: 1 +> [57299] “bore,”: 1 +> [57300] “bore”: 1 +> [57301] “brother’s”: 1 +> [57302] “business: 1 +> [57303] “but: 8 +> [57304] “by: 1 +> [57305] “carefully: 1 +> [57306] “change: 1 +> [57307] “character: 1 +> [57308] “civility: 2 +> [57309] “clumsy: 1 +> [57310] “come: 1 +> [57311] “company: 1 +> [57312] “conversation: 2 +> [57313] “dancing: 2 +> [57314] “dear: 3 +> [57315] “dear,”: 1 +> [57316] “do: 6 +> [57317] “during: 1 +> [57318] “early: 1 +> [57319] “either: 1 +> [57320] “engage: 1 +> [57321] “ere: 1 +> [57322] “every: 2 +> [57323] “example,”: 1 +> [57324] “familiarity: 1 +> [57325] “father,”: 1 +> [57326] “few: 1 +> [57327] “for: 6 +> [57328] “forks: 1 +> [57329] “forms: 1 +> [57330] “four-in-hand,”: 1 +> [57331] “friendship: 1 +> [57332] “from: 3 +> [57333] “funny”: 2 +> [57334] “gentility: 1 +> [57335] “gentleman”: 1 +> [57336] “george: 1 +> [57337] “give: 1 +> [57338] “good: 2 +> [57339] “great: 1 +> [57340] “hail: 1 +> [57341] “hangers: 1 +> [57342] “hard-mouthed”: 1 +> [57343] “having: 2 +> [57344] “he: 6 +> [57345] “hector: 1 +> [57346] “here: 1 +> [57347] “hit”: 1 +> [57348] “honor: 1 +> [57349] “honor.”: 1 +> [57350] “however: 1 +> [57351] “i: 21 +> [57352] “i,”: 1 +> [57353] “if: 9 +> [57354] “in: 16 +> [57355] “is: 2 +> [57356] “it: 17 +> [57357] “i’ll: 1 +> [57358] “just: 1 +> [57359] “kind: 2 +> [57360] “kindness: 1 +> [57361] “lastly: 1 +> [57362] “later: 1 +> [57363] “let: 4 +> [57364] “letters: 1 +> [57365] “live: 1 +> [57366] “lord: 1 +> [57367] “lordly”: 1 +> [57368] “madam: 1 +> [57369] “make: 1 +> [57370] “may: 1 +> [57371] “me,”: 1 +> [57372] “meet”: 1 +> [57373] “merit: 1 +> [57374] “my: 4 +> [57375] “my.”: 1 +> [57376] “napoleon: 1 +> [57377] “navies”: 1 +> [57378] “never: 2 +> [57379] “no: 2 +> [57380] “not: 1 +> [57381] “nothing: 2 +> [57382] “now: 1 +> [57383] “of: 3 +> [57384] “off”: 1 +> [57385] “old: 1 +> [57386] “on: 1 +> [57387] “once: 1 +> [57388] “one: 1 +> [57389] “others: 1 +> [57390] “our: 4 +> [57391] “our”: 1 +> [57392] “pardon: 2 +> [57393] “perhaps: 1 +> [57394] “permit: 1 +> [57395] “philip: 1 +> [57396] “politeness: 1 +> [57397] “pooh: 1 +> [57398] “position: 1 +> [57399] “precision: 1 +> [57400] “presents: 1 +> [57401] “private: 1 +> [57402] “quantity: 1 +> [57403] “reading: 1 +> [57404] “religion,”: 1 +> [57405] “running: 1 +> [57406] “saul: 2 +> [57407] “say: 1 +> [57408] “seek: 1 +> [57409] “select: 1 +> [57410] “shall: 2 +> [57411] “sir: 2 +> [57412] “sit: 1 +> [57413] “smoking: 1 +> [57414] “so: 2 +> [57415] “sobriety: 1 +> [57416] “some: 3 +> [57417] “spots”: 1 +> [57418] “sticking: 1 +> [57419] “strict: 1 +> [57420] “taking: 1 +> [57421] “tandem”: 1 +> [57422] “the: 53 +> [57423] “then: 2 +> [57424] “there: 9 +> [57425] “these: 1 +> [57426] “this: 3 +> [57427] “though: 1 +> [57428] “to: 4 +> [57429] “tobacco: 1 +> [57430] “true: 1 +> [57431] “truth: 1 +> [57432] “turn: 1 +> [57433] “twice-told: 1 +> [57434] “two: 1 +> [57435] “upon: 2 +> [57436] “use: 1 +> [57437] “very: 1 +> [57438] “visiting,”: 1 +> [57439] “visits: 1 +> [57440] “waiter!”: 1 +> [57441] “we: 3 +> [57442] “week: 1 +> [57443] “well: 3 +> [57444] “were: 1 +> [57445] “what: 3 +> [57446] “whatever: 3 +> [57447] “when: 8 +> [57448] “while: 2 +> [57449] “whip.”: 1 +> [57450] “who: 1 +> [57451] “whoever: 1 +> [57452] “whom: 1 +> [57453] “will: 3 +> [57454] “you: 4 +> [57455] “your: 7 +> [57456] “yours: 3 +> [57457] “‘and: 1 +> [57458] “‘because: 1 +> [57459] “‘i: 1 +> [57460] “‘it: 1 +> [57461] “‘roll: 1 +> [57462] “‘steps,’: 1 +> [57463] “‘thank: 1 +> [57464] “‘that: 1 +> [57465] project: 3 +> [57466] the: 7 diff --git a/omp_out.txt b/omp_out.txt new file mode 100644 index 0000000..d4dd6e1 --- /dev/null +++ b/omp_out.txt @@ -0,0 +1,57468 @@ +Filename: raw_text_input/1399.txt.utf-8.txt, total words: 2658525 +[0] 0: 6 +[1] 0.0: 1 +[2] 0.00033: 1 +[3] 0.004064: 2 +[4] 0.01: 2 +[5] 0.02: 4 +[6] 0.0282: 1 +[7] 0.02905: 1 +[8] 0.03: 1 +[9] 0.03069: 1 +[10] 0.03215: 1 +[11] 0.0338: 1 +[12] 0.0353: 1 +[13] 0.04: 2 +[14] 0.04006: 1 +[15] 0.04715: 1 +[16] 0.05: 3 +[17] 0.0510: 1 +[18] 0.05305: 1 +[19] 0.05616: 1 +[20] 0.0610: 1 +[21] 0.064: 1 +[22] 0.06908: 1 +[23] 0.0929: 1 +[24] 0.1: 14 +[25] 0.10: 1 +[26] 0.13411: 1 +[27] 0.15: 5 +[28] 0.155: 1 +[29] 0.2: 3 +[30] 0.22: 1 +[31] 0.25: 4 +[32] 0.2572: 1 +[33] 0.2642: 1 +[34] 0.2705: 1 +[35] 0.283: 1 +[36] 0.3: 2 +[37] 0.305: 1 +[38] 0.346: 1 +[39] 0.35: 1 +[40] 0.3524: 1 +[41] 0.373: 1 +[42] 0.386: 1 +[43] 0.3937: 1 +[44] 0.4: 2 +[45] 0.405: 1 +[46] 0.4064: 1 +[47] 0.4536: 1 +[48] 0.5: 17 +[49] 0.5-1: 1 +[50] 0.5-10: 1 +[51] 0.50: 1 +[52] 0.505: 2 +[53] 0.5396: 1 +[54] 0.544: 1 +[55] 0.6: 1 +[56] 0.609: 1 +[57] 0.61: 1 +[58] 0.621: 1 +[59] 0.639: 1 +[60] 0.64: 1 +[61] 0.672: 1 +[62] 0.705: 1 +[63] 0.722: 1 +[64] 0.749: 1 +[65] 0.75: 2 +[66] 0.765: 1 +[67] 0.772: 1 +[68] 0.774: 1 +[69] 0.8: 2 +[70] 0.800: 1 +[71] 0.810: 1 +[72] 0.812: 1 +[73] 0.822: 1 +[74] 0.827: 1 +[75] 0.833: 1 +[76] 0.836: 1 +[77] 0.842: 1 +[78] 0.845: 1 +[79] 0.855: 1 +[80] 0.856: 1 +[81] 0.858: 1 +[82] 0.859: 1 +[83] 0.860: 1 +[84] 0.861: 2 +[85] 0.862: 1 +[86] 0.863: 1 +[87] 0.866: 1 +[88] 0.867: 3 +[89] 0.871: 3 +[90] 0.872: 1 +[91] 0.873: 3 +[92] 0.874: 1 +[93] 0.875: 2 +[94] 0.875-0.884: 1 +[95] 0.879-0.880: 1 +[96] 0.880: 1 +[97] 0.881: 1 +[98] 0.888: 1 +[99] 0.90: 1 +[100] 0.901: 1 +[101] 0.907: 1 +[102] 0.908: 1 +[103] 0.910: 1 +[104] 0.914: 1 +[105] 0.914-0.916: 2 +[106] 0.914-0.917: 2 +[107] 0.915-0.919: 1 +[108] 0.915-0.920: 1 +[109] 0.916-0.920: 2 +[110] 0.917: 1 +[111] 0.917-0.918: 1 +[112] 0.919: 1 +[113] 0.919-0.923: 1 +[114] 0.920-0.930: 1 +[115] 0.921-0.925: 1 +[116] 0.921-0.926: 1 +[117] 0.922-0.927: 1 +[118] 0.922-0.930: 1 +[119] 0.923-0.924: 1 +[120] 0.924-0.926: 1 +[121] 0.924-0.927: 2 +[122] 0.924-0.929: 1 +[123] 0.924-0.930: 1 +[124] 0.925-0.926: 2 +[125] 0.925-0.928: 1 +[126] 0.925-0.931: 1 +[127] 0.926: 1 +[128] 0.927-0.933: 1 +[129] 0.927-0.936: 1 +[130] 0.93: 1 +[131] 0.931-0.938: 2 +[132] 0.936-0.942: 1 +[133] 0.942-0.955: 1 +[134] 0.943-0.952: 1 +[135] 0.946: 1 +[136] 0.950: 1 +[137] 0.950-0.952: 1 +[138] 0.958-0.969: 1 +[139] 0.960: 1 +[140] 0.960-0.966: 1 +[141] 0.970: 1 +[142] 0.970-0.980: 1 +[143] 0.973: 1 +[144] 0.975: 1 +[145] 0.984: 1 +[146] 0.990-0.999: 1 +[147] 0.995: 1 +[148] 0.996: 2 +[149] 0.9980: 1 +[150] 0.9985: 1 +[151] 0.9990: 1 +[152] 0.9995: 1 +[153] 00000: 1 +[154] 00022: 1 +[155] 00043: 1 +[156] 00065: 1 +[157] 00087: 1 +[158] 001: 1 +[159] 00108: 1 +[160] 00130: 1 +[161] 00152: 1 +[162] 00173: 1 +[163] 0064: 1 +[164] 01: 1 +[165] 05616: 1 +[166] 07: 1 +[167] 0°: 3 +[168] 1: 278 +[169] 1'>and: 3 +[171] 1'>but: 1 +[172] 1'>came: 2 +[173] 1'>found: 1 +[174] 1'>her: 1 +[175] 1'>hid: 1 +[176] 1'>in: 1 +[177] 1'>laying: 1 +[178] 1'>menacing: 1 +[179] 1'>on: 1 +[180] 1'>only: 1 +[181] 1'>seeking: 1 +[182] 1'>smoldered: 1 +[183] 1'>sunk: 1 +[184] 1'>to: 1 +[185] 1'>turns: 1 +[186] 1'>woe: 1 +[187] 1,000: 2 +[188] 1,000,000: 1 +[189] 1,024: 1 +[190] 1,200: 3 +[191] 1,400: 1 +[192] 1,400-pound: 1 +[193] 1,600: 1 +[194] 1--iii: 3 +[195] 1--iv: 1 +[196] 1--vi: 3 +[197] 1--xi: 2 +[198] 1--xv: 1 +[199] 1-1/2: 3 +[200] 1-10: 5 +[201] 1-100: 1 +[202] 1-1000: 1 +[203] 1-11: 3 +[204] 1-12: 2 +[205] 1-13: 6 +[206] 1-14: 4 +[207] 1-16: 1 +[208] 1-17: 1 +[209] 1-18: 2 +[210] 1-2: 2 +[211] 1-21: 1 +[212] 1-23: 2 +[213] 1-3: 7 +[214] 1-3/8: 1 +[215] 1-30: 1 +[216] 1-34: 2 +[217] 1-4: 2 +[218] 1-45: 1 +[219] 1-5: 4 +[220] 1-6: 5 +[221] 1-7: 2 +[222] 1-8: 1 +[223] 1-9: 1 +[224] 1-hr: 1 +[225] 1-in: 3 +[226] 1.0: 4 +[227] 1.00: 2 +[228] 1.000: 1 +[229] 1.0000: 1 +[230] 1.0005: 1 +[231] 1.0010: 1 +[232] 1.0015: 1 +[233] 1.0020: 1 +[234] 1.0025: 1 +[235] 1.0026: 1 +[236] 1.0030: 1 +[237] 1.0035: 1 +[238] 1.0040: 1 +[239] 1.0053: 1 +[240] 1.007: 1 +[241] 1.0074: 1 +[242] 1.00914: 1 +[243] 1.01: 1 +[244] 1.010: 1 +[245] 1.0125: 1 +[246] 1.014: 1 +[247] 1.0147: 1 +[248] 1.016: 4 +[249] 1.0168: 1 +[250] 1.01829: 1 +[251] 1.0192: 1 +[252] 1.0218: 1 +[253] 1.022: 1 +[254] 1.0243: 1 +[255] 1.02743: 1 +[256] 1.029: 1 +[257] 1.0365: 1 +[258] 1.03658: 1 +[259] 1.037: 1 +[260] 1.045: 2 +[261] 1.04572: 1 +[262] 1.049: 1 +[263] 1.052: 1 +[264] 1.05513: 1 +[265] 1.057: 1 +[266] 1.062: 1 +[267] 1.0623: 1 +[268] 1.06454: 1 +[269] 1.067: 1 +[270] 1.07-1.08: 1 +[271] 1.07396: 1 +[272] 1.075: 2 +[273] 1.080: 1 +[274] 1.083: 1 +[275] 1.08337: 1 +[276] 1.088: 1 +[277] 1.09: 1 +[278] 1.091: 1 +[279] 1.09278: 1 +[280] 1.094: 1 +[281] 1.1: 2 +[282] 1.100: 1 +[283] 1.1006: 1 +[284] 1.101: 1 +[285] 1.102: 1 +[286] 1.10258: 1 +[287] 1.103: 1 +[288] 1.106: 1 +[289] 1.108: 1 +[290] 1.109: 1 +[291] 1.112: 1 +[292] 1.11238: 1 +[293] 1.114: 1 +[294] 1.116: 2 +[295] 1.117: 1 +[296] 1.120: 1 +[297] 1.1204: 1 +[298] 1.12219: 1 +[299] 1.1224: 1 +[300] 1.125: 2 +[301] 1.127: 1 +[302] 1.1304: 1 +[303] 1.13199: 1 +[304] 1.1326: 1 +[305] 1.134: 1 +[306] 1.135: 1 +[307] 1.1353: 1 +[308] 1.1377: 1 +[309] 1.141: 1 +[310] 1.14179: 1 +[311] 1.142: 1 +[312] 1.1437: 1 +[313] 1.1464: 1 +[314] 1.149: 1 +[315] 1.152: 2 +[316] 1.15200: 1 +[317] 1.155: 1 +[318] 1.156: 1 +[319] 1.157: 1 +[320] 1.160: 1 +[321] 1.162: 1 +[322] 1.16222: 1 +[323] 1.163: 1 +[324] 1.165: 1 +[325] 1.168: 1 +[326] 1.171: 2 +[327] 1.17243: 1 +[328] 1.1734: 1 +[329] 1.176: 1 +[330] 1.179: 1 +[331] 1.180: 1 +[332] 1.182: 1 +[333] 1.18265: 1 +[334] 1.1846: 1 +[335] 1.188: 1 +[336] 1.189: 1 +[337] 1.190: 2 +[338] 1.1923: 1 +[339] 1.19286: 1 +[340] 1.195: 2 +[341] 1.196: 1 +[342] 1.198: 1 +[343] 1.2: 3 +[344] 1.200: 1 +[345] 1.2004: 1 +[346] 1.203: 1 +[347] 1.20344: 1 +[348] 1.207: 1 +[349] 1.2085: 2 +[350] 1.210: 1 +[351] 1.2100: 2 +[352] 1.211: 1 +[353] 1.2112: 2 +[354] 1.2125: 2 +[355] 1.2137: 2 +[356] 1.21402: 1 +[357] 1.2142: 1 +[358] 1.2150: 2 +[359] 1.2165: 2 +[360] 1.2174: 1 +[361] 1.2177: 2 +[362] 1.2185: 1 +[363] 1.2190: 2 +[364] 1.220: 1 +[365] 1.2202: 2 +[366] 1.2217: 2 +[367] 1.2225: 1 +[368] 1.2230: 2 +[369] 1.2242: 2 +[370] 1.2245: 1 +[371] 1.22459: 1 +[372] 1.2255: 2 +[373] 1.2265: 1 +[374] 1.2270: 2 +[375] 1.2280: 2 +[376] 1.229: 1 +[377] 1.2295: 2 +[378] 1.2307: 2 +[379] 1.231: 1 +[380] 1.2322: 2 +[381] 1.2324: 1 +[382] 1.2335: 2 +[383] 1.235: 2 +[384] 1.2350: 2 +[385] 1.23517: 1 +[386] 1.2362: 2 +[387] 1.237: 2 +[388] 1.2375: 2 +[389] 1.2390: 2 +[390] 1.2400: 2 +[391] 1.241: 2 +[392] 1.2412: 2 +[393] 1.2427: 2 +[394] 1.243: 1 +[395] 1.2440: 2 +[396] 1.2450: 1 +[397] 1.2455: 2 +[398] 1.24575: 1 +[399] 1.2465: 2 +[400] 1.2467: 1 +[401] 1.2480: 2 +[402] 1.2490: 2 +[403] 1.25: 8 +[404] 1.250: 1 +[405] 1.2505: 2 +[406] 1.2515: 1 +[407] 1.252: 1 +[408] 1.2520: 2 +[409] 1.2532: 2 +[410] 1.2545: 2 +[411] 1.255: 1 +[412] 1.2560: 2 +[413] 1.25681: 1 +[414] 1.2575: 2 +[415] 1.258: 1 +[416] 1.2585: 2 +[417] 1.2600: 2 +[418] 1.261: 1 +[419] 1.2612: 2 +[420] 1.262: 1 +[421] 1.2625: 2 +[422] 1.263: 1 +[423] 1.2640: 2 +[424] 1.26787: 1 +[425] 1.274: 1 +[426] 1.27893: 1 +[427] 1.28: 1 +[428] 1.280: 1 +[429] 1.285: 1 +[430] 1.287: 1 +[431] 1.28999: 1 +[432] 1.296: 1 +[433] 1.297: 1 +[434] 1.3: 4 +[435] 1.30105: 1 +[436] 1.308: 2 +[437] 1.31261: 1 +[438] 1.320: 2 +[439] 1.32417: 1 +[440] 1.332: 1 +[441] 1.335: 1 +[442] 1.33573: 1 +[443] 1.345: 1 +[444] 1.34729: 1 +[445] 1.355: 2 +[446] 1.357: 1 +[447] 1.35885: 1 +[448] 1.370: 1 +[449] 1.37082: 1 +[450] 1.38279: 1 +[451] 1.383: 1 +[452] 1.386: 1 +[453] 1.390: 1 +[454] 1.39476: 1 +[455] 1.397: 1 +[456] 1.4: 3 +[457] 1.40673: 1 +[458] 1.410: 1 +[459] 1.41870: 1 +[460] 1.424: 1 +[461] 1.430: 1 +[462] 1.43104: 1 +[463] 1.436: 1 +[464] 1.438: 1 +[465] 1.44338: 1 +[466] 1.453: 1 +[467] 1.45573: 1 +[468] 1.468: 1 +[469] 1.46807: 1 +[470] 1.470: 1 +[471] 1.48041: 1 +[472] 1.483: 1 +[473] 1.49314: 1 +[474] 1.497: 1 +[475] 1.498: 1 +[476] 1.5: 7 +[477] 1.50: 2 +[478] 1.50588: 1 +[479] 1.514: 1 +[480] 1.51861: 1 +[481] 1.520: 1 +[482] 1.530: 1 +[483] 1.53135: 1 +[484] 1.54: 3 +[485] 1.540: 1 +[486] 1.54408: 1 +[487] 1.55728: 1 +[488] 1.558: 1 +[489] 1.563: 1 +[490] 1.570: 1 +[491] 1.57048: 1 +[492] 1.57079: 1 +[493] 1.580: 1 +[494] 1.597: 1 +[495] 1.5°: 1 +[496] 1.6: 3 +[497] 1.61: 1 +[498] 1.615: 1 +[499] 1.621: 1 +[500] 1.630: 1 +[501] 1.634: 1 +[502] 1.652: 1 +[503] 1.665: 1 +[504] 1.671: 1 +[505] 1.690: 1 +[506] 1.691: 1 +[507] 1.70: 1 +[508] 1.711: 1 +[509] 1.732: 1 +[510] 1.736: 1 +[511] 1.740: 1 +[512] 1.745: 1 +[513] 1.753: 1 +[514] 1.774: 1 +[515] 1.798: 1 +[516] 1.800: 1 +[517] 1.819: 1 +[518] 1.821: 1 +[519] 1.842: 1 +[520] 1.853: 1 +[521] 1.860: 1 +[522] 1.9: 1 +[523] 1.905: 1 +[524] 1.93: 1 +[525] 1.930: 1 +[526] 1.980: 1 +[527] 1.988: 1 +[528] 1.a: 19 +[529] 1.b: 19 +[530] 1.c: 38 +[531] 1.d: 19 +[532] 1.e: 38 +[533] 1.e.1: 95 +[534] 1.e.2: 19 +[535] 1.e.3: 19 +[536] 1.e.4: 19 +[537] 1.e.5: 19 +[538] 1.e.6: 19 +[539] 1.e.7: 57 +[540] 1.e.8: 76 +[541] 1.e.9: 57 +[542] 1.f: 19 +[543] 1.f.1: 19 +[544] 1.f.2: 19 +[545] 1.f.3: 85 +[546] 1.f.4: 19 +[547] 1.f.5: 19 +[548] 1.f.6: 19 +[549] 1/10: 1 +[550] 1/2: 2 +[551] 1/2°: 2 +[552] 1/3: 1 +[553] 1/8: 1 +[554] 10: 131 +[555] 10,000: 4 +[556] 10--annette: 1 +[557] 10-1: 1 +[558] 10-12: 1 +[559] 10-14: 2 +[560] 10-15: 1 +[561] 10-16: 1 +[562] 10-20: 1 +[563] 10-21: 2 +[564] 10-50: 1 +[565] 10-cc: 1 +[566] 10.0: 3 +[567] 10.0-12.25: 1 +[568] 10.00: 1 +[569] 10.06: 1 +[570] 10.10: 1 +[571] 10.177: 1 +[572] 10.18: 1 +[573] 10.2: 4 +[574] 10.22: 1 +[575] 10.3: 1 +[576] 10.34: 1 +[577] 10.37-12.37: 1 +[578] 10.37-14.75: 1 +[579] 10.4: 6 +[580] 10.41: 1 +[581] 10.5: 3 +[582] 10.5-10.6: 2 +[583] 10.5-10.8: 1 +[584] 10.6: 4 +[585] 10.7: 1 +[586] 10.755: 1 +[587] 10.76: 1 +[588] 10.85: 1 +[589] 10.9: 2 +[590] 10.90: 1 +[591] 10.962: 1 +[592] 10.97: 1 +[593] 100: 75 +[594] 100,000: 1 +[595] 100-1: 1 +[596] 100-101: 1 +[597] 100-107: 1 +[598] 100-110: 2 +[599] 100.0: 1 +[600] 100.4: 1 +[601] 100.8: 1 +[602] 1000: 9 +[603] 1000-1: 1 +[604] 10000: 4 +[605] 100°-120°: 1 +[606] 100°c: 1 +[607] 101: 8 +[608] 101-103: 1 +[609] 101.6: 1 +[610] 101.7-104: 1 +[611] 102: 5 +[612] 102.2: 1 +[613] 102.4: 1 +[614] 1020.54: 1 +[615] 10229.83: 1 +[616] 102°-103°: 1 +[617] 103: 7 +[618] 103-104: 1 +[619] 103.2: 1 +[620] 1035.95: 1 +[621] 10377.91: 1 +[622] 104: 9 +[623] 104-105: 1 +[624] 104-110: 1 +[625] 104.8: 1 +[626] 104°-111°: 1 +[627] 105: 13 +[628] 105-106: 1 +[629] 105-109: 1 +[630] 105-110: 1 +[631] 105-126: 1 +[632] 105.6: 1 +[633] 105.8: 1 +[634] 105°: 1 +[635] 106: 8 +[636] 106-113: 1 +[637] 106.4: 1 +[638] 107: 11 +[639] 107.2: 1 +[640] 107.6: 1 +[641] 108: 8 +[642] 108,000: 2 +[643] 108.8: 1 +[644] 109: 1 +[645] 109.4: 1 +[646] 109.6: 1 +[647] 10_a: 1 +[648] 10°: 11 +[649] 10°-12°: 1 +[650] 11: 39 +[651] 11-1/2: 1 +[652] 11-15: 1 +[653] 11-18: 2 +[654] 11-20: 1 +[655] 11-21: 1 +[656] 11-28: 1 +[657] 11.0: 3 +[658] 11.0-12.45: 1 +[659] 11.2: 2 +[660] 11.42: 1 +[661] 11.5: 2 +[662] 11.62-12.9: 1 +[663] 11.7: 2 +[664] 11.84: 1 +[665] 11.882: 1 +[666] 11.9: 1 +[667] 110: 7 +[668] 110-117: 6 +[669] 110-136: 1 +[670] 110-140: 1 +[671] 110-171: 1 +[672] 110-gal: 1 +[673] 110.4: 1 +[674] 110°: 4 +[675] 111: 7 +[676] 111.2: 2 +[677] 112: 5 +[678] 11254.99: 1 +[679] 113: 10 +[680] 113-118: 1 +[681] 114: 3 +[682] 114.8: 1 +[683] 11417.91: 1 +[684] 115: 7 +[685] 116: 8 +[686] 116.6: 1 +[687] 11691.23: 1 +[688] 117: 7 +[689] 117-125: 1 +[690] 118: 6 +[691] 118-120: 1 +[692] 118.4: 1 +[693] 118.9-120: 1 +[694] 11860.45: 1 +[695] 119: 5 +[696] 119.4: 1 +[697] 1192.61: 1 +[698] 11th: 1 +[699] 11°: 1 +[700] 11°-12°: 1 +[701] 12: 54 +[702] 12-14: 1 +[703] 12-16: 1 +[704] 12-24: 1 +[705] 12-30: 1 +[706] 12-48: 1 +[707] 12.0: 2 +[708] 12.00: 1 +[709] 12.198: 1 +[710] 12.2: 1 +[711] 12.2-12.8: 1 +[712] 12.5: 2 +[713] 12.64: 1 +[714] 12.74: 1 +[715] 12.75: 2 +[716] 12.8: 2 +[717] 12.90: 1 +[718] 12.969: 1 +[719] 120: 18 +[720] 120-121: 1 +[721] 120-129: 1 +[722] 120-130: 1 +[723] 120-140: 1 +[724] 120.2: 1 +[725] 120°: 4 +[726] 121: 9 +[727] 121-123: 1 +[728] 121.3-124: 1 +[729] 1210.61: 1 +[730] 122: 4 +[731] 1222: 1 +[732] 1228.82: 1 +[733] 1229: 1 +[734] 123: 6 +[735] 123-125: 1 +[736] 123.8: 1 +[737] 123°-128°: 1 +[738] 124: 3 +[739] 1245.41: 1 +[740] 125: 8 +[741] 125-126: 1 +[742] 125-140: 1 +[743] 125.6: 1 +[744] 1255: 1 +[745] 1257: 1 +[746] 126: 6 +[747] 126-134: 1 +[748] 126.5: 1 +[749] 1260: 4 +[750] 1266: 1 +[751] 127: 4 +[752] 127-140: 1 +[753] 127-164: 1 +[754] 127.4: 1 +[755] 1276.45: 1 +[756] 128: 11 +[757] 128-130: 1 +[758] 128°: 1 +[759] 128°-135°: 1 +[760] 129: 8 +[761] 129.2: 1 +[762] 12mo: 9 +[763] 12°: 3 +[764] 13: 37 +[765] 13--v: 1 +[766] 13-18: 1 +[767] 13-20: 1 +[768] 13-22: 1 +[769] 13-45: 1 +[770] 13.0: 4 +[771] 13.12-13.25: 2 +[772] 13.12-13.5: 1 +[773] 13.2-13.5: 1 +[774] 13.25: 1 +[775] 13.3: 1 +[776] 13.5: 4 +[777] 13.55: 1 +[778] 13.6: 2 +[779] 13.80: 1 +[780] 13.9: 1 +[781] 130: 17 +[782] 130-132: 1 +[783] 130-140: 1 +[784] 130°: 5 +[785] 131: 6 +[786] 13130.82: 1 +[787] 13152.64: 1 +[788] 1316.12: 1 +[789] 132: 4 +[790] 132-133: 1 +[791] 132.5-147: 1 +[792] 132.8: 1 +[793] 132°: 1 +[794] 133: 8 +[795] 133-134: 1 +[796] 13320.90: 1 +[797] 13343.02: 1 +[798] 134: 6 +[799] 134-137: 1 +[800] 134-141: 1 +[801] 134.6: 1 +[802] 135: 8 +[803] 135-6: 1 +[804] 135°: 1 +[805] 136: 7 +[806] 136.4: 1 +[807] 137: 6 +[808] 137-138: 1 +[809] 138: 5 +[810] 138-139: 1 +[811] 138.2: 1 +[812] 139: 5 +[813] 139-142: 1 +[814] 1399: 1 +[815] 1399-8.txt: 1 +[816] 1399-8.zip: 1 +[817] 13th: 3 +[818] 13°: 1 +[819] 14: 40 +[820] 14,—‘for: 1 +[821] 14--vii: 1 +[822] 14-16: 1 +[823] 14-18: 1 +[824] 14-21: 1 +[825] 14-23: 2 +[826] 14-24: 1 +[827] 14.0: 2 +[828] 14.085: 1 +[829] 14.1: 1 +[830] 14.278: 1 +[831] 14.37: 1 +[832] 14.4: 2 +[833] 14.42: 1 +[834] 14.5: 2 +[835] 14.80: 1 +[836] 140: 15 +[837] 140-170: 1 +[838] 140.25: 1 +[839] 140°: 3 +[840] 140°-145°: 1 +[841] 140°-160°: 1 +[842] 141: 3 +[843] 141.8: 1 +[844] 142: 4 +[845] 143: 4 +[846] 143-144: 1 +[847] 143.6: 1 +[848] 144: 10 +[849] 144,000: 1 +[850] 144-147: 2 +[851] 1449.61: 1 +[852] 145: 9 +[853] 145.4: 1 +[854] 1455.40: 1 +[855] 146: 4 +[856] 1461.40: 1 +[857] 14614.04: 1 +[858] 147: 5 +[859] 147-148: 1 +[860] 147.2: 1 +[861] 148: 5 +[862] 148-149: 1 +[863] 1482.56: 1 +[864] 14825.58: 1 +[865] 149: 5 +[866] 149-150: 1 +[867] 14°: 2 +[868] 15: 66 +[869] 15,000: 2 +[870] 15--and: 1 +[871] 15-17: 2 +[872] 15-18: 3 +[873] 15-19: 2 +[874] 15-20: 3 +[875] 15-21: 1 +[876] 15-22: 1 +[877] 15-24: 2 +[878] 15-40: 1 +[879] 15.0: 2 +[880] 15.13: 1 +[881] 15.2: 3 +[882] 15.25-16: 1 +[883] 15.43: 1 +[884] 15.48: 1 +[885] 15.5: 2 +[886] 15.5°: 1 +[887] 15.70: 1 +[888] 15.740: 1 +[889] 15.8: 1 +[890] 15.91: 1 +[891] 15/4: 1 +[892] 150: 23 +[893] 150,000: 2 +[894] 150-151: 1 +[895] 150-165: 1 +[896] 150-170: 1 +[897] 150-cc: 1 +[898] 150.8: 1 +[899] 1500: 19 +[900] 15006.66: 1 +[901] 1506: 1 +[902] 1507: 1 +[903] 150°: 9 +[904] 151: 4 +[905] 151-154: 1 +[906] 1513: 1 +[907] 152: 1 +[908] 152.5: 1 +[909] 152.6: 1 +[910] 15223.88: 1 +[911] 1523: 1 +[912] 153: 6 +[913] 1530.81: 1 +[914] 154: 3 +[915] 154-180: 1 +[916] 154.4: 1 +[917] 155: 5 +[918] 155-156: 1 +[919] 1553.92: 1 +[920] 1555: 3 +[921] 1555--second: 1 +[922] 1558: 3 +[923] 155°: 1 +[924] 156: 4 +[925] 156-159: 1 +[926] 156.2: 1 +[927] 157: 1 +[928] 157,000,000: 1 +[929] 1578: 1 +[930] 158: 3 +[931] 159: 3 +[932] 159-160: 1 +[933] 159.8: 1 +[934] 1590.14: 1 +[935] 1595.57: 1 +[936] 15y: 1 +[937] 15°: 7 +[938] 15°-22°: 1 +[939] 15°c: 1 +[940] 16: 41 +[941] 16,000: 1 +[942] 16-18: 1 +[943] 16-19: 1 +[944] 16-20: 1 +[945] 16-22--in: 1 +[946] 16-23: 1 +[947] 16-27: 1 +[948] 16-33: 1 +[949] 16-42: 1 +[950] 16-oz: 2 +[951] 16.0: 2 +[952] 16.2: 1 +[953] 16.39: 1 +[954] 16.5: 3 +[955] 16.5-16.9: 1 +[956] 16.50: 2 +[957] 16.670: 1 +[958] 16.77: 1 +[959] 16.8: 1 +[960] 160: 6 +[961] 160,000: 1 +[962] 160-161: 1 +[963] 160°: 14 +[964] 161: 2 +[965] 161-162: 1 +[966] 161.6: 1 +[967] 1610: 1 +[968] 1614.15: 1 +[969] 162: 4 +[970] 162,000,000: 1 +[971] 162-164: 1 +[972] 162.3: 1 +[973] 163: 2 +[974] 163.4: 1 +[975] 1637: 1 +[976] 1638.43: 1 +[977] 164: 3 +[978] 165: 8 +[979] 165-166: 1 +[980] 165-195: 1 +[981] 165-196: 2 +[982] 165.2: 1 +[983] 165.9: 1 +[984] 166: 6 +[985] 166-167: 1 +[986] 166-169: 1 +[987] 167: 3 +[988] 168: 5 +[989] 168.8: 1 +[990] 16882.49: 1 +[991] 1689-1695: 1 +[992] 1689.35: 1 +[993] 169: 2 +[994] 169-1/2: 1 +[995] 169-183: 1 +[996] 16°: 7 +[997] 16°-22°: 1 +[998] 17: 40 +[999] 17,015: 1 +[1000] 17-20: 2 +[1001] 17-22: 1 +[1002] 17-25: 1 +[1003] 17.0: 2 +[1004] 17.3: 1 +[1005] 17.5: 2 +[1006] 17.540: 1 +[1007] 17.5°: 1 +[1008] 17.6: 2 +[1009] 17.60: 1 +[1010] 17.67: 1 +[1011] 17.9: 1 +[1012] 170: 7 +[1013] 170-172: 1 +[1014] 170-178: 1 +[1015] 170.0: 1 +[1016] 170.6: 1 +[1017] 171: 1 +[1018] 1710: 1 +[1019] 17126.87: 1 +[1020] 172: 4 +[1021] 172-173: 1 +[1022] 172.4: 1 +[1023] 1728: 1 +[1024] 173: 4 +[1025] 174: 5 +[1026] 174-174.6: 1 +[1027] 174-175: 1 +[1028] 174.2: 1 +[1029] 175: 8 +[1030] 175-180: 1 +[1031] 175-190: 1 +[1032] 1750: 1 +[1033] 1750-1780: 1 +[1034] 176: 5 +[1035] 176-177: 1 +[1036] 177-181: 2 +[1037] 177.8: 1 +[1038] 1772.—he: 1 +[3301] affects: 4 +[3302] affetto: 2 +[3303] affianced: 6 +[3304] affinity: 7 +[3305] affirm: 8 +[3306] affirmative: 8 +[3307] affirmative--more: 1 +[3308] affirmative?—it's: 1 +[3435] again?—mitya: 1 +[4607] apartment: 11 +[4608] apartments: 24 +[4609] apathetic: 3 +[4610] apathy: 12 +[4611] ape: 13 +[4612] ape--who: 1 +[4613] aperture: 5 +[4614] apes: 2 +[4615] apex: 4 +[4616] apiary: 5 +[4617] apiece: 3 +[4618] aping: 1 +[4619] aplomb: 2 +[4620] apocalypse: 31 +[4621] apocalypses: 6 +[4622] apocalyptic: 11 +[4623] apocrypha: 1 +[4624] apocryphal: 3 +[4625] apollo: 2 +[4626] apollon: 57 +[4627] apollon's: 3 +[4628] apollos: 7 +[4629] apologetic: 8 +[4630] apologetically: 6 +[4631] apologetically--"pardon: 1 +[4632] apologetics: 5 +[4633] apologies: 9 +[4634] apologise: 9 +[4635] apologised: 2 +[4636] apologising: 5 +[4637] apologist: 1 +[4638] apologists: 2 +[4639] apologize: 38 +[4640] apologize.—he: 1 +[5157] asbestos: 7 +[5158] asbestos,[28: 1 +[5159] ascend: 10 +[5160] ascendant: 1 +[5161] ascendant--the: 1 +[5162] ascended: 22 +[5163] ascending: 11 +[5164] ascension: 2 +[5165] ascension--an: 1 +[5166] ascension??—you: 1 +[5698] away?—that: 1 +[7535] booty: 11 +[7536] boozed: 1 +[7537] borate: 1 +[7538] borates: 1 +[7539] borax: 10 +[7540] bordeaux: 5 +[7541] border: 15 +[7542] bordered: 13 +[7543] bordering: 4 +[7544] borderland: 1 +[7545] borders: 21 +[7546] bore: 83 +[7547] bore.i: 1 +[7615] both—at: 1 +[7616] both--in: 1 +[7617] both--the: 1 +[7618] both...i: 1 +[7619] both.—madame: 1 +[7733] boy?—to: 1 +[8447] buttoned: 14 +[8448] buttonhole: 2 +[8449] buttonholed: 1 +[8450] buttoning: 11 +[8451] buttons: 25 +[8452] buttons--red: 1 +[8453] buttress: 2 +[8454] buttressed: 2 +[8455] butts: 1 +[8456] butyric: 2 +[8457] buxhowden: 12 +[8458] buxhowden's: 1 +[8459] buxom: 3 +[8460] buy: 121 +[8461] buyer: 3 +[8462] buyers: 7 +[8463] buying: 24 +[8464] buying.by: 1 +[9285] center">fyodor: 1 +[9286] center">new: 1 +[9287] center">the: 2 +[9288] center">translated: 1 +[9289] center--destroy: 1 +[9290] center--the: 1 +[9291] centered: 15 +[9292] centering: 1 +[9293] centers: 1 +[9294] centi: 1 +[9295] centi-gram: 1 +[9296] centi-grams: 1 +[9297] centi-liter: 1 +[9298] centi-liters: 1 +[9299] centi-meter: 1 +[9300] centi-meters: 1 +[9301] centigrade: 8 +[9302] centigrams: 1 +[9303] centimeter: 16 +[9304] centimeters: 64 +[9305] centipede: 2 +[9306] central: 11 +[9307] centralization: 2 +[9308] centralizing: 1 +[9309] centre: 31 +[9310] centred: 1 +[9311] centres: 7 +[9312] centrifuging: 1 +[9313] centripetal: 1 +[9314] cents: 2 +[9315] centuries: 40 +[9316] centuries—since: 1 +[9317] centurion's: 2 +[9318] century: 93 +[9319] century--you: 1 +[9320] century-old: 2 +[9321] cependant: 1 +[9322] cephas: 2 +[9323] ceremonial: 15 +[9324] ceremonialists: 1 +[9325] ceremonies: 19 +[9326] ceremonious: 9 +[9327] ceremoniously: 3 +[9328] ceremony: 72 +[9329] ceremony--"by: 1 +[9330] ceremony--and: 1 +[9331] ceres: 2 +[9332] cerf: 1 +[9333] cerinthus: 5 +[9334] cerotic: 1 +[9335] certain: 859 +[9336] certain,emsphellipmdash.—just: 1 +[9766] childish: 93 +[9767] childish--or: 1 +[9768] childish--silly: 1 +[9769] childishly: 10 +[9770] childishness: 8 +[9771] childless: 3 +[9772] childlike: 38 +[9773] children: 813 +[9774] children—according: 1 +[9775] children—not: 1 +[9776] children's: 48 +[9777] children,--in: 1 +[9778] children,—as: 1 +[10723] comedian: 3 +[10724] comedies: 1 +[10725] comedy: 12 +[10726] comely: 8 +[10727] comer: 3 +[10728] comers: 5 +[10729] comes: 320 +[10730] comes...i: 1 +[10731] comes.—a: 1 +[11530] contempt: 183 +[11531] contempt's: 1 +[11532] contempt,?february: 1 +[13073] dated: 11 +[13074] dates: 14 +[13075] dating: 5 +[13076] dato: 1 +[13077] datum: 1 +[13078] daubed: 1 +[13079] daubing: 1 +[13080] daubs: 1 +[13081] daudet: 1 +[13082] daughter: 400 +[13083] daughter's: 50 +[13084] daughter--a: 1 +[13085] daughter--at: 1 +[13086] daughter--both: 1 +[13087] daughter--has: 1 +[13088] daughter--how: 1 +[13089] daughter--married: 1 +[13090] daughter--vera: 1 +[13091] daughter-in-law: 7 +[13092] daughter.)--"my: 1 +[13093] daughter.—a: 1 +[13477] defenders: 5 +[13478] defending: 32 +[13479] defends: 2 +[13480] defense: 72 +[13481] defense,....em: 2 +[13867] desc>horizontal: 1 +[13868] descend: 39 +[13869] descendant: 3 +[13870] descendants: 4 +[13871] descendants--that's: 1 +[13872] descended: 48 +[13873] descended--when: 1 +[13874] descending: 23 +[13875] descends: 4 +[13876] descent: 18 +[13877] descents: 1 +[13878] describe: 89 +[13879] described: 174 +[13880] describes: 10 +[13881] describing: 38 +[13882] descried: 6 +[13883] description: 40 +[13884] description--the: 1 +[13885] descriptions: 13 +[13886] descriptive: 3 +[13887] descry: 1 +[13888] desecrate: 3 +[13889] desecrating: 1 +[13890] desecration: 1 +[13891] desert: 23 +[13892] deserted: 76 +[13893] deserted--he: 1 +[13894] deserter: 2 +[13895] desertest: 1 +[13896] deserting: 8 +[13897] desertion: 5 +[13898] deserve: 50 +[13899] deserve--and: 1 +[13900] deserved: 28 +[13901] deservedly: 1 +[13902] deserves: 13 +[13903] deserving: 6 +[13904] desiccator: 3 +[13905] desideratum: 1 +[13906] design: 49 +[13907] designated: 7 +[13908] designation: 7 +[13909] designed: 12 +[13910] designedly: 1 +[13911] designs: 17 +[13912] designs--and: 1 +[13913] desirable: 30 +[13914] desire: 362 +[13915] desire--he: 1 +[13916] desire.allallowanotherany: 1 +[16449] emph>as: 1 +[16450] emph>authorityawfulbecause: 1 +[16453] emph>beyond—i: 1 +[16454] emph>communityescapingeven: 2 +[16457] emph>feignedfirst: 1 +[16459] emph>freehalfhappyhave: 1 +[16463] emph>hehe?herhimhim—that: 1 +[16468] emph>him,his: 1 +[16470] emph>hisi: 1 +[16472] emph>if: 1 +[16473] emph>in: 2 +[16474] emph>isknewlivingme!miraclemustmustmy: 1 +[16482] emph>mysterynot: 1 +[16484] emph>nowon: 4 +[16486] emph>onlyparticularlypityshesomethingsoon: 1 +[16492] emph>such: 1 +[16493] emph>that: 1 +[16494] emph>thatthistogethervirtuewaswho: 1 +[16500] emph>with: 1 +[16501] emph>youyour,.told: 1 +[17875] eyes—a: 1 +[17876] eyes—so: 1 +[17877] eyes,--by: 1 +[17878] eyes,you: 1 +[19039] fit—and: 1 +[19040] fit—with: 1 +[19041] fit--that: 1 +[19042] fit?—an: 1 +[19647] forgetting: 117 +[19648] forging: 2 +[19649] forgive: 460 +[19650] forgive--have: 1 +[19651] forgive--kind: 1 +[19652] forgive...remember: 1 +[19653] forgiven: 68 +[19654] forgiven—it's: 1 +[19660] forgiveness,—and: 1 +[20050] friendless: 2 +[20051] friendliest: 2 +[20052] friendliness: 15 +[20053] friendly: 167 +[20054] friends: 542 +[20055] friends,it: 1 +[20161] frowned--partly: 1 +[20162] frowning: 142 +[20163] frowning--give: 1 +[20164] frowningly: 2 +[20165] frowns: 5 +[20166] frowsy: 4 +[20167] froze: 8 +[20168] frozen: 81 +[20169] frozen,fyodor: 1 +[20347] fyodor's: 1 +[20348] fyodorovitch: 283 +[20349] fyodorovitch!—would: 1 +[20400] gained: 123 +[20401] gainer: 1 +[20402] gaining: 27 +[20403] gains: 15 +[20404] gainsaid: 2 +[20405] gainsay: 2 +[20406] gait: 20 +[20407] gaitered: 2 +[20408] gaiters: 13 +[20409] gaiters--still--if: 1 +[20410] gaius: 13 +[20411] gal: 22 +[20412] galacia: 1 +[20413] galant: 1 +[20414] galatia: 9 +[20415] galatian: 3 +[20416] galatians: 16 +[20417] galere: 1 +[20418] galicia: 1 +[20419] galilean: 13 +[20420] galilee: 13 +[20421] galilee;.—mitya: 1 +[20755] gentlemen??if: 1 +[22527] haste,book: 12 +[22716] head>chapter: 96 +[22717] head>contentsepiloguefootnotespart: 4 +[22721] head?—i: 1 +[23085] her?--but: 1 +[23086] her?--he: 1 +[23087] her?--the: 1 +[23088] her?i: 1 +[23192] herself)--"and: 1 +[23193] herself,--remember: 1 +[23194] herself,—yes: 1 +[23328] him!”: 1 +[23329] him"--john: 1 +[23330] him"--little: 1 +[23331] him—a: 3 +[23332] him—all: 1 +[23333] him—and: 3 +[23334] him—as: 1 +[23335] him—cursed: 1 +[23336] him—from: 1 +[23337] him—i: 2 +[23338] him—oh: 1 +[23339] him—settling: 1 +[23340] him—similar: 1 +[23341] him—so: 1 +[23342] him—thank: 1 +[23343] him—that: 1 +[23344] him—that's: 2 +[23345] him—there: 1 +[23346] him—thou: 1 +[23347] him—what: 1 +[23348] him—when: 1 +[23349] him—who: 1 +[23350] him—with: 1 +[23351] him'--i: 1 +[23352] him,--that's: 1 +[23353] him,--this: 1 +[23354] him,—that: 1 +[23356] him--"did: 1 +[23357] him--"if: 1 +[23358] him--"it: 1 +[23359] him--"that's: 1 +[23360] him--"what: 1 +[23361] him--a: 7 +[23362] him--ah: 1 +[23363] him--all: 4 +[23364] him--also: 1 +[23365] him--although: 1 +[23366] him--always: 1 +[23367] him--an: 3 +[23368] him--and: 19 +[23369] him--as: 7 +[23370] him--astonishment: 1 +[23371] him--at: 1 +[23372] him--because: 1 +[23373] him--before: 2 +[23374] him--believe: 1 +[23375] him--bitterly: 1 +[23376] him--blasted: 1 +[23377] him--but: 5 +[23378] him--by: 1 +[23379] him--can: 1 +[23380] him--consists: 1 +[23381] him--do: 1 +[23382] him--either: 1 +[23383] him--entered: 1 +[23384] him--entreat: 1 +[23385] him--especially: 1 +[23386] him--even: 1 +[23387] him--everything: 1 +[23388] him--evidently: 1 +[23389] him--expecting: 1 +[23390] him--felt: 1 +[23391] him--for: 5 +[23392] him--forget: 1 +[23393] him--from: 1 +[23394] him--had: 1 +[23395] him--he: 26 +[23396] him--heaven: 2 +[23397] him--heels: 1 +[23398] him--his: 2 +[23399] him--i: 5 +[23400] him--if: 2 +[23401] him--in: 4 +[23402] him--is: 1 +[23403] him--it: 2 +[23404] him--look: 1 +[23405] him--making: 1 +[23406] him--middle-aged: 1 +[23407] him--no: 1 +[23408] him--nobody: 1 +[23409] him--not: 4 +[23410] him--now: 2 +[23411] him--of: 1 +[23412] him--oh: 1 +[23413] him--one: 1 +[23414] him--or: 2 +[23415] him--passes: 1 +[23416] him--people: 2 +[23417] him--pierre--depriving: 1 +[23418] him--poor: 1 +[23419] him--rather: 1 +[23420] him--rostov: 1 +[23421] him--she: 3 +[23422] him--shook: 1 +[23423] him--so: 2 +[23424] him--supposing: 1 +[23425] him--that: 3 +[23426] him--the: 11 +[23427] him--there: 2 +[23428] him--thereby: 1 +[23429] him--this: 1 +[23430] him--those: 1 +[23431] him--though: 1 +[23432] him--to: 2 +[23433] him--upstairs: 1 +[23434] him--was: 1 +[23435] him--we: 1 +[23436] him--what: 1 +[23437] him--whether: 2 +[23438] him--which: 1 +[23439] him--who: 2 +[23440] him--whose: 1 +[23441] him--would: 2 +[23442] him--yet: 1 +[23443] him--you: 2 +[23444] him."--"you're: 1 +[23445] him....?—and: 1 +[23684] homage: 14 +[23685] homage.don't: 1 +[24291] hurriedly--"don't: 1 +[24292] hurriedly--just: 1 +[24293] hurry: 174 +[24294] hurry,?—the: 1 +[24487] i?--good: 1 +[24488] i?--shall: 1 +[24489] i?--what: 1 +[24490] i?—he: 1 +[25594] illegal: 2 +[25595] illegibly: 1 +[25596] illegitimate: 18 +[25597] illicit: 1 +[25598] illicita: 1 +[25599] illimitable: 1 +[25600] illiterate: 6 +[25601] illness: 165 +[25602] illness,,—he: 1 +[27191] is?--that: 1 +[27192] is?project: 1 +[27392] items: 7 +[27393] iteration: 1 +[27394] itineraries: 1 +[27395] itinerary: 1 +[27396] its: 2109 +[27397] itself: 546 +[27398] itself--death: 1 +[27399] itself--he: 2 +[27400] itself--how: 1 +[27401] itself--is: 1 +[27402] itself--were: 1 +[27403] itself--with: 1 +[27404] itur: 1 +[27405] iv: 111 +[27406] iv.-xx: 1 +[27407] iv.-xxi: 5 +[27408] iv—he: 1 +[27412] ivan—your: 1 +[27699] joking: 60 +[27700] joking,—a: 1 +[27773] joyful: 91 +[27774] joyful.?'tis: 1 +[28546] l>a: 3 +[28549] l>ach: 1 +[28550] l>all: 2 +[28551] l>and: 9 +[28552] l>astounding: 1 +[28553] l>at: 1 +[28554] l>be: 2 +[28555] l>bearing: 1 +[28556] l>beyond: 1 +[28557] l>but: 2 +[28558] l>ci-gît: 1 +[28559] l>distrust: 1 +[28560] l>each: 1 +[28561] l>fickle: 1 +[28562] l>filling: 1 +[28563] l>for: 1 +[28564] l>from: 1 +[28565] l>glory: 3 +[28566] l>he: 3 +[28567] l>her: 2 +[28568] l>i: 7 +[28569] l>if: 1 +[28570] l>in: 1 +[28571] l>it: 1 +[28572] l>it's: 1 +[28573] l>joy: 1 +[28574] l>kolbasnikov: 1 +[28575] l>life: 1 +[28576] l>lord: 1 +[28577] l>no: 1 +[28578] l>o: 1 +[28579] l>oh: 1 +[28580] l>on: 6 +[28581] l>our: 1 +[28582] l>pas: 1 +[28583] l>silenus: 1 +[28584] l>that: 2 +[28585] l>the: 14 +[28586] l>there: 2 +[28587] l>though: 1 +[28588] l>to: 5 +[28589] l>treacherous: 1 +[28590] l>troo-roo-roo-roo-roo: 2 +[28591] l>upon: 1 +[28592] l>weary: 1 +[28593] l>what: 1 +[28594] l>whatever: 1 +[28595] l>with: 2 +[28596] l>would: 5 +[28597] l>yes: 1 +[28598] l>yet: 1 +[28599] l>you: 1 +[28600] la: 137 +[28601] la-la: 1 +[28602] la—who: 1 +[30754] man"--"that: 1 +[30755] man—if: 1 +[30756] man—in: 1 +[30757] man—one: 1 +[30758] man—some: 1 +[30759] man—that's: 1 +[30760] man—the: 1 +[30761] man—there's: 1 +[30762] man's: 347 +[30763] man's,--...whether: 1 +[31351] me—but: 1 +[31352] me—from: 1 +[31353] me—he: 2 +[31354] me—hunger: 1 +[31355] me—i: 1 +[31356] me—me: 1 +[31357] me—not: 1 +[31358] me—one: 1 +[31359] me—that's: 2 +[31360] me—what: 1 +[31361] me's: 1 +[31362] me),—mitya: 1 +[31455] me—some: 1 +[31456] me?"--said: 1 +[31457] me?...no: 1 +[31458] me?...not: 1 +[31459] me?i'm: 1 +[32577] monk's: 11 +[32578] monk,your: 1 +[32587] mono: 1 +[32588] monochloride: 3 +[32589] monogram: 3 +[32590] monograms: 3 +[32591] monographs: 1 +[32592] monologue: 2 +[32593] monologues: 2 +[32594] monomach: 1 +[32595] monomania: 1 +[32596] monomania--he: 1 +[32597] monomaniac: 2 +[32598] monomaniacs: 2 +[32599] monopolies: 3 +[32600] monopolists: 1 +[32601] monopolize: 1 +[32602] monopolizes: 1 +[32603] monopoly: 1 +[32604] monosyllabic: 1 +[32605] monosyllables: 3 +[32606] monotonous: 22 +[32607] monotonously: 1 +[32608] monotony: 3 +[32609] monseigneur: 14 +[32610] monseigneur--not: 1 +[32611] monsieur: 297 +[32612] monsieur!--so: 1 +[32613] monsieur"--for: 1 +[32614] monsieur--besides: 1 +[32615] monsieur--i: 2 +[32616] monsieur--it: 1 +[32617] monster: 50 +[32618] monster!edition: 1 +[33270] n='001'/>—and: 1 +[35039] note..this: 1 +[36591] p_{2}o_{5: 1 +[36592] pa-pa: 1 +[36593] pace: 87 +[36594] pace--fretted: 1 +[36595] pace--rode: 1 +[36596] paced: 48 +[36597] paces: 185 +[36598] pacific: 1 +[36599] pacified: 6 +[36600] pacifier: 1 +[36601] pacify: 7 +[36602] pacifying: 4 +[36603] pacing: 52 +[36604] pack: 48 +[36605] pack-horse: 1 +[36606] pack-horses: 5 +[36607] package: 10 +[36608] packages: 10 +[36609] packages--tubs: 1 +[36610] packages--when: 1 +[36611] packed: 44 +[36612] packers: 1 +[36613] packet: 61 +[36614] packet--two: 1 +[36615] packets: 7 +[36616] packets--there: 1 +[36617] packhorse: 6 +[36618] packhorses: 2 +[36619] packing: 31 +[36620] packing--press: 1 +[36621] packmen: 1 +[36622] packs: 7 +[36623] pad: 13 +[36624] padded: 3 +[36625] padding: 1 +[36626] paddle: 4 +[36627] paddled: 1 +[36628] paddles: 1 +[36629] paddock: 5 +[36630] padlocks: 1 +[36631] pafnute: 8 +[36632] pagan: 8 +[36633] pagans: 3 +[36634] page: 126 +[36635] page's: 1 +[36636] page--and: 1 +[36637] page--it: 1 +[36638] page--the: 1 +[36639] pageant: 3 +[36640] pageants: 1 +[36641] pageboy: 1 +[36642] pages: 75 +[36643] pages--my: 1 +[36644] paget: 3 +[36645] pagets: 1 +[36646] pagodas: 1 +[36647] pagodes: 1 +[36648] pah: 5 +[36649] pahatov: 1 +[36650] pahlen: 1 +[36651] paid: 305 +[36652] paid"--her: 1 +[36653] pail: 4 +[36654] pailfuls: 1 +[36655] pails: 4 +[36656] pain: 179 +[36657] pain'--'where: 1 +[36658] pain--and: 1 +[36659] pain.,.a: 1 +[38271] place='foot'>gogol: 1 +[38272] place='foot'>grushenka.i.e: 2 +[38274] place='foot'>in: 1 +[38275] place='foot'>literally: 1 +[38276] place='foot'>probably: 1 +[38277] place='foot'>when: 1 +[38278] placed: 190 +[38279] placed.’”: 1 +[38280] places: 162 +[38281] places!’: 1 +[38282] places--there: 1 +[38283] placid: 11 +[38284] placidly: 5 +[38285] placing: 23 +[38286] plagiarism: 3 +[38287] plagiarism,he: 1 +[39077] praise--of: 1 +[39078] praised: 27 +[39079] praised.project: 1 +[40046] publishers: 6 +[40047] publishes: 1 +[40048] publishing: 7 +[40049] puce: 1 +[40050] puck: 1 +[40051] pucker: 1 +[40052] puckered: 20 +[40053] puckering: 10 +[40054] pudding: 11 +[40055] puddings: 3 +[40056] puddle: 5 +[40057] puddles: 5 +[40058] puerperal: 1 +[40059] puff: 10 +[40060] puff!"--and: 1 +[40061] puff!"--suddenly: 1 +[40062] puffed: 7 +[40063] puffed-out: 1 +[40064] puffing: 18 +[40065] puffs: 10 +[40066] puffy: 11 +[40067] pug: 2 +[40068] pugachev: 2 +[40069] pugilists: 1 +[40070] puhse: 1 +[40071] puis: 3 +[40072] puissant: 5 +[40073] puissent: 1 +[40074] pulcheria: 124 +[40075] puling: 4 +[40076] pull: 92 +[40077] pulled: 208 +[40078] pulled-up: 1 +[40079] pulled?the: 1 +[40129] punitive: 19 +[40130] puns: 4 +[40131] puns!.,and: 4 +[40272] q>dideverything: 1 +[40274] q>his: 1 +[40275] q>it: 1 +[40276] q>do: 1 +[40279] q>everything: 1 +[40280] q>in: 1 +[40281] q>is: 1 +[40282] q>it's: 1 +[40283] q>not: 1 +[40284] q>on: 1 +[40285] q>receiving: 1 +[40286] q>where,a: 65 +[40288] q>abandoned: 1 +[40289] q>abandoning: 1 +[40290] q>aberrationabout: 3 +[40292] q>absolute: 1 +[40293] q>absolutely: 1 +[40294] q>absolve: 1 +[40295] q>absurd,accidentally: 1 +[40297] q>according: 2 +[40298] q>accursed: 1 +[40299] q>ach: 6 +[40300] q>actionadventureafanasy,after: 3 +[40304] q>again: 1 +[40305] q>agrafena: 3 +[40306] q>ah: 64 +[40307] q>ah!ah,aha: 3 +[40310] q>aie: 5 +[40311] q>aie!akim: 1 +[40313] q>alexandr: 1 +[40314] q>alexey: 9 +[40315] q>alexey!alive: 1 +[40317] q>alive?all: 26 +[40319] q>all,allow: 13 +[40321] q>allowedalthough: 1 +[40323] q>alyosha: 21 +[40324] q>alyosha,am: 5 +[40326] q>among: 2 +[40327] q>amulet,an: 11 +[40329] q>and: 268 +[40330] q>andrey: 2 +[40331] q>anger!angry: 1 +[40333] q>animal: 1 +[40334] q>animal!another: 2 +[40336] q>answer: 1 +[40337] q>any: 2 +[40338] q>anyway: 2 +[40339] q>appealing: 1 +[40340] q>apples?appropriated: 1 +[40342] q>ardor: 1 +[40343] q>are: 20 +[40344] q>aren't: 3 +[40345] q>aristocratic: 1 +[40346] q>as: 31 +[40347] q>ascetics,ask: 2 +[40349] q>assured: 1 +[40350] q>at: 21 +[40351] q>away: 1 +[40352] q>babe.babebabes,babes.back-way,bah!be: 14 +[40359] q>bear: 1 +[40360] q>beast,beatbecause: 8 +[40363] q>before: 2 +[40364] q>begin: 2 +[40365] q>behind: 1 +[40366] q>behold: 1 +[40367] q>being: 1 +[40368] q>believe: 1 +[40369] q>bernard!besides: 4 +[40371] q>better: 3 +[40372] q>beware: 1 +[40373] q>birds: 1 +[40374] q>bless: 1 +[40375] q>blessed: 4 +[40376] q>blessing: 1 +[40377] q>blood: 1 +[40378] q>bodyguard,bored.both: 2 +[40381] q>bother: 1 +[40382] q>bottled: 1 +[40383] q>bowing: 1 +[40384] q>boy: 2 +[40385] q>boyboys: 2 +[40387] q>brat?bravo: 5 +[40389] q>bravo!bravo,bread,breathlessbring: 1 +[40394] q>brother: 9 +[40395] q>brother,brothers: 1 +[40397] q>buffoon!but: 215 +[40399] q>but—but: 1 +[40400] q>but,but!by: 7 +[40403] q>byelinsky: 1 +[40404] q>cain's: 1 +[40405] q>call: 2 +[40406] q>can: 23 +[40407] q>candles: 1 +[40408] q>capital: 1 +[40409] q>captain: 1 +[40410] q>captain'scaptain,captain.captaincards?casting: 2 +[40416] q>catch: 3 +[40417] q>certain: 2 +[40418] q>certaincertainly: 7 +[40420] q>champion: 1 +[40421] q>charming: 1 +[40422] q>chinese,chinesechrist: 1 +[40425] q>cigars: 1 +[40426] q>clearly: 1 +[40427] q>clericals,clericals.cleverer: 1 +[40430] q>climb: 1 +[40431] q>close: 1 +[40432] q>come: 29 +[40433] q>come,commanded,committal,committalcompliments: 1 +[40438] q>conclusive: 1 +[40439] q>conduct.confess: 1 +[40441] q>confessionconfound: 4 +[40443] q>confront: 1 +[40444] q>conscience: 1 +[40445] q>consider: 2 +[40446] q>consideration: 1 +[40447] q>constitute: 1 +[40448] q>consumptive-lookingcontemplating.contemplation.contemplativescontemporaryconventionalcould: 3 +[40455] q>couldn't: 1 +[40456] q>courteously: 2 +[40457] q>crazy: 4 +[40458] q>crazycreature,creature!criminal: 1 +[40462] q>criminalcriticizedcrush: 1 +[40465] q>crushed: 1 +[40466] q>curve: 1 +[40467] q>daddy: 1 +[40468] q>damaging: 1 +[40469] q>damn: 8 +[40470] q>damnation: 3 +[40471] q>damneddash: 1 +[40473] q>dead!dear: 10 +[40475] q>decide: 1 +[40476] q>decorated: 1 +[40477] q>defend: 1 +[40478] q>delighted: 1 +[40479] q>den: 1 +[40480] q>depart: 1 +[40481] q>desperate: 1 +[40482] q>devouring: 1 +[40483] q>did: 21 +[40484] q>didn't: 3 +[40485] q>die: 1 +[40486] q>disgrace.disgraceful,disgraceful.disgracefully,dishonorable.disputes: 1 +[40492] q>divide: 1 +[40493] q>dmitri: 10 +[40494] q>do: 64 +[40495] q>doctor: 2 +[40496] q>doctors: 1 +[40497] q>documentdoes: 3 +[40499] q>dogs: 1 +[40500] q>don't: 67 +[40501] q>double: 1 +[40502] q>doubledreadful: 1 +[40504] q>dreadfuldrink: 2 +[40506] q>dripping,drive: 4 +[40508] q>drunk: 1 +[40509] q>dutye—ech!each: 1 +[40512] q>earnestech: 4 +[40514] q>ech!eh: 1 +[40516] q>either: 2 +[40517] q>elderelders,eldersenough: 5 +[40521] q>enough!escapadeespecially: 1 +[40524] q>etcetera: 1 +[40525] q>ethics!ethics?european: 1 +[40528] q>europeanismeven: 9 +[40530] q>ever: 1 +[40531] q>every: 7 +[40532] q>everything: 9 +[40533] q>evil.ex-lieutenant: 1 +[40535] q>exactly: 1 +[40536] q>excellenciesexcellent: 1 +[40538] q>excellent,except: 3 +[40540] q>excuse: 15 +[40541] q>expecting: 1 +[40542] q>extraordinaryeye-witness.fairsfancy,faro: 1 +[40547] q>fascinated.fatfatal: 1 +[40550] q>fatal.fatalfather: 20 +[40553] q>father!father,fatherfathers: 1 +[40557] q>favoritefear: 1 +[40559] q>feed: 2 +[40560] q>feelingsfell: 1 +[40562] q>female: 1 +[40563] q>fenya: 2 +[40564] q>fib: 1 +[40565] q>fifty: 1 +[40566] q>filled: 1 +[40567] q>find: 1 +[40568] q>finish: 1 +[40569] q>first: 4 +[40570] q>first-class: 1 +[40571] q>five: 2 +[40572] q>follow: 2 +[40573] q>following: 1 +[40574] q>fool: 4 +[40575] q>fool!fool,foolish: 1 +[40578] q>foolishfoolsfor: 44 +[40581] q>for,forgive: 19 +[40583] q>four: 3 +[40584] q>fragrant: 1 +[40585] q>fraud?freefrigid: 1 +[40588] q>from: 22 +[40589] q>fundamental: 1 +[40590] q>fyodor: 5 +[40591] q>gaining: 1 +[40592] q>game.gentle: 1 +[40594] q>gentlemen: 15 +[40595] q>gentlemen!gentlemen!—he: 1 +[40597] q>gentlemen,get: 6 +[40599] q>girls.give: 19 +[40601] q>go: 18 +[40602] q>go!gogod: 15 +[40605] q>god's: 1 +[40606] q>going: 1 +[40607] q>gold: 1 +[40608] q>golden-haired: 1 +[40609] q>good: 21 +[40610] q>good,good-by: 17 +[40612] q>good-by!good-by.good-bygoodness: 2 +[40616] q>granting: 1 +[40617] q>great: 4 +[40618] q>grigory?grown: 1 +[40620] q>grown-up: 1 +[40621] q>grusha: 2 +[40622] q>grusha's: 1 +[40623] q>grushenka: 10 +[40624] q>grushenka,guilt!h'm: 4 +[40627] q>ha: 1 +[40628] q>had: 4 +[40629] q>hadn't: 1 +[40630] q>hallo: 1 +[40631] q>hallucinations: 1 +[40632] q>hand: 1 +[40633] q>hang: 5 +[40634] q>harassed: 1 +[40635] q>has: 4 +[40636] q>hasn't: 1 +[40637] q>hast: 1 +[40638] q>haunted: 1 +[40639] q>have: 24 +[40640] q>haven't: 4 +[40641] q>he: 176 +[40642] q>he'd: 2 +[40643] q>he'll: 5 +[40644] q>he's: 40 +[40645] q>healing.healingheaven: 1 +[40648] q>heaven,help: 2 +[40650] q>help!her: 2 +[40652] q>here: 21 +[40653] q>here!here's: 7 +[40655] q>here,hi: 1 +[40657] q>hideoushis: 15 +[40659] q>hitherto: 1 +[40660] q>hold: 6 +[40661] q>holy: 3 +[40662] q>holyhosannah.hosannahhot: 1 +[40666] q>how: 90 +[40667] q>how's: 2 +[40668] q>how?however: 1 +[40670] q>hullo: 1 +[40671] q>human: 1 +[40672] q>hurrah: 2 +[40673] q>hurrah!hush: 7 +[40675] q>hymni: 640 +[40677] q>i—he: 1 +[40678] q>i—i'll: 1 +[40679] q>i—there's: 1 +[40680] q>i'd: 4 +[40681] q>i'll: 56 +[40682] q>i'm: 33 +[40683] q>i'm—a: 1 +[40684] q>i've: 43 +[40685] q>ideas: 2 +[40686] q>if: 88 +[40687] q>ilusha: 14 +[40688] q>ilusha,imagine: 1 +[40690] q>impertinent: 1 +[40691] q>important: 1 +[40692] q>impossible: 1 +[40693] q>impossible!in: 51 +[40695] q>included: 2 +[40696] q>incomplete: 1 +[40697] q>indeed: 1 +[40698] q>indulging,indulging.infamous,infinitely: 1 +[40702] q>innocence: 1 +[40703] q>insolent: 1 +[40704] q>insultedintentionallyinvestigating: 1 +[40707] q>is: 38 +[40708] q>isn't: 1 +[40709] q>it: 91 +[40710] q>it'd: 1 +[40711] q>it'll: 3 +[40712] q>it's: 119 +[40713] q>ivan: 10 +[40714] q>ivan!ivan's: 3 +[40716] q>ivan,jadejealous: 1 +[40719] q>jews: 1 +[40720] q>join: 1 +[40721] q>joined: 1 +[40722] q>joking: 2 +[40723] q>judge: 2 +[40724] q>jump: 1 +[40725] q>jupiter: 1 +[40726] q>just: 10 +[40727] q>justicekalganov.karamazov: 2 +[40730] q>karamazov's: 1 +[40731] q>karamazov,karamazovkarl: 1 +[40734] q>katenkakaterina: 8 +[40736] q>katya: 3 +[40737] q>katya,kiddies,kids'kids,kidskindly: 2 +[40743] q>knew: 1 +[40744] q>know: 1 +[40745] q>knowest: 1 +[40746] q>kolya: 3 +[40747] q>krassotkin: 2 +[40748] q>krassotkin!krassotkin's: 1 +[40750] q>laceratedlacerating,laceration: 1 +[40753] q>laceration,laceration.lacerationlack: 1 +[40757] q>ladies,landlord: 1 +[40759] q>landowner—for: 1 +[40760] q>large,last: 3 +[40762] q>late: 1 +[40763] q>later: 1 +[40764] q>latin: 1 +[40765] q>laws: 1 +[40766] q>learning: 1 +[40767] q>leave: 5 +[40768] q>let: 28 +[40769] q>let's: 10 +[40770] q>let's,liberal: 1 +[40772] q>lies: 2 +[40773] q>life: 1 +[40774] q>light: 1 +[40775] q>like: 7 +[40776] q>likely: 1 +[40777] q>lise: 6 +[40778] q>lise!lise,listen: 27 +[40781] q>listen!listen,lite: 1 +[40784] q>lite?little: 3 +[40786] q>living: 1 +[40787] q>lock: 1 +[40788] q>look: 16 +[40789] q>looking: 1 +[40790] q>lord: 5 +[40791] q>lost!lots: 1 +[40793] q>love: 5 +[40794] q>loves: 1 +[40795] q>mad: 1 +[40796] q>madam: 5 +[40797] q>madam!madam,made: 1 +[40800] q>madman: 1 +[40801] q>maiden: 1 +[40802] q>make: 10 +[40803] q>making: 1 +[40804] q>mamma: 12 +[40805] q>mamma,mamma.mammamammy: 1 +[40809] q>manage: 1 +[40810] q>mania,manlymany: 2 +[40813] q>march: 1 +[40814] q>marched: 1 +[40815] q>marfa: 1 +[40816] q>marriage: 1 +[40817] q>master: 1 +[40818] q>material: 1 +[40819] q>mathematical: 1 +[40820] q>maximushkamay: 4 +[40822] q>maybe: 3 +[40823] q>me: 3 +[40824] q>meant: 1 +[40825] q>meek: 1 +[40826] q>men: 1 +[40827] q>mercy: 1 +[40828] q>message,metropolis,metropolis.metropolismiddle-aged: 1 +[40833] q>mihail: 1 +[40834] q>mind: 1 +[40835] q>mine: 1 +[40836] q>miracle: 1 +[40837] q>miracle,miraclemischiefmisha: 1 +[40841] q>misha,mistress: 1 +[40843] q>mitya: 13 +[40844] q>mitya'll: 1 +[40845] q>mitya,modestmokroe!moments.money: 1 +[40850] q>monk: 1 +[40851] q>monks: 1 +[40852] q>monster,monstermonths: 1 +[40855] q>more: 3 +[40856] q>morning: 1 +[40857] q>most: 5 +[40858] q>mother: 7 +[40859] q>mother's: 1 +[40860] q>mothermove: 1 +[40862] q>mr: 5 +[40863] q>much: 3 +[40864] q>murder: 1 +[40865] q>murderermushrooms?must: 1 +[40868] q>my: 43 +[40869] q>mystery.n—no: 2 +[40871] q>n—not: 1 +[40872] q>naked: 1 +[40873] q>nastya: 1 +[40874] q>native: 1 +[40875] q>naturally: 1 +[40876] q>naughtnaughty: 1 +[40878] q>nearly: 1 +[40879] q>never: 9 +[40880] q>nevertheless: 2 +[40881] q>new: 1 +[40882] q>newnews,nice: 1 +[40885] q>nice?nikolay: 1 +[40887] q>nikolay—nikolay: 1 +[40888] q>no: 160 +[40889] q>no—i: 1 +[40890] q>no,no.noble: 1 +[40893] q>nobody: 1 +[40894] q>none: 2 +[40895] q>nonsense: 2 +[40896] q>nonsense!nonsense?nor: 1 +[40899] q>not: 47 +[40900] q>nothing: 11 +[40901] q>nothing,nothing.nothing?now: 21 +[40905] q>now,nowadays: 1 +[40907] q>nuts?o: 4 +[40909] q>o—oh!obedienceobserve: 1 +[40912] q>och: 1 +[40913] q>of: 34 +[40914] q>officer'sofficer,official: 1 +[40917] q>oh: 122 +[40918] q>oho: 1 +[40919] q>old: 4 +[40920] q>on: 19 +[40921] q>once: 3 +[40922] q>one: 19 +[40923] q>only: 20 +[40924] q>open: 2 +[40925] q>open.or: 12 +[40927] q>othello: 1 +[40928] q>other: 1 +[40929] q>others: 1 +[40930] q>otherwise: 2 +[40931] q>ought: 2 +[40932] q>ought.our: 5 +[40934] q>over: 1 +[40935] q>p.s.—alyosha: 1 +[40936] q>paid: 1 +[40937] q>pan: 3 +[40938] q>pardon: 2 +[40939] q>parricide!parricide.parricidepater: 1 +[40943] q>pay: 1 +[40944] q>perezvon: 2 +[40945] q>perezvon,perezvon?perfectly: 1 +[40948] q>perhaps: 18 +[40949] q>perhaps,perhapspermission: 1 +[40952] q>philosophical: 1 +[40953] q>philosophy: 1 +[40954] q>phœbus: 1 +[40955] q>pierce: 1 +[40956] q>pierced: 1 +[40957] q>piousplanplease: 2 +[40960] q>poetry: 1 +[40961] q>police: 1 +[40962] q>polish: 1 +[40963] q>poor: 1 +[40964] q>porfiry: 1 +[40965] q>possessed: 2 +[40966] q>possessedpossessionpossibilities,possibly: 1 +[40970] q>pour: 1 +[40971] q>precisely: 5 +[40972] q>pride: 1 +[40973] q>prisoner: 2 +[40974] q>prisoner,provincial: 1 +[40976] q>psychology,public: 1 +[40978] q>publish: 1 +[40979] q>punish: 1 +[40980] q>pure: 1 +[40981] q>put: 3 +[40982] q>pyotr: 3 +[40983] q>quicker: 2 +[40984] q>quite: 9 +[40985] q>rake: 1 +[40986] q>rakitin: 2 +[40987] q>rakitin,ready,realism: 1 +[40990] q>really: 3 +[40991] q>really?rebellion: 1 +[40993] q>red's: 1 +[40994] q>regular: 1 +[40995] q>religion,remember: 1 +[40997] q>remember,restrain: 1 +[40999] q>returnsreverend: 1 +[41001] q>ridiculous: 1 +[41002] q>ridiculously: 1 +[41003] q>ring?rivalrob: 1 +[41006] q>romance,romancingromanticruined: 1 +[41010] q>run: 3 +[41011] q>sabotière.sacred: 1 +[41013] q>satan: 1 +[41014] q>save: 2 +[41015] q>scapegraceschemeschool: 1 +[41018] q>scolding: 1 +[41019] q>scoundrelsee: 3 +[41021] q>seemed: 1 +[41022] q>self-laceration,self-laceration—with: 1 +[41024] q>self-taught,send: 3 +[41026] q>sensible: 1 +[41027] q>sensual: 1 +[41028] q>serve: 2 +[41029] q>set: 1 +[41030] q>seven: 1 +[41031] q>sh-h: 1 +[41032] q>shall: 3 +[41033] q>shameful: 1 +[41034] q>shameful!shameless: 1 +[41036] q>she: 43 +[41037] q>she'll: 2 +[41038] q>she's: 19 +[41039] q>sheepish: 2 +[41040] q>should: 1 +[41041] q>shouldn't: 3 +[41042] q>show: 4 +[41043] q>shows: 1 +[41044] q>sicily: 1 +[41045] q>sign: 1 +[41046] q>signsignal,signalsignals: 1 +[41050] q>signals—what: 1 +[41051] q>silen.simply: 3 +[41053] q>sin: 1 +[41054] q>since: 6 +[41055] q>singlesir.sirsister,sit: 2 +[41060] q>sixthsmall: 1 +[41062] q>smashed: 1 +[41063] q>smerdyakov: 2 +[41064] q>smerdyakov!smurov: 1 +[41066] q>sne-gi-ryov?so: 52 +[41068] q>sojourn: 1 +[41069] q>some: 8 +[41070] q>something: 5 +[41071] q>soonsorry: 1 +[41073] q>sound: 1 +[41074] q>soup-maker!sovereign,speak: 5 +[41077] q>speak!speak,speculation,spent: 1 +[41081] q>splendid: 1 +[41082] q>splendid!spreadstampstand: 1 +[41086] q>stay: 17 +[41087] q>stay!stay,stay—he: 1 +[41090] q>steal: 1 +[41091] q>step: 1 +[41092] q>stepping: 1 +[41093] q>stinking: 1 +[41094] q>stolenstoop: 1 +[41096] q>stop: 5 +[41097] q>stop!strange: 1 +[41099] q>strangled: 1 +[41100] q>struggling: 1 +[41101] q>stupid: 1 +[41102] q>sublime: 1 +[41103] q>substantially: 1 +[41104] q>such: 8 +[41105] q>suffering: 1 +[41106] q>suggests: 1 +[41107] q>supercilious: 1 +[41108] q>suppose: 1 +[41109] q>sure: 1 +[41110] q>surely: 5 +[41111] q>suverinsweet: 2 +[41113] q>syracuse: 1 +[41114] q>take: 15 +[41115] q>taken: 1 +[41116] q>talk: 2 +[41117] q>tapped: 1 +[41118] q>tchizhov.tell: 25 +[41120] q>temptedten: 1 +[41122] q>terrible: 2 +[41123] q>thank: 10 +[41124] q>thanks: 6 +[41125] q>thanks,that: 91 +[41127] q>that's: 104 +[41128] q>that,thatthe: 150 +[41131] q>then: 29 +[41132] q>there: 49 +[41133] q>there!there'll: 1 +[41135] q>there's: 24 +[41136] q>these: 2 +[41137] q>they: 28 +[41138] q>they'll: 6 +[41139] q>they're: 7 +[41140] q>they've: 1 +[41141] q>think: 1 +[41142] q>thirty: 1 +[41143] q>this: 32 +[41144] q>those: 1 +[41145] q>thou: 9 +[41146] q>though: 14 +[41147] q>three: 9 +[41148] q>throw: 1 +[41149] q>till: 7 +[41150] q>timofey: 1 +[41151] q>to: 74 +[41152] q>to-day: 2 +[41153] q>to-morrow: 3 +[41154] q>to-morrow—to: 1 +[41155] q>to-morrow,told: 1 +[41157] q>torturers.townfolk: 1 +[41159] q>tragictreacherytremendously: 1 +[41162] q>triflestrifling: 1 +[41164] q>trifon: 4 +[41165] q>troy: 1 +[41166] q>truly,turned: 1 +[41168] q>tut: 1 +[41169] q>tut—tut—tut: 1 +[41170] q>tut—tut—tut—sanctimoniousness: 1 +[41171] q>two: 3 +[41172] q>ugh: 1 +[41173] q>um: 1 +[41174] q>unalterableunappreciateduncle: 1 +[41177] q>understand: 1 +[41178] q>unfair,unfeelingunfortunately: 1 +[41181] q>universal: 1 +[41182] q>unluckily: 1 +[41183] q>unseemlyuntil: 1 +[41185] q>upon: 6 +[41186] q>upsetvanka: 1 +[41188] q>verily: 1 +[41189] q>very: 14 +[41190] q>vile: 1 +[41191] q>virtuousvoltaire: 1 +[41193] q>wait: 13 +[41194] q>wait!wandering?was: 7 +[41197] q>wasn't: 1 +[41198] q>water: 1 +[41199] q>we: 47 +[41200] q>we'll: 5 +[41201] q>we're: 1 +[41202] q>we've: 3 +[41203] q>weep: 1 +[41204] q>weeping: 1 +[41205] q>welcome: 1 +[41206] q>well: 113 +[41207] q>well!well—and: 1 +[41209] q>well,well?were: 1 +[41212] q>what: 250 +[41213] q>what!what's: 24 +[41215] q>what?whatever: 3 +[41217] q>when: 20 +[41218] q>where: 31 +[41219] q>where's: 1 +[41220] q>where?whether: 2 +[41222] q>while: 1 +[41223] q>white: 1 +[41224] q>who: 33 +[41225] q>who's: 4 +[41226] q>whom: 4 +[41227] q>whose: 1 +[41228] q>why: 157 +[41229] q>why,why?wickedness,wifewill: 8 +[41234] q>wisp: 7 +[41235] q>with: 14 +[41236] q>without: 4 +[41237] q>witness: 1 +[41238] q>woman: 3 +[41239] q>women: 2 +[41240] q>won't: 3 +[41241] q>would: 12 +[41242] q>wouldn't: 1 +[41243] q>wrath: 1 +[41244] q>wretched: 1 +[41245] q>write: 3 +[41246] q>wrongedye—es,yes: 167 +[41249] q>yes,yes.—but: 1 +[41251] q>yes.yesterday: 1 +[41253] q>yet: 2 +[41254] q>you: 320 +[41255] q>you—can: 1 +[41256] q>you'd: 12 +[41257] q>you'll: 13 +[41258] q>you're: 27 +[41259] q>you've: 21 +[41260] q>young: 1 +[41261] q>your: 24 +[41262] q>zhutchka: 1 +[41263] qu: 1 +[41264] qu'elle: 3 +[41265] qu'est-ce: 1 +[41266] qu'il: 5 +[41267] qu'ils: 2 +[41268] qu'on: 2 +[41269] qu'un: 3 +[41270] qua: 1 +[41271] quack: 2 +[41272] quack,how: 1 +[41939] reason's: 1 +[41940] reason,(a)(b: 1 +[42620] rend='italic'>(c: 1 +[42621] rend='italic'>(d: 1 +[42622] rend='italic'>(e: 1 +[42623] rend='italic'>(h: 1 +[42624] rend='italic'>(i: 1 +[42625] rend='italic'>a: 2 +[42626] rend='italic'>ad: 1 +[42627] rend='italic'>ah: 2 +[42628] rend='italic'>an: 1 +[42629] rend='italic'>après: 1 +[42630] rend='italic'>arrière-penséeauto: 3 +[42632] rend='italic'>bon: 1 +[42633] rend='italic'>c'est: 7 +[42634] rend='italic'>candidecette: 1 +[42636] rend='italic'>chef-d'œuvrechevalier?compotecoup: 1 +[42640] rend='italic'>credode: 1 +[42642] rend='italic'>dead: 1 +[42643] rend='italic'>dixi.déshabilléevenings: 1 +[42646] rend='italic'>ffather: 1 +[42648] rend='italic'>ggatzukgeological: 1 +[42651] rend='italic'>gossipgott: 10 +[42653] rend='italic'>hamlet,hymn: 1 +[42655] rend='italic'>iciil: 2 +[42657] rend='italic'>j'ai: 1 +[42658] rend='italic'>je: 1 +[42659] rend='italic'>lajdak!lajdaklajdaklajdak!last: 1 +[42664] rend='italic'>le: 4 +[42665] rend='italic'>les: 1 +[42666] rend='italic'>lives: 5 +[42667] rend='italic'>long: 1 +[42668] rend='italic'>mamanmerci: 1 +[42670] rend='italic'>monsieur: 1 +[42671] rend='italic'>monsieurnaïveténoblessenotre: 1 +[42675] rend='italic'>of: 2 +[42676] rend='italic'>on: 1 +[42677] rend='italic'>onyeginpan'spanpanpan-father: 1 +[42682] rend='italic'>pan-mother: 1 +[42683] rend='italic'>panem: 1 +[42684] rend='italic'>panipanipani,panie: 1 +[42688] rend='italic'>panie!paniepanie!panie,panie?panienotchkapanovie!panoviepanovie!panovie—panovie,panovie?passonsplus: 2 +[42702] rend='italic'>poseursprofessions: 1 +[42704] rend='italic'>quelle: 1 +[42705] rend='italic'>qui: 1 +[42706] rend='italic'>quiproquo?recherchérobberss'il: 1 +[42710] rend='italic'>savantsine: 1 +[42712] rend='italic'>soiréesorrow: 1 +[42714] rend='italic'>spazieren.sum: 2 +[42716] rend='italic'>tableaux: 1 +[42717] rend='italic'>the: 9 +[42718] rend='italic'>tout: 1 +[42719] rend='italic'>tête-à-têteun: 1 +[42721] rend='italic'>universal: 1 +[42722] rend='italic'>vieilles: 1 +[42723] rend='italic'>vivos: 1 +[42724] rend='italic'>vonsohnvous: 1 +[42726] rend='italic'>à: 6 +[42727] rend='italic'>ça: 1 +[42728] rend='italic'>éliteétapeand: 1 +[42733] rend='post'>but: 1 +[42734] rend='post'>do: 1 +[42735] rend='post'>he: 1 +[42736] rend='post'>i: 4 +[42737] rend='post'>i'm: 1 +[42738] rend='post'>it: 1 +[42739] rend='post'>man: 1 +[42740] rend='post'>or: 1 +[42741] rend='post'>they: 1 +[42742] rend='post'>though: 1 +[42743] rend='post'>well: 1 +[42744] rend='pre: 1 +[42745] rend='pre'>and: 1 +[42746] rend='pre'>jesus: 2 +[42747] rend='pre'>when: 1 +[42748] rend='pre'>ah: 1 +[42750] rend='pre'>don't: 2 +[42751] rend='pre'>fathers: 1 +[42752] rend='pre'>four: 1 +[42753] rend='pre'>my: 1 +[42754] rend='pre'>quite: 1 +[42755] rend='pre'>the: 1 +[42756] rend='pre'>then: 1 +[42757] rend='pre'>what: 1 +[42758] rend='pre'>yes: 1 +[42759] rend='pre'>a: 1 +[42760] rend='pre'>ach: 1 +[42761] rend='pre'>allow: 1 +[42762] rend='pre'>and: 4 +[42763] rend='pre'>at: 2 +[42764] rend='pre'>but: 23 +[42765] rend='pre'>by: 2 +[42766] rend='pre'>do: 1 +[42767] rend='pre'>every: 1 +[42768] rend='pre'>first: 1 +[42769] rend='pre'>from: 2 +[42770] rend='pre'>gentlemen: 9 +[42771] rend='pre'>getting: 1 +[42772] rend='pre'>glory: 1 +[42773] rend='pre'>had: 1 +[42774] rend='pre'>he: 5 +[42775] rend='pre'>here: 3 +[42776] rend='pre'>his: 2 +[42777] rend='pre'>i: 13 +[42778] rend='pre'>i'll: 1 +[42779] rend='pre'>i'm: 1 +[42780] rend='pre'>i've: 1 +[42781] rend='pre'>it: 1 +[42782] rend='pre'>it's: 2 +[42783] rend='pre'>ivan: 1 +[42784] rend='pre'>judge: 1 +[42785] rend='pre'>just: 2 +[42786] rend='pre'>karamazov: 2 +[42787] rend='pre'>listen: 1 +[42788] rend='pre'>meanwhile: 1 +[42789] rend='pre'>moreover: 1 +[42790] rend='pre'>my: 2 +[42791] rend='pre'>no: 2 +[42792] rend='pre'>not: 2 +[42793] rend='pre'>now: 2 +[42794] rend='pre'>oh: 2 +[42795] rend='pre'>on: 1 +[42796] rend='pre'>one: 1 +[42797] rend='pre'>perhaps: 2 +[42798] rend='pre'>she: 2 +[42799] rend='pre'>so: 1 +[42800] rend='pre'>suddenly: 1 +[42801] rend='pre'>that: 2 +[42802] rend='pre'>the: 13 +[42803] rend='pre'>then: 3 +[42804] rend='pre'>there: 1 +[42805] rend='pre'>this: 3 +[42806] rend='pre'>we: 4 +[42807] rend='pre'>well: 1 +[42808] rend='pre'>what: 2 +[42809] rend='pre'>what's: 1 +[42810] rend='pre'>when: 1 +[42811] rend='pre'>why: 1 +[42812] rend='pre'>wild: 1 +[42813] rend='pre'>with: 2 +[42814] rend='pre'>yes: 5 +[42815] rend='pre'>yet: 1 +[42816] rend='pre'>you: 7 +[42817] rend='pre'>you're: 1 +[42818] rend='rule: 5 +[42819] rend='smallcaps'>biographical: 1 +[42820] rend='smallcaps'>d: 1 +[42821] rend='smallcaps'>fatal: 1 +[42822] rend='smallcaps'>k: 1 +[42823] rend='smallcaps'>lise.the: 1 +[42825] rend='smallcaps'>translator's: 1 +[42826] render: 34 +[42827] rendered: 32 +[42828] rendering: 8 +[42829] renders: 7 +[42830] rendezvous: 9 +[42831] rending: 8 +[42832] renegade: 6 +[42833] renew: 20 +[42834] renewal: 11 +[42835] renewed: 23 +[42836] renewing: 3 +[42837] renews: 1 +[42838] rennes: 1 +[42839] renounce: 27 +[42840] renounce—will: 1 +[42841] renounced: 14 +[42842] renouncements: 1 +[42843] renounces: 2 +[42844] renouncing: 9 +[42845] renovate: 1 +[42846] renovated: 1 +[42847] renovation: 1 +[42848] renown: 2 +[42849] renowned: 3 +[42850] rent: 53 +[42851] rent-free: 4 +[42852] rent-roll: 3 +[42853] rented: 6 +[42854] rentes: 1 +[42855] renting: 2 +[42856] rentrez: 1 +[42857] rents: 5 +[42858] renunciation: 6 +[42859] renunciation--and: 1 +[42860] reoccupation: 1 +[42861] reopen: 4 +[42862] reopened: 5 +[42863] reorganization: 3 +[42864] reorganized: 2 +[42865] reorganizing: 1 +[42866] rep: 1 +[42867] repacked: 1 +[42868] repacking: 1 +[42869] repaid: 10 +[42870] repainted: 1 +[42871] repair: 4 +[42872] repaired: 6 +[42873] repairing: 8 +[42874] repairs: 4 +[42875] repartee: 1 +[42876] repast: 1 +[42877] repay: 41 +[42878] repaying: 4 +[42879] repayment: 1 +[42880] repays: 1 +[42881] repeal: 25 +[42882] repealed: 1 +[42883] repealer: 3 +[42884] repealers: 2 +[42885] repeat: 175 +[42886] repeat)--solely: 1 +[42887] repeat,—that's: 1 +[44884] scoundrel's: 1 +[44885] scoundrel,—he: 1 +[45200] seer: 6 +[45201] seers: 1 +[45202] sees: 108 +[45203] sees,—do: 1 +[45437] sensibility: 8 +[45438] sensible: 97 +[45439] sensible.—that's: 1 +[46954] smutty: 1 +[46955] smyrna: 2 +[46956] snack: 1 +[46957] snacks: 1 +[46958] snaffle: 1 +[46959] snail: 1 +[46960] snail's: 1 +[46961] snails: 1 +[46962] snake: 5 +[46963] snake--she: 1 +[46964] snakes: 2 +[46965] snaking: 1 +[46966] snap: 18 +[46967] snapped: 45 +[46968] snapping: 10 +[46969] snare: 4 +[46970] snares: 7 +[46971] snaring: 1 +[46972] snarled: 12 +[46973] snarling: 5 +[46974] snatch: 21 +[46975] snatched: 88 +[46976] snatched--both: 1 +[46977] snatches: 7 +[46978] snatching: 28 +[46979] sneak: 3 +[46980] sneaked: 10 +[46981] sneaks: 1 +[46982] sneer: 41 +[46983] sneered: 11 +[46984] sneering: 17 +[46985] sneeringly: 1 +[46986] sneers: 4 +[46987] sneeze: 2 +[46988] sneeze.?an: 1 +[47188] sofa,,.ha: 1 +[47333] something—an: 1 +[47334] something—money: 1 +[47335] something—something: 1 +[47336] something's: 1 +[47337] something)--she: 1 +[47338] something--a: 1 +[47339] something--and: 2 +[47340] something--broth: 1 +[47341] something--for: 2 +[47342] something--i: 1 +[47343] something--just: 1 +[47344] something--looked: 1 +[47345] something--occupy: 1 +[47346] something--probably: 1 +[47347] something--some: 1 +[47348] something--something: 3 +[47349] something--whether: 2 +[47350] something-and: 1 +[47351] something.—the: 1 +[47388] son?—they're: 1 +[47805] spirited: 12 +[47806] spiritless: 5 +[47807] spirits: 150 +[47808] spirits--she: 1 +[47809] spirits?mamma: 1 +[49410] surroundings--fruit: 1 +[49411] surroundings.the: 1 +[49973] tavern—and: 1 +[49974] tavern—that: 1 +[49975] tavern-brawler: 1 +[49976] tavern-keeper: 3 +[49977] taverns: 25 +[49978] taverns—he: 1 +[49979] tawny: 1 +[49980] tax: 138 +[49981] tax-gatherer: 1 +[49982] taxed: 4 +[49983] taxes: 30 +[49984] taxes--some: 1 +[49985] taxing: 5 +[49986] taxpayer--though: 1 +[49987] taylor: 1 +[49988] tchagin: 1 +[49989] tcharskaya: 2 +[49990] tcharsky: 2 +[49991] tchatsky: 1 +[49992] tchebaroff: 19 +[49993] tchebaroff's: 1 +[49994] tchebarov: 6 +[49995] tchefirovka: 1 +[49996] tchermashnya: 30 +[49997] tchermashnya—and: 1 +[49998] tchermashnya—but: 1 +[49999] tchermashnya—why: 1 +[50000] tchermashnya,greatest: 1 +[50321] that—this: 1 +[50322] that—but: 2 +[50323] that—creature: 1 +[50324] that—creature,—that: 1 +[50485] them?and: 1 +[50507] then,the: 1 +[51335] titles: 7 +[51336] titlestmt: 2 +[51337] titrate: 18 +[51338] titrated: 13 +[51339] titrating: 3 +[51340] titration: 9 +[51341] titration.[32: 1 +[51342] titrations: 6 +[51343] titter: 1 +[51344] tittered: 4 +[51345] tittering: 1 +[51346] tittle: 1 +[51347] tittle-tattle: 2 +[51348] titular: 2 +[51349] titus: 13 +[51350] tiutkin: 3 +[51351] to: 72491 +[51352] to!--i: 1 +[51353] to!?28054—for: 1 +[53086] unfortunately: 28 +[53087] unfortunates: 5 +[53088] unfounded: 4 +[53089] unfrequent: 2 +[53090] unfrequented: 1 +[53091] unfrequently: 2 +[53092] unfriendly: 4 +[53093] unfrocked: 1 +[53094] unfulfilled: 1 +[53095] unfurnished: 1 +[53096] ungainly: 6 +[53097] ungenerous: 1 +[53098] ungenteel: 1 +[53099] ungentlemanly: 8 +[53100] unglazed: 4 +[53101] ungloved: 1 +[53102] ungovernable: 3 +[53103] ungraceful: 3 +[53104] ungracious: 4 +[53105] ungraciously: 5 +[53106] ungrammatical: 2 +[53107] ungrateful: 30 +[53108] ungratified: 1 +[53109] unguarded: 5 +[53110] unhampered: 1 +[53111] unhandy: 1 +[53112] unhappier: 2 +[53113] unhappily: 9 +[53114] unhappily!...february: 1 +[53844] value?.?only: 1 +[55861] winking: 21 +[55862] winner: 1 +[55863] winnheim: 1 +[55864] winning: 27 +[55865] winning--he: 1 +[55866] winning--seventeen: 1 +[55867] winnowed: 1 +[55868] winnowing: 1 +[55869] wins: 5 +[55870] winter: 155 +[55871] winter's: 3 +[55872] winter--this: 1 +[55873] winter-rye: 2 +[55874] wintering: 1 +[55875] winter’s: 2 +[55876] winton: 2 +[55877] wintry: 8 +[55878] wintzingerode: 7 +[55879] wintzingerode's: 2 +[55880] wintzingerodes: 2 +[55881] wipe: 27 +[55882] wiped: 43 +[55883] wipes: 1 +[55884] wiping: 43 +[55885] wire: 2 +[55886] wires: 2 +[55887] wischau: 6 +[55888] wisdom: 52 +[55889] wise: 78 +[55890] wise.’: 1 +[55891] wiseacres: 2 +[55892] wisely: 7 +[55893] wiser: 30 +[55894] wisest: 13 +[55895] wish: 564 +[55896] wish--always: 1 +[55897] wish--could: 1 +[55898] wish--that: 1 +[55899] wish--to: 1 +[55900] wish...except: 1 +[55901] wish?—that: 1 +[56042] woman??—and: 1 +[56857] you?—a: 1 +[56866] you?’: 2 +[56867] you?”: 2 +[56868] young: 1542 +[56869] young--accept: 1 +[56870] young--yield: 1 +[56871] young-looking: 6 +[56872] younger: 142 +[56873] youngest: 26 +[56874] youngish: 4 +[56875] youngster: 7 +[56876] youngsters: 1 +[56877] your: 6309 +[56878] your--if: 1 +[56879] your--let: 1 +[56880] your--your: 1 +[56881] yours: 188 +[56882] yours!"--he: 1 +[56883] yours! seq_out.txt +./omp "${args[@]}" > omp_out.txt +diff seq_out.txt omp_out.txt diff --git a/prob1.sh b/prob1.sh new file mode 100644 index 0000000..965b4bd --- /dev/null +++ b/prob1.sh @@ -0,0 +1,26 @@ +#!/bin/bash +#SBATCH -J exam_1 #Job name +#SBATCH -A ISAAC-UTK0414 +#SBATCH --partition=short +#SBATCH --nodes=4 +#SBATCH --ntasks-per-node=1#--ntasks is used when we want to define total number of processors +#SBATCH --cpus-per-task=2 +#SBATCH --output=debug1.log +#SBATCH --error=eprob1.log +#SBATCH --qos=short + +export OMP_NUM_THREADS=${SLURM_CPUS_PER_TASK} + +TEST_DIR="raw_text_input" + +args=() + +for file in "$TEST_DIR"/*; do + args+=("$file") +done + +module load openmpi/4.1.5-gcc + +srun -n 4 ./hybrid "${args[@]}" > hybrid_out.txt + + diff --git a/seq b/seq new file mode 100755 index 0000000..9c96ff6 Binary files /dev/null and b/seq differ diff --git a/seq_out.txt b/seq_out.txt new file mode 100644 index 0000000..fe18fc2 --- /dev/null +++ b/seq_out.txt @@ -0,0 +1,14856 @@ +Filename: raw_text_input/1399.txt.utf-8.txt, total words: 352661 +[0] 1: 10 +[1] 1.a: 1 +[2] 1.b: 1 +[3] 1.c: 2 +[4] 1.d: 1 +[5] 1.e: 2 +[6] 1.e.1: 5 +[7] 1.e.2: 1 +[8] 1.e.3: 1 +[9] 1.e.4: 1 +[10] 1.e.5: 1 +[11] 1.e.6: 1 +[12] 1.e.7: 3 +[13] 1.e.8: 4 +[14] 1.e.9: 3 +[15] 1.f: 1 +[16] 1.f.1: 1 +[17] 1.f.2: 1 +[18] 1.f.3: 4 +[19] 1.f.4: 1 +[20] 1.f.5: 1 +[21] 1.f.6: 1 +[22] 10: 9 +[23] 11: 8 +[24] 12: 10 +[25] 13: 9 +[26] 1399: 1 +[27] 1399-8.txt: 1 +[28] 1399-8.zip: 1 +[29] 14: 8 +[30] 15: 8 +[31] 1500: 1 +[32] 16: 8 +[33] 17: 8 +[34] 17,015: 1 +[35] 17th: 1 +[36] 18: 9 +[37] 18,038: 1 +[38] 1863: 1 +[39] 1864: 1 +[40] 19: 8 +[41] 2: 11 +[42] 20: 8 +[43] 2001: 1 +[44] 2005: 1 +[45] 2011: 1 +[46] 21: 7 +[47] 22: 7 +[48] 23: 7 +[49] 24: 6 +[50] 25: 6 +[51] 26: 6 +[52] 27: 6 +[53] 28: 7 +[54] 29: 6 +[55] 2nd: 3 +[56] 3: 12 +[57] 30: 7 +[58] 30th: 1 +[59] 31: 6 +[60] 32: 5 +[61] 33: 3 +[62] 34: 2 +[63] 35: 1 +[64] 36: 1 +[65] 4: 13 +[66] 4557: 1 +[67] 5: 12 +[68] 5,000: 1 +[69] 50: 1 +[70] 501(c)(3: 2 +[71] 596-1887: 1 +[72] 6: 10 +[73] 60: 1 +[74] 64-6221541: 1 +[75] 7: 10 +[76] 8: 9 +[77] 801: 1 +[78] 809: 1 +[79] 84116: 1 +[80] 9: 9 +[81] 90: 2 +[82] 99712: 1 +[83] a: 6177 +[84] a--a--a: 2 +[85] a-oo: 2 +[86] abandon: 6 +[87] abandoned: 11 +[88] abandonment: 1 +[89] abasement: 1 +[90] abashed: 3 +[91] abasing: 1 +[92] aber: 1 +[93] aberrations: 1 +[94] abide: 1 +[95] abilities: 3 +[96] ability: 5 +[97] abject: 1 +[98] able: 49 +[99] ablutions: 1 +[100] abnormally: 1 +[101] abode: 1 +[102] abolished: 1 +[103] abolished--there: 1 +[104] abolition: 1 +[105] about: 789 +[106] above: 67 +[107] abreast: 1 +[108] abroad: 62 +[109] abrupt: 4 +[110] abruptly: 8 +[111] abruptness: 1 +[112] absence: 10 +[113] absences: 1 +[114] absent: 3 +[115] absently: 2 +[116] absolute: 2 +[117] absolutely: 31 +[118] absolution: 3 +[119] absorb: 1 +[120] absorbed: 31 +[121] absorbing: 4 +[122] abstaining: 2 +[123] abstract: 2 +[124] abstractly: 2 +[125] absurd: 23 +[126] absurdities: 2 +[127] absurdity: 2 +[128] absurdly: 2 +[129] abundance: 6 +[130] abundant: 1 +[131] abuse: 3 +[132] abused: 1 +[133] abusing: 2 +[134] abyss: 2 +[135] acacia: 1 +[136] acacias: 3 +[137] academy: 3 +[138] accent: 6 +[139] accentuating: 1 +[140] accept: 11 +[141] acceptation: 1 +[142] accepted: 15 +[143] accepting: 4 +[144] accepts: 2 +[145] access: 10 +[146] accessed: 1 +[147] accessibility: 1 +[148] accessible: 1 +[149] accident: 5 +[150] accidental: 1 +[151] accidentally: 3 +[152] accompanied: 3 +[153] accompaniment: 7 +[154] accompany: 1 +[155] accompanying: 2 +[156] accomplice: 1 +[157] accomplish: 1 +[158] accomplished: 6 +[159] accord: 6 +[160] accordance: 17 +[161] according: 23 +[162] accordingly: 1 +[163] accosted: 2 +[164] account: 42 +[165] accounts: 14 +[166] accumulated: 1 +[167] accumulating: 1 +[168] accurate: 1 +[169] accurately: 1 +[170] accused: 3 +[171] accusing: 1 +[172] accustom: 1 +[173] accustomed: 5 +[174] ache: 6 +[175] ached: 4 +[176] achievement: 2 +[177] aching: 5 +[178] acknowledge: 4 +[179] acknowledged: 2 +[180] acknowledging: 2 +[181] acknowledgment: 1 +[182] acquaintance: 50 +[183] acquaintances: 28 +[184] acquainted: 10 +[185] acquired: 1 +[186] acquitted: 1 +[187] acre: 9 +[188] acres: 16 +[189] across: 48 +[190] act: 48 +[191] acted: 13 +[192] acting: 10 +[193] action: 42 +[194] actions: 6 +[195] active: 6 +[196] actively: 1 +[197] activity: 12 +[198] activity--to: 1 +[199] actors: 2 +[200] actress: 6 +[201] actresses: 1 +[202] acts: 4 +[203] actual: 12 +[204] actually: 18 +[205] acute: 2 +[206] acutely: 1 +[207] adam's: 1 +[208] adapting: 2 +[209] add: 5 +[210] added: 126 +[211] adding: 2 +[212] addition: 7 +[213] additional: 4 +[214] additions: 2 +[215] additions--was: 1 +[216] address: 11 +[217] addressed: 18 +[218] addresses: 1 +[219] addressing: 54 +[220] adept: 1 +[221] adhered: 4 +[222] adherence: 1 +[223] adherent: 3 +[224] adhering: 1 +[225] adjoined: 1 +[226] adjutant: 2 +[227] adjutant-general: 2 +[228] adjutant-generals: 1 +[229] adjutants: 1 +[230] administration: 1 +[231] administrative: 3 +[232] admirable_--everything: 1 +[233] admirably: 2 +[234] admiration: 10 +[235] admire: 3 +[236] admired: 10 +[237] admirer: 3 +[238] admiring: 20 +[239] admiringly: 2 +[240] admission: 2 +[241] admit: 40 +[242] admittance: 1 +[243] admitted: 8 +[244] admitting: 10 +[245] adopt: 3 +[246] adopted: 7 +[247] adopting: 3 +[248] adoration: 4 +[249] adored: 1 +[250] adorers: 2 +[251] adorn: 1 +[252] adorned: 4 +[253] adorning: 1 +[254] adornments: 1 +[255] adroit: 2 +[256] adroitly: 2 +[257] adultery: 7 +[258] advance: 7 +[259] advance-guards: 1 +[260] advance-money: 1 +[261] advanced: 6 +[262] advancement: 2 +[263] advances: 1 +[264] advancing: 1 +[265] advantage: 9 +[266] advantages: 11 +[267] adventures: 2 +[268] adverb: 2 +[269] adverbs: 1 +[270] advice: 24 +[271] advise: 12 +[272] advised: 11 +[273] adviser: 1 +[274] advising: 2 +[275] advocate: 3 +[276] advocated: 1 +[277] advocates: 2 +[278] advocating: 2 +[279] afar: 1 +[280] affability: 1 +[281] affable: 2 +[282] affair: 25 +[283] affairs: 36 +[284] affect: 10 +[285] affectation: 3 +[286] affected: 17 +[287] affectedly: 3 +[288] affecting: 5 +[289] affection: 15 +[290] affectionate: 8 +[291] affectionately: 5 +[292] affects: 2 +[293] affirmative: 3 +[294] affirmatively: 1 +[295] affirming: 1 +[296] afford: 1 +[297] afforded: 6 +[298] affords: 1 +[299] affront: 1 +[300] aflame: 1 +[301] afraid: 109 +[302] afresh: 3 +[303] after: 496 +[304] after--that: 1 +[305] after-dinner: 1 +[306] after...you: 1 +[307] aftermath: 1 +[308] afternoon: 5 +[309] afterthought: 1 +[310] afterwards: 37 +[311] afterwards--for: 1 +[312] agafea: 74 +[313] again: 441 +[314] again--because: 1 +[315] again--still: 1 +[316] against: 112 +[317] agaric: 1 +[318] age: 13 +[319] aged: 1 +[320] aged-looking: 1 +[321] agency: 3 +[322] agent: 1 +[323] ages: 12 +[324] aggravated: 1 +[325] aggravating: 1 +[326] aggressively: 1 +[327] agile: 3 +[328] agitate: 1 +[329] agitated: 13 +[330] agitating: 1 +[331] agitation: 10 +[332] ago: 51 +[333] agonies: 6 +[334] agonized: 1 +[335] agonizing: 9 +[336] agonizingly: 3 +[337] agony: 31 +[338] agree: 45 +[339] agreeable: 15 +[340] agreeably: 4 +[341] agreed: 33 +[342] agreeing: 6 +[343] agreement: 30 +[344] agrees: 1 +[345] agricultural: 3 +[346] agriculture: 27 +[347] agriculturist: 1 +[348] ah: 116 +[349] aha: 4 +[350] ahead: 11 +[351] ai: 1 +[352] aid: 11 +[353] aide-de-camp: 3 +[354] aim: 30 +[355] aim--and: 1 +[356] aimed: 6 +[357] aiming: 1 +[358] aimless: 1 +[359] aimlessly: 1 +[360] aims: 2 +[361] air: 64 +[362] airs: 2 +[363] aise: 1 +[364] ak: 1 +[365] akimbo: 1 +[366] akin: 10 +[367] alabin: 2 +[368] alarm: 8 +[369] alarmed: 7 +[370] alarming: 2 +[371] alas: 1 +[372] album: 6 +[373] albums: 1 +[374] alder: 3 +[375] alders: 1 +[376] alert: 5 +[377] alertly: 1 +[378] alertness: 1 +[379] alexander: 20 +[380] alexandrovitch: 524 +[381] alexandrovitch's: 47 +[382] alexandrovna: 197 +[383] alexandrovna's: 16 +[384] alexandrovna's...but: 1 +[385] alexandrovna,--and: 1 +[386] alexeitch: 2 +[387] alexey: 627 +[388] alexey's: 3 +[389] alexey--i: 1 +[390] alexeyevitch: 1 +[391] alexyevitch: 4 +[392] alias: 1 +[393] alien: 2 +[394] alienation: 2 +[395] alight: 1 +[396] alighted: 2 +[397] alights: 1 +[398] alike: 10 +[399] alike--by: 1 +[400] aline: 3 +[401] aline-nadine: 1 +[402] aliosha: 1 +[403] alioshka: 2 +[404] alioshka--i: 1 +[405] alive: 17 +[406] all: 1926 +[407] all's: 3 +[408] all--all: 1 +[409] all--he: 1 +[410] all--hideousness: 1 +[411] all--she: 2 +[412] all--that's: 1 +[413] all--the: 1 +[414] all--twenty: 1 +[415] all-conquering: 1 +[416] all-night: 1 +[417] alleviate: 1 +[418] alleviated: 1 +[419] alley: 1 +[420] allez: 1 +[421] alliance: 1 +[422] allons: 1 +[423] allotted: 2 +[424] allow: 41 +[425] allowance: 1 +[426] allowed: 17 +[427] allowing: 1 +[428] allows: 1 +[429] alloy: 1 +[430] allude: 2 +[431] alluded: 2 +[432] alluding: 1 +[433] allurements: 1 +[434] alluring: 1 +[435] allusion: 9 +[436] allusions: 3 +[437] ally: 1 +[438] almighty: 1 +[439] almond: 1 +[440] almond-oil: 3 +[441] almost: 122 +[442] aloft: 1 +[443] alone: 182 +[444] alone--me: 1 +[445] alone--without: 1 +[446] along: 115 +[447] alongside: 1 +[448] aloof: 1 +[449] aloofness: 2 +[450] aloud: 14 +[451] alphonse: 1 +[452] already: 154 +[453] already...it: 1 +[454] also: 42 +[455] also--a: 1 +[456] altar: 2 +[457] altar-rails: 2 +[458] alter: 4 +[459] alteration: 1 +[460] altered: 4 +[461] altering: 5 +[462] alternate: 2 +[463] alternately: 3 +[464] alternative: 2 +[465] alternatives: 1 +[466] although: 32 +[467] altogether: 37 +[468] always: 341 +[469] always--you: 1 +[470] am: 336 +[471] amalgamated: 2 +[472] amalgamating: 1 +[473] amalgamation: 2 +[474] amassing: 1 +[475] amateur: 3 +[476] amateurs: 2 +[477] amazed: 7 +[478] amazement: 8 +[479] amazing: 3 +[480] ambassador: 3 +[481] ambassador's: 15 +[482] amber: 1 +[483] ambition: 10 +[484] ambitious: 3 +[485] amble: 1 +[486] ambling: 1 +[487] ambulance: 1 +[488] amen: 1 +[489] amenable: 2 +[490] amend: 2 +[491] amending: 1 +[492] amendment: 1 +[493] america: 1 +[494] american: 3 +[495] ami: 3 +[496] amiability: 2 +[497] amiable: 8 +[498] amiably: 1 +[499] amicable: 1 +[500] amicably: 1 +[501] amid: 2 +[502] amidst: 1 +[503] amis: 3 +[504] amiss: 2 +[505] among: 66 +[506] amongst: 1 +[507] amount: 6 +[508] amounted: 3 +[509] amounting: 1 +[510] amounts: 1 +[511] amour: 1 +[512] ample: 1 +[513] amuse: 3 +[514] amused: 8 +[515] amusement: 10 +[516] amusements: 5 +[517] amuses: 3 +[518] amusing: 15 +[519] amusingly: 1 +[520] an: 792 +[521] analysis: 1 +[522] analyze: 1 +[523] analyzing: 1 +[524] ancestors: 2 +[525] anchor: 2 +[526] ancient: 3 +[527] and: 12898 +[528] and'--and: 1 +[529] and--as: 1 +[530] and--just: 1 +[531] and...i: 2 +[532] and...you: 1 +[533] andreevna: 5 +[534] andrey: 4 +[535] anecdote: 2 +[536] anecdotes: 1 +[537] anew: 1 +[538] angel: 8 +[539] angels: 1 +[540] anger: 21 +[541] angered: 4 +[542] anglaise: 4 +[543] angle: 1 +[544] angles: 1 +[545] angling: 3 +[546] angrily: 43 +[547] angry: 64 +[548] anguish: 5 +[549] animal: 8 +[550] animated: 1 +[551] animation: 1 +[552] anita: 2 +[553] anitchkin: 2 +[554] ankles: 2 +[555] anna: 742 +[556] anna's: 82 +[557] anna--excuse: 1 +[558] anna--he: 1 +[559] anna--who: 1 +[560] anna...nor: 1 +[561] annie: 6 +[562] annihilate: 1 +[563] annihilated: 3 +[564] announce: 11 +[565] announced: 18 +[566] announcement: 5 +[567] announces: 1 +[568] announcing: 2 +[569] annoy: 3 +[570] annoyance: 14 +[571] annoyances: 2 +[572] annoyed: 16 +[573] annoying: 5 +[574] annoys: 2 +[575] annushka: 22 +[576] annushka's: 4 +[577] anomalous: 2 +[578] another: 228 +[579] another--filled: 1 +[580] answer: 146 +[581] answered: 250 +[582] answered--"he: 1 +[583] answering: 21 +[584] answers: 15 +[585] antagonism: 5 +[586] antagonist: 2 +[587] antagonistic: 3 +[588] antediluvian: 1 +[589] anthropology: 1 +[590] anti-nihilism: 1 +[591] anti-nihilistic: 1 +[592] anticipate: 2 +[593] anticipated: 8 +[594] anticipating: 1 +[595] anticipation: 8 +[596] antidote: 1 +[597] antiques: 1 +[598] anxieties: 3 +[599] anxiety: 15 +[600] anxious: 40 +[601] anxiously: 3 +[602] any: 292 +[603] anybody: 7 +[604] anyhow: 2 +[605] anyone: 109 +[606] anyone's: 2 +[607] anyone--but: 1 +[608] anything: 217 +[609] anything's: 4 +[610] anything--he: 1 +[611] anything--only: 1 +[612] anyway: 53 +[613] anywhere: 18 +[614] anywhere--to: 1 +[615] apart: 55 +[616] apartments: 1 +[617] apathetic: 1 +[618] apathy: 2 +[619] ape: 1 +[620] apologetically: 1 +[621] apologies: 1 +[622] apologize: 2 +[623] apologized: 1 +[624] apologizing: 2 +[625] apology: 1 +[626] apostle: 1 +[627] apostolic: 1 +[628] appalled: 4 +[629] appalling: 1 +[630] apparent: 11 +[631] apparently: 19 +[632] apparently--you: 1 +[633] apparition: 1 +[634] appeal: 6 +[635] appealed: 1 +[636] appealing: 5 +[637] appeals: 2 +[638] appear: 15 +[639] appearance: 32 +[640] appearances: 4 +[641] appeared: 40 +[642] appearing: 3 +[643] appears: 5 +[644] appellation: 1 +[645] appetite: 6 +[646] appetites: 2 +[647] appetizer: 1 +[648] appetizers: 1 +[649] applauding: 1 +[650] applause: 2 +[651] appliances: 1 +[652] applicability: 1 +[653] applicable: 4 +[654] applicants: 1 +[655] application: 4 +[656] applications: 1 +[657] applied: 2 +[658] applies: 1 +[659] apply: 10 +[660] appointed: 6 +[661] appointment: 17 +[662] appointments: 4 +[663] apporte: 1 +[664] apportionment: 1 +[665] appreciate: 15 +[666] appreciated: 10 +[667] appreciates: 1 +[668] appreciation: 3 +[669] apprehend: 1 +[670] apprehending: 1 +[671] apprehension: 5 +[672] apprehensively: 1 +[673] approach: 13 +[674] approached: 14 +[675] approaches: 1 +[676] approaching: 25 +[677] appropriately: 2 +[678] approval: 7 +[679] approve: 7 +[680] approved: 6 +[681] approving: 4 +[682] approvingly: 3 +[683] appurtenances: 2 +[684] appétit--bonne: 1 +[685] apraksina: 1 +[686] apraksina's: 1 +[687] april: 1 +[688] apron: 4 +[689] apron-strings: 1 +[690] aprons: 1 +[691] apt: 2 +[692] aptitude: 2 +[693] apuhtin: 1 +[694] arable: 3 +[695] arbaty: 1 +[696] arbeitskur: 1 +[697] arbitration: 1 +[698] arbitrator: 2 +[699] arbor: 2 +[700] arcade: 3 +[701] arcades: 1 +[702] arch: 1 +[703] archdeacon: 1 +[704] arched: 1 +[705] arching: 1 +[706] architect: 11 +[707] architecture: 3 +[708] archive: 13 +[709] arcturus: 1 +[710] ardent: 5 +[711] ardently: 1 +[712] ardor: 2 +[713] are: 638 +[714] are...i've: 1 +[715] aren't: 20 +[716] argue: 6 +[717] argued: 3 +[718] argues: 1 +[719] arguing: 2 +[720] argument: 12 +[721] argumentative: 2 +[722] arguments: 19 +[723] arhip: 2 +[724] arise: 5 +[725] arisen: 10 +[726] arises: 4 +[727] arising: 5 +[728] aristocracy: 3 +[729] aristocrat: 3 +[730] aristocratic: 4 +[731] aristocrats: 1 +[732] arithmetic: 1 +[733] arithmetical: 2 +[734] arkadyevitch: 510 +[735] arkadyevitch's: 37 +[736] arkadyevitch--all: 1 +[737] arkadyevna: 53 +[738] arkadyevna's: 3 +[739] arkadyevna--she: 1 +[740] arm: 69 +[741] arm's: 1 +[742] arm--till: 1 +[743] arm-chair: 1 +[744] armchair: 10 +[745] armchairs: 1 +[746] armfuls: 1 +[747] armies: 1 +[748] armor: 2 +[749] armory: 1 +[750] arms: 57 +[751] arms--but: 1 +[752] army: 10 +[753] aromatic: 1 +[754] arose: 13 +[755] around: 13 +[756] arouse: 5 +[757] aroused: 20 +[758] arrange: 26 +[759] arranged: 23 +[760] arrangement: 11 +[761] arrangements: 8 +[762] arranges: 1 +[763] arranging: 12 +[764] array: 2 +[765] arrears: 1 +[766] arrest: 1 +[767] arresting: 1 +[768] arrival: 29 +[769] arrival--that: 1 +[770] arrive: 8 +[771] arrived: 36 +[772] arrivee: 1 +[773] arriving: 7 +[774] arrow: 1 +[775] arsenal: 1 +[776] arseny: 5 +[777] arseny's: 1 +[778] art: 31 +[779] art--people: 1 +[780] artful: 2 +[781] article: 25 +[782] article's: 1 +[783] articles: 2 +[784] articulate: 2 +[785] articulated: 7 +[786] articulating: 2 +[787] articulation: 1 +[788] artificial: 7 +[789] artificiality: 1 +[790] artillery: 4 +[791] artilleryman: 1 +[792] artilleryman's: 1 +[793] artillerymen: 1 +[794] artist: 22 +[795] artist's: 3 +[796] artistic: 1 +[797] artists: 2 +[798] artless--or: 1 +[799] artless-looking: 1 +[800] artlessness: 1 +[801] arts: 1 +[802] as: 2440 +[803] as--not: 1 +[804] as-is: 1 +[805] ascended: 2 +[806] ascending: 1 +[807] ascertained: 7 +[808] ascertaining: 1 +[809] ascii: 2 +[810] ascribe: 1 +[811] ascribed: 1 +[812] ash: 3 +[813] ashamed: 58 +[814] ashes: 2 +[815] ashtray: 1 +[816] asia: 1 +[817] aside: 11 +[818] ask: 119 +[819] askance: 2 +[820] asked: 320 +[821] askew: 1 +[822] asking: 47 +[823] asking--what: 1 +[824] asks: 5 +[825] aslant: 1 +[826] asleep: 50 +[827] asparagus: 3 +[828] aspect: 7 +[829] aspects: 6 +[830] aspen: 9 +[831] aspens: 3 +[832] assaulting: 1 +[833] assembled: 2 +[834] assemblies: 2 +[835] assembly: 3 +[836] assent: 4 +[837] assented: 14 +[838] assert: 2 +[839] asserted: 2 +[840] asserting: 1 +[841] assertion: 1 +[842] assertions: 1 +[843] asserts: 2 +[844] asseverations: 1 +[845] assez: 1 +[846] assiduity: 1 +[847] assiduously: 9 +[848] assiette: 1 +[849] assigned: 2 +[850] assigning: 1 +[851] assimilates: 1 +[852] assist: 5 +[853] assistance: 11 +[854] assistant: 5 +[855] assistant's: 1 +[856] assisted: 3 +[857] assisting: 3 +[858] associate: 1 +[859] associated: 19 +[860] association: 9 +[861] associations: 1 +[862] assume: 5 +[863] assumed: 9 +[864] assuming: 2 +[865] assumption: 3 +[866] assurance: 1 +[867] assurances: 1 +[868] assure: 4 +[869] assured: 4 +[870] assures: 1 +[871] assuring: 5 +[872] astafieva: 1 +[873] asthma: 1 +[874] astir: 1 +[875] astonished: 8 +[876] astonishing: 2 +[877] astonishment: 5 +[878] astounded: 3 +[879] astounding: 1 +[880] astoundingly: 1 +[881] astrachan: 1 +[882] astride: 1 +[883] astronomers: 2 +[884] astronomy: 1 +[885] astute: 1 +[886] asunder: 1 +[887] asylum: 1 +[888] at: 2927 +[889] ate: 7 +[890] atelier: 1 +[891] atheism: 1 +[892] athenian: 1 +[893] atlas: 1 +[894] atmosphere: 9 +[895] atone: 4 +[896] atoned: 1 +[897] atonement: 1 +[898] atones: 1 +[899] atrocities: 2 +[900] attach: 7 +[901] attache: 2 +[902] attached: 9 +[903] attaches: 1 +[904] attaching: 5 +[905] attachment: 2 +[906] attachments: 1 +[907] attaché: 2 +[908] attack: 10 +[909] attacked: 8 +[910] attacking: 8 +[911] attacks: 3 +[912] attain: 3 +[913] attained: 11 +[914] attaining: 1 +[915] attainment: 2 +[916] attempt: 14 +[917] attempted: 9 +[918] attempting: 3 +[919] attempts: 4 +[920] attend: 5 +[921] attendant: 2 +[922] attendants: 3 +[923] attended: 1 +[924] attending: 2 +[925] attention: 65 +[926] attentions--that: 1 +[927] attentive: 3 +[928] attentively: 19 +[929] attic: 1 +[930] attire: 11 +[931] attired: 3 +[932] attitude: 47 +[933] attract: 3 +[934] attracted: 12 +[935] attracting: 5 +[936] attraction: 11 +[937] attraction--this: 1 +[938] attractive: 16 +[939] attractiveness: 2 +[940] attributed: 1 +[941] au: 5 +[942] auch: 2 +[943] auction: 1 +[944] audacity: 1 +[945] audible: 6 +[946] audibly: 1 +[947] audience: 2 +[948] auditing: 2 +[949] august: 3 +[950] aunt: 17 +[951] aunt--i: 1 +[952] auntie: 1 +[953] aunts: 1 +[954] aunts--stiva: 1 +[955] ausgerechnet: 1 +[956] ausrechnen: 1 +[957] austrian: 1 +[958] author: 9 +[959] authoress?--not: 1 +[960] authorities: 8 +[961] authority: 11 +[962] authors: 1 +[963] automedon: 1 +[964] autumn: 10 +[965] available: 3 +[966] avenge: 2 +[967] avenieva...and: 1 +[968] avenue: 13 +[969] averse: 1 +[970] aversion: 9 +[971] averting: 1 +[972] avoid: 39 +[973] avoided: 20 +[974] avoiding: 9 +[975] avowal: 2 +[976] await: 2 +[977] awaited: 6 +[978] awaiting: 10 +[979] awaits: 3 +[980] awake: 8 +[981] awaken: 1 +[982] awakened: 2 +[983] aware: 83 +[984] away: 428 +[985] away--seemed: 1 +[986] away--you: 1 +[987] awe: 3 +[988] awe-inspiring: 1 +[989] awe-stricken: 1 +[990] awful: 78 +[991] awfully: 30 +[992] awfulness: 3 +[993] awkward: 20 +[994] awkwardly: 6 +[995] awkwardness: 10 +[996] awoke: 2 +[997] axes: 1 +[998] axles: 1 +[999] ay: 1 +[1000] aïe: 3 +[1001] b: 3 +[1002] babe: 2 +[1003] babes: 3 +[1004] baby: 77 +[1005] baby's: 10 +[1006] babylon: 3 +[1007] bach: 1 +[1008] bachelor: 10 +[1009] back: 356 +[1010] background: 7 +[1011] backs: 3 +[1012] backwards: 3 +[1013] backwater: 2 +[1014] bacon: 2 +[1015] bad: 71 +[1016] baden: 2 +[1017] badges: 1 +[1018] badly: 15 +[1019] baffled: 1 +[1020] bag: 23 +[1021] baggage: 3 +[1022] baggy: 1 +[1023] bags: 2 +[1024] bailiff: 34 +[1025] bailiff's: 5 +[1026] bailiffs: 1 +[1027] baker's: 2 +[1028] bakers: 1 +[1029] balance: 6 +[1030] balancing: 1 +[1031] balcony: 11 +[1032] bald: 13 +[1033] baldly: 1 +[1034] ball: 45 +[1035] ballet: 7 +[1036] ballot: 6 +[1037] balloted: 2 +[1038] ballroom: 9 +[1039] balls: 20 +[1040] baltic: 1 +[1041] balustrade: 3 +[1042] band: 6 +[1043] bandaged: 3 +[1044] bandages: 1 +[1045] bands: 2 +[1046] bang: 2 +[1047] banging: 1 +[1048] bank: 12 +[1049] banker: 1 +[1050] bankers...they've: 1 +[1051] banking: 5 +[1052] banks: 4 +[1053] banner: 1 +[1054] banners: 1 +[1055] banquet: 1 +[1056] banter: 1 +[1057] bantering: 3 +[1058] bar: 4 +[1059] barbarism: 3 +[1060] barbarity: 1 +[1061] barbarous: 2 +[1062] barber: 4 +[1063] bare: 32 +[1064] bare-legged: 1 +[1065] bared: 1 +[1066] barely: 1 +[1067] bargain: 1 +[1068] bargaining: 1 +[1069] bargeman: 1 +[1070] baritone: 1 +[1071] bark: 5 +[1072] bark's: 1 +[1073] barking: 1 +[1074] barn: 10 +[1075] barns: 2 +[1076] baroness: 12 +[1077] baroness's: 2 +[1078] baronetcy: 1 +[1079] barrel: 4 +[1080] barricade: 3 +[1081] barrier: 15 +[1082] barriers: 1 +[1083] bars: 3 +[1084] barters: 1 +[1085] bartnyansky: 5 +[1086] bartnyansky's: 1 +[1087] base: 12 +[1088] based: 6 +[1089] baseless: 1 +[1090] basement: 1 +[1091] baseness: 5 +[1092] basest: 2 +[1093] bashful: 1 +[1094] bashfulness: 1 +[1095] basin: 1 +[1096] basing: 1 +[1097] basis: 4 +[1098] basked: 1 +[1099] basket: 4 +[1100] basketful: 1 +[1101] baskets: 1 +[1102] basking: 1 +[1103] bass: 7 +[1104] bast: 4 +[1105] bat's: 1 +[1106] bateau: 1 +[1107] bath: 13 +[1108] bathe: 3 +[1109] bathed: 2 +[1110] bathing: 8 +[1111] bathing-place: 3 +[1112] bathing-shed: 2 +[1113] bathroom: 2 +[1114] baths: 2 +[1115] batiste: 2 +[1116] battering: 1 +[1117] battle: 4 +[1118] battre: 1 +[1119] bay: 4 +[1120] be: 1794 +[1121] be--you: 1 +[1122] be...forgive: 1 +[1123] be...i: 1 +[1124] beadle: 2 +[1125] beak: 1 +[1126] beam: 1 +[1127] beamed: 9 +[1128] beaming: 19 +[1129] beams: 3 +[1130] beans: 1 +[1131] bear: 40 +[1132] bear-hunting: 1 +[1133] bear-hunts: 1 +[1134] beard: 17 +[1135] bearded: 1 +[1136] beardless: 2 +[1137] bearing: 6 +[1138] bearings: 1 +[1139] bears: 7 +[1140] bearskin: 1 +[1141] beast: 10 +[1142] beastly: 2 +[1143] beasts: 9 +[1144] beat: 8 +[1145] beaten: 9 +[1146] beating: 10 +[1147] beats: 1 +[1148] beau-frère: 2 +[1149] beaufrère: 1 +[1150] beaufrère's: 1 +[1151] beaumarchais: 1 +[1152] beautiful: 25 +[1153] beautifully: 1 +[1154] beautify: 1 +[1155] beauty: 43 +[1156] beaux-frères: 1 +[1157] beaver: 1 +[1158] became: 55 +[1159] because: 249 +[1160] because--excuse: 1 +[1161] because...proud: 1 +[1162] beckoned: 5 +[1163] beckoning: 2 +[1164] become: 72 +[1165] becomes: 2 +[1166] becoming: 17 +[1167] bed: 61 +[1168] bedchamber: 8 +[1169] bedroom: 36 +[1170] beds: 6 +[1171] bedside: 6 +[1172] bedsores: 2 +[1173] bedstead: 2 +[1174] bedtime: 1 +[1175] bee: 12 +[1176] bee-garden: 1 +[1177] bee-house: 2 +[1178] bee-keeper: 2 +[1179] bee-keeping: 2 +[1180] beef: 4 +[1181] beef's: 1 +[1182] beefsteak: 3 +[1183] beehives: 2 +[1184] been: 1061 +[1185] been...not: 1 +[1186] beer: 1 +[1187] beer-drinking: 1 +[1188] bees: 10 +[1189] beethoven: 1 +[1190] beetle: 4 +[1191] beetle's: 1 +[1192] befall: 1 +[1193] befallen: 1 +[1194] befell: 1 +[1195] before: 506 +[1196] before--now: 1 +[1197] before--that: 1 +[1198] beforehand: 20 +[1199] beg: 42 +[1200] began: 365 +[1201] beggar: 4 +[1202] beggars: 1 +[1203] begged: 25 +[1204] begging: 7 +[1205] begier: 1 +[1206] begin: 48 +[1207] beginning: 101 +[1208] begins: 9 +[1209] begot: 1 +[1210] begs: 1 +[1211] begun: 48 +[1212] behalf: 2 +[1213] behave: 5 +[1214] behaved: 9 +[1215] behaving: 7 +[1216] behavior: 12 +[1217] beheld: 3 +[1218] behind: 106 +[1219] behold: 3 +[1220] behold--anticipation: 1 +[1221] beholders: 1 +[1222] being: 256 +[1223] being--he's: 1 +[1224] beings: 4 +[1225] beist: 1 +[1226] belated: 1 +[1227] belief: 3 +[1228] beliefs: 7 +[1229] beliefs--he: 1 +[1230] believe: 149 +[1231] believed: 46 +[1232] believer: 7 +[1233] believers: 3 +[1234] believes: 1 +[1235] believing: 7 +[1236] bell: 28 +[1237] belle: 2 +[1238] belle-soeur: 5 +[1239] bellies: 1 +[1240] bellowed: 1 +[1241] bells: 5 +[1242] belly: 4 +[1243] belong: 6 +[1244] belonged: 14 +[1245] belonging: 8 +[1246] belongings: 2 +[1247] beloved: 5 +[1248] below: 32 +[1249] belt: 10 +[1250] belted: 1 +[1251] belts: 1 +[1252] bench: 8 +[1253] benches: 1 +[1254] bend: 3 +[1255] bending: 25 +[1256] bends: 1 +[1257] beneath: 1 +[1258] benediction: 5 +[1259] benefit: 15 +[1260] benevolent: 1 +[1261] bent: 43 +[1262] bentham: 1 +[1263] benumbing: 1 +[1264] berkoot: 2 +[1265] berkoshov: 1 +[1266] berry: 1 +[1267] bertenev's: 1 +[1268] berth: 2 +[1269] berthe: 4 +[1270] berthe's: 1 +[1271] berths: 1 +[1272] beseech: 7 +[1273] beseeches: 1 +[1274] beseeching: 2 +[1275] beside: 86 +[1276] besides: 68 +[1277] besought: 4 +[1278] best: 100 +[1279] best--she: 1 +[1280] bestow: 2 +[1281] bestowed: 4 +[1282] bestowing: 2 +[1283] bet: 5 +[1284] betaken: 1 +[1285] bethinking: 2 +[1286] bethought: 1 +[1287] betray: 2 +[1288] betrayal: 1 +[1289] betrayed: 14 +[1290] betraying: 2 +[1291] betrothal: 1 +[1292] betrothed: 6 +[1293] bets: 1 +[1294] betsy: 97 +[1295] betsy's: 13 +[1296] better: 226 +[1297] better--she: 1 +[1298] better...where: 1 +[1299] better?--leave: 1 +[1300] between: 138 +[1301] bewildered: 5 +[1302] bewilderment: 4 +[1303] bewitched: 2 +[1304] bewitching: 1 +[1305] beyond: 37 +[1306] bezique: 1 +[1307] bezwungen: 1 +[1308] bezzubov: 5 +[1309] bezzubova: 2 +[1310] bibish--is: 1 +[1311] bible: 2 +[1312] biceps: 1 +[1313] bid: 1 +[1314] bidden: 1 +[1315] bidding: 2 +[1316] bien: 1 +[1317] big: 73 +[1318] bigger: 5 +[1319] bijou: 1 +[1320] bill: 12 +[1321] bill:--"_soupe: 1 +[1322] billiard: 7 +[1323] billiards: 1 +[1324] billows: 1 +[1325] bills: 2 +[1326] binary: 1 +[1327] bind: 3 +[1328] binding: 3 +[1329] binds: 1 +[1330] biography: 2 +[1331] biological: 2 +[1332] biology: 1 +[1333] birch: 22 +[1334] birch-buds: 1 +[1335] birch-tree: 1 +[1336] birches: 3 +[1337] bird: 22 +[1338] birds: 14 +[1339] birth: 12 +[1340] birthday: 9 +[1341] birthdays: 1 +[1342] biryuzovsky: 1 +[1343] bit: 41 +[1344] bitch: 1 +[1345] bitch's: 1 +[1346] bite: 5 +[1347] biting: 2 +[1348] bits: 6 +[1349] bitter: 7 +[1350] bitterer: 1 +[1351] bitterest: 5 +[1352] bitterly: 4 +[1353] bitterness: 10 +[1354] black: 65 +[1355] black-gloved: 1 +[1356] black-haired: 1 +[1357] blackened: 3 +[1358] blackguard: 1 +[1359] blackish: 1 +[1360] blade: 8 +[1361] blades: 3 +[1362] blague: 1 +[1363] blame: 69 +[1364] blamed: 9 +[1365] blaming: 4 +[1366] blanc: 1 +[1367] blanche: 3 +[1368] blanks: 1 +[1369] blaring: 1 +[1370] bleating: 1 +[1371] blended: 3 +[1372] bless: 8 +[1373] blessed: 7 +[1374] blessing: 5 +[1375] blessings: 5 +[1376] blew: 2 +[1377] blind: 6 +[1378] blinded: 1 +[1379] blinding: 3 +[1380] blindly: 1 +[1381] blinds: 3 +[1382] blinked: 1 +[1383] blinking: 2 +[1384] bliss: 9 +[1385] blissful: 15 +[1386] blissfully: 4 +[1387] block: 3 +[1388] blockhead: 1 +[1389] blocking: 2 +[1390] blonde: 1 +[1391] blood: 14 +[1392] blood-colored: 1 +[1393] bloodless: 3 +[1394] bloodshot: 1 +[1395] bloodstained: 2 +[1396] bloom: 1 +[1397] blooming: 1 +[1398] blossoms: 2 +[1399] blot: 1 +[1400] blotted: 1 +[1401] blotting: 1 +[1402] blotting-book: 1 +[1403] blotting-case: 1 +[1404] blotting-paper: 1 +[1405] blouse: 3 +[1406] blouses: 1 +[1407] blow: 7 +[1408] blowing: 3 +[1409] blown: 4 +[1410] blue: 28 +[1411] bluish: 1 +[1412] blunder: 2 +[1413] blunders: 1 +[1414] blunt: 1 +[1415] bluntness: 1 +[1416] blurred: 1 +[1417] blurs: 2 +[1418] blurted: 1 +[1419] blush: 7 +[1420] blush--she: 1 +[1421] blushed: 25 +[1422] blushing: 31 +[1423] board: 11 +[1424] boardroom: 3 +[1425] boards: 5 +[1426] boast: 3 +[1427] boasted: 1 +[1428] boat: 10 +[1429] bobbing: 1 +[1430] bobrishtchevs: 1 +[1431] boded: 1 +[1432] bodice: 5 +[1433] bodies: 5 +[1434] bodily: 3 +[1435] body: 40 +[1436] bodyguard: 1 +[1437] bog: 2 +[1438] bogdanitch: 2 +[1439] bohemian: 2 +[1440] boiled: 3 +[1441] boiler: 1 +[1442] boiling: 2 +[1443] bol: 2 +[1444] bola: 3 +[1445] bola's: 1 +[1446] bold: 4 +[1447] bolder: 1 +[1448] boldly: 11 +[1449] boldness: 5 +[1450] bologova: 1 +[1451] bols: 1 +[1452] bolshaia: 1 +[1453] bolster: 1 +[1454] bolted: 1 +[1455] bon: 2 +[1456] bond: 3 +[1457] bondage: 1 +[1458] bondarenko: 1 +[1459] bone: 3 +[1460] bones: 4 +[1461] bonheur: 1 +[1462] bonhomie: 1 +[1463] bonina: 1 +[1464] bonina's: 1 +[1465] bonne: 2 +[1466] bonnets: 1 +[1467] bony: 7 +[1468] book: 82 +[1469] bookcases: 2 +[1470] booking: 1 +[1471] booking-office: 1 +[1472] bookkeeping: 2 +[1473] books: 25 +[1474] booksellers: 2 +[1475] bookshelves: 2 +[1476] boomed: 1 +[1477] booms: 1 +[1478] boot: 3 +[1479] boots: 26 +[1480] bordered: 3 +[1481] borders: 1 +[1482] bore: 6 +[1483] bored: 28 +[1484] boredom: 2 +[1485] boring: 1 +[1486] borissovna: 5 +[1487] borissovna's: 2 +[1488] born: 10 +[1489] borne: 2 +[1490] borozdina: 1 +[1491] borrow: 3 +[1492] borrowed: 5 +[1493] bosom: 8 +[1494] bosom's: 1 +[1495] botany: 1 +[1496] both: 214 +[1497] both--the: 1 +[1498] both...i: 1 +[1499] bother: 2 +[1500] bothering: 1 +[1501] bothers: 1 +[1502] bottes: 2 +[1503] bottle: 21 +[1504] bottles: 4 +[1505] bottom: 23 +[1506] boudoir: 14 +[1507] bouffé: 2 +[1508] bought: 26 +[1509] boulevard: 4 +[1510] boulevards: 1 +[1511] bounces: 1 +[1512] bound: 48 +[1513] bounded: 3 +[1514] bounding: 1 +[1515] bounds: 2 +[1516] bouquet: 2 +[1517] bouquets: 4 +[1518] bouts: 1 +[1519] bow: 14 +[1520] bowed: 36 +[1521] bowing: 17 +[1522] bowl: 1 +[1523] bowlegged: 1 +[1524] bows: 1 +[1525] box: 44 +[1526] box-keeper: 1 +[1527] box-opener: 2 +[1528] boxes: 10 +[1529] boy: 67 +[1530] boy's: 2 +[1531] boyish: 2 +[1532] boyishness: 1 +[1533] boys: 20 +[1534] braced: 1 +[1535] bracelet: 2 +[1536] bracelets: 1 +[1537] bracing: 1 +[1538] bragged: 1 +[1539] braid: 1 +[1540] braided: 2 +[1541] brain: 13 +[1542] brainless: 1 +[1543] brains: 2 +[1544] branch: 6 +[1545] branches: 8 +[1546] brand: 1 +[1547] brand-new: 2 +[1548] brandishing: 1 +[1549] brandy: 8 +[1550] brandy!...what: 1 +[1551] brandy's: 1 +[1552] brannan: 2 +[1553] bras: 2 +[1554] brass: 3 +[1555] bravo: 5 +[1556] brayer: 1 +[1557] breach: 3 +[1558] bread: 22 +[1559] bread--he'll: 1 +[1560] bread--to: 1 +[1561] bread-and-butter: 2 +[1562] breadth: 3 +[1563] break: 32 +[1564] breakdown: 1 +[1565] breakfast: 4 +[1566] breaking: 22 +[1567] breaks: 1 +[1568] breast: 13 +[1569] breasts: 1 +[1570] breath: 20 +[1571] breathe: 4 +[1572] breathed: 5 +[1573] breathing: 22 +[1574] breathings: 1 +[1575] breathless: 7 +[1576] breathlessly: 1 +[1577] breaths: 4 +[1578] bred: 1 +[1579] breeches: 6 +[1580] breed: 1 +[1581] breeder's: 1 +[1582] breeding: 9 +[1583] breeds: 1 +[1584] breeze: 1 +[1585] brenteln: 1 +[1586] brethren: 4 +[1587] bribe: 1 +[1588] bribes: 1 +[1589] bricks: 1 +[1590] bridal: 6 +[1591] bridal-mother: 1 +[1592] bride: 14 +[1593] bride's: 4 +[1594] bridegroom: 11 +[1595] bridegroom's: 1 +[1596] brides: 1 +[1597] bridge: 13 +[1598] bridges: 1 +[1599] bridle: 3 +[1600] brief: 18 +[1601] briefly: 2 +[1602] bright: 40 +[1603] bright-colored: 1 +[1604] brightened: 5 +[1605] brightening: 2 +[1606] brighter: 2 +[1607] brightly: 15 +[1608] brightness: 6 +[1609] brilliance: 10 +[1610] brilliant: 28 +[1611] brilliantine: 1 +[1612] brilliantly: 2 +[1613] brim: 2 +[1614] brimful: 1 +[1615] brimming: 4 +[1616] brin: 2 +[1617] brindle: 1 +[1618] bring: 54 +[1619] bringing: 14 +[1620] bringing-up: 3 +[1621] brings: 7 +[1622] brink: 2 +[1623] brisker: 1 +[1624] briskly: 2 +[1625] bristles: 1 +[1626] brisé: 1 +[1627] brittle: 1 +[1628] broad: 21 +[1629] broad-shouldered: 3 +[1630] broadcloth: 1 +[1631] broadened: 2 +[1632] broadly: 1 +[1633] broderie: 4 +[1634] broke: 31 +[1635] broken: 42 +[1636] bronze: 5 +[1637] bronzes: 1 +[1638] brood: 2 +[1639] brooded: 5 +[1640] brook: 1 +[1641] broom: 1 +[1642] broth: 3 +[1643] brother: 234 +[1644] brother's: 69 +[1645] brother--seemed: 1 +[1646] brother-in-law: 20 +[1647] brother-in-law's: 2 +[1648] brother-men: 1 +[1649] brothers: 15 +[1650] brothers-in-law: 1 +[1651] brothers.--nikolay: 1 +[1652] brought: 154 +[1653] brought-up: 1 +[1654] brow: 13 +[1655] brown: 6 +[1656] browned: 1 +[1657] brownie: 2 +[1658] brows: 24 +[1659] brrr: 1 +[1660] bruise: 1 +[1661] bruises: 1 +[1662] brunette: 2 +[1663] brush: 2 +[1664] brushed: 1 +[1665] brushes: 3 +[1666] brushing: 3 +[1667] brushwood: 1 +[1668] brutal: 8 +[1669] brute: 1 +[1670] bryansky: 3 +[1671] bryansky's: 6 +[1672] bryantsev: 1 +[1673] bubble: 2 +[1674] bubble-organism: 1 +[1675] bubbling: 3 +[1676] buck: 1 +[1677] bucks: 2 +[1678] buckwheat: 5 +[1679] buddhists: 1 +[1680] buddhists--what: 1 +[1681] buds: 5 +[1682] buffet: 1 +[1683] bugs: 1 +[1684] build: 5 +[1685] building: 14 +[1686] buildings: 5 +[1687] built: 10 +[1688] bulgarian: 1 +[1689] bulging: 1 +[1690] bull: 2 +[1691] bull-fights: 1 +[1692] bullet: 1 +[1693] bumblebee: 1 +[1694] bump: 1 +[1695] bumping: 2 +[1696] bun: 1 +[1697] bunch: 1 +[1698] bundle: 2 +[1699] bundles: 3 +[1700] bundling: 1 +[1701] burden: 6 +[1702] burdened: 1 +[1703] burdening: 1 +[1704] burdensome: 1 +[1705] burdocks: 1 +[1706] bureau: 3 +[1707] burgundy: 1 +[1708] buried: 7 +[1709] burn: 4 +[1710] burned: 9 +[1711] burned-down: 1 +[1712] burning: 10 +[1713] burst: 20 +[1714] bursting: 3 +[1715] bursts: 1 +[1716] bury: 7 +[1717] bush: 10 +[1718] bushels: 2 +[1719] bushes: 6 +[1720] bushy: 1 +[1721] busied: 2 +[1722] busiest: 1 +[1723] busily: 7 +[1724] business: 81 +[1725] business@pglaf.org: 1 +[1726] businesslike: 2 +[1727] buslaev's: 1 +[1728] bust: 1 +[1729] bustle: 5 +[1730] bustling: 1 +[1731] busts: 1 +[1732] busy: 35 +[1733] but: 3142 +[1734] but...and: 1 +[1735] but...but: 1 +[1736] butler: 6 +[1737] butter: 7 +[1738] butterfly: 1 +[1739] button: 6 +[1740] buttoned: 3 +[1741] buttoning: 3 +[1742] buttons: 8 +[1743] buy: 21 +[1744] buying: 5 +[1745] buys: 1 +[1746] buzulukov: 1 +[1747] buzulukov--simply: 1 +[1748] buzz: 3 +[1749] buzzed: 2 +[1750] by: 1106 +[1751] byzantium: 1 +[1752] c: 4 +[1753] c'est: 11 +[1754] cab: 1 +[1755] cab-driver: 1 +[1756] cabbage: 2 +[1757] cabman: 1 +[1758] cabs: 2 +[1759] cachet: 1 +[1760] cadence: 1 +[1761] cadet: 1 +[1762] cafés: 1 +[1763] cage: 3 +[1764] caged: 1 +[1765] cake: 1 +[1766] cakes: 1 +[1767] calamities: 1 +[1768] calamity: 6 +[1769] calculate: 1 +[1770] calculated: 3 +[1771] calculating: 2 +[1772] calculation: 1 +[1773] calculations: 4 +[1774] calculus: 1 +[1775] calf: 9 +[1776] call: 69 +[1777] called: 127 +[1778] called--is: 1 +[1779] calling: 25 +[1780] callous: 4 +[1781] callousness: 2 +[1782] calls: 5 +[1783] calm: 37 +[1784] calmed: 2 +[1785] calmer: 8 +[1786] calming: 2 +[1787] calmly: 17 +[1788] calumny: 1 +[1789] calve: 1 +[1790] calved: 2 +[1791] calved,--he: 1 +[1792] calves: 8 +[1793] cambric: 2 +[1794] came: 421 +[1795] camomile: 1 +[1796] camp: 3 +[1797] campaign: 1 +[1798] campaigns: 1 +[1799] camps: 1 +[1800] can: 390 +[1801] can't: 261 +[1802] canary: 1 +[1803] cancan: 1 +[1804] candid: 3 +[1805] candidate: 5 +[1806] candidates: 1 +[1807] candidly: 2 +[1808] candle: 20 +[1809] candle-grease: 1 +[1810] candles: 15 +[1811] candlesticks: 1 +[1812] candor: 1 +[1813] cane: 1 +[1814] cannot: 118 +[1815] cannot...you: 1 +[1816] canopy: 1 +[1817] canut: 1 +[1818] canvas: 1 +[1819] cap: 36 +[1820] capable: 18 +[1821] capacity: 5 +[1822] cape: 6 +[1823] capella: 1 +[1824] capital: 43 +[1825] capitalist: 1 +[1826] capitalists: 1 +[1827] capitally: 8 +[1828] capitals: 2 +[1829] capons: 1 +[1830] caprice: 2 +[1831] capricious: 1 +[1832] caps: 3 +[1833] captain: 6 +[1834] captain's: 1 +[1835] captured: 1 +[1836] capuan: 1 +[1837] card: 7 +[1838] cards: 12 +[1839] cardsharper: 2 +[1840] care: 110 +[1841] care--a: 1 +[1842] care--but: 1 +[1843] care-worn: 3 +[1844] cared: 27 +[1845] career: 19 +[1846] careers: 2 +[1847] careful: 15 +[1848] carefully: 39 +[1849] careless: 3 +[1850] carelessly: 6 +[1851] carelessness: 4 +[1852] cares: 14 +[1853] cares...i: 1 +[1854] caress: 1 +[1855] caressed: 2 +[1856] caresses: 5 +[1857] caressing: 5 +[1858] careth: 2 +[1859] caring: 9 +[1860] carlsbad: 4 +[1861] carnival: 1 +[1862] carp: 3 +[1863] carpenter: 12 +[1864] carpenters: 2 +[1865] carpet: 9 +[1866] carpeted: 2 +[1867] carriage: 176 +[1868] carriage--all: 1 +[1869] carriage--how: 1 +[1870] carriage-jobbers: 1 +[1871] carriage-springs: 1 +[1872] carriages: 22 +[1873] carriages--all: 1 +[1874] carried: 44 +[1875] carries: 3 +[1876] carry: 19 +[1877] carrying: 31 +[1878] cart: 22 +[1879] cart-horses: 1 +[1880] carte: 3 +[1881] carted: 2 +[1882] cartilage: 1 +[1883] carting: 3 +[1884] cartloads: 1 +[1885] cartridge: 1 +[1886] cartridge-belt: 1 +[1887] carts: 5 +[1888] carved: 6 +[1889] carving: 2 +[1890] case: 52 +[1891] cases: 18 +[1892] cash: 2 +[1893] cashier: 2 +[1894] cassocks: 1 +[1895] cast: 18 +[1896] cast-iron: 3 +[1897] caste: 1 +[1898] casting: 3 +[1899] casual: 1 +[1900] casually: 3 +[1901] cat: 3 +[1902] catch: 25 +[1903] catches: 2 +[1904] catching: 24 +[1905] catechism: 2 +[1906] category: 1 +[1907] cathedral: 2 +[1908] catherine: 1 +[1909] catholic: 3 +[1910] catkins: 1 +[1911] cattle: 23 +[1912] cattle-breeder: 1 +[1913] cattle-yard: 3 +[1914] cattle-yard--and: 1 +[1915] cattleyard: 2 +[1916] caught: 59 +[1917] cause: 52 +[1918] cause--a: 1 +[1919] caused: 15 +[1920] causeless: 1 +[1921] causes: 8 +[1922] causing: 2 +[1923] caution: 3 +[1924] cautiously: 8 +[1925] cavalry: 8 +[1926] caviar: 1 +[1927] cavities: 1 +[1928] ce: 6 +[1929] cease: 7 +[1930] ceased: 34 +[1931] ceaseless: 1 +[1932] ceasing: 4 +[1933] cede: 1 +[1934] ceded: 1 +[1935] ceiling: 3 +[1936] ceilings: 1 +[1937] cela: 3 +[1938] celebrated: 27 +[1939] celebrating: 3 +[1940] celebrities: 1 +[1941] celebrity: 1 +[1942] cellar: 3 +[1943] celle: 1 +[1944] cement: 2 +[1945] cemented: 1 +[1946] censer: 1 +[1947] censure: 2 +[1948] censured: 1 +[1949] cent: 5 +[1950] center: 13 +[1951] centered: 1 +[1952] centers: 1 +[1953] central: 2 +[1954] centralization: 1 +[1955] centuries: 1 +[1956] century: 2 +[1957] ceremonies: 4 +[1958] ceremonious: 1 +[1959] ceremony: 9 +[1960] certain: 89 +[1961] certainly: 50 +[1962] certainly--are: 1 +[1963] certainty: 5 +[1964] certificate: 2 +[1965] certitude: 1 +[1966] ces: 1 +[1967] cessation: 2 +[1968] cessez: 1 +[1969] chablis: 2 +[1970] chaff: 1 +[1971] chaffing: 3 +[1972] chagrin: 1 +[1973] chain: 12 +[1974] chained: 1 +[1975] chains: 4 +[1976] chair: 63 +[1977] chairman: 3 +[1978] chairs: 9 +[1979] chalk: 9 +[1980] challenge: 6 +[1981] challenged: 1 +[1982] challenging: 2 +[1983] chamber: 1 +[1984] chambers: 3 +[1985] chambres: 1 +[1986] chamois: 3 +[1987] champagne: 13 +[1988] champagne--gagin: 1 +[1989] champagne--just: 1 +[1990] championing: 1 +[1991] chance: 38 +[1992] chanced: 4 +[1993] chances: 3 +[1994] chancing: 1 +[1995] chandelier: 1 +[1996] chandeliers: 1 +[1997] change: 86 +[1998] changed: 73 +[1999] changes: 5 +[2000] changing: 13 +[2001] channel: 2 +[2002] chantants: 1 +[2003] chanted: 1 +[2004] chanting: 1 +[2005] chaos: 2 +[2006] chaperon: 1 +[2007] chaps: 1 +[2008] chapter: 241 +[2009] char-à-banc: 7 +[2010] character: 34 +[2011] characteristic: 19 +[2012] characteristic--her: 1 +[2013] characteristics: 5 +[2014] characters: 3 +[2015] charcoal: 1 +[2016] charge: 15 +[2017] charged: 2 +[2018] charges: 2 +[2019] charitable: 1 +[2020] charitably: 1 +[2021] charities: 1 +[2022] charity: 1 +[2023] charles: 1 +[2024] charles's: 1 +[2025] charlotte: 1 +[2026] charm: 21 +[2027] charmante: 2 +[2028] charmants: 1 +[2029] charmed: 3 +[2030] charming: 37 +[2031] charms: 1 +[2032] charred: 1 +[2033] chase: 2 +[2034] chased: 1 +[2035] chasing: 2 +[2036] chasm: 3 +[2037] chaste: 1 +[2038] chastisement: 1 +[2039] chat: 3 +[2040] chatted: 2 +[2041] chatter: 6 +[2042] chattering: 4 +[2043] chatting: 6 +[2044] cheap: 4 +[2045] cheaper: 3 +[2046] cheapest: 1 +[2047] cheaply: 1 +[2048] cheat: 5 +[2049] cheated: 1 +[2050] cheating: 2 +[2051] check: 12 +[2052] checked: 4 +[2053] checkered: 1 +[2054] checking: 5 +[2055] checks: 1 +[2056] cheek: 14 +[2057] cheeks: 19 +[2058] cheer: 3 +[2059] cheerful: 21 +[2060] cheerfully: 6 +[2061] cheerily: 1 +[2062] cheering: 2 +[2063] cheerless: 1 +[2064] cheers: 1 +[2065] cheese: 10 +[2066] chemical: 1 +[2067] chemist's: 4 +[2068] cher: 3 +[2069] chere: 2 +[2070] cherished: 4 +[2071] cherubs: 1 +[2072] chess: 3 +[2073] chest: 26 +[2074] chest...and: 1 +[2075] chested: 1 +[2076] chestnut: 10 +[2077] chests: 1 +[2078] chewing: 1 +[2079] chic: 1 +[2080] chicken: 3 +[2081] chickens: 3 +[2082] chief: 69 +[2083] chiefly: 6 +[2084] chignon: 4 +[2085] chignons: 1 +[2086] child: 119 +[2087] child's: 13 +[2088] child--i: 2 +[2089] child--that's: 1 +[2090] child--was: 1 +[2091] childbirth: 1 +[2092] childhood: 17 +[2093] childish: 14 +[2094] childishly: 1 +[2095] childishness: 3 +[2096] childless: 1 +[2097] childlike: 6 +[2098] children: 227 +[2099] children's: 15 +[2100] children--all: 1 +[2101] children--the: 1 +[2102] children--they: 1 +[2103] chill: 7 +[2104] chilled: 2 +[2105] chilliness: 1 +[2106] chilling: 1 +[2107] chilly: 6 +[2108] chilly--which: 1 +[2109] chimed: 7 +[2110] chimney: 2 +[2111] chimneys: 2 +[2112] chin: 11 +[2113] china: 5 +[2114] chirping: 1 +[2115] chirruped: 1 +[2116] chivalrous: 1 +[2117] chocolate: 2 +[2118] choice: 13 +[2119] choir: 5 +[2120] choked: 6 +[2121] choking: 3 +[2122] choose: 16 +[2123] chooses: 3 +[2124] choosing: 4 +[2125] chopped: 1 +[2126] chopping: 1 +[2127] choral: 1 +[2128] chords: 1 +[2129] choristers: 2 +[2130] chorus: 3 +[2131] chose: 3 +[2132] chosen: 10 +[2133] choses: 1 +[2134] christ: 18 +[2135] christ's: 5 +[2136] christening: 2 +[2137] christian: 24 +[2138] christian's: 1 +[2139] christianity: 5 +[2140] christianity--that: 1 +[2141] christians: 2 +[2142] christs: 1 +[2143] chubby: 2 +[2144] chucked: 1 +[2145] chuckle: 1 +[2146] chuckled: 2 +[2147] chum: 1 +[2148] chums: 3 +[2149] church: 55 +[2150] church--and: 1 +[2151] churches: 5 +[2152] châine: 1 +[2153] château: 2 +[2154] chère: 1 +[2155] cigar: 14 +[2156] cigar-case: 2 +[2157] cigarette: 14 +[2158] cigarettes: 5 +[2159] cigars: 4 +[2160] circle: 45 +[2161] circles: 7 +[2162] circling: 1 +[2163] circuit: 1 +[2164] circular: 1 +[2165] circumspect: 1 +[2166] circumspectly: 1 +[2167] circumstance: 2 +[2168] circumstanced: 1 +[2169] circumstances: 12 +[2170] circus: 1 +[2171] cited: 1 +[2172] citizen: 1 +[2173] citizens: 2 +[2174] city: 3 +[2175] civil: 5 +[2176] civilian: 4 +[2177] civility: 2 +[2178] civilization: 3 +[2179] civilization--to: 1 +[2180] clacking: 1 +[2181] clad: 2 +[2182] claim: 2 +[2183] claiming: 1 +[2184] claims: 4 +[2185] claire: 1 +[2186] clairvoyant: 1 +[2187] clamber: 1 +[2188] clambered: 3 +[2189] clambering: 2 +[2190] clamored: 1 +[2191] clamorous: 1 +[2192] clang: 1 +[2193] clanging: 1 +[2194] clank: 3 +[2195] clanked: 2 +[2196] clanking: 1 +[2197] clapping: 2 +[2198] clasp: 2 +[2199] clasped: 5 +[2200] clasping: 4 +[2201] clasps: 1 +[2202] class: 23 +[2203] class--all: 1 +[2204] class--eight: 1 +[2205] class--she: 1 +[2206] classes: 10 +[2207] classes...at: 1 +[2208] classic: 1 +[2209] classical: 9 +[2210] classics: 2 +[2211] classified: 3 +[2212] clattering: 1 +[2213] clean: 11 +[2214] clean-cut: 1 +[2215] clean-shaven: 2 +[2216] cleaned: 1 +[2217] cleaner: 1 +[2218] cleaning: 1 +[2219] cleanliness: 1 +[2220] cleanly: 2 +[2221] clear: 73 +[2222] cleared: 10 +[2223] clearer: 7 +[2224] clearest: 2 +[2225] clearing: 5 +[2226] clearly: 54 +[2227] clearness: 11 +[2228] cleave: 1 +[2229] clenched: 3 +[2230] clenching: 1 +[2231] clergy: 2 +[2232] clerk: 44 +[2233] clerks: 4 +[2234] clever: 28 +[2235] cleverer: 3 +[2236] cleverest: 2 +[2237] cleverly: 5 +[2238] cleverness: 4 +[2239] click: 1 +[2240] client: 2 +[2241] client's: 1 +[2242] cliff: 1 +[2243] climate: 3 +[2244] climbed: 4 +[2245] climbing: 1 +[2246] clinging: 11 +[2247] clipped: 1 +[2248] cloak: 18 +[2249] cloaks: 4 +[2250] clock: 7 +[2251] clocks: 1 +[2252] clods: 3 +[2253] clogging: 1 +[2254] clogs: 5 +[2255] close: 62 +[2256] close-packed: 1 +[2257] closed: 29 +[2258] closely: 3 +[2259] closeness: 2 +[2260] closer: 16 +[2261] closest: 3 +[2262] closing: 13 +[2263] cloth: 13 +[2264] cloth-covered: 1 +[2265] clothe: 1 +[2266] clothed: 1 +[2267] clothes: 20 +[2268] clothing: 1 +[2269] cloths: 1 +[2270] cloud: 8 +[2271] cloud-shell: 1 +[2272] clouded: 1 +[2273] cloudless: 1 +[2274] cloudlets: 2 +[2275] clouds: 11 +[2276] clover: 15 +[2277] club: 29 +[2278] clubhouse: 1 +[2279] clubs: 1 +[2280] clue: 3 +[2281] clump: 1 +[2282] clumps: 2 +[2283] clumsiness: 1 +[2284] clumsy: 2 +[2285] clung: 10 +[2286] clustered: 1 +[2287] clustering: 1 +[2288] clutch: 5 +[2289] clutched: 13 +[2290] clutching: 15 +[2291] co-operative: 1 +[2292] coach: 6 +[2293] coachman: 57 +[2294] coachman's: 1 +[2295] coachmen: 1 +[2296] coal: 1 +[2297] coarse: 12 +[2298] coarseness: 2 +[2299] coarsest: 1 +[2300] coat: 68 +[2301] coat-tails: 2 +[2302] coats: 17 +[2303] cob: 6 +[2304] cobbles: 1 +[2305] cochon: 1 +[2306] cock: 1 +[2307] cockade: 2 +[2308] cockcrow: 1 +[2309] cocked: 3 +[2310] cocking: 2 +[2311] cocks: 1 +[2312] cod: 1 +[2313] code: 5 +[2314] codes: 1 +[2315] coeur: 1 +[2316] coffee: 38 +[2317] coffee-house: 1 +[2318] coffeepot: 1 +[2319] coffin: 3 +[2320] cognac: 2 +[2321] coiffer: 1 +[2322] coiffeur: 1 +[2323] coiffeur?'_--no: 1 +[2324] coiffure: 3 +[2325] coil: 1 +[2326] coils: 2 +[2327] coin: 1 +[2328] coincides: 1 +[2329] cold: 72 +[2330] colder: 3 +[2331] coldest: 1 +[2332] coldly: 19 +[2333] coldness: 9 +[2334] coldness--this: 1 +[2335] collar: 13 +[2336] collar-straps: 1 +[2337] collars: 1 +[2338] colleague: 2 +[2339] colleagues: 4 +[2340] collect: 4 +[2341] collected: 2 +[2342] collecting: 13 +[2343] collection: 5 +[2344] collector: 1 +[2345] college: 3 +[2346] collision: 2 +[2347] colonel: 48 +[2348] colonel's: 1 +[2349] colonize: 1 +[2350] color: 4 +[2351] colored: 5 +[2352] coloring: 2 +[2353] colors: 2 +[2354] colossal: 1 +[2355] colt: 1 +[2356] colts: 1 +[2357] column: 1 +[2358] columns: 2 +[2359] comb: 2 +[2360] combating: 1 +[2361] combed: 6 +[2362] combinaisons: 1 +[2363] combined: 1 +[2364] combing: 3 +[2365] combining: 2 +[2366] combs: 1 +[2367] come: 672 +[2368] comedy: 1 +[2369] comely: 2 +[2370] comers: 1 +[2371] comes: 38 +[2372] comes...i: 1 +[2373] comfort: 23 +[2374] comfortable: 14 +[2375] comfortable-looking: 1 +[2376] comfortably: 6 +[2377] comforted: 4 +[2378] comforter: 1 +[2379] comforting: 3 +[2380] comforts: 1 +[2381] comic: 3 +[2382] comical: 1 +[2383] comically: 3 +[2384] coming: 179 +[2385] coming--laughing: 1 +[2386] coming--she: 1 +[2387] command: 5 +[2388] commander-in-chief: 1 +[2389] commanding: 1 +[2390] commands: 2 +[2391] comme: 2 +[2392] commemoration: 1 +[2393] commencement: 2 +[2394] comment: 2 +[2395] commented: 2 +[2396] comments: 4 +[2397] commercial: 2 +[2398] commingled: 1 +[2399] commis: 1 +[2400] commiseration: 5 +[2401] commission: 26 +[2402] commission's: 1 +[2403] commissionaire: 3 +[2404] commissioned: 1 +[2405] commissions: 2 +[2406] commit: 1 +[2407] committed: 2 +[2408] committee: 22 +[2409] committees: 1 +[2410] committees--everywhere: 1 +[2411] committing: 1 +[2412] commodity: 1 +[2413] common: 40 +[2414] commonly: 2 +[2415] commonplace: 1 +[2416] commonplaces: 2 +[2417] commun: 1 +[2418] communal: 1 +[2419] commune: 4 +[2420] communicate: 8 +[2421] communicated: 3 +[2422] communicating: 1 +[2423] communication: 9 +[2424] communism: 3 +[2425] communist: 1 +[2426] communists: 2 +[2427] community: 1 +[2428] compact: 1 +[2429] compagne: 1 +[2430] companies: 4 +[2431] companion: 11 +[2432] companions: 7 +[2433] companionship: 1 +[2434] company: 17 +[2435] comparative: 1 +[2436] compare: 4 +[2437] compare...i: 1 +[2438] compared: 2 +[2439] comparing: 4 +[2440] comparison: 12 +[2441] compartment: 9 +[2442] compass: 2 +[2443] compassion: 4 +[2444] compassionate: 1 +[2445] compassionately: 2 +[2446] compatriot: 1 +[2447] compelled: 1 +[2448] compensation: 1 +[2449] competing: 1 +[2450] competitors: 1 +[2451] compilation: 1 +[2452] complacency: 3 +[2453] complacent: 3 +[2454] complacently: 1 +[2455] complain: 4 +[2456] complained: 5 +[2457] complaining: 6 +[2458] complaint: 4 +[2459] complaints: 6 +[2460] complete: 45 +[2461] completed: 2 +[2462] completely: 67 +[2463] completing: 1 +[2464] completion: 2 +[2465] complex: 12 +[2466] complexion: 1 +[2467] complexity: 6 +[2468] compliance: 7 +[2469] complicate: 1 +[2470] complicated: 12 +[2471] complication: 3 +[2472] complications: 2 +[2473] complied: 1 +[2474] compliment: 1 +[2475] compliziert: 1 +[2476] comply: 6 +[2477] complying: 3 +[2478] compose: 2 +[2479] composed: 9 +[2480] composedly: 1 +[2481] composer: 1 +[2482] composing: 3 +[2483] composite: 1 +[2484] compost: 1 +[2485] composure: 19 +[2486] comprehend: 17 +[2487] comprehended: 6 +[2488] comprehending: 2 +[2489] comprehensible: 5 +[2490] comprehension: 5 +[2491] comprehensive: 1 +[2492] comprenez: 1 +[2493] compressed: 3 +[2494] compressibility: 1 +[2495] compressing: 1 +[2496] compromettant: 1 +[2497] compromise: 3 +[2498] compromised: 1 +[2499] compromising: 2 +[2500] compulsory: 1 +[2501] computation: 1 +[2502] computer: 2 +[2503] computers: 2 +[2504] compôte: 1 +[2505] comrade: 13 +[2506] comrade's: 2 +[2507] comrades: 10 +[2508] comtesse: 1 +[2509] conceal: 14 +[2510] concealed: 9 +[2511] concealing: 9 +[2512] concealment: 3 +[2513] conceited: 2 +[2514] conceivability: 1 +[2515] conceive: 15 +[2516] conceived: 9 +[2517] conceiving: 1 +[2518] concentrate: 2 +[2519] concentrated: 12 +[2520] concentration: 4 +[2521] concept: 2 +[2522] conception: 16 +[2523] conceptions: 7 +[2524] concern: 3 +[2525] concerned: 5 +[2526] concerning: 5 +[2527] concerns: 1 +[2528] concert: 10 +[2529] concerts: 1 +[2530] concession: 2 +[2531] concessions: 2 +[2532] conciliation: 1 +[2533] conciliation-board: 1 +[2534] concise: 1 +[2535] conclave: 1 +[2536] conclude: 3 +[2537] concluded: 10 +[2538] conclusion: 8 +[2539] conclusions: 6 +[2540] conclusive: 2 +[2541] conclusively: 6 +[2542] condemn: 1 +[2543] condemned: 4 +[2544] condemning: 2 +[2545] condemns: 1 +[2546] condescending: 4 +[2547] condescendingly: 1 +[2548] condescension: 3 +[2549] condition: 70 +[2550] conditions: 34 +[2551] condolences: 1 +[2552] conduce: 1 +[2553] conduct: 16 +[2554] conducted: 3 +[2555] conducting: 2 +[2556] conductor: 8 +[2557] confabulations: 1 +[2558] confectioner's: 1 +[2559] conferred: 1 +[2560] confess: 11 +[2561] confessed: 3 +[2562] confessing: 2 +[2563] confession: 13 +[2564] confided: 2 +[2565] confidence: 19 +[2566] confidences: 1 +[2567] confident: 8 +[2568] confidently: 2 +[2569] confiding: 3 +[2570] confine: 3 +[2571] confined: 5 +[2572] confinement: 9 +[2573] confirm: 1 +[2574] confirmation: 7 +[2575] confirmed: 14 +[2576] confirming: 1 +[2577] conflagration: 1 +[2578] conflict: 11 +[2579] conform: 1 +[2580] conformity: 1 +[2581] confounded: 2 +[2582] confounding: 1 +[2583] confronted: 4 +[2584] confronting: 2 +[2585] confucians: 1 +[2586] confused: 13 +[2587] confusing: 1 +[2588] confusion: 21 +[2589] congenial: 1 +[2590] congratulate: 7 +[2591] congratulated: 2 +[2592] congratulating: 1 +[2593] congratulation: 1 +[2594] congratulations: 2 +[2595] conjecture: 3 +[2596] conjectures: 1 +[2597] conjunction: 6 +[2598] conjured: 1 +[2599] connect: 2 +[2600] connected: 17 +[2601] connecting: 2 +[2602] connection: 23 +[2603] connections: 4 +[2604] connoisseur: 2 +[2605] connoisseurs: 3 +[2606] conquered: 7 +[2607] conquering: 2 +[2608] conqueror: 2 +[2609] conquest: 1 +[2610] conscience: 14 +[2611] conscience-stricken: 1 +[2612] conscientious: 6 +[2613] conscientiously: 4 +[2614] conscientiousness: 1 +[2615] conscious: 48 +[2616] consciously: 3 +[2617] consciousness: 24 +[2618] conscription: 1 +[2619] consecrated: 1 +[2620] consecutive: 1 +[2621] consent: 14 +[2622] consented: 5 +[2623] consenting: 1 +[2624] consequence: 31 +[2625] consequences: 3 +[2626] consequences--why: 1 +[2627] consequent: 4 +[2628] consequential: 2 +[2629] consequently: 23 +[2630] conservation: 1 +[2631] conservative: 4 +[2632] consider: 47 +[2633] considerable: 6 +[2634] considerably: 3 +[2635] consideration: 16 +[2636] considerations: 11 +[2637] considered: 42 +[2638] considered--tone: 1 +[2639] considering: 23 +[2640] considers: 3 +[2641] consigne: 1 +[2642] consignment: 1 +[2643] consist: 3 +[2644] consisted: 4 +[2645] consistency: 1 +[2646] consistent: 2 +[2647] consisting: 4 +[2648] consists: 4 +[2649] consolation: 9 +[2650] consolatory: 2 +[2651] console: 5 +[2652] consoling: 3 +[2653] conspicuous: 4 +[2654] conspicuously: 4 +[2655] constance: 2 +[2656] constant: 5 +[2657] constantly: 6 +[2658] constatation: 1 +[2659] constitute: 1 +[2660] constituted: 3 +[2661] constitutional: 1 +[2662] constrained: 1 +[2663] constraint: 4 +[2664] construct: 2 +[2665] constructed: 7 +[2666] constructing: 2 +[2667] construction: 4 +[2668] construed: 1 +[2669] consult: 1 +[2670] consultation: 6 +[2671] consultation--whether: 1 +[2672] consulted: 1 +[2673] consulting: 3 +[2674] consumption: 1 +[2675] consumptive: 3 +[2676] contact: 7 +[2677] contain: 3 +[2678] contained: 1 +[2679] containing: 1 +[2680] contemplate: 2 +[2681] contemplating: 1 +[2682] contemplation: 1 +[2683] contemporaries: 2 +[2684] contemporary: 4 +[2685] contempt: 21 +[2686] contemptible: 1 +[2687] contemptuous: 8 +[2688] contemptuously: 21 +[2689] contend: 1 +[2690] content: 9 +[2691] contented: 7 +[2692] contenting: 1 +[2693] contention: 5 +[2694] contents: 4 +[2695] contest: 1 +[2696] contesting: 1 +[2697] continence: 1 +[2698] contingencies: 3 +[2699] contingency: 1 +[2700] continual: 11 +[2701] continually: 58 +[2702] continue: 2 +[2703] continued: 13 +[2704] continuing: 3 +[2705] continuity: 1 +[2706] continuous: 1 +[2707] continuously: 1 +[2708] contract: 2 +[2709] contracted: 2 +[2710] contraction: 1 +[2711] contractor: 3 +[2712] contradicted: 1 +[2713] contradicting: 1 +[2714] contradiction: 3 +[2715] contradictions: 1 +[2716] contradictory: 2 +[2717] contradistinction: 1 +[2718] contralto: 1 +[2719] contrary: 61 +[2720] contrary...i: 1 +[2721] contrast: 8 +[2722] contravention: 1 +[2723] contribute: 1 +[2724] contributed: 2 +[2725] contributions: 2 +[2726] contrive: 1 +[2727] contrived: 2 +[2728] control: 19 +[2729] controlled: 2 +[2730] controlling: 3 +[2731] contumely: 1 +[2732] convalescence: 1 +[2733] convalescents: 1 +[2734] conveniences: 1 +[2735] convenient: 6 +[2736] conveniently: 1 +[2737] conventional: 2 +[2738] conventional--i: 1 +[2739] conventionality: 1 +[2740] conventionally: 1 +[2741] conversation: 236 +[2742] conversations: 11 +[2743] converse: 1 +[2744] conversed: 1 +[2745] convert: 1 +[2746] converted: 2 +[2747] convey: 1 +[2748] conveyance: 1 +[2749] conveyed: 1 +[2750] convict: 1 +[2751] convicted: 1 +[2752] conviction: 20 +[2753] conviction--that: 1 +[2754] convictions: 8 +[2755] convince: 4 +[2756] convinced: 36 +[2757] convinces: 1 +[2758] convincing: 2 +[2759] convincingly: 1 +[2760] convulsively: 1 +[2761] cook: 16 +[2762] cooked: 1 +[2763] cookery: 1 +[2764] cooking: 2 +[2765] cool: 12 +[2766] cooled: 1 +[2767] cooler: 1 +[2768] cooling: 1 +[2769] coolly: 2 +[2770] coolness: 4 +[2771] cooperate: 1 +[2772] cooperative: 1 +[2773] copied: 3 +[2774] copies: 7 +[2775] copper: 1 +[2776] copse: 17 +[2777] copy: 12 +[2778] copying: 5 +[2779] copyists: 1 +[2780] copyright: 13 +[2781] coquetry: 1 +[2782] coquettishness: 1 +[2783] coral: 1 +[2784] cord: 13 +[2785] corday: 1 +[2786] cordelia: 2 +[2787] cordelia's: 1 +[2788] cordial: 8 +[2789] cordiality: 2 +[2790] cordially: 2 +[2791] cords: 1 +[2792] cork: 2 +[2793] corn: 8 +[2794] corn--all: 1 +[2795] corner: 42 +[2796] corners: 3 +[2797] cornice: 2 +[2798] cornices: 2 +[2799] corporation: 2 +[2800] corps: 8 +[2801] corps,...and: 1 +[2802] corps--whom: 1 +[2803] corpse: 3 +[2804] correct: 15 +[2805] corrected: 7 +[2806] correction: 2 +[2807] corrections: 2 +[2808] correctly: 2 +[2809] correctness: 3 +[2810] correspond: 4 +[2811] corresponded: 2 +[2812] correspondence: 3 +[2813] corresponding: 3 +[2814] corridor: 17 +[2815] corridors: 1 +[2816] corrupt: 7 +[2817] corset: 1 +[2818] corso: 1 +[2819] cossacks: 1 +[2820] cost: 19 +[2821] costing: 2 +[2822] costly: 4 +[2823] costs: 4 +[2824] costume: 3 +[2825] coterie: 3 +[2826] coteries: 1 +[2827] cotillion: 1 +[2828] cottage: 1 +[2829] cotton: 1 +[2830] couch: 1 +[2831] couch-grass: 1 +[2832] cough: 8 +[2833] coughed: 4 +[2834] coughing: 7 +[2835] coughs: 1 +[2836] could: 971 +[2837] could--she: 1 +[2838] couldn't: 28 +[2839] council: 20 +[2840] council--not: 1 +[2841] council--the: 1 +[2842] councilman: 1 +[2843] councilor: 4 +[2844] councils: 3 +[2845] counsel: 4 +[2846] counsels: 1 +[2847] count: 66 +[2848] count's: 2 +[2849] counted: 6 +[2850] countenance: 3 +[2851] counter: 4 +[2852] counterfeit: 1 +[2853] countess: 163 +[2854] countess's: 4 +[2855] countess?--a: 1 +[2856] counting: 22 +[2857] counting-house: 5 +[2858] countinghouse: 1 +[2859] countries: 1 +[2860] country: 129 +[2861] country--music: 1 +[2862] countryside: 1 +[2863] coup: 1 +[2864] couple: 11 +[2865] couple--a: 1 +[2866] couples: 5 +[2867] cour: 5 +[2868] courage: 13 +[2869] courage--vronsky: 1 +[2870] courageously: 1 +[2871] courier: 5 +[2872] course: 142 +[2873] courses: 2 +[2874] court: 29 +[2875] courteously: 3 +[2876] courtesy: 5 +[2877] courting: 2 +[2878] courts: 5 +[2879] courtship--and: 1 +[2880] courtyard: 4 +[2881] cousin: 10 +[2882] cousin's: 1 +[2883] cousins: 2 +[2884] couveuse: 1 +[2885] covenant: 2 +[2886] cover: 10 +[2887] covered: 57 +[2888] covering: 4 +[2889] coverings: 2 +[2890] coverlet: 1 +[2891] covers: 2 +[2892] coveted: 4 +[2893] covey: 1 +[2894] cow: 7 +[2895] cow-keeping: 1 +[2896] coward: 1 +[2897] cowardice: 2 +[2898] cowherd: 3 +[2899] cowherd-woman: 1 +[2900] cowhouse: 3 +[2901] cowman: 1 +[2902] cows: 16 +[2903] cozy: 2 +[2904] crack: 4 +[2905] cracked: 8 +[2906] cracking: 3 +[2907] crackled: 1 +[2908] crackling: 1 +[2909] cracks: 1 +[2910] cramped: 1 +[2911] cramps: 1 +[2912] craned: 1 +[2913] cranes: 1 +[2914] craning: 2 +[2915] crannies: 1 +[2916] crash: 3 +[2917] crashing: 2 +[2918] cravat: 5 +[2919] cravats: 1 +[2920] craving: 4 +[2921] crawled: 2 +[2922] crawling: 3 +[2923] crawls: 1 +[2924] crazy: 4 +[2925] creak: 5 +[2926] creaked: 1 +[2927] creaking: 6 +[2928] creaky: 1 +[2929] cream: 8 +[2930] crease: 1 +[2931] create: 4 +[2932] created: 5 +[2933] creating: 6 +[2934] creation: 7 +[2935] creator: 3 +[2936] creature: 27 +[2937] creature--that: 1 +[2938] creatures: 9 +[2939] credit: 7 +[2940] creeds: 2 +[2941] crept: 3 +[2942] crescent: 2 +[2943] crescent-shaped: 1 +[2944] crest: 1 +[2945] crestfallen: 2 +[2946] crests: 1 +[2947] cretonne: 1 +[2948] crevices: 1 +[2949] crib: 1 +[2950] cried: 71 +[2951] cried--"hideous: 1 +[2952] cries: 3 +[2953] crime: 9 +[2954] crimea: 1 +[2955] crimean: 1 +[2956] criminal: 7 +[2957] criminals: 2 +[2958] crimson: 11 +[2959] crimsoned: 7 +[2960] crimsoning: 2 +[2961] cringing: 1 +[2962] crinolines: 1 +[2963] crisis: 1 +[2964] critic: 2 +[2965] critic's: 1 +[2966] critical: 3 +[2967] criticism: 4 +[2968] criticisms: 6 +[2969] criticize: 3 +[2970] criticized: 2 +[2971] criticizing: 2 +[2972] critics: 1 +[2973] croak: 1 +[2974] crochet: 3 +[2975] crockery: 5 +[2976] crois: 1 +[2977] crony: 1 +[2978] crook: 1 +[2979] crooked: 1 +[2980] crooking: 3 +[2981] crop: 13 +[2982] crop's: 1 +[2983] cropped: 4 +[2984] crops: 4 +[2985] croquet: 8 +[2986] croquet-ground: 1 +[2987] cross: 24 +[2988] cross-examine: 1 +[2989] cross-examined: 1 +[2990] cross-examining: 1 +[2991] cross-piece: 1 +[2992] crossed: 25 +[2993] crosses: 2 +[2994] crossing: 13 +[2995] crossly: 2 +[2996] crossroads: 1 +[2997] crossway: 2 +[2998] crouched: 4 +[2999] croup: 1 +[3000] crowd: 50 +[3001] crowded: 5 +[3002] crowding: 5 +[3003] crowds: 3 +[3004] crowing: 1 +[3005] crown: 5 +[3006] crowns: 3 +[3007] crows: 1 +[3008] crucifix: 1 +[3009] crude: 1 +[3010] cruel: 20 +[3011] cruel--it's: 1 +[3012] cruelest: 1 +[3013] cruelly: 3 +[3014] cruelties: 1 +[3015] cruelty: 7 +[3016] crumble: 2 +[3017] crumbled: 2 +[3018] crumbling: 1 +[3019] crumbs: 1 +[3020] crumpled: 2 +[3021] crumpling: 1 +[3022] crunching: 1 +[3023] crusade: 2 +[3024] crush: 3 +[3025] crushed: 19 +[3026] crust: 2 +[3027] crusted: 1 +[3028] cry: 23 +[3029] cry...i'm: 1 +[3030] crying: 19 +[3031] crystal: 1 +[3032] crystallization: 1 +[3033] crystallized: 1 +[3034] crystallizing: 1 +[3035] cubic: 1 +[3036] cuckoo: 3 +[3037] cucumber: 2 +[3038] cucumbers: 4 +[3039] cuff: 2 +[3040] cuffs: 2 +[3041] culprit: 2 +[3042] culprits: 1 +[3043] cultivate: 2 +[3044] cultivated: 7 +[3045] cultivating: 2 +[3046] cultivation: 2 +[3047] culture: 19 +[3048] culture--and: 1 +[3049] culture--the: 1 +[3050] culture--their: 1 +[3051] cultured: 1 +[3052] cunning: 2 +[3053] cup: 24 +[3054] cupboard: 1 +[3055] cupboards: 4 +[3056] cupola: 1 +[3057] cups: 4 +[3058] curb: 3 +[3059] cure: 4 +[3060] cured: 7 +[3061] curieux: 1 +[3062] curing: 1 +[3063] curiosity: 7 +[3064] curious: 4 +[3065] curl: 2 +[3066] curled: 3 +[3067] curling: 4 +[3068] curls: 10 +[3069] curly: 13 +[3070] curly-headed: 3 +[3071] currant: 1 +[3072] current: 7 +[3073] currents: 1 +[3074] curried: 1 +[3075] curse: 3 +[3076] curtain: 3 +[3077] curtains: 8 +[3078] curtsey: 4 +[3079] curtseyed: 1 +[3080] curvature: 1 +[3081] curve: 5 +[3082] curved: 8 +[3083] curving: 1 +[3084] cushion: 4 +[3085] custom: 6 +[3086] customary: 3 +[3087] customer's: 1 +[3088] customs: 1 +[3089] cut: 74 +[3090] cut--there'll: 1 +[3091] cutlet: 2 +[3092] cuts: 3 +[3093] cutter: 1 +[3094] cutting: 12 +[3095] cutting-out: 1 +[3096] cuttlefish: 3 +[3097] cynical: 1 +[3098] d: 2 +[3099] d'anne: 1 +[3100] d'emblée: 1 +[3101] d'etat: 1 +[3102] d'un: 1 +[3103] d'ye: 1 +[3104] d'être: 1 +[3105] dad: 1 +[3106] daily: 2 +[3107] daintily: 2 +[3108] dainty: 1 +[3109] dale: 1 +[3110] dam: 1 +[3111] damage: 3 +[3112] damaged: 1 +[3113] damages: 4 +[3114] dame: 2 +[3115] dammed-up: 2 +[3116] damn: 6 +[3117] damnation: 1 +[3118] damned: 2 +[3119] damp: 5 +[3120] damp-courses: 1 +[3121] dampest: 1 +[3122] dance: 11 +[3123] dance--kitty: 1 +[3124] danced: 8 +[3125] dancer: 1 +[3126] dancers: 1 +[3127] dances: 1 +[3128] dancing: 10 +[3129] dancing--he: 1 +[3130] dancing-girl: 1 +[3131] dandified: 1 +[3132] dandled: 1 +[3133] dandy: 2 +[3134] danger: 11 +[3135] dangerous: 12 +[3136] dangerously: 2 +[3137] dangers: 1 +[3138] dans: 2 +[3139] dare: 15 +[3140] dared: 10 +[3141] daring: 5 +[3142] dark: 41 +[3143] dark-brown: 1 +[3144] dark-red: 1 +[3145] dark-skinned: 1 +[3146] darkening: 3 +[3147] darkly: 5 +[3148] darkness: 15 +[3149] darling: 35 +[3150] darmstadt: 3 +[3151] darned: 1 +[3152] darns: 1 +[3153] darted: 14 +[3154] darting: 1 +[3155] darts: 1 +[3156] darya: 209 +[3157] daryalov: 2 +[3158] das: 2 +[3159] dashed: 4 +[3160] data: 6 +[3161] date: 8 +[3162] dates: 1 +[3163] dating: 1 +[3164] daudet: 1 +[3165] daughter: 70 +[3166] daughter's: 8 +[3167] daughter--has: 1 +[3168] daughters: 15 +[3169] david: 2 +[3170] dawn: 6 +[3171] day: 308 +[3172] day's: 1 +[3173] day--that: 1 +[3174] day-laborers: 1 +[3175] daybreak: 2 +[3176] daydream: 1 +[3177] daydreams: 4 +[3178] daylight: 3 +[3179] days: 118 +[3180] days--almost: 1 +[3181] days--to: 1 +[3182] daytime: 1 +[3183] dazed: 1 +[3184] dazzle: 1 +[3185] dazzled: 3 +[3186] dazzling: 6 +[3187] de: 22 +[3188] deacon: 12 +[3189] deacon's: 3 +[3190] dead: 39 +[3191] deadly: 1 +[3192] deaf: 2 +[3193] deal: 55 +[3194] dealing: 5 +[3195] dear: 53 +[3196] dearer: 5 +[3197] dearest: 5 +[3198] dearly: 2 +[3199] death: 93 +[3200] death's: 2 +[3201] death--bear: 1 +[3202] death--he: 1 +[3203] death--which: 1 +[3204] death-like: 1 +[3205] deathbed: 2 +[3206] deathlike: 2 +[3207] debauchery: 1 +[3208] debt: 8 +[3209] debts: 14 +[3210] debts--to: 1 +[3211] decanter: 4 +[3212] decanter-women: 1 +[3213] decanters: 2 +[3214] decay: 2 +[3215] decaying: 1 +[3216] deceit: 15 +[3217] deceitful: 1 +[3218] deceitfulness: 2 +[3219] deceive: 9 +[3220] deceived: 17 +[3221] deceiving: 12 +[3222] december: 2 +[3223] decembrist: 1 +[3224] decent: 8 +[3225] deception: 5 +[3226] decide: 24 +[3227] decided: 43 +[3228] decidedly: 2 +[3229] deciding: 9 +[3230] decision: 28 +[3231] decisive: 6 +[3232] decisively: 1 +[3233] decked: 5 +[3234] declaimed: 2 +[3235] declaration: 4 +[3236] declare: 3 +[3237] declared: 5 +[3238] declaring: 6 +[3239] decline: 3 +[3240] declined: 8 +[3241] declivity: 1 +[3242] decorated: 3 +[3243] decoration: 2 +[3244] decorum: 8 +[3245] decrease: 1 +[3246] decreased: 2 +[3247] decree: 1 +[3248] decrees: 1 +[3249] dedicated: 1 +[3250] dedicates: 1 +[3251] deduce: 1 +[3252] deduced: 2 +[3253] deducing: 2 +[3254] deductible: 1 +[3255] deduction: 1 +[3256] deductions: 2 +[3257] deed: 4 +[3258] deeds: 4 +[3259] deemed: 1 +[3260] deep: 25 +[3261] deep-set: 1 +[3262] deeper: 2 +[3263] deepest: 1 +[3264] deeply: 14 +[3265] defeat: 2 +[3266] defeated: 3 +[3267] defect: 8 +[3268] defective: 4 +[3269] defects: 10 +[3270] defend: 10 +[3271] defended: 5 +[3272] defending: 11 +[3273] defense: 4 +[3274] defensive: 1 +[3275] defer: 1 +[3276] deference: 3 +[3277] deferential: 3 +[3278] deferentially: 4 +[3279] defiant: 2 +[3280] deficient: 2 +[3281] deficit: 1 +[3282] define: 9 +[3283] defined: 14 +[3284] defines: 1 +[3285] definite: 26 +[3286] definitely: 8 +[3287] definiteness: 5 +[3288] definition: 1 +[3289] definitions: 1 +[3290] deflections: 1 +[3291] deft: 2 +[3292] deftly: 1 +[3293] degenerated: 2 +[3294] degenerating: 1 +[3295] degrading: 5 +[3296] degrading...don't: 1 +[3297] degree: 16 +[3298] degrees: 2 +[3299] deigned: 1 +[3300] deigning: 1 +[3301] deigns: 1 +[3302] dejected: 3 +[3303] dejectedly: 2 +[3304] dejection: 1 +[3305] delay: 14 +[3306] delayed: 3 +[3307] delays: 1 +[3308] deletions: 1 +[3309] deliberate: 9 +[3310] deliberately: 16 +[3311] deliberating: 3 +[3312] deliberation: 1 +[3313] delicacies: 2 +[3314] delicacy: 9 +[3315] delicate: 17 +[3316] delicieux: 1 +[3317] delicious: 11 +[3318] deliciously: 1 +[3319] delight: 48 +[3320] delighted: 66 +[3321] delightful: 50 +[3322] delightfully: 2 +[3323] delights: 2 +[3324] delinquent: 1 +[3325] delirious: 3 +[3326] delirium: 2 +[3327] deliver: 2 +[3328] deliverance: 1 +[3329] delivered: 3 +[3330] delivering: 3 +[3331] delivery: 2 +[3332] delusion: 1 +[3333] demain: 1 +[3334] demand: 6 +[3335] demande: 1 +[3336] demanded: 4 +[3337] demanding: 1 +[3338] demands: 1 +[3339] dementat: 1 +[3340] demi-monde: 2 +[3341] demin: 1 +[3342] demitrievitch: 2 +[3343] demolish: 1 +[3344] demonstrating: 1 +[3345] demonstrations: 1 +[3346] demur: 1 +[3347] den: 1 +[3348] denied: 2 +[3349] denisitch: 2 +[3350] denoted: 1 +[3351] dense: 1 +[3352] densely: 1 +[3353] density: 1 +[3354] dental: 1 +[3355] deny: 7 +[3356] denying: 4 +[3357] depart: 2 +[3358] departed: 6 +[3359] departing: 1 +[3360] department: 29 +[3361] departments: 1 +[3362] departure: 24 +[3363] depend: 3 +[3364] depended: 8 +[3365] dependence: 4 +[3366] dependent: 2 +[3367] depends: 10 +[3368] depict: 1 +[3369] deplorable: 2 +[3370] deportment: 2 +[3371] depraved: 1 +[3372] depraveé: 1 +[3373] deprecating: 2 +[3374] depressed: 10 +[3375] depressing: 3 +[3376] depression: 5 +[3377] deprive: 3 +[3378] deprived: 9 +[3379] depriving: 1 +[3380] deprè: 1 +[3381] depth: 7 +[3382] depths: 6 +[3383] deputation: 4 +[3384] deputations: 1 +[3385] deputed: 1 +[3386] deputy: 4 +[3387] der: 1 +[3388] deranged: 1 +[3389] derangement: 1 +[3390] derivative: 3 +[3391] derive: 1 +[3392] derived: 8 +[3393] dernier: 2 +[3394] derniere: 1 +[3395] derogatory: 1 +[3396] des: 5 +[3397] descend: 3 +[3398] descendant: 1 +[3399] descendants: 1 +[3400] describe: 4 +[3401] described: 13 +[3402] describing: 4 +[3403] descried: 1 +[3404] description: 3 +[3405] descriptions: 1 +[3406] desecrate: 1 +[3407] desecrating: 1 +[3408] desert: 2 +[3409] deserted: 5 +[3410] desertion: 2 +[3411] deserve: 5 +[3412] deserved: 3 +[3413] deserving: 1 +[3414] design: 1 +[3415] designation: 1 +[3416] designs: 1 +[3417] desirable: 1 +[3418] desire: 65 +[3419] desire--he: 1 +[3420] desired: 14 +[3421] desires: 18 +[3422] desires--_ennui: 1 +[3423] desires...he: 1 +[3424] desiring: 2 +[3425] desirous: 1 +[3426] desk: 2 +[3427] desk--"it's: 1 +[3428] despair: 53 +[3429] despaired: 1 +[3430] despairing: 6 +[3431] despatched: 1 +[3432] desperate: 10 +[3433] desperately: 4 +[3434] desperation: 1 +[3435] despicable: 1 +[3436] despise: 11 +[3437] despised: 10 +[3438] despises: 5 +[3439] despising: 4 +[3440] despite: 1 +[3441] despondency: 3 +[3442] despondent: 2 +[3443] despondently: 1 +[3444] dessous: 2 +[3445] destination: 2 +[3446] destinations: 1 +[3447] destined: 5 +[3448] destinies: 2 +[3449] destiny: 3 +[3450] destroy: 7 +[3451] destroyed: 4 +[3452] destroying: 1 +[3453] destruction: 1 +[3454] destructive: 1 +[3455] detach: 1 +[3456] detail: 18 +[3457] detailed: 2 +[3458] details: 44 +[3459] detained: 4 +[3460] detaining: 2 +[3461] detected: 16 +[3462] detecting: 3 +[3463] detection: 5 +[3464] deteriorating: 1 +[3465] determination: 9 +[3466] determine: 3 +[3467] determined: 12 +[3468] determining: 2 +[3469] detest: 2 +[3470] detestable: 1 +[3471] detested: 1 +[3472] detract: 2 +[3473] detriment: 1 +[3474] develop: 1 +[3475] developed: 4 +[3476] developing: 1 +[3477] development: 21 +[3478] developments: 1 +[3479] devenu: 1 +[3480] deviation: 1 +[3481] devices: 1 +[3482] devil: 13 +[3483] devilish: 1 +[3484] devising: 1 +[3485] devoid: 5 +[3486] devoir: 1 +[3487] devote: 3 +[3488] devoted: 11 +[3489] devotes: 1 +[3490] devotion: 8 +[3491] devouring: 1 +[3492] devout: 1 +[3493] devoutly: 1 +[3494] dew: 5 +[3495] dewy: 3 +[3496] dexterous: 1 +[3497] dexterously: 1 +[3498] diable: 1 +[3499] diagonally--prohor: 1 +[3500] diamond: 1 +[3501] diamonds: 1 +[3502] diana: 3 +[3503] diana's: 1 +[3504] diary: 3 +[3505] dickens: 1 +[3506] dictated: 2 +[3507] dictates: 1 +[3508] dictum: 1 +[3509] did: 938 +[3510] didactics: 1 +[3511] didn't: 102 +[3512] didst: 2 +[3513] die: 34 +[3514] die--this: 1 +[3515] died: 26 +[3516] dies: 1 +[3517] diet: 1 +[3518] differed: 3 +[3519] difference: 21 +[3520] differences: 1 +[3521] different: 83 +[3522] different-colored: 1 +[3523] differently: 20 +[3524] difficult: 54 +[3525] difficulties: 20 +[3526] difficulty: 41 +[3527] diffidently: 1 +[3528] diffused: 1 +[3529] diffusing: 1 +[3530] dig: 1 +[3531] digested: 1 +[3532] digestion: 1 +[3533] digestive: 2 +[3534] dignified: 5 +[3535] dignitaries: 1 +[3536] dignitary: 1 +[3537] dignity: 19 +[3538] dignity's: 1 +[3539] digression: 1 +[3540] dilapidated: 1 +[3541] dilated: 2 +[3542] dilemma: 1 +[3543] dilettanti: 2 +[3544] dim: 5 +[3545] dimensions: 1 +[3546] dimer-bartnyansky: 1 +[3547] diminish: 2 +[3548] diminished: 1 +[3549] dimly: 2 +[3550] dimmed: 1 +[3551] dimples: 2 +[3552] dine: 14 +[3553] dined: 9 +[3554] dines: 1 +[3555] ding: 1 +[3556] dining: 44 +[3557] dining-room: 2 +[3558] dinner: 145 +[3559] dinner-hour: 2 +[3560] dinners: 6 +[3561] dinnertime: 2 +[3562] dip: 1 +[3563] diplomacy: 1 +[3564] diplomat: 3 +[3565] diplomatic: 6 +[3566] dipper: 3 +[3567] dippers: 2 +[3568] dipping: 1 +[3569] direct: 15 +[3570] directed: 10 +[3571] directing: 3 +[3572] direction: 38 +[3573] directions: 19 +[3574] directly: 71 +[3575] directness: 2 +[3576] director: 10 +[3577] directors: 2 +[3578] dirt: 2 +[3579] dirtiness: 1 +[3580] dirty: 17 +[3581] disabilities: 1 +[3582] disadvantageous: 1 +[3583] disadvantages: 2 +[3584] disagreeable: 38 +[3585] disagreeably: 1 +[3586] disagreed: 1 +[3587] disagreement: 3 +[3588] disagreements: 1 +[3589] disappear: 5 +[3590] disappeared: 11 +[3591] disappearing: 1 +[3592] disappoint: 1 +[3593] disappointed: 6 +[3594] disappointment: 7 +[3595] disappointments: 1 +[3596] disapprobation: 3 +[3597] disapproval: 2 +[3598] disapprove: 1 +[3599] disapproved: 2 +[3600] disapproves: 1 +[3601] disapproving: 1 +[3602] disapprovingly: 6 +[3603] disarranging: 1 +[3604] disaster: 2 +[3605] disastrous: 2 +[3606] disbelief: 4 +[3607] disbelieve: 2 +[3608] disbelieved: 1 +[3609] discarded: 1 +[3610] discerned: 3 +[3611] discerning: 1 +[3612] discipline: 2 +[3613] disclaim: 1 +[3614] disclaimer: 3 +[3615] disclaimers: 1 +[3616] disclose: 2 +[3617] disclosed: 1 +[3618] discomfit: 1 +[3619] discomfort: 3 +[3620] discomforting: 2 +[3621] disconcert: 1 +[3622] disconcerted: 8 +[3623] disconcerting: 1 +[3624] disconnected: 2 +[3625] disconnectedly: 1 +[3626] disconnectedness: 1 +[3627] disconsolately: 1 +[3628] discontentedly: 3 +[3629] discontinue: 1 +[3630] discordant: 1 +[3631] discount: 1 +[3632] discourse: 4 +[3633] discover: 8 +[3634] discovered: 13 +[3635] discoveries: 1 +[3636] discovery: 6 +[3637] discreet: 4 +[3638] discreetly: 4 +[3639] discretion: 1 +[3640] discuss: 9 +[3641] discussed: 4 +[3642] discussing: 6 +[3643] discussion: 30 +[3644] discussions: 7 +[3645] disdain: 2 +[3646] disdained: 1 +[3647] diseases: 1 +[3648] disenchantment: 1 +[3649] disengaged: 2 +[3650] disengaging: 1 +[3651] disent: 1 +[3652] disentangle: 1 +[3653] disgrace: 8 +[3654] disgraced: 5 +[3655] disgraceful: 7 +[3656] disgracing: 1 +[3657] disguise: 1 +[3658] disguised: 1 +[3659] disguises: 1 +[3660] disgust: 8 +[3661] disgusted: 3 +[3662] disgusting: 13 +[3663] dish: 5 +[3664] dishes: 4 +[3665] disheveled: 2 +[3666] dishonest: 11 +[3667] dishonesty: 1 +[3668] dishonorable: 7 +[3669] disillusion: 1 +[3670] disinclination: 2 +[3671] disinclined: 5 +[3672] disjointed: 3 +[3673] disk: 1 +[3674] dislike: 19 +[3675] disliked: 32 +[3676] dislikes: 1 +[3677] dismay: 14 +[3678] dismayed: 5 +[3679] dismiss: 1 +[3680] dismissal: 1 +[3681] dismissals: 1 +[3682] dismissed: 3 +[3683] dismissing: 2 +[3684] dismounted: 1 +[3685] disobedient: 1 +[3686] disorder: 3 +[3687] disorderly: 1 +[3688] disorganized: 1 +[3689] disown: 1 +[3690] disowned: 1 +[3691] dispel: 3 +[3692] dispensaries: 2 +[3693] dispensary: 2 +[3694] display: 3 +[3695] displayed: 1 +[3696] displaying: 4 +[3697] displeased: 17 +[3698] displeasure: 6 +[3699] disposal: 4 +[3700] dispose: 1 +[3701] disposed: 10 +[3702] disposition: 5 +[3703] disproportionate: 1 +[3704] disproving: 1 +[3705] disputants: 1 +[3706] dispute: 8 +[3707] disputed: 2 +[3708] disputes: 6 +[3709] disputing: 7 +[3710] disquisition: 1 +[3711] disquisitions: 2 +[3712] disregard: 1 +[3713] disregarded: 2 +[3714] disreputable: 2 +[3715] disreputable-looking: 1 +[3716] disrespectfully: 2 +[3717] dissatisfaction: 17 +[3718] dissatisfied: 14 +[3719] dissension: 1 +[3720] dissent: 2 +[3721] dissenting: 1 +[3722] dissipate: 1 +[3723] dissipated: 5 +[3724] dissolute: 2 +[3725] dissolving: 2 +[3726] dissuade: 1 +[3727] distance: 16 +[3728] distances: 1 +[3729] distant: 8 +[3730] distaste: 1 +[3731] distasteful: 15 +[3732] distinct: 12 +[3733] distinction: 6 +[3734] distinctions: 1 +[3735] distinctive: 1 +[3736] distinctly: 33 +[3737] distinctness: 4 +[3738] distinguish: 6 +[3739] distinguished: 9 +[3740] distinguishing: 1 +[3741] distort: 2 +[3742] distorted: 2 +[3743] distortion: 1 +[3744] distract: 4 +[3745] distracted: 4 +[3746] distracting: 3 +[3747] distraction: 2 +[3748] distractions: 2 +[3749] distracts: 1 +[3750] distraught: 3 +[3751] distress: 15 +[3752] distress--he: 1 +[3753] distressed: 10 +[3754] distressing: 1 +[3755] distribute: 6 +[3756] distributed: 7 +[3757] distributing: 8 +[3758] distribution: 7 +[3759] distributor: 1 +[3760] distributors: 1 +[3761] district: 47 +[3762] district's: 1 +[3763] districts: 4 +[3764] disturb: 6 +[3765] disturbance: 3 +[3766] disturbed: 14 +[3767] disturbing: 3 +[3768] ditch: 6 +[3769] ditches: 1 +[3770] diva: 1 +[3771] divan: 1 +[3772] diverging: 1 +[3773] diverse: 3 +[3774] diversion: 2 +[3775] divert: 2 +[3776] diverted: 2 +[3777] diverting: 1 +[3778] divide: 4 +[3779] divided: 20 +[3780] dividing: 3 +[3781] divine: 3 +[3782] divined: 3 +[3783] divining: 3 +[3784] divinity: 5 +[3785] division: 12 +[3786] divorce: 88 +[3787] divorce--another: 1 +[3788] divorce--at: 1 +[3789] divorce--yes: 1 +[3790] divorced: 7 +[3791] divorces: 2 +[3792] dix: 1 +[3793] dmitri: 1 +[3794] dmitrich: 1 +[3795] dmitrievitch: 46 +[3796] dmitrievitch's: 1 +[3797] dmitrievna: 3 +[3798] do: 830 +[3799] do--combed: 1 +[3800] do--does: 1 +[3801] do--his: 1 +[3802] do--only: 1 +[3803] do--that: 1 +[3804] do--that's: 1 +[3805] doch: 1 +[3806] dochots: 1 +[3807] dock: 1 +[3808] doctor: 133 +[3809] doctor's: 19 +[3810] doctored: 2 +[3811] doctoring: 4 +[3812] doctors: 11 +[3813] doctors...why: 1 +[3814] doctrine: 8 +[3815] doctrines: 3 +[3816] documents: 3 +[3817] dodged: 1 +[3818] does: 113 +[3819] doesn't: 57 +[3820] dog: 26 +[3821] dogcarts: 1 +[3822] dogged: 2 +[3823] doggedly: 1 +[3824] dogmas: 1 +[3825] dogs: 17 +[3826] dogs--you: 1 +[3827] doing: 132 +[3828] doing--go: 1 +[3829] doing--that: 1 +[3830] doings: 3 +[3831] dolgovushin's: 1 +[3832] doling: 1 +[3833] dolinka: 2 +[3834] doll: 5 +[3835] dolls: 2 +[3836] dolly: 279 +[3837] dolly's: 27 +[3838] domain: 9 +[3839] dome: 2 +[3840] domestic: 10 +[3841] don: 2 +[3842] don't: 547 +[3843] don't--and: 1 +[3844] don't...yes: 1 +[3845] donate: 3 +[3846] donation: 1 +[3847] donations: 15 +[3848] done: 211 +[3849] done--not: 1 +[3850] done--what: 1 +[3851] done--you: 1 +[3852] donnez-lui: 1 +[3853] donors: 1 +[3854] door: 184 +[3855] doorkeeper: 4 +[3856] doors: 16 +[3857] doorway: 28 +[3858] dose: 2 +[3859] dost: 1 +[3860] dotted: 2 +[3861] double: 9 +[3862] doubled: 1 +[3863] doubly: 2 +[3864] doubt: 78 +[3865] doubt--doubt: 1 +[3866] doubt--kept: 1 +[3867] doubt--that: 1 +[3868] doubted: 7 +[3869] doubtful: 4 +[3870] doubtfully: 1 +[3871] doubting: 1 +[3872] doubtless: 1 +[3873] doubts: 21 +[3874] dough: 2 +[3875] dove: 2 +[3876] dovelike: 1 +[3877] doves: 2 +[3878] down: 464 +[3879] down--a: 1 +[3880] downcast: 3 +[3881] downhill: 2 +[3882] downloading: 1 +[3883] downpour: 2 +[3884] downstairs: 13 +[3885] downwards: 1 +[3886] downy: 2 +[3887] dowry: 1 +[3888] doze: 1 +[3889] dozed: 1 +[3890] dozen: 3 +[3891] dozens: 2 +[3892] dozing: 5 +[3893] dr: 2 +[3894] drabanti: 1 +[3895] drag: 6 +[3896] dragged: 2 +[3897] dragging: 5 +[3898] drags: 1 +[3899] draht: 1 +[3900] dram: 2 +[3901] dram--that: 1 +[3902] drama: 1 +[3903] drank: 14 +[3904] draper's: 1 +[3905] drauf: 1 +[3906] draw: 19 +[3907] drawback: 1 +[3908] drawbacks: 1 +[3909] drawer: 3 +[3910] drawers: 2 +[3911] drawing: 100 +[3912] drawing-room: 9 +[3913] drawling: 3 +[3914] drawn: 20 +[3915] drawn-up: 1 +[3916] dray-horses: 1 +[3917] dray-horses--they: 1 +[3918] dread: 14 +[3919] dreaded: 11 +[3920] dreadful: 7 +[3921] dreadful-looking: 1 +[3922] dreadfully: 8 +[3923] dreading: 1 +[3924] dream: 29 +[3925] dreamed: 10 +[3926] dreamily: 5 +[3927] dreaming: 10 +[3928] dreams: 14 +[3929] dreamy: 2 +[3930] dreariest: 1 +[3931] dreariness: 1 +[3932] dreary: 7 +[3933] drenched: 6 +[3934] drenching: 2 +[3935] dress: 88 +[3936] dress--an: 1 +[3937] dressed: 39 +[3938] dresser: 1 +[3939] dresses: 16 +[3940] dressing: 27 +[3941] dressing-gown: 5 +[3942] dressmaker: 2 +[3943] drew: 64 +[3944] dried: 4 +[3945] dried-up: 1 +[3946] drift: 3 +[3947] drifted: 1 +[3948] drifting: 2 +[3949] drill: 1 +[3950] drills: 1 +[3951] drink: 44 +[3952] drink--delirium: 1 +[3953] drink...kostya: 1 +[3954] drinking: 37 +[3955] drinks: 4 +[3956] drip: 2 +[3957] drive: 59 +[3958] driven: 21 +[3959] driver: 8 +[3960] driver's: 1 +[3961] drivers: 3 +[3962] drives: 2 +[3963] driving: 32 +[3964] droll: 3 +[3965] drone: 1 +[3966] drones: 1 +[3967] droop: 2 +[3968] drooped: 2 +[3969] drooping: 3 +[3970] drop: 17 +[3971] drop...this: 1 +[3972] dropped: 52 +[3973] dropping: 14 +[3974] drops: 9 +[3975] drove: 78 +[3976] drown: 4 +[3977] drowned: 5 +[3978] drowning: 1 +[3979] drowsy: 1 +[3980] drudgery: 1 +[3981] drugstores: 1 +[3982] drum: 1 +[3983] drunk: 25 +[3984] drunkard: 2 +[3985] drunkards--the: 1 +[3986] drunken: 2 +[3987] drunken-looking: 1 +[3988] drunkenness: 2 +[3989] dry: 16 +[3990] dry-looking: 1 +[3991] drying: 5 +[3992] dryly: 4 +[3993] dryness: 1 +[3994] du: 5 +[3995] dubious: 4 +[3996] dubois: 1 +[3997] duc: 1 +[3998] duchess: 4 +[3999] duchess's: 1 +[4000] duck: 1 +[4001] ducks: 4 +[4002] due: 16 +[4003] due--that: 1 +[4004] duel: 12 +[4005] duel--inevitable: 1 +[4006] duel--would: 1 +[4007] dueling: 2 +[4008] dues: 1 +[4009] duets: 1 +[4010] dull: 36 +[4011] dullest: 1 +[4012] dulness: 1 +[4013] duly: 4 +[4014] dumb: 1 +[4015] dumbbells: 2 +[4016] dung: 5 +[4017] dung-heaps: 1 +[4018] dunyasha: 3 +[4019] duplicity: 1 +[4020] duration: 2 +[4021] durchlaucht: 2 +[4022] during: 85 +[4023] dusk: 2 +[4024] dusky: 1 +[4025] dussot's: 3 +[4026] dust: 17 +[4027] dustmen: 1 +[4028] dusty: 4 +[4029] dutch: 3 +[4030] duties: 39 +[4031] dutiful: 1 +[4032] duty: 44 +[4033] duty--so: 1 +[4034] duty...but: 1 +[4035] dwelling: 1 +[4036] dwelt: 2 +[4037] dyed: 1 +[4038] dying: 36 +[4039] dying--yes: 1 +[4040] e-mail: 1 +[4041] ea: 1 +[4042] each: 130 +[4043] eager: 30 +[4044] eagerly: 17 +[4045] eagerly--some: 1 +[4046] eagerness: 14 +[4047] eagle: 1 +[4048] ear: 18 +[4049] earlier: 12 +[4050] earliest: 2 +[4051] early: 53 +[4052] earn: 1 +[4053] earnest: 4 +[4054] earnestly: 3 +[4055] earnestness: 1 +[4056] earning: 1 +[4057] earrings: 1 +[4058] ears: 32 +[4059] earth: 21 +[4060] earthed: 1 +[4061] earthly: 7 +[4062] ease: 28 +[4063] easel: 1 +[4064] easier: 17 +[4065] easiest: 2 +[4066] easiest--instantaneous: 1 +[4067] easily: 26 +[4068] east: 4 +[4069] easter: 3 +[4070] eastern: 2 +[4071] eastern--much: 1 +[4072] easy: 37 +[4073] easy--as: 1 +[4074] easy-chair: 1 +[4075] eat: 24 +[4076] eaten: 5 +[4077] eating: 13 +[4078] eats: 1 +[4079] ebook: 11 +[4080] ebooks: 7 +[4081] eccentric: 1 +[4082] ecclesiastical: 5 +[4083] echo: 1 +[4084] echoed: 1 +[4085] eclipse: 1 +[4086] economic: 9 +[4087] economists: 1 +[4088] economy: 8 +[4089] economy--in: 1 +[4090] ecstasies: 2 +[4091] ecstasy: 14 +[4092] ecstatic: 2 +[4093] ecstatically: 1 +[4094] edge: 16 +[4095] edged: 2 +[4096] edges: 1 +[4097] edging: 1 +[4098] edible: 1 +[4099] edification: 1 +[4100] edifice: 3 +[4101] edifices: 1 +[4102] edition: 1 +[4103] editions: 4 +[4104] editor: 1 +[4105] editors: 2 +[4106] educate: 6 +[4107] educated: 10 +[4108] education: 46 +[4109] education--the: 1 +[4110] educational: 3 +[4111] edwarde: 1 +[4112] eel: 1 +[4113] effaced: 1 +[4114] effect: 28 +[4115] effective--and: 1 +[4116] effects: 4 +[4117] effectual: 1 +[4118] effeminate: 2 +[4119] effervescing: 1 +[4120] efficient: 2 +[4121] effort: 53 +[4122] efforts: 29 +[4123] effrontery: 1 +[4124] efimovna: 1 +[4125] eggs: 4 +[4126] egoism: 2 +[4127] egoistic: 1 +[4128] egyptian: 3 +[4129] eh: 40 +[4130] eight: 29 +[4131] eighteen: 2 +[4132] eighth: 1 +[4133] eighty: 4 +[4134] ein: 2 +[4135] einfaches: 1 +[4136] either: 86 +[4137] ejected: 1 +[4138] ejus: 3 +[4139] ekaterina: 4 +[4140] elaborate: 3 +[4141] elaborated: 1 +[4142] elastic: 1 +[4143] elasticity: 1 +[4144] elation: 1 +[4145] elbow: 17 +[4146] elbow-room: 1 +[4147] elbows: 15 +[4148] elder: 29 +[4149] elder's: 1 +[4150] elder's--hens: 1 +[4151] elderly: 6 +[4152] elders: 2 +[4153] eldest: 5 +[4154] elect: 5 +[4155] elected: 5 +[4156] electing: 1 +[4157] election: 14 +[4158] elections: 26 +[4159] electric: 4 +[4160] electricity: 5 +[4161] electronic: 27 +[4162] electronically: 2 +[4163] elegance: 9 +[4164] elegant: 13 +[4165] elegantly: 1 +[4166] element: 12 +[4167] elemental: 1 +[4168] elements: 4 +[4169] elephant: 1 +[4170] eletsky: 1 +[4171] elevated: 5 +[4172] elevation: 2 +[4173] eleven: 9 +[4174] elicit: 1 +[4175] eligible: 3 +[4176] elizaveta: 1 +[4177] elks: 1 +[4178] elle: 4 +[4179] elliot's: 1 +[4180] ellipse: 1 +[4181] elm-tree: 1 +[4182] eloquent: 2 +[4183] else: 92 +[4184] else--evolution: 1 +[4185] else--the: 1 +[4186] elsewhere: 2 +[4187] elucidate: 1 +[4188] eluded: 1 +[4189] emaciated: 5 +[4190] emaciation: 4 +[4191] email: 3 +[4192] emancipation: 9 +[4193] embarrassed: 16 +[4194] embarrassing: 1 +[4195] embarrassment: 16 +[4196] embittered: 1 +[4197] embodied: 2 +[4198] embodiment: 1 +[4199] embrace: 1 +[4200] embraced: 10 +[4201] embraces: 1 +[4202] embracing: 6 +[4203] embroidered: 10 +[4204] embroidery: 1 +[4205] emerald: 1 +[4206] emerge: 1 +[4207] emerged: 1 +[4208] emergency: 1 +[4209] emmets: 1 +[4210] emotion: 36 +[4211] emotional: 3 +[4212] emotionalism: 1 +[4213] emotions: 6 +[4214] emperor: 2 +[4215] emphasis: 7 +[4216] emphasized: 1 +[4217] emphasizing: 2 +[4218] empire: 1 +[4219] employ: 1 +[4220] employed: 2 +[4221] employee: 1 +[4222] employees: 2 +[4223] employer: 2 +[4224] employer's: 1 +[4225] empowered: 1 +[4226] emptied: 3 +[4227] empty: 17 +[4228] emptying: 1 +[4229] en: 1 +[4230] enable: 2 +[4231] enacted: 1 +[4232] enchained: 1 +[4233] enchanted: 3 +[4234] enchanting: 1 +[4235] enchantment: 1 +[4236] enchants: 1 +[4237] encircle: 1 +[4238] encircled: 1 +[4239] enclose: 2 +[4240] enclosed: 2 +[4241] encompassed: 1 +[4242] encompassing: 1 +[4243] encore: 1 +[4244] encounters: 1 +[4245] encourage: 2 +[4246] encouraged: 3 +[4247] encouragement: 2 +[4248] encouraging: 4 +[4249] encouragingly: 1 +[4250] encroaching: 1 +[4251] end: 111 +[4252] end"--he: 1 +[4253] end--it's: 1 +[4254] endeavored: 1 +[4255] endeavoring: 1 +[4256] endeavors: 1 +[4257] ended: 19 +[4258] ending: 4 +[4259] endless: 6 +[4260] endow: 1 +[4261] endowed: 1 +[4262] ends: 11 +[4263] endurance: 2 +[4264] endure: 10 +[4265] endured: 1 +[4266] enduring: 1 +[4267] enemies: 8 +[4268] enemy: 15 +[4269] enemy's: 1 +[4270] enendons: 1 +[4271] energetic: 5 +[4272] energetically: 1 +[4273] energies: 5 +[4274] energy: 23 +[4275] enervated: 1 +[4276] enfant: 4 +[4277] enfants: 1 +[4278] enfers: 1 +[4279] engage: 2 +[4280] engaged: 10 +[4281] engagement: 5 +[4282] engaging: 1 +[4283] engine: 3 +[4284] engine-driver: 1 +[4285] engineer: 1 +[4286] engineers: 2 +[4287] england: 8 +[4288] english: 66 +[4289] englishman: 17 +[4290] englishman's: 2 +[4291] englishmen: 2 +[4292] englishwoman: 2 +[4293] engouement: 1 +[4294] engouements: 1 +[4295] engravings: 4 +[4296] engrossed: 14 +[4297] engrossing: 1 +[4298] enigma: 3 +[4299] enigmatic: 2 +[4300] enjoined: 1 +[4301] enjoy: 17 +[4302] enjoyable: 1 +[4303] enjoyed: 16 +[4304] enjoying: 19 +[4305] enjoyment: 18 +[4306] enjoys: 4 +[4307] enlarge: 1 +[4308] enlarged: 2 +[4309] enlarging: 2 +[4310] enlightened: 3 +[4311] enlightenment: 3 +[4312] enoch: 5 +[4313] enoch's: 1 +[4314] enormous: 3 +[4315] enormously: 1 +[4316] enos: 1 +[4317] enough: 71 +[4318] enough--that's: 1 +[4319] enrich: 1 +[4320] enriched: 1 +[4321] enrolled: 1 +[4322] ensuing: 1 +[4323] ensuring: 1 +[4324] enter: 22 +[4325] entered: 24 +[4326] entering: 16 +[4327] enterprise: 2 +[4328] enters: 3 +[4329] entertain: 2 +[4330] entertained: 1 +[4331] entertaining: 1 +[4332] entertainment: 3 +[4333] entertainments: 3 +[4334] enthusiasm: 5 +[4335] enthusiast: 1 +[4336] enthusiastic: 8 +[4337] enthusiastically: 2 +[4338] enthusiastically--followed: 1 +[4339] enticing: 1 +[4340] entirely: 20 +[4341] entity: 3 +[4342] entr'acte: 3 +[4343] entrance: 33 +[4344] entrance-door: 1 +[4345] entrancing: 1 +[4346] entreat: 7 +[4347] entreaties: 2 +[4348] entreaty: 2 +[4349] entrez: 1 +[4350] entrusted: 1 +[4351] entry: 7 +[4352] enumerating: 1 +[4353] enunciated: 2 +[4354] envelope: 5 +[4355] enveloped: 1 +[4356] envied: 7 +[4357] envies: 1 +[4358] envious: 8 +[4359] enviously: 2 +[4360] envy: 18 +[4361] epaulet: 1 +[4362] epaulets: 4 +[4363] epigram: 3 +[4364] epigrammatic: 1 +[4365] episode: 2 +[4366] epistle: 3 +[4367] epoch: 2 +[4368] equable: 2 +[4369] equal: 4 +[4370] equally: 10 +[4371] equals: 2 +[4372] equation: 1 +[4373] equerry's: 1 +[4374] equipment: 3 +[4375] equivalent: 1 +[4376] eradicating: 1 +[4377] erase: 2 +[4378] erect: 10 +[4379] ergushovo: 9 +[4380] erlaucht: 2 +[4381] errand: 1 +[4382] erroneousness: 1 +[4383] error: 6 +[4384] errors: 2 +[4385] es: 2 +[4386] escape: 23 +[4387] escaped: 1 +[4388] escaping: 2 +[4389] eschewed: 1 +[4390] escort: 2 +[4391] escorted: 7 +[4392] escorting: 3 +[4393] especial: 2 +[4394] especially: 110 +[4395] essence: 1 +[4396] essential: 23 +[4397] essentially: 1 +[4398] est: 9 +[4399] established: 7 +[4400] establishing: 1 +[4401] estate: 25 +[4402] estates: 2 +[4403] esteem: 5 +[4404] esteemed: 1 +[4405] estimate: 1 +[4406] estimation: 2 +[4407] estrange: 1 +[4408] estrangement: 2 +[4409] et: 10 +[4410] etc: 4 +[4411] eternal: 4 +[4412] eternity: 1 +[4413] etext: 2 +[4414] ethical: 1 +[4415] ethnographic: 1 +[4416] ethnographical: 2 +[4417] etiquette: 2 +[4418] europe: 18 +[4419] european: 10 +[4420] evaded: 1 +[4421] evading: 1 +[4422] evasively: 1 +[4423] eve: 1 +[4424] even: 351 +[4425] even--anything: 1 +[4426] even--as: 1 +[4427] even-thudding: 1 +[4428] evening: 127 +[4429] evening--and: 1 +[4430] evenings: 3 +[4431] evenly: 5 +[4432] event: 16 +[4433] events: 8 +[4434] eventualities: 1 +[4435] ever: 132 +[4436] ever--not: 1 +[4437] everlasting: 5 +[4438] every: 248 +[4439] every-day: 1 +[4440] everybody: 9 +[4441] everyday: 2 +[4442] everyone: 152 +[4443] everyone's: 3 +[4444] everything: 340 +[4445] everything'll: 1 +[4446] everything's: 8 +[4447] everything--a: 1 +[4448] everything--freedom: 1 +[4449] everything--i: 1 +[4450] everything--the: 1 +[4451] everything...told: 1 +[4452] everywhere: 18 +[4453] everywhere...a--a--a: 1 +[4454] evidence: 7 +[4455] evident: 18 +[4456] evidently: 39 +[4457] evil: 27 +[4458] evil--the: 1 +[4459] evils: 1 +[4460] evoked: 4 +[4461] evolution: 5 +[4462] ewig: 1 +[4463] exact: 10 +[4464] exacted: 2 +[4465] exacting: 1 +[4466] exactly: 36 +[4467] exaggerate: 1 +[4468] exaggerated: 8 +[4469] exaggerating: 2 +[4470] exaggeration: 4 +[4471] exalted: 12 +[4472] exalting: 1 +[4473] examination: 5 +[4474] examine: 3 +[4475] examined: 6 +[4476] examining: 7 +[4477] example: 7 +[4478] examples: 2 +[4479] exasperate: 1 +[4480] exasperated: 20 +[4481] exasperating: 1 +[4482] exasperation: 7 +[4483] exceedingly: 16 +[4484] excellency: 21 +[4485] excellency's: 2 +[4486] excellent: 21 +[4487] except: 39 +[4488] excepted: 1 +[4489] exception: 3 +[4490] exceptional: 9 +[4491] exceptionally: 9 +[4492] exceptions: 2 +[4493] excess: 3 +[4494] excessive: 2 +[4495] excessively: 2 +[4496] excessivement: 1 +[4497] exchange: 4 +[4498] exchanged: 7 +[4499] exchanging: 3 +[4500] excitability: 1 +[4501] excite: 5 +[4502] excited: 32 +[4503] excitedly: 3 +[4504] excitement: 50 +[4505] exciting: 4 +[4506] exclaimed: 5 +[4507] exclamations: 1 +[4508] excludes: 1 +[4509] excluding: 1 +[4510] exclusion: 1 +[4511] exclusively: 1 +[4512] excursion: 1 +[4513] excuse: 44 +[4514] excused: 1 +[4515] excuses: 1 +[4516] excusing: 2 +[4517] execution: 3 +[4518] executive: 1 +[4519] exemplary: 1 +[4520] exempt: 2 +[4521] exercise: 16 +[4522] exercised: 1 +[4523] exercises: 2 +[4524] exert: 1 +[4525] exerted: 2 +[4526] exertion: 3 +[4527] exhaust: 1 +[4528] exhausted: 9 +[4529] exhausting: 1 +[4530] exhaustion: 1 +[4531] exhibition: 2 +[4532] exhibitions: 2 +[4533] exhilarating: 1 +[4534] exhortation: 2 +[4535] exile: 1 +[4536] exist: 14 +[4537] existe: 1 +[4538] existed: 12 +[4539] existence: 37 +[4540] existence--and: 2 +[4541] existing: 9 +[4542] exists: 4 +[4543] exonerate: 1 +[4544] exorcise: 1 +[4545] expanses: 1 +[4546] expect: 29 +[4547] expect...thee: 1 +[4548] expectation: 7 +[4549] expectations: 2 +[4550] expected: 77 +[4551] expecting: 41 +[4552] expecting--from: 1 +[4553] expects: 1 +[4554] expedition: 8 +[4555] expelled: 1 +[4556] expend: 1 +[4557] expended: 2 +[4558] expenditure: 6 +[4559] expenditures: 1 +[4560] expense: 4 +[4561] expenses: 12 +[4562] expensive: 6 +[4563] experience: 11 +[4564] experienced: 30 +[4565] experiences: 3 +[4566] experiencing: 8 +[4567] experiment: 5 +[4568] experiments: 1 +[4569] expert: 1 +[4570] expiate: 1 +[4571] expiated: 1 +[4572] explain: 51 +[4573] explained: 21 +[4574] explaining: 16 +[4575] explains: 1 +[4576] explanation: 16 +[4577] explanations: 3 +[4578] exploded: 1 +[4579] exploiting: 1 +[4580] exploration: 1 +[4581] exploring: 1 +[4582] exporting: 1 +[4583] expose: 1 +[4584] exposed: 6 +[4585] exposition: 4 +[4586] expound: 3 +[4587] expounded: 2 +[4588] expounding: 2 +[4589] express: 32 +[4590] expressed: 37 +[4591] expressing: 21 +[4592] expression: 191 +[4593] expression--a: 1 +[4594] expressions: 6 +[4595] expressive: 4 +[4596] expressly: 1 +[4597] exquisite: 37 +[4598] exquisite--such: 1 +[4599] extant: 1 +[4600] extended: 1 +[4601] extent: 5 +[4602] exterior: 1 +[4603] external: 19 +[4604] externally: 3 +[4605] extinguish: 1 +[4606] extinguished: 1 +[4607] extinguishing: 1 +[4608] extolling: 1 +[4609] extra: 3 +[4610] extract: 1 +[4611] extracted: 1 +[4612] extracts: 2 +[4613] extraneous: 4 +[4614] extraordinarily: 12 +[4615] extraordinary: 22 +[4616] extravagance--that: 1 +[4617] extreme: 26 +[4618] extreme--we: 1 +[4619] extremely: 31 +[4620] extremes: 3 +[4621] extremity: 1 +[4622] extricate: 3 +[4623] extricated: 2 +[4624] extricating: 1 +[4625] eye: 18 +[4626] eyebrows: 15 +[4627] eyeing: 2 +[4628] eyelashes: 4 +[4629] eyelid: 1 +[4630] eyelids: 8 +[4631] eyes: 547 +[4632] eyes--and: 1 +[4633] eyewitnesses: 1 +[4634] f: 2 +[4635] f3: 1 +[4636] fable: 2 +[4637] face: 539 +[4638] face--always: 1 +[4639] face--look: 1 +[4640] face--so: 1 +[4641] faced: 2 +[4642] faces: 28 +[4643] facetious: 1 +[4644] facilities: 4 +[4645] facility: 4 +[4646] facing: 19 +[4647] fact: 112 +[4648] fact--informs: 1 +[4649] fact--that: 1 +[4650] factor: 1 +[4651] factories: 1 +[4652] factory: 3 +[4653] facts: 14 +[4654] faculties: 4 +[4655] faculty: 10 +[4656] faded: 2 +[4657] faggot-stack: 1 +[4658] fagots: 1 +[4659] fail: 9 +[4660] failed: 12 +[4661] failing: 6 +[4662] failings: 1 +[4663] failure: 8 +[4664] failures: 2 +[4665] faint: 21 +[4666] fainter: 1 +[4667] faintest: 3 +[4668] fainting: 1 +[4669] faintly: 7 +[4670] fair: 15 +[4671] fair-haired: 2 +[4672] fairbanks: 1 +[4673] faire: 3 +[4674] fairly: 7 +[4675] fairness: 1 +[4676] fairy: 1 +[4677] fairyland: 1 +[4678] fais: 2 +[4679] fait: 6 +[4680] faith: 41 +[4681] faith--i: 1 +[4682] faith--or: 1 +[4683] faithful: 3 +[4684] faithless: 2 +[4685] fall: 32 +[4686] fall--i: 1 +[4687] fall--kuzovlev's: 1 +[4688] fallen: 26 +[4689] falling: 16 +[4690] fallow: 4 +[4691] fallows: 1 +[4692] falls: 5 +[4693] false: 26 +[4694] falsehood: 12 +[4695] falsehoods: 1 +[4696] falsely: 1 +[4697] falsity: 6 +[4698] falter: 1 +[4699] faltering: 1 +[4700] fameux: 1 +[4701] familiar: 44 +[4702] familiarity: 3 +[4703] families: 8 +[4704] family: 111 +[4705] family's: 1 +[4706] family--her: 1 +[4707] family--the: 1 +[4708] famine: 1 +[4709] famished: 1 +[4710] famling: 1 +[4711] famous: 3 +[4712] fan: 7 +[4713] fancied: 51 +[4714] fancied--eyes: 1 +[4715] fancies: 1 +[4716] fancy: 50 +[4717] fancying: 3 +[4718] fanned: 1 +[4719] fanning: 1 +[4720] fanny: 2 +[4721] fantasia: 6 +[4722] fantasies: 1 +[4723] fantastic: 3 +[4724] far: 109 +[4725] far--and: 1 +[4726] far--in: 1 +[4727] far-away: 2 +[4728] farce: 2 +[4729] fardeau: 4 +[4730] fare: 5 +[4731] farewell: 5 +[4732] farinaceous: 1 +[4733] farm: 12 +[4734] farmer: 1 +[4735] farmers: 1 +[4736] farmhouse: 1 +[4737] farming: 17 +[4738] farming--you: 1 +[4739] farmyard: 3 +[4740] farther: 9 +[4741] farthest: 1 +[4742] farthing: 5 +[4743] fascinated: 11 +[4744] fascinating: 11 +[4745] fascination: 2 +[4746] fashion: 22 +[4747] fashion,--most: 1 +[4748] fashion--of: 1 +[4749] fashionable: 19 +[4750] fashionably: 1 +[4751] fashions: 1 +[4752] fast: 7 +[4753] fasten: 1 +[4754] fastened: 16 +[4755] fastening: 3 +[4756] faster: 4 +[4757] fastidious: 1 +[4758] fasting: 1 +[4759] fasts: 3 +[4760] fat: 29 +[4761] fatal: 1 +[4762] fatality: 1 +[4763] fatally: 2 +[4764] fate: 14 +[4765] father: 106 +[4766] father's: 23 +[4767] father--yes: 1 +[4768] father-in-law: 2 +[4769] fatherland: 1 +[4770] fatherly: 2 +[4771] fathers: 5 +[4772] fatigue: 5 +[4773] fault: 38 +[4774] fault--all: 1 +[4775] faults: 4 +[4776] faut: 5 +[4777] favor: 23 +[4778] favorable: 8 +[4779] favorably: 2 +[4780] favorite: 30 +[4781] favorites: 1 +[4782] fear: 20 +[4783] feared: 10 +[4784] fearful: 26 +[4785] fearfully: 6 +[4786] fearing: 7 +[4787] fears: 4 +[4788] feasibility: 1 +[4789] feasts: 1 +[4790] feather: 2 +[4791] feather-head: 2 +[4792] feathers: 1 +[4793] feathery: 2 +[4794] feats: 2 +[4795] feature: 1 +[4796] features: 5 +[4797] february: 2 +[4798] fed: 5 +[4799] federal: 2 +[4800] federovna: 1 +[4801] fedoritch: 1 +[4802] fedorovitch: 2 +[4803] fedot: 1 +[4804] fee: 8 +[4805] feeble: 4 +[4806] feebleness: 1 +[4807] feebler: 1 +[4808] feebly: 2 +[4809] feed: 2 +[4810] feeding: 4 +[4811] feel: 139 +[4812] feel--especially: 1 +[4813] feel--see: 1 +[4814] feeling: 344 +[4815] feeling--at: 1 +[4816] feeling--they: 1 +[4817] feeling...it's: 1 +[4818] feelings: 56 +[4819] feels: 17 +[4820] fees: 5 +[4821] feet: 50 +[4822] feign: 1 +[4823] feigned: 1 +[4824] feigning: 1 +[4825] fell: 85 +[4826] felling: 1 +[4827] fellow: 62 +[4828] fellow's: 2 +[4829] fellow-christians: 1 +[4830] fellow-officials: 1 +[4831] fellow-passengers: 1 +[4832] fellow-worker: 1 +[4833] fellow...semyonov: 1 +[4834] fellows: 6 +[4835] felt: 553 +[4836] felt--as: 1 +[4837] female: 7 +[4838] feminine: 8 +[4839] femme: 2 +[4840] fence: 2 +[4841] fenced: 1 +[4842] fenced-in: 1 +[4843] fences: 3 +[4844] fer: 1 +[4845] ferai: 1 +[4846] ferreting: 1 +[4847] ferrets: 1 +[4848] fertinghof: 1 +[4849] fervently: 1 +[4850] fervor: 5 +[4851] festive: 2 +[4852] festively: 1 +[4853] festivities: 1 +[4854] fetch: 21 +[4855] fetched: 1 +[4856] fetching: 4 +[4857] feud: 1 +[4858] fever: 6 +[4859] feverish: 3 +[4860] feverish-looking: 1 +[4861] few: 78 +[4862] fewer: 1 +[4863] fickle: 1 +[4864] fictitious: 3 +[4865] fiddles: 1 +[4866] fidelity: 2 +[4867] fidgeting: 3 +[4868] fidgety: 3 +[4869] field: 7 +[4870] fields: 25 +[4871] fiend: 2 +[4872] fifteen: 11 +[4873] fifteenth: 1 +[4874] fifth: 4 +[4875] fifty: 18 +[4876] fight: 12 +[4877] fighting: 2 +[4878] figure: 85 +[4879] figured: 1 +[4880] figures: 16 +[4881] figurez-vous: 1 +[4882] filbert-shaped: 1 +[4883] filch: 1 +[4884] file: 4 +[4885] files: 2 +[4886] filez: 1 +[4887] filial: 1 +[4888] filippov: 1 +[4889] fill: 3 +[4890] filled: 34 +[4891] filling: 12 +[4892] fills: 1 +[4893] filtered: 1 +[4894] filth: 1 +[4895] filthy: 7 +[4896] fin: 1 +[4897] final: 9 +[4898] finally: 11 +[4899] finance: 1 +[4900] finances: 3 +[4901] financial: 4 +[4902] find: 149 +[4903] finding: 27 +[4904] finds: 4 +[4905] fine: 51 +[4906] fine--the: 1 +[4907] fineness: 1 +[4908] finesses: 1 +[4909] finest: 1 +[4910] finger: 28 +[4911] fingering: 1 +[4912] fingers: 44 +[4913] fingers--see: 1 +[4914] finish: 22 +[4915] finished: 63 +[4916] finishes: 1 +[4917] finishing: 12 +[4918] finnish: 1 +[4919] finogen: 1 +[4920] fire: 15 +[4921] fired: 5 +[4922] fireplaces: 1 +[4923] fires: 2 +[4924] firing: 1 +[4925] firm: 16 +[4926] firmament: 1 +[4927] firmer: 2 +[4928] firmest: 1 +[4929] firmly: 25 +[4930] firmness: 4 +[4931] first: 340 +[4932] first-class: 2 +[4933] first-rate: 15 +[4934] fish: 13 +[4935] fishing: 1 +[4936] fishmonger: 1 +[4937] fist: 2 +[4938] fists: 2 +[4939] fit: 13 +[4940] fitness: 1 +[4941] fits: 4 +[4942] fitted: 3 +[4943] fitting: 6 +[4944] fittingly: 1 +[4945] fittings: 1 +[4946] five: 62 +[4947] five-rouble: 1 +[4948] fix: 3 +[4949] fixed: 43 +[4950] fixedly: 1 +[4951] fixing: 1 +[4952] flag: 1 +[4953] flagged: 1 +[4954] flagging: 1 +[4955] flags: 1 +[4956] flagstones: 1 +[4957] flame: 1 +[4958] flaming: 1 +[4959] flare: 1 +[4960] flared: 1 +[4961] flash: 12 +[4962] flashed: 14 +[4963] flashes: 2 +[4964] flashing: 9 +[4965] flat: 9 +[4966] flatirons: 1 +[4967] flatter: 1 +[4968] flattered: 3 +[4969] flattering: 5 +[4970] flattery: 1 +[4971] flavor: 2 +[4972] flaxen: 2 +[4973] flaxen-headed: 2 +[4974] flay: 2 +[4975] flecked: 2 +[4976] fleecy: 2 +[4977] fleeing: 1 +[4978] fleeting: 1 +[4979] flensburg: 2 +[4980] flerov: 4 +[4981] flerov's: 3 +[4982] flesh: 2 +[4983] fleshless: 1 +[4984] fleshly: 1 +[4985] fleshy: 1 +[4986] fleurs: 2 +[4987] flew: 32 +[4988] flickered: 3 +[4989] flickering: 2 +[4990] flies: 8 +[4991] flight: 5 +[4992] fling: 8 +[4993] flinging: 12 +[4994] flints: 1 +[4995] flippantly: 1 +[4996] flirtation: 3 +[4997] flirted: 4 +[4998] flirting: 2 +[4999] flitch: 1 +[5000] flitted: 2 +[5001] flitting: 1 +[5002] float: 3 +[5003] floated: 7 +[5004] floating: 8 +[5005] flock: 1 +[5006] flocked: 1 +[5007] flog: 1 +[5008] flood: 3 +[5009] flooded: 9 +[5010] floodgates: 1 +[5011] flooding: 1 +[5012] floor: 23 +[5013] floors: 3 +[5014] floors--all: 1 +[5015] flounce: 1 +[5016] flounces: 1 +[5017] floundering: 1 +[5018] flour: 2 +[5019] flourishing: 4 +[5020] flow: 7 +[5021] flowed: 2 +[5022] flower: 10 +[5023] flowerbeds: 1 +[5024] flowered: 1 +[5025] flowering: 3 +[5026] flowers: 25 +[5027] flowing: 2 +[5028] flown: 7 +[5029] fluent: 2 +[5030] fluently: 1 +[5031] flung: 27 +[5032] flurried: 1 +[5033] flush: 12 +[5034] flushed: 29 +[5035] flushing: 20 +[5036] fluttered: 4 +[5037] fluttering: 5 +[5038] fly: 8 +[5039] fly-away: 1 +[5040] flying: 27 +[5041] foaming: 1 +[5042] fodder: 1 +[5043] foe: 1 +[5044] fog: 6 +[5045] foisting: 1 +[5046] fokanitch: 3 +[5047] fold: 1 +[5048] folded: 4 +[5049] folding: 6 +[5050] folds: 5 +[5051] foliage: 1 +[5052] folks: 3 +[5053] folle: 1 +[5054] follow: 18 +[5055] followed: 62 +[5056] followed--long: 1 +[5057] followers: 2 +[5058] following: 30 +[5059] follows: 7 +[5060] folly: 1 +[5061] fomin: 1 +[5062] fomin's: 3 +[5063] fomitch: 1 +[5064] fomitch--start: 1 +[5065] fond: 42 +[5066] fondant: 1 +[5067] food: 16 +[5068] fool: 17 +[5069] fool's: 1 +[5070] fooling: 1 +[5071] foolish: 5 +[5072] foolishness: 2 +[5073] fools: 3 +[5074] foot: 21 +[5075] footboard: 1 +[5076] foothold: 1 +[5077] footing: 1 +[5078] footlights: 5 +[5079] footman: 44 +[5080] footman's: 1 +[5081] footmen: 10 +[5082] footpath: 1 +[5083] footstep: 1 +[5084] footsteps: 5 +[5085] footsteps--his: 1 +[5086] for: 2729 +[5087] for--as: 1 +[5088] for--divorce: 1 +[5089] for--was: 1 +[5090] forage: 2 +[5091] forbade: 1 +[5092] forbid--it: 1 +[5093] forbidden: 6 +[5094] forbidding: 1 +[5095] force: 64 +[5096] force--the: 1 +[5097] forced: 18 +[5098] forces: 8 +[5099] forces,--she: 1 +[5100] forcibly: 1 +[5101] forcing: 3 +[5102] forcé: 1 +[5103] fore-legs: 2 +[5104] forecasts: 1 +[5105] forefathers--that: 1 +[5106] forefinger: 2 +[5107] forego: 3 +[5108] foregone: 2 +[5109] foreground: 1 +[5110] forehead: 20 +[5111] foreign: 15 +[5112] foreigner: 1 +[5113] foremost: 4 +[5114] foremost--it: 1 +[5115] forepart: 1 +[5116] forepaws: 1 +[5117] foresaw: 2 +[5118] foresee: 1 +[5119] foreseeing: 4 +[5120] foreseen: 2 +[5121] foreshortened: 1 +[5122] forest: 43 +[5123] forest's: 1 +[5124] forest--and: 1 +[5125] forest--that: 1 +[5126] foretold: 1 +[5127] forever: 25 +[5128] forever--not: 1 +[5129] forfeits: 1 +[5130] forgave: 9 +[5131] forget: 57 +[5132] forget--his: 1 +[5133] forgetfulness: 2 +[5134] forgetting: 25 +[5135] forgive: 73 +[5136] forgive--have: 1 +[5137] forgive...remember: 1 +[5138] forgiven: 10 +[5139] forgiven--that: 1 +[5140] forgiveness: 24 +[5141] forgives: 2 +[5142] forgiving: 2 +[5143] forgot: 25 +[5144] forgotten: 41 +[5145] forgotten--death: 1 +[5146] fork: 9 +[5147] forkfuls: 1 +[5148] forks: 1 +[5149] form: 43 +[5150] formal: 4 +[5151] formalities: 1 +[5152] formality: 2 +[5153] format: 4 +[5154] formation: 1 +[5155] formats: 2 +[5156] formed: 11 +[5157] former: 37 +[5158] formerly: 4 +[5159] formidable: 2 +[5160] forming: 6 +[5161] forms: 13 +[5162] formulate: 1 +[5163] formulated: 1 +[5164] forsake: 1 +[5165] forsaken: 1 +[5166] forth: 15 +[5167] forthcoming: 1 +[5168] fortifying: 1 +[5169] fortnight: 4 +[5170] fortnight...and: 1 +[5171] fortunate: 4 +[5172] fortunately: 1 +[5173] fortune: 14 +[5174] fortune's: 1 +[5175] fortunes: 1 +[5176] forty: 13 +[5177] forty--thirty-seven: 1 +[5178] forty-five: 3 +[5179] forty-two: 2 +[5180] forward: 46 +[5181] forwards: 2 +[5182] fought: 2 +[5183] foul: 4 +[5184] foulde's: 2 +[5185] found: 140 +[5186] found--a: 1 +[5187] foundation: 30 +[5188] foundation's: 3 +[5189] founded: 12 +[5190] founder: 1 +[5191] founding: 1 +[5192] foundling: 1 +[5193] four: 33 +[5194] four-in-hand: 2 +[5195] four-year-old: 1 +[5196] fourpence: 1 +[5197] fourteen: 3 +[5198] fourth: 6 +[5199] fourthly: 2 +[5200] fowls: 1 +[5201] foyer: 1 +[5202] fraction: 1 +[5203] fragment: 1 +[5204] fragmentary: 1 +[5205] fragrance: 3 +[5206] fragrant: 10 +[5207] frame: 27 +[5208] frames: 1 +[5209] framework: 2 +[5210] framing: 1 +[5211] francais: 1 +[5212] france: 2 +[5213] frank: 2 +[5214] frankfort: 1 +[5215] franklin: 2 +[5216] frankly: 3 +[5217] frankness: 2 +[5218] frantically: 1 +[5219] fraud: 2 +[5220] freaks: 1 +[5221] free: 47 +[5222] free-thinker: 1 +[5223] free-thinkers: 2 +[5224] free-thinking: 1 +[5225] free-thought: 1 +[5226] free-trade: 1 +[5227] freedom: 36 +[5228] freely: 14 +[5229] freezing: 1 +[5230] french: 80 +[5231] french--graceful: 1 +[5232] frenchman: 10 +[5233] frenchman's: 1 +[5234] frenchwoman: 9 +[5235] frenchwoman's: 1 +[5236] frenzy: 1 +[5237] frequent: 7 +[5238] frequently: 9 +[5239] frescoes: 1 +[5240] fresh: 63 +[5241] fresh-baked: 1 +[5242] freshen: 1 +[5243] freshened: 1 +[5244] fresher: 1 +[5245] freshly: 10 +[5246] freshness: 8 +[5247] fret: 6 +[5248] fretted: 2 +[5249] fretting: 3 +[5250] friday: 3 +[5251] friedrich: 1 +[5252] friend: 106 +[5253] friend's: 7 +[5254] friendliness: 10 +[5255] friendly: 32 +[5256] friends: 84 +[5257] friends--i: 1 +[5258] friends--to: 1 +[5259] friendship: 13 +[5260] friendship's: 1 +[5261] friendship--if: 1 +[5262] friendships: 1 +[5263] fright: 3 +[5264] frighten: 2 +[5265] frightened: 30 +[5266] frightening: 2 +[5267] frightens: 1 +[5268] frigid: 10 +[5269] frigidly: 1 +[5270] frills: 1 +[5271] fringed: 2 +[5272] frippery: 1 +[5273] frisked: 1 +[5274] frivolity: 1 +[5275] frivolous: 6 +[5276] fro: 5 +[5277] frock: 8 +[5278] frock-coats: 1 +[5279] frockcoats: 1 +[5280] frocks: 2 +[5281] frogs: 4 +[5282] frolicked: 1 +[5283] from: 1319 +[5284] front: 51 +[5285] frost: 9 +[5286] frosty: 4 +[5287] frothing: 1 +[5288] frou-frou: 19 +[5289] frou-frou's: 3 +[5290] frown: 4 +[5291] frowned: 16 +[5292] frowning: 29 +[5293] frowning--give: 1 +[5294] frozen: 7 +[5295] fruit: 2 +[5296] fruitful: 3 +[5297] fruitfulness: 1 +[5298] fruitless: 2 +[5299] fruitlessly: 1 +[5300] fruits: 1 +[5301] fruits_...etc: 1 +[5302] fulfilled: 3 +[5303] fulfilling: 2 +[5304] fulfillment: 1 +[5305] full: 113 +[5306] full-blooded: 1 +[5307] full-fledged: 1 +[5308] full-length: 1 +[5309] full-skirted: 1 +[5310] fullest: 4 +[5311] fully: 38 +[5312] fully-developed: 1 +[5313] fulness: 2 +[5314] fumbled: 1 +[5315] fumbling: 5 +[5316] fumes: 1 +[5317] fun: 8 +[5318] function: 1 +[5319] functionaries: 4 +[5320] functionary: 3 +[5321] functions--the: 1 +[5322] fundamental: 5 +[5323] funeral: 5 +[5324] fungus: 3 +[5325] funguses: 1 +[5326] funnel: 1 +[5327] funny: 5 +[5328] fur: 17 +[5329] fur-lined: 1 +[5330] furious: 10 +[5331] furnish: 1 +[5332] furnished: 1 +[5333] furniture: 6 +[5334] furrow: 1 +[5335] furrows: 3 +[5336] further: 40 +[5337] furthest: 4 +[5338] fury: 13 +[5339] fuss: 5 +[5340] fussing: 1 +[5341] futile: 1 +[5342] future: 44 +[5343] future--was: 1 +[5344] future--your: 1 +[5345] fyodor: 18 +[5346] fyodor's: 1 +[5347] fête: 3 +[5348] fürst: 1 +[5349] fürstin: 1 +[5350] gadflies: 1 +[5351] gagin: 4 +[5352] gagin's: 1 +[5353] gaiety: 9 +[5354] gaily: 21 +[5355] gain: 7 +[5356] gained: 17 +[5357] gaining: 4 +[5358] gains: 2 +[5359] gait: 4 +[5360] gaiters: 4 +[5361] gallant: 4 +[5362] gallant-looking: 1 +[5363] gallantly: 1 +[5364] gallants: 1 +[5365] galleries: 3 +[5366] gallery: 1 +[5367] gallop: 10 +[5368] galloped: 8 +[5369] galloping: 5 +[5370] galoshes: 5 +[5371] galtsin: 1 +[5372] gambetta: 1 +[5373] gambler: 2 +[5374] gambling: 1 +[5375] game: 31 +[5376] game-bag: 1 +[5377] gang: 1 +[5378] gangs: 1 +[5379] ganz: 1 +[5380] gap: 1 +[5381] gaping: 1 +[5382] garden: 39 +[5383] garden's: 1 +[5384] gardener: 4 +[5385] gardeners: 1 +[5386] gardens: 10 +[5387] garment: 4 +[5388] garments: 1 +[5389] garnett: 2 +[5390] garnies: 1 +[5391] garnish: 1 +[5392] gas: 4 +[5393] gasped: 1 +[5394] gasping: 4 +[5395] gasps: 1 +[5396] gate: 7 +[5397] gatepost: 1 +[5398] gates: 2 +[5399] gathered: 18 +[5400] gathering: 7 +[5401] gauge: 1 +[5402] gautier's: 1 +[5403] gave: 156 +[5404] gay: 13 +[5405] gaze: 8 +[5406] gazed: 45 +[5407] gazetny: 1 +[5408] gazetoy: 1 +[5409] gazette: 1 +[5410] gazing: 37 +[5411] gbnewby@pglaf.org: 1 +[5412] geese: 2 +[5413] gelding: 1 +[5414] gelungen: 1 +[5415] gem: 2 +[5416] gemahlin: 1 +[5417] general: 78 +[5418] generalities: 1 +[5419] generalization: 1 +[5420] generally: 12 +[5421] generally--just: 1 +[5422] generals: 2 +[5423] generation: 3 +[5424] generations: 3 +[5425] generosity: 12 +[5426] generous: 8 +[5427] genial: 2 +[5428] genially: 4 +[5429] genre: 2 +[5430] gentil: 1 +[5431] gentille: 1 +[5432] gentle: 7 +[5433] gentlefolk: 1 +[5434] gentlefolks: 1 +[5435] gentleman: 65 +[5436] gentleman's: 7 +[5437] gentleman--that: 1 +[5438] gentlemanly: 1 +[5439] gentlemen: 27 +[5440] gentleness: 2 +[5441] gentlewoman: 1 +[5442] gently: 13 +[5443] gentry: 2 +[5444] gentry's: 1 +[5445] genuine: 11 +[5446] genuinely: 6 +[5447] gerasim: 1 +[5448] german: 32 +[5449] germans: 3 +[5450] germany: 2 +[5451] gesticulated: 2 +[5452] gesture: 21 +[5453] gesture--terrible: 1 +[5454] gestures: 5 +[5455] get: 302 +[5456] get--secretary: 1 +[5457] get-up: 1 +[5458] gets: 9 +[5459] getting: 174 +[5460] ghost: 1 +[5461] gi: 1 +[5462] giddy: 3 +[5463] gift: 9 +[5464] gifted: 1 +[5465] giggle: 1 +[5466] gilded: 1 +[5467] gilt: 3 +[5468] girl: 105 +[5469] girl's: 7 +[5470] girl--_his: 1 +[5471] girl--he'd: 1 +[5472] girl...i: 1 +[5473] girlish: 5 +[5474] girls: 30 +[5475] give: 196 +[5476] given: 87 +[5477] gives: 11 +[5478] giving: 67 +[5479] glace: 1 +[5480] glad: 171 +[5481] glad--or: 1 +[5482] glad...i: 1 +[5483] gladdened: 1 +[5484] glade: 1 +[5485] gladiator: 15 +[5486] gladiator's: 6 +[5487] gladiators: 1 +[5488] gladly: 3 +[5489] gladness: 4 +[5490] glance: 59 +[5491] glanced: 78 +[5492] glances: 12 +[5493] glancing: 53 +[5494] glare: 1 +[5495] glaring: 3 +[5496] glass: 60 +[5497] glasses: 9 +[5498] glassful: 3 +[5499] gleam: 12 +[5500] gleamed: 6 +[5501] gleaming: 2 +[5502] gleams: 1 +[5503] glee: 1 +[5504] gleeful: 2 +[5505] gleefully: 4 +[5506] glib: 1 +[5507] glided: 1 +[5508] glimpse: 11 +[5509] glimpses: 2 +[5510] glistened: 1 +[5511] glistening: 1 +[5512] glitter: 1 +[5513] glittered: 4 +[5514] glittering: 5 +[5515] gloomily: 23 +[5516] gloominess: 2 +[5517] gloomy: 29 +[5518] glorified: 1 +[5519] glory: 9 +[5520] gloss: 1 +[5521] glossy: 5 +[5522] glove: 16 +[5523] gloves: 7 +[5524] glow: 8 +[5525] glowed: 4 +[5526] glowing: 4 +[5527] glued: 1 +[5528] gnarled: 1 +[5529] gnawing: 4 +[5530] go: 683 +[5531] go-carts: 1 +[5532] goal: 5 +[5533] goals: 1 +[5534] goat-weed: 2 +[5535] goblins: 1 +[5536] god: 155 +[5537] god's: 22 +[5538] god-man: 1 +[5539] godfather: 2 +[5540] godly: 1 +[5541] godmother: 1 +[5542] godsend: 1 +[5543] goes: 18 +[5544] goffered: 1 +[5545] gogol's: 1 +[5546] going: 407 +[5547] going...such: 1 +[5548] gold: 11 +[5549] gold-colored: 1 +[5550] gold-embroidered: 1 +[5551] golden: 3 +[5552] golenishtchev: 57 +[5553] golenishtchev's: 10 +[5554] golistin: 1 +[5555] golitzina: 1 +[5556] golubtsov's: 1 +[5557] gone: 140 +[5558] good: 329 +[5559] good"--again: 1 +[5560] good--why: 1 +[5561] good-bye: 50 +[5562] good-day: 2 +[5563] good-for-nought: 1 +[5564] good-hearted: 15 +[5565] good-humor: 3 +[5566] good-humored: 35 +[5567] good-humored-looking: 1 +[5568] good-humoredly: 14 +[5569] good-looking: 5 +[5570] good-morning: 1 +[5571] good-natured: 25 +[5572] good-naturedly: 4 +[5573] good-night: 4 +[5574] goodbye: 1 +[5575] goodhumored: 2 +[5576] goodhumoredly: 1 +[5577] goodness: 14 +[5578] goods: 2 +[5579] goodwill: 2 +[5580] goose: 3 +[5581] goose-flesh: 1 +[5582] gore: 1 +[5583] gorgeous: 2 +[5584] gospel: 6 +[5585] gossip: 7 +[5586] gossiped: 3 +[5587] got: 277 +[5588] govern: 1 +[5589] governess: 33 +[5590] governess's: 4 +[5591] governing: 1 +[5592] government: 43 +[5593] government--this: 1 +[5594] governmental: 1 +[5595] governor: 10 +[5596] governor's: 1 +[5597] governor--with: 1 +[5598] governor-general: 1 +[5599] governors: 1 +[5600] gown: 28 +[5601] grabovsky: 1 +[5602] grace: 11 +[5603] graceful: 9 +[5604] graces: 1 +[5605] gracious: 6 +[5606] graciously: 1 +[5607] grade: 2 +[5608] gradually: 6 +[5609] grafted: 1 +[5610] grain: 8 +[5611] grains: 2 +[5612] grammar: 3 +[5613] granary: 3 +[5614] grand: 10 +[5615] grandchild: 1 +[5616] grandchildren: 1 +[5617] granddaughter: 1 +[5618] grande: 1 +[5619] grandeur: 6 +[5620] grandfather: 4 +[5621] grandfather's: 2 +[5622] grandmamma's: 1 +[5623] grandson: 2 +[5624] granny: 1 +[5625] grant: 5 +[5626] granted: 2 +[5627] granting: 1 +[5628] grants: 1 +[5629] grape-shot: 1 +[5630] grasp: 6 +[5631] grasped: 6 +[5632] grasping: 3 +[5633] grass: 69 +[5634] grasslands: 1 +[5635] grassy: 1 +[5636] grateful: 16 +[5637] gratefully: 3 +[5638] gratification: 5 +[5639] gratify: 1 +[5640] gratings: 1 +[5641] gratitude: 3 +[5642] grave: 5 +[5643] gravel: 5 +[5644] gravely: 1 +[5645] gravity: 13 +[5646] gray: 37 +[5647] gray-green: 2 +[5648] gray-headed: 1 +[5649] gray-whiskered: 3 +[5650] grayish: 1 +[5651] grays: 3 +[5652] graze: 1 +[5653] grazed: 2 +[5654] grazing: 1 +[5655] greasy: 1 +[5656] great: 206 +[5657] great--ideas: 1 +[5658] great--in: 1 +[5659] greater: 39 +[5660] greatest: 13 +[5661] greatly: 23 +[5662] greatness: 1 +[5663] greedily: 3 +[5664] greediness: 1 +[5665] greedy: 2 +[5666] greek: 1 +[5667] green: 22 +[5668] greener: 2 +[5669] greenish: 1 +[5670] greens: 1 +[5671] greet: 8 +[5672] greeted: 19 +[5673] greeting: 14 +[5674] greetings: 6 +[5675] gregory: 1 +[5676] gretchen: 1 +[5677] grew: 31 +[5678] grief: 12 +[5679] griefs: 1 +[5680] grievance: 1 +[5681] grieve: 7 +[5682] grieving: 1 +[5683] grim: 1 +[5684] grimed: 1 +[5685] grimm's: 1 +[5686] grin: 1 +[5687] grinevitch: 5 +[5688] grinevitch"--and: 1 +[5689] grinevitch's: 3 +[5690] grinned: 1 +[5691] gripped: 1 +[5692] gripping: 2 +[5693] grisha: 34 +[5694] grisha's: 2 +[5695] gritsky's: 1 +[5696] grizzled: 2 +[5697] groaned: 4 +[5698] groaning: 2 +[5699] groans: 2 +[5700] groom: 8 +[5701] gross: 2 +[5702] grossest: 1 +[5703] grotesque: 1 +[5704] grotesque-looking: 1 +[5705] ground: 56 +[5706] grounded: 1 +[5707] groundless: 3 +[5708] grounds: 10 +[5709] group: 16 +[5710] grouped: 2 +[5711] groups: 5 +[5712] groups--those: 1 +[5713] grouse: 18 +[5714] grouse-marsh: 1 +[5715] grow: 12 +[5716] growing: 34 +[5717] grown: 39 +[5718] grown-up: 11 +[5719] grownup: 1 +[5720] grows: 1 +[5721] growth: 2 +[5722] grudge: 3 +[5723] grudged: 1 +[5724] gruff: 1 +[5725] grumble: 1 +[5726] guarantee: 4 +[5727] guarantee?--to: 1 +[5728] guard: 10 +[5729] guard's: 1 +[5730] guarded: 1 +[5731] guardianship: 2 +[5732] guards: 6 +[5733] guelder-rose: 1 +[5734] guess: 18 +[5735] guessed: 14 +[5736] guesses: 1 +[5737] guessing: 6 +[5738] guest: 9 +[5739] guest's: 1 +[5740] guests: 29 +[5741] guests--sergey: 1 +[5742] guidance: 6 +[5743] guide: 8 +[5744] guide-book: 1 +[5745] guidebook: 1 +[5746] guided: 11 +[5747] guiding: 3 +[5748] guile: 1 +[5749] guileless: 1 +[5750] guilt: 1 +[5751] guilty: 24 +[5752] guipure: 1 +[5753] gulf: 1 +[5754] gulp: 1 +[5755] gulping: 2 +[5756] gun: 32 +[5757] guns: 5 +[5758] guns--the: 1 +[5759] gurin's: 1 +[5760] gush: 1 +[5761] gushed: 1 +[5762] gussets: 1 +[5763] gust: 1 +[5764] gusts: 1 +[5765] gutenberg: 30 +[5766] gutenberg-tm: 56 +[5767] gutenberg-tm's: 1 +[5768] guttering: 1 +[5769] guttural: 4 +[5770] gvozdyov: 4 +[5771] gymnast: 2 +[5772] gymnastic: 3 +[5773] gymnastics: 4 +[5774] gypsies: 3 +[5775] gypsy: 1 +[5776] h: 1 +[5777] habit: 29 +[5778] habits: 14 +[5779] habitual: 16 +[5780] habitually: 2 +[5781] hack: 1 +[5782] hacks: 1 +[5783] had: 3853 +[5784] hadn't: 14 +[5785] hagar: 1 +[5786] haggle: 2 +[5787] haggling: 2 +[5788] hail: 2 +[5789] hailstones: 1 +[5790] hair: 91 +[5791] hair--her: 2 +[5792] hair-dresser: 1 +[5793] hair-dressing: 1 +[5794] hairpins: 3 +[5795] hairs: 2 +[5796] hairy: 2 +[5797] half: 69 +[5798] half-asleep: 1 +[5799] half-awake: 1 +[5800] half-brother: 3 +[5801] half-burned: 1 +[5802] half-closing: 3 +[5803] half-crop: 2 +[5804] half-dark: 1 +[5805] half-desperate: 1 +[5806] half-dozen: 1 +[5807] half-grown: 1 +[5808] half-joking: 1 +[5809] half-light: 1 +[5810] half-long: 1 +[5811] half-mirthful: 1 +[5812] half-mown: 1 +[5813] half-opened: 1 +[5814] half-past: 11 +[5815] half-penny: 1 +[5816] half-profits: 1 +[5817] half-shut: 1 +[5818] half-thawed: 1 +[5819] half-unbuttoned: 1 +[5820] half-way: 3 +[5821] half-witted: 3 +[5822] halfheartedly: 1 +[5823] halfpence: 3 +[5824] halfpenny: 3 +[5825] halfway: 2 +[5826] hall: 57 +[5827] hall-porter: 5 +[5828] halt: 1 +[5829] halted: 3 +[5830] halves: 3 +[5831] hamburg: 1 +[5832] hammer: 2 +[5833] hand: 387 +[5834] hand--"that: 1 +[5835] handbag: 2 +[5836] handed: 27 +[5837] handfuls: 1 +[5838] handing: 11 +[5839] handiwork: 1 +[5840] handkerchief: 15 +[5841] handkerchiefs: 1 +[5842] handle: 2 +[5843] handle's: 1 +[5844] handling: 1 +[5845] hands: 221 +[5846] hands--she: 1 +[5847] handsome: 46 +[5848] handsomely: 2 +[5849] handsomer: 2 +[5850] handwriting: 4 +[5851] hang: 4 +[5852] hanging: 22 +[5853] hangings: 2 +[5854] hannah: 2 +[5855] hapilovo: 1 +[5856] happen: 15 +[5857] happen--that: 1 +[5858] happened: 87 +[5859] happening: 9 +[5860] happens: 11 +[5861] happens--and: 1 +[5862] happier: 4 +[5863] happiest: 9 +[5864] happily: 7 +[5865] happiness: 126 +[5866] happy: 153 +[5867] happy--and: 1 +[5868] harassed: 5 +[5869] harassing: 1 +[5870] hard: 51 +[5871] hard-uddered: 1 +[5872] harder: 6 +[5873] hardly: 51 +[5874] hardness: 2 +[5875] hardships: 1 +[5876] hare: 1 +[5877] harem: 1 +[5878] harkov: 1 +[5879] harm: 17 +[5880] harmful: 5 +[5881] harmless: 2 +[5882] harmoniously: 1 +[5883] harmonized: 1 +[5884] harmony: 9 +[5885] harness: 5 +[5886] harnessed: 6 +[5887] harnessing: 1 +[5888] harrowing: 2 +[5889] harrows: 7 +[5890] harsh: 2 +[5891] hart: 2 +[5892] harvest: 3 +[5893] harvest--every: 1 +[5894] harvesting: 1 +[5895] has: 406 +[5896] hasn't: 10 +[5897] hast: 4 +[5898] haste: 53 +[5899] hastened: 4 +[5900] hastily: 9 +[5901] hasty: 5 +[5902] hat: 83 +[5903] hat--all: 1 +[5904] hatching: 1 +[5905] hate: 23 +[5906] hated: 9 +[5907] hateful: 19 +[5908] hates: 9 +[5909] hating: 6 +[5910] hatred: 25 +[5911] hatred--a: 1 +[5912] hats: 5 +[5913] hatstand: 1 +[5914] hatt: 1 +[5915] haughtily: 1 +[5916] haughtiness: 2 +[5917] haughty: 4 +[5918] haunch: 1 +[5919] haunches: 1 +[5920] haunted: 3 +[5921] haunting: 1 +[5922] have: 1274 +[5923] have!--i: 1 +[5924] haven't: 39 +[5925] having: 152 +[5926] hawk: 3 +[5927] hawking: 1 +[5928] hawklike: 1 +[5929] hawks: 4 +[5930] hay: 45 +[5931] hay's: 1 +[5932] hay--it: 1 +[5933] hay-barn: 1 +[5934] hay-making: 1 +[5935] haycock: 7 +[5936] haycocks: 5 +[5937] haycutting: 1 +[5938] haying: 1 +[5939] haymakers: 1 +[5940] haystacks: 1 +[5941] hazarded: 1 +[5942] hazards: 1 +[5943] haze: 1 +[5944] hazel: 2 +[5945] he: 7496 +[5946] he'd: 10 +[5947] he'll: 32 +[5948] he's: 251 +[5949] he--with: 1 +[5950] he?--no: 1 +[5951] head: 289 +[5952] head's: 1 +[5953] head--one: 1 +[5954] head-deacon: 1 +[5955] headache: 4 +[5956] heads: 12 +[5957] healed: 2 +[5958] health: 35 +[5959] health's: 1 +[5960] healthy: 15 +[5961] healthy-looking: 4 +[5962] heap: 4 +[5963] heaped: 1 +[5964] heaping: 1 +[5965] heaps: 3 +[5966] hear: 88 +[5967] hear..._vous: 1 +[5968] heard: 253 +[5969] hearing: 60 +[5970] hears: 1 +[5971] hearsay: 1 +[5972] heart: 239 +[5973] heart's: 2 +[5974] heart's-ease: 2 +[5975] heart--that: 1 +[5976] heart-rending: 1 +[5977] heartfelt: 1 +[5978] hearth: 2 +[5979] heartily: 1 +[5980] heartless: 3 +[5981] hearts: 8 +[5982] hearty: 1 +[5983] heat: 18 +[5984] heated: 10 +[5985] heating: 2 +[5986] heaved: 1 +[5987] heaven: 5 +[5988] heaven's: 2 +[5989] heavenly: 6 +[5990] heavenly--as: 1 +[5991] heavens: 7 +[5992] heavenwards: 1 +[5993] heavier: 1 +[5994] heavily: 17 +[5995] heaviness: 3 +[5996] heaving: 2 +[5997] heavy: 24 +[5998] hedge: 5 +[5999] hedges: 5 +[6000] heed: 2 +[6001] heedless: 1 +[6002] heedlessly: 2 +[6003] heedlessness: 1 +[6004] heel: 7 +[6005] heels: 6 +[6006] hegel: 1 +[6007] height: 14 +[6008] heighten: 1 +[6009] heights: 3 +[6010] heir: 1 +[6011] heirs: 2 +[6012] held: 58 +[6013] helen: 1 +[6014] hell: 1 +[6015] hellebore: 1 +[6016] helmet: 8 +[6017] helmets: 3 +[6018] help: 159 +[6019] helped: 21 +[6020] helping: 6 +[6021] helpless: 8 +[6022] helplessly: 3 +[6023] helplessness: 3 +[6024] helpmeet: 1 +[6025] helps: 1 +[6026] helsingfors: 2 +[6027] hemp: 3 +[6028] hen: 1 +[6029] hen-roost: 3 +[6030] hence: 2 +[6031] her: 5071 +[6032] her--a: 2 +[6033] her--always: 1 +[6034] her--and: 1 +[6035] her--by: 1 +[6036] her--for: 1 +[6037] her--high: 1 +[6038] her--to: 1 +[6039] her--you: 1 +[6040] her...it's: 1 +[6041] her_--that: 1 +[6042] herb: 2 +[6043] herb-brandy: 1 +[6044] herbs: 1 +[6045] herd: 8 +[6046] herding: 1 +[6047] herdsman: 3 +[6048] here: 337 +[6049] here"--he: 1 +[6050] here's: 20 +[6051] here--gentlemen: 1 +[6052] here--he's: 1 +[6053] here...i: 2 +[6054] here...though: 1 +[6055] heritage: 1 +[6056] hermitage: 2 +[6057] hero: 5 +[6058] heroes: 1 +[6059] heroic: 2 +[6060] heroine: 2 +[6061] heroism: 1 +[6062] herrings: 1 +[6063] hers: 16 +[6064] herself: 313 +[6065] herself--"stepan: 1 +[6066] herself--_stranger: 1 +[6067] herself--how: 1 +[6068] herzegovina: 1 +[6069] hesitate: 2 +[6070] hesitated: 6 +[6071] hesitating: 5 +[6072] hesitatingly: 2 +[6073] hesitation: 14 +[6074] heures: 1 +[6075] hey: 2 +[6076] heyday: 1 +[6077] hi: 5 +[6078] hid: 17 +[6079] hidden: 11 +[6080] hide: 15 +[6081] hideous: 13 +[6082] hideousness: 2 +[6083] hiding: 12 +[6084] hierarchy: 1 +[6085] hieroglyphics: 3 +[6086] high: 95 +[6087] high-flown: 2 +[6088] high-heeled: 1 +[6089] high-pitched: 1 +[6090] high-principled: 1 +[6091] higher: 30 +[6092] highest: 31 +[6093] highly: 14 +[6094] highness: 1 +[6095] highroad: 8 +[6096] highroads: 1 +[6097] hillock: 3 +[6098] hillocks: 1 +[6099] hills: 2 +[6100] hillside: 2 +[6101] him: 3144 +[6102] him,--this: 1 +[6103] him--"what: 1 +[6104] him--all: 3 +[6105] him--and: 1 +[6106] him--for: 1 +[6107] him--he: 4 +[6108] him--middle-aged: 1 +[6109] him--now: 1 +[6110] him--so: 1 +[6111] him--what: 1 +[6112] him--whether: 1 +[6113] him."--"you're: 1 +[6114] him...he: 1 +[6115] himmlisch: 1 +[6116] himself: 606 +[6117] himself--"you: 1 +[6118] himself--a: 1 +[6119] himself--clutching: 1 +[6120] himself--in: 1 +[6121] himself--it: 1 +[6122] himself--merely: 1 +[6123] himself--much: 1 +[6124] himself--to: 1 +[6125] himself--what: 1 +[6126] hind: 4 +[6127] hind-legs: 1 +[6128] hind-quarters: 6 +[6129] hinder: 6 +[6130] hindered: 8 +[6131] hindering: 1 +[6132] hindpaw: 1 +[6133] hindrance: 7 +[6134] hindrance--that's: 1 +[6135] hindrances: 2 +[6136] hint: 11 +[6137] hinted: 5 +[6138] hinting: 1 +[6139] hints: 3 +[6140] hippopotamus: 1 +[6141] hips: 3 +[6142] hire: 6 +[6143] hired: 20 +[6144] hiring: 1 +[6145] his: 5227 +[6146] his--he: 1 +[6147] hiss: 3 +[6148] hissed: 1 +[6149] historian: 1 +[6150] historiaris: 1 +[6151] historical: 5 +[6152] historically: 1 +[6153] history: 11 +[6154] hit: 3 +[6155] hitch: 1 +[6156] hitherto: 19 +[6157] hits: 1 +[6158] hitting: 1 +[6159] hive: 1 +[6160] hived: 1 +[6161] hives: 3 +[6162] hliustov: 2 +[6163] hoarfrost: 1 +[6164] hoarse: 3 +[6165] hoarsely: 2 +[6166] hobbled: 2 +[6167] hobby: 2 +[6168] hold: 27 +[6169] holder: 5 +[6170] holding: 64 +[6171] holds: 3 +[6172] hole: 1 +[6173] holes: 2 +[6174] holiday: 9 +[6175] holidays: 2 +[6176] holies: 1 +[6177] hollandka: 1 +[6178] hollow: 6 +[6179] hollow-chested: 1 +[6180] hollowed-out: 1 +[6181] hollows: 1 +[6182] holy: 25 +[6183] home: 216 +[6184] home--worse: 1 +[6185] home-brew: 1 +[6186] home-life: 1 +[6187] homely: 2 +[6188] homespun: 1 +[6189] homeward: 2 +[6190] homewards: 6 +[6191] homiakov: 1 +[6192] homiakov's: 2 +[6193] homme: 2 +[6194] honest: 27 +[6195] honestly: 2 +[6196] honesty: 4 +[6197] honey: 5 +[6198] honeycomb: 1 +[6199] honeymoon: 1 +[6200] honeymoon--that: 1 +[6201] honi: 1 +[6202] honor: 50 +[6203] honor's: 2 +[6204] honorable: 12 +[6205] honors: 2 +[6206] hood: 3 +[6207] hoof: 1 +[6208] hoofs: 8 +[6209] hook: 7 +[6210] hooked: 1 +[6211] hooking: 1 +[6212] hooks: 2 +[6213] hoole: 5 +[6214] hoop: 2 +[6215] hooted: 1 +[6216] hope: 65 +[6217] hoped: 22 +[6218] hopeful: 2 +[6219] hopeless: 10 +[6220] hopelessly: 4 +[6221] hopelessness: 4 +[6222] hopes: 9 +[6223] hoping: 21 +[6224] horizon: 2 +[6225] horns: 1 +[6226] horrible: 15 +[6227] horribly: 4 +[6228] horrid: 8 +[6229] horrified: 12 +[6230] horror: 53 +[6231] horror-stricken: 1 +[6232] horrors: 2 +[6233] horse: 75 +[6234] horse's: 3 +[6235] horse-box: 7 +[6236] horse-breeding: 1 +[6237] horse-guard: 2 +[6238] horse-guards: 2 +[6239] horseback: 9 +[6240] horsecloth: 1 +[6241] horsecloths: 1 +[6242] horsemen: 1 +[6243] horses: 107 +[6244] horses!--there's: 1 +[6245] horses--and: 1 +[6246] hospitable: 2 +[6247] hospitably: 1 +[6248] hospital: 14 +[6249] hospitality: 1 +[6250] host: 15 +[6251] host's: 3 +[6252] hostess: 15 +[6253] hostile: 16 +[6254] hostilely: 1 +[6255] hostility: 12 +[6256] hosts: 2 +[6257] hot: 37 +[6258] hot-looking: 1 +[6259] hotel: 20 +[6260] hotel-keeper: 1 +[6261] hotels: 6 +[6262] hotly: 9 +[6263] hotly--a: 1 +[6264] hounds: 1 +[6265] hour: 47 +[6266] hour's: 1 +[6267] hour--memories: 1 +[6268] hours: 32 +[6269] hours...no: 1 +[6270] house: 208 +[6271] house--all: 1 +[6272] houseflies: 1 +[6273] household: 32 +[6274] household--although: 1 +[6275] housekeeper: 6 +[6276] housekeeping: 4 +[6277] houses: 9 +[6278] housewife's: 1 +[6279] housing: 1 +[6280] hovering: 5 +[6281] how: 793 +[6282] how's: 10 +[6283] how...i: 1 +[6284] how...just: 1 +[6285] however: 56 +[6286] howls: 1 +[6287] http://gutenberg.net/license: 1 +[6288] http://pglaf.org: 2 +[6289] http://pglaf.org/donate: 1 +[6290] http://pglaf.org/fundraising: 1 +[6291] http://www.gutenberg.net: 1 +[6292] http://www.gutenberg.org/1/3/9/1399: 1 +[6293] http://www.pglaf.org: 1 +[6294] huddled: 2 +[6295] hue: 1 +[6296] huebsch: 1 +[6297] hug: 1 +[6298] huge: 30 +[6299] hugely: 1 +[6300] huger: 1 +[6301] hugging: 4 +[6302] hum: 3 +[6303] humaine: 1 +[6304] human: 14 +[6305] humanity: 5 +[6306] humble: 7 +[6307] humbles: 1 +[6308] humbly: 3 +[6309] humbug: 4 +[6310] humbugging: 1 +[6311] humiliate: 3 +[6312] humiliated: 13 +[6313] humiliating: 16 +[6314] humiliatingly: 1 +[6315] humiliation: 27 +[6316] humiliations: 4 +[6317] humility: 1 +[6318] hummed: 2 +[6319] humming: 2 +[6320] humor: 25 +[6321] humored: 5 +[6322] humorous: 2 +[6323] humorously: 3 +[6324] hundred: 52 +[6325] hundred-pound: 1 +[6326] hundred-rouble: 2 +[6327] hundreds: 12 +[6328] hundredth: 4 +[6329] hundredths: 1 +[6330] hung: 14 +[6331] hunger: 4 +[6332] hungrily: 1 +[6333] hungry: 18 +[6334] hunt: 5 +[6335] hunted: 2 +[6336] hunting: 7 +[6337] hunting,--well: 1 +[6338] hunts: 1 +[6339] hurdles: 4 +[6340] hurrah: 2 +[6341] hurrah!"--"and: 1 +[6342] hurried: 7 +[6343] hurriedly: 44 +[6344] hurry: 21 +[6345] hurrying: 6 +[6346] hurt: 28 +[6347] hurting: 3 +[6348] hurts: 1 +[6349] husband: 287 +[6350] husband's: 42 +[6351] husband--all: 1 +[6352] husband--practically: 1 +[6353] husband--that: 2 +[6354] husband:--"after: 1 +[6355] husbandry: 9 +[6356] husbands: 11 +[6357] hush: 5 +[6358] hushed: 1 +[6359] hushes: 1 +[6360] hushing: 2 +[6361] husks: 1 +[6362] husky: 1 +[6363] hussar: 2 +[6364] hussars: 1 +[6365] hut: 13 +[6366] hydra: 2 +[6367] hygienic: 1 +[6368] hypertext: 1 +[6369] hypocrisy: 10 +[6370] hypocritical: 1 +[6371] hypocritically: 1 +[6372] hélène: 1 +[6373] i: 3584 +[6374] i'd: 23 +[6375] i'll: 177 +[6376] i'm: 424 +[6377] i've: 183 +[6378] i--"have: 1 +[6379] i...i: 2 +[6380] i...i...didn't: 1 +[6381] i...i...if: 1 +[6382] i...quite: 1 +[6383] i...you: 1 +[6384] i_"--she: 1 +[6385] ice: 18 +[6386] ice--do: 1 +[6387] ice-covered: 1 +[6388] iced: 2 +[6389] ich: 2 +[6390] id: 1 +[6391] idea: 103 +[6392] idea--he: 1 +[6393] ideal: 7 +[6394] ideals: 1 +[6395] ideas: 80 +[6396] identical: 3 +[6397] identification: 1 +[6398] identify: 1 +[6399] idiocy: 3 +[6400] idiomatic: 1 +[6401] idiot: 1 +[6402] idiotic: 7 +[6403] idle: 8 +[6404] idleness: 3 +[6405] idly: 2 +[6406] idyllic: 1 +[6407] if: 651 +[6408] if--god: 1 +[6409] if...better: 1 +[6410] if...if: 1 +[6411] ignat: 4 +[6412] ignatitch: 2 +[6413] ignatov: 1 +[6414] ignorance: 2 +[6415] ignorant: 3 +[6416] ignorant--that: 1 +[6417] ignore: 2 +[6418] ignored: 1 +[6419] ignoring: 1 +[6420] il: 13 +[6421] ill: 61 +[6422] ill-bred: 1 +[6423] ill-defined: 1 +[6424] ill-disguised: 1 +[6425] ill-fame: 1 +[6426] ill-fated: 1 +[6427] ill-health: 1 +[6428] ill-humor: 3 +[6429] ill-luck: 3 +[6430] ill-matched: 2 +[6431] ill-natured: 1 +[6432] ill-temper: 1 +[6433] ill-tempered: 3 +[6434] ill-timed: 1 +[6435] ill-will: 1 +[6436] illegitimate: 3 +[6437] illicit: 1 +[6438] illiterate: 1 +[6439] illness: 20 +[6440] illnesses: 3 +[6441] illogical: 1 +[6442] illusion: 1 +[6443] illustrate: 1 +[6444] illustration: 1 +[6445] illustrations: 1 +[6446] illyitch: 1 +[6447] ils: 1 +[6448] image: 5 +[6449] images: 8 +[6450] imaginary: 5 +[6451] imagination: 33 +[6452] imagine: 49 +[6453] imagined: 12 +[6454] imagines: 1 +[6455] imagining: 3 +[6456] imaginings: 1 +[6457] imbecile: 1 +[6458] imbeciles: 1 +[6459] imitate: 2 +[6460] imitated: 2 +[6461] imitating: 2 +[6462] imitation: 5 +[6463] imitations: 1 +[6464] immaterial: 1 +[6465] immediate: 5 +[6466] immediately: 98 +[6467] immediately--and: 1 +[6468] immense: 30 +[6469] immensity: 1 +[6470] immoral: 6 +[6471] immorality: 3 +[6472] immortality: 1 +[6473] immovably: 2 +[6474] impalpable: 1 +[6475] impassable: 1 +[6476] impassioned: 1 +[6477] impatience: 7 +[6478] impatient: 4 +[6479] impatiently: 7 +[6480] impelled: 4 +[6481] impending: 1 +[6482] impenetrable: 4 +[6483] imperceptible: 2 +[6484] imperceptibly: 6 +[6485] imperial: 10 +[6486] imperious: 1 +[6487] impersonal: 1 +[6488] impertinence: 1 +[6489] implacable: 1 +[6490] implanting: 1 +[6491] implement: 1 +[6492] implements: 3 +[6493] implements--all: 1 +[6494] implicated: 1 +[6495] implied: 4 +[6496] implore: 2 +[6497] implored: 2 +[6498] implores: 1 +[6499] imploring: 5 +[6500] imploringly: 2 +[6501] imply: 1 +[6502] import: 4 +[6503] importance: 52 +[6504] important: 62 +[6505] important--of: 1 +[6506] imported: 1 +[6507] impose: 1 +[6508] imposed: 1 +[6509] imposing: 2 +[6510] impossibility: 5 +[6511] impossible: 108 +[6512] impossibly: 2 +[6513] impotent: 1 +[6514] impoverished: 1 +[6515] impoverishing: 1 +[6516] impoverishment: 2 +[6517] impracticable: 1 +[6518] impress: 1 +[6519] impressed: 13 +[6520] impression: 61 +[6521] impressions: 6 +[6522] imprinted: 2 +[6523] imprisoned: 1 +[6524] improper: 12 +[6525] improperly: 1 +[6526] impropriety: 1 +[6527] improve: 7 +[6528] improved: 4 +[6529] improvement: 2 +[6530] improvements: 8 +[6531] improving: 2 +[6532] imprudence: 2 +[6533] impudent: 2 +[6534] impulse: 7 +[6535] impulses: 1 +[6536] impulsive: 3 +[6537] impulsively: 1 +[6538] impunity: 1 +[6539] impurities: 1 +[6540] in: 5989 +[6541] in--"and: 1 +[6542] in--her: 1 +[6543] in--levin: 1 +[6544] in--so: 1 +[6545] in-law: 1 +[6546] in...see: 1 +[6547] inability: 3 +[6548] inaccessible: 2 +[6549] inaccurate: 1 +[6550] inactivity: 2 +[6551] inane: 1 +[6552] inapplicable: 1 +[6553] inappropriate: 2 +[6554] inappropriately: 2 +[6555] inaudible: 1 +[6556] inborn: 1 +[6557] incapable: 19 +[6558] incapacity: 1 +[6559] incapacity--i: 1 +[6560] incarnation: 2 +[6561] incautiously: 1 +[6562] incensed: 2 +[6563] incessant: 4 +[6564] incessantly: 6 +[6565] incident: 6 +[6566] incidental: 3 +[6567] incidentally: 1 +[6568] incidents: 6 +[6569] incidents--paltry: 1 +[6570] incitement: 1 +[6571] inclination: 6 +[6572] inclinations: 2 +[6573] inclined: 2 +[6574] include: 1 +[6575] included: 3 +[6576] includes: 1 +[6577] including: 10 +[6578] incognito: 1 +[6579] incoherence: 1 +[6580] incoherent: 1 +[6581] income: 11 +[6582] incomes: 2 +[6583] incommensurable: 1 +[6584] incomparably: 1 +[6585] incomplete: 2 +[6586] incomprehensible: 16 +[6587] incomprehensibly: 2 +[6588] inconceivable: 3 +[6589] inconceivably: 1 +[6590] incongruous: 1 +[6591] inconsistent: 1 +[6592] inconsolable: 1 +[6593] inconspicuous: 2 +[6594] incontestable: 5 +[6595] incontestably: 3 +[6596] inconvenient: 1 +[6597] incorrectness: 1 +[6598] incorrigible: 2 +[6599] increase: 5 +[6600] increased: 6 +[6601] increasing: 7 +[6602] increasingly: 1 +[6603] incredible: 2 +[6604] incredulity: 1 +[6605] incredulous: 1 +[6606] incurred: 1 +[6607] indecision: 2 +[6608] indecorous: 1 +[6609] indeed: 98 +[6610] indeed--zola: 1 +[6611] indefinable: 1 +[6612] indefinite: 2 +[6613] indefiniteness: 6 +[6614] indemnify: 1 +[6615] indemnity: 1 +[6616] independence: 7 +[6617] independent: 12 +[6618] independently: 5 +[6619] indescribable: 1 +[6620] indestructibility: 1 +[6621] india: 2 +[6622] indicate: 2 +[6623] indicated: 5 +[6624] indicating: 14 +[6625] indications: 2 +[6626] indicative: 2 +[6627] indifference: 23 +[6628] indifferent: 18 +[6629] indifferently: 6 +[6630] indignant: 3 +[6631] indignation: 6 +[6632] indirect: 1 +[6633] indirectly: 2 +[6634] indiscreet: 1 +[6635] indiscriminately: 1 +[6636] indispensable: 3 +[6637] indisposed: 1 +[6638] indisposition: 3 +[6639] indistinctly: 1 +[6640] individual: 11 +[6641] individualistic: 1 +[6642] individuality: 1 +[6643] individually: 3 +[6644] individuals: 1 +[6645] indolence: 1 +[6646] indoor: 1 +[6647] indoors: 5 +[6648] indubitable: 2 +[6649] indubitable--she: 1 +[6650] indubitably: 3 +[6651] induce: 2 +[6652] induced: 3 +[6653] inducement: 1 +[6654] indulge: 1 +[6655] indulged: 1 +[6656] indulgence: 2 +[6657] indulgent: 3 +[6658] inequality: 4 +[6659] inertia: 2 +[6660] inevitability: 3 +[6661] inevitable: 10 +[6662] inevitably: 9 +[6663] inexact: 1 +[6664] inexcusably: 1 +[6665] inexhaustible: 1 +[6666] inexpensive: 1 +[6667] inexperience: 1 +[6668] inexperienced: 2 +[6669] inexplicable: 2 +[6670] infallible: 4 +[6671] infallibly: 2 +[6672] infamous: 3 +[6673] infant: 1 +[6674] infantry: 3 +[6675] infatuation: 1 +[6676] infected: 11 +[6677] infectious: 5 +[6678] infectiously: 1 +[6679] inferior: 5 +[6680] inferiors: 1 +[6681] infernal: 3 +[6682] infidelities: 1 +[6683] infidelity: 10 +[6684] infinite: 6 +[6685] inflammation: 2 +[6686] influence: 44 +[6687] influenced: 3 +[6688] influences: 2 +[6689] influential: 2 +[6690] influx: 1 +[6691] inform: 10 +[6692] information: 13 +[6693] informed: 8 +[6694] informs: 1 +[6695] infrequent: 1 +[6696] infrequently: 1 +[6697] infringement: 1 +[6698] infuriated: 1 +[6699] ingenious: 1 +[6700] ingeniously: 1 +[6701] ingenuity: 1 +[6702] ingratiate: 1 +[6703] ingratiating: 2 +[6704] ingredient: 1 +[6705] inhale: 1 +[6706] inhaling: 1 +[6707] inheritance: 1 +[6708] inherited: 1 +[6709] inimitable: 1 +[6710] initial: 3 +[6711] initiated: 1 +[6712] injudicious: 1 +[6713] injured: 7 +[6714] injuring: 1 +[6715] injuriously: 1 +[6716] injury: 1 +[6717] injury--generals: 1 +[6718] injustice: 6 +[6719] ink: 1 +[6720] inmost: 2 +[6721] inn: 3 +[6722] inner: 24 +[6723] innocence: 4 +[6724] innocent: 20 +[6725] innuendo: 1 +[6726] innuendoes: 1 +[6727] innumerable: 1 +[6728] inoffensive: 3 +[6729] inquire: 11 +[6730] inquired: 26 +[6731] inquirer: 1 +[6732] inquiries: 13 +[6733] inquiring: 6 +[6734] inquiringly: 16 +[6735] inquiry: 15 +[6736] inquisitive: 3 +[6737] inquisitively: 3 +[6738] insane: 1 +[6739] insanely: 3 +[6740] inseparable: 1 +[6741] inseparables: 2 +[6742] inseparably: 1 +[6743] inside: 5 +[6744] insight: 6 +[6745] insignificance: 1 +[6746] insignificant: 1 +[6747] insincere: 1 +[6748] insincerity: 2 +[6749] insinuated: 1 +[6750] insist: 4 +[6751] insisted: 15 +[6752] insistence: 1 +[6753] insistently: 1 +[6754] insisting: 6 +[6755] insists: 1 +[6756] insolent: 1 +[6757] insolently: 1 +[6758] insoluble: 7 +[6759] inspecting: 1 +[6760] inspection: 1 +[6761] inspector: 1 +[6762] inspiration: 4 +[6763] inspire: 1 +[6764] inspired: 3 +[6765] instability: 1 +[6766] installment: 2 +[6767] installments: 1 +[6768] instance: 19 +[6769] instance--would: 1 +[6770] instances: 6 +[6771] instant: 101 +[6772] instant's: 6 +[6773] instantaneous: 2 +[6774] instantaneously: 1 +[6775] instantly: 13 +[6776] instants: 1 +[6777] instead: 47 +[6778] instigation: 1 +[6779] instilled: 1 +[6780] instilling: 1 +[6781] instinct: 3 +[6782] instinctive: 3 +[6783] instinctively: 9 +[6784] instincts: 2 +[6785] instituted: 2 +[6786] institution: 8 +[6787] institutions: 9 +[6788] instruction: 1 +[6789] instructions: 2 +[6790] instrument: 1 +[6791] instruments: 2 +[6792] insufferable: 3 +[6793] insufferably: 4 +[6794] insult: 6 +[6795] insulted: 8 +[6796] insulting: 5 +[6797] insults: 2 +[6798] insuperable: 1 +[6799] insupportable: 1 +[6800] insurmountable: 1 +[6801] integral: 2 +[6802] intellect: 14 +[6803] intellectual: 19 +[6804] intellectually: 1 +[6805] intellectuals: 1 +[6806] intelligence: 10 +[6807] intelligent: 9 +[6808] intelligible: 2 +[6809] intend: 2 +[6810] intended: 13 +[6811] intended--that: 1 +[6812] intended...i: 1 +[6813] intending: 7 +[6814] intense: 27 +[6815] intensely: 10 +[6816] intensest: 1 +[6817] intensified: 7 +[6818] intensify: 2 +[6819] intensity: 7 +[6820] intent: 7 +[6821] intention: 17 +[6822] intentional: 2 +[6823] intentionally: 9 +[6824] intentions: 8 +[6825] intently: 27 +[6826] intercourse: 1 +[6827] interest: 97 +[6828] interest--horses: 1 +[6829] interested: 66 +[6830] interesting: 52 +[6831] interests: 27 +[6832] interests--in: 1 +[6833] interfere: 4 +[6834] interfered: 1 +[6835] interference: 5 +[6836] interior: 1 +[6837] interlaced: 1 +[6838] interlacing: 1 +[6839] intermediate: 2 +[6840] internal: 2 +[6841] international: 1 +[6842] interpolate: 1 +[6843] interposed: 4 +[6844] interpret: 2 +[6845] interpretation: 12 +[6846] interpretations: 1 +[6847] interpreted: 5 +[6848] interpreter: 1 +[6849] interpreting: 1 +[6850] interrogation--used: 1 +[6851] interrupt: 4 +[6852] interrupted: 43 +[6853] interrupting: 12 +[6854] interruption: 1 +[6855] interval: 8 +[6856] intervals: 3 +[6857] intervened: 1 +[6858] intervention: 1 +[6859] interview: 14 +[6860] interviews: 4 +[6861] intimacy: 12 +[6862] intimate: 23 +[6863] intimately: 2 +[6864] intimidated: 1 +[6865] into: 799 +[6866] intolerable: 8 +[6867] intolerably: 2 +[6868] intolerant: 1 +[6869] intonation: 3 +[6870] intonations: 3 +[6871] intoxicated: 5 +[6872] intoxication: 1 +[6873] intractably: 1 +[6874] intricate: 2 +[6875] intrigue: 6 +[6876] intrigues: 3 +[6877] intriguing: 1 +[6878] intrinsically: 1 +[6879] introduce: 9 +[6880] introduced: 18 +[6881] introducing: 3 +[6882] introduction: 4 +[6883] intruder: 1 +[6884] intruding: 1 +[6885] intrust: 4 +[6886] intrusted: 3 +[6887] intrusting: 1 +[6888] intuition: 1 +[6889] intuitive: 1 +[6890] intérieur: 1 +[6891] invalid: 14 +[6892] invalid?--heard: 1 +[6893] invalidity: 1 +[6894] invalids: 5 +[6895] invariable: 4 +[6896] invariably: 4 +[6897] invent: 5 +[6898] invented: 6 +[6899] inventing: 4 +[6900] invention: 1 +[6901] investigate: 4 +[6902] investigated: 3 +[6903] investigations: 1 +[6904] inveterate: 2 +[6905] invincible: 1 +[6906] invisible: 1 +[6907] invitation: 7 +[6908] invitations: 2 +[6909] invite: 6 +[6910] invited: 16 +[6911] invites: 1 +[6912] inviting: 1 +[6913] invoice: 1 +[6914] involuntarily: 12 +[6915] involuntary: 1 +[6916] involved: 1 +[6917] involving: 1 +[6918] inward: 11 +[6919] inwardly: 7 +[6920] iodine: 2 +[6921] iou: 1 +[6922] ipat: 3 +[6923] irascibility: 1 +[6924] irascible: 3 +[6925] irate: 1 +[6926] irdische: 1 +[6927] irish: 2 +[6928] irksome: 4 +[6929] iron: 13 +[6930] ironical: 14 +[6931] ironically: 7 +[6932] ironing-board: 3 +[6933] irony: 12 +[6934] irrational: 7 +[6935] irrationally: 1 +[6936] irregular: 2 +[6937] irregularities: 1 +[6938] irregularity: 2 +[6939] irregularly: 2 +[6940] irrelevant: 2 +[6941] irrepressible: 7 +[6942] irrepressibly: 1 +[6943] irreproachable: 2 +[6944] irresistible: 2 +[6945] irresistibly: 1 +[6946] irresolutely: 1 +[6947] irresolution: 1 +[6948] irreverent: 1 +[6949] irrevocably: 1 +[6950] irrigation: 7 +[6951] irritability: 8 +[6952] irritable: 12 +[6953] irritably: 1 +[6954] irritate: 1 +[6955] irritated: 18 +[6956] irritates: 2 +[6957] irritating: 6 +[6958] irritation: 7 +[6959] irs: 1 +[6960] is: 1439 +[6961] is!"--and: 1 +[6962] is--but: 1 +[6963] is--gambling: 1 +[6964] is--how: 1 +[6965] is--like: 1 +[6966] is--such: 1 +[6967] is--the: 1 +[6968] is...how: 1 +[6969] is...that: 1 +[6970] is...you: 1 +[6971] isaac: 2 +[6972] island: 1 +[6973] islands: 1 +[6974] isn't: 53 +[6975] isolated: 1 +[6976] isolation: 3 +[6977] issue: 2 +[6978] issues: 1 +[6979] ist's: 1 +[6980] it: 3897 +[6981] it!--plop: 1 +[6982] it'll: 20 +[6983] it's: 602 +[6984] it--"suppose: 1 +[6985] it--from: 1 +[6986] it--hardly: 1 +[6987] it--having: 1 +[6988] it--he: 1 +[6989] it--his: 1 +[6990] it--in: 1 +[6991] it--it: 1 +[6992] it--it's: 2 +[6993] it--look: 1 +[6994] it--not: 1 +[6995] it--one: 1 +[6996] it--only: 1 +[6997] it--over: 1 +[6998] it--that: 3 +[6999] it--the: 1 +[7000] it--threat: 1 +[7001] it--to: 1 +[7002] it--whether: 1 +[7003] it--why: 1 +[7004] it--with: 1 +[7005] it--your: 1 +[7006] it...because: 1 +[7007] it?)--alexey: 1 +[7008] it?--geometrical: 1 +[7009] it?...what: 1 +[7010] italian: 15 +[7011] italy: 3 +[7012] items: 1 +[7013] iteration: 1 +[7014] its: 211 +[7015] itself: 81 +[7016] itself--death: 1 +[7017] ivan: 22 +[7018] ivan's: 1 +[7019] ivanitch: 5 +[7020] ivanov: 3 +[7021] ivanov-strauss-renan: 1 +[7022] ivanovitch: 282 +[7023] ivanovitch's: 19 +[7024] ivanovitch...to: 1 +[7025] ivanovna: 95 +[7026] ivanovna's: 14 +[7027] ivory: 3 +[7028] ivy: 1 +[7029] j'adore: 1 +[7030] j'ai: 1 +[7031] j'en: 1 +[7032] ja: 1 +[7033] jabber: 1 +[7034] jacket: 18 +[7035] jackets: 2 +[7036] jaloux: 1 +[7037] jam: 14 +[7038] jam-making: 2 +[7039] jamais: 2 +[7040] james: 1 +[7041] jar: 2 +[7042] jargon: 1 +[7043] jarred: 5 +[7044] jarring: 2 +[7045] jauntily: 5 +[7046] jaunty: 2 +[7047] jaw: 7 +[7048] jaws: 7 +[7049] je: 5 +[7050] jealous: 28 +[7051] jealousies: 1 +[7052] jealousy: 30 +[7053] jeer: 2 +[7054] jeered: 4 +[7055] jeering: 3 +[7056] jeers: 2 +[7057] jerk: 3 +[7058] jerked: 3 +[7059] jerkin: 3 +[7060] jerking: 2 +[7061] jest: 7 +[7062] jest,--"'disgrace: 1 +[7063] jested: 1 +[7064] jesting: 7 +[7065] jestingly: 4 +[7066] jests: 1 +[7067] jesus: 1 +[7068] jet: 1 +[7069] jets: 1 +[7070] jeune: 2 +[7071] jew: 3 +[7072] jews: 3 +[7073] jingling: 2 +[7074] jivio: 3 +[7075] job: 3 +[7076] jobmaster: 1 +[7077] jockey: 6 +[7078] jockeys: 1 +[7079] jocose: 1 +[7080] jocosely: 2 +[7081] jocoseness: 1 +[7082] john: 6 +[7083] join: 10 +[7084] joined: 17 +[7085] joinest: 2 +[7086] joining: 3 +[7087] joint: 2 +[7088] joints: 2 +[7089] joke: 15 +[7090] joke--thought: 1 +[7091] joked: 1 +[7092] jokes: 7 +[7093] joking: 6 +[7094] joli: 1 +[7095] jolie: 1 +[7096] jolly: 5 +[7097] jolting: 4 +[7098] jones: 1 +[7099] joseph: 1 +[7100] jostled: 2 +[7101] jouer: 1 +[7102] journal: 2 +[7103] journalist: 1 +[7104] journalists: 1 +[7105] journals: 2 +[7106] journey: 24 +[7107] journée: 1 +[7108] jove: 1 +[7109] jovial: 2 +[7110] jovially: 1 +[7111] joy: 42 +[7112] joyful: 8 +[7113] joyfully: 11 +[7114] joyous: 7 +[7115] joyously: 4 +[7116] joys: 6 +[7117] jubilee: 3 +[7118] judge: 26 +[7119] judged: 3 +[7120] judges: 1 +[7121] judging: 7 +[7122] judgment: 7 +[7123] judicial: 1 +[7124] juicy: 4 +[7125] jules: 2 +[7126] july: 4 +[7127] jump: 4 +[7128] jumped: 24 +[7129] jumping: 10 +[7130] jumps: 1 +[7131] junctions: 1 +[7132] juncture: 1 +[7133] june: 8 +[7134] junket: 3 +[7135] juries: 1 +[7136] jurisdiction: 1 +[7137] jury: 1 +[7138] juryman: 1 +[7139] jusqu'au: 1 +[7140] just: 476 +[7141] juster: 1 +[7142] justice: 15 +[7143] justices: 5 +[7144] justified: 4 +[7145] justify: 6 +[7146] justifying: 5 +[7147] justly: 3 +[7148] jutting: 2 +[7149] k...ha: 2 +[7150] kalinin: 1 +[7151] kalinov: 1 +[7152] kaluga: 1 +[7153] kaluzhsky: 4 +[7154] kamerovsky: 5 +[7155] kammerherr: 1 +[7156] kammerjunker: 3 +[7157] kant: 1 +[7158] kapitonitch: 11 +[7159] karazinsky: 2 +[7160] karenin: 44 +[7161] karenin's: 7 +[7162] karenina: 40 +[7163] karenina's: 4 +[7164] karenins: 13 +[7165] karibanov: 2 +[7166] karl: 1 +[7167] karr: 1 +[7168] kartasov: 2 +[7169] kartasova: 4 +[7170] kartasovs: 2 +[7171] kashin: 4 +[7172] kashinsky: 4 +[7173] katavasov: 72 +[7174] katavasov's: 7 +[7175] katerina: 12 +[7176] katia: 1 +[7177] katinka: 1 +[7178] katka: 1 +[7179] katya: 9 +[7180] kauffmann: 2 +[7181] kaulbach: 2 +[7182] kazan: 1 +[7183] kedrov: 3 +[7184] keen: 8 +[7185] keener: 3 +[7186] keenest: 2 +[7187] keenly: 6 +[7188] keep: 107 +[7189] keeper: 2 +[7190] keeping: 36 +[7191] keeps: 9 +[7192] keiss: 1 +[7193] kept: 99 +[7194] kerchief: 8 +[7195] kerchiefs: 1 +[7196] kernel: 1 +[7197] kettle: 1 +[7198] key: 4 +[7199] keys: 1 +[7200] khiva: 1 +[7201] kicked: 3 +[7202] kicking: 1 +[7203] kid: 1 +[7204] kiev: 3 +[7205] kill: 9 +[7206] killed: 21 +[7207] killing: 6 +[7208] kind: 26 +[7209] kind-hearted: 3 +[7210] kind-looking: 1 +[7211] kinder: 2 +[7212] kindest: 1 +[7213] kindled: 2 +[7214] kindliness: 3 +[7215] kindly: 19 +[7216] kindness: 4 +[7217] kindred: 1 +[7218] kinds: 6 +[7219] kinds--though: 1 +[7220] king: 7 +[7221] kingdom: 1 +[7222] kingdom--that: 1 +[7223] kings: 1 +[7224] kinship: 2 +[7225] kirill: 1 +[7226] kirillov: 2 +[7227] kirillovitch: 5 +[7228] kirillovitch's: 1 +[7229] kislovka: 1 +[7230] kiss: 25 +[7231] kiss-in-the-ring: 1 +[7232] kissed: 53 +[7233] kisses: 4 +[7234] kisses--that: 1 +[7235] kissing: 33 +[7236] kissingen: 1 +[7237] kitchen: 6 +[7238] kitchen-maid: 1 +[7239] kitty: 597 +[7240] kitty's: 74 +[7241] kitty--what: 1 +[7242] klaras: 1 +[7243] klopot: 1 +[7244] klopots: 1 +[7245] knack: 1 +[7246] knaust: 1 +[7247] knave: 2 +[7248] knavishness: 1 +[7249] kneaded: 1 +[7250] knee: 6 +[7251] kneeling: 3 +[7252] knees: 17 +[7253] knelt: 1 +[7254] knew: 390 +[7255] knick-knacks: 3 +[7256] knife: 11 +[7257] knife...but: 1 +[7258] knit: 1 +[7259] knitted: 4 +[7260] knitting: 12 +[7261] knives: 1 +[7262] knob: 1 +[7263] knobbiness: 1 +[7264] knock: 1 +[7265] knock-kneed: 1 +[7266] knocked: 5 +[7267] knocking: 5 +[7268] knot: 2 +[7269] know: 670 +[7270] know--betsy's: 1 +[7271] know--seryozha: 1 +[7272] know--whether: 1 +[7273] know...i: 1 +[7274] know...stay: 1 +[7275] knowing: 81 +[7276] knowingly: 1 +[7277] knowledge: 33 +[7278] known: 55 +[7279] knows: 57 +[7280] knuckles: 1 +[7281] kolok: 1 +[7282] kolpensky: 2 +[7283] kolpik: 2 +[7284] komissarov: 2 +[7285] kommt: 1 +[7286] kondraty: 1 +[7287] konstantin: 111 +[7288] konstantin's: 1 +[7289] kootik: 1 +[7290] kopecks: 4 +[7291] korney: 13 +[7292] korney's: 1 +[7293] korsunskaya: 2 +[7294] korsunsky: 14 +[7295] korsunsky's: 2 +[7296] korsunskys: 1 +[7297] korzinskaya: 1 +[7298] kostya: 31 +[7299] kostya's: 3 +[7300] kouzma: 21 +[7301] kouzma's: 1 +[7302] koznishev: 22 +[7303] koznishev's: 1 +[7304] krak: 12 +[7305] krasnoe: 1 +[7306] krilov's: 1 +[7307] kritsky: 9 +[7308] kritsky's: 1 +[7309] krivin: 1 +[7310] krivin's: 2 +[7311] krivtsov: 1 +[7312] krupov: 1 +[7313] kruzin's: 1 +[7314] kursk: 2 +[7315] kuzovlev: 6 +[7316] kvas: 1 +[7317] kvitsky: 1 +[7318] l'allemand: 1 +[7319] l'anglais: 1 +[7320] l'anglaise: 1 +[7321] l'estragon: 1 +[7322] l'existence: 1 +[7323] l'âge: 1 +[7324] la: 22 +[7325] label: 1 +[7326] labor: 47 +[7327] labor--all: 1 +[7328] laborer: 25 +[7329] laborers: 35 +[7330] laboring: 1 +[7331] laborious: 1 +[7332] laboriously: 1 +[7333] labors: 5 +[7334] lace: 18 +[7335] lack: 24 +[7336] lacking: 1 +[7337] laconic: 1 +[7338] lad: 6 +[7339] lad's: 1 +[7340] ladder: 2 +[7341] laden: 1 +[7342] ladies: 61 +[7343] ladies--an: 1 +[7344] ladled: 1 +[7345] lads: 9 +[7346] lady: 83 +[7347] lady's: 6 +[7348] lafitte: 2 +[7349] lagged: 1 +[7350] laid: 46 +[7351] lain: 6 +[7352] lair: 1 +[7353] laisser: 1 +[7354] lake: 2 +[7355] lamb: 1 +[7356] lambs: 1 +[7357] lame: 2 +[7358] lament: 1 +[7359] lamp: 19 +[7360] lamp-chimneys: 1 +[7361] lamp-shade: 1 +[7362] lamplight: 3 +[7363] lamppost: 1 +[7364] lamps: 3 +[7365] land: 95 +[7366] land's: 1 +[7367] land--the: 1 +[7368] land-steward: 1 +[7369] landau: 21 +[7370] landau's: 1 +[7371] landau--bezzubov: 1 +[7372] landed: 2 +[7373] landing: 4 +[7374] landlady: 1 +[7375] landlord: 3 +[7376] landowner: 28 +[7377] landowner's: 3 +[7378] landowners: 9 +[7379] lands: 11 +[7380] landscape: 1 +[7381] language: 10 +[7382] languages: 1 +[7383] languid: 1 +[7384] languidly: 3 +[7385] lank: 2 +[7386] lankovsky's: 1 +[7387] lantern: 2 +[7388] lap: 4 +[7389] large: 29 +[7390] larger: 7 +[7391] larger--part: 1 +[7392] largest: 1 +[7393] larks: 1 +[7394] lashed: 1 +[7395] lashes: 3 +[7396] laska: 43 +[7397] laska's: 4 +[7398] lassalle: 1 +[7399] last: 192 +[7400] lasted: 13 +[7401] lasting: 3 +[7402] lasts: 1 +[7403] latch: 1 +[7404] late: 84 +[7405] late-sown: 1 +[7406] lately: 16 +[7407] later: 65 +[7408] latest: 8 +[7409] lather: 1 +[7410] latin: 3 +[7411] latin--it's: 1 +[7412] latter: 10 +[7413] laugh: 33 +[7414] laughed: 37 +[7415] laughing: 55 +[7416] laughing-stock: 2 +[7417] laughingly: 1 +[7418] laughs: 3 +[7419] laughter: 30 +[7420] launch: 1 +[7421] launched: 2 +[7422] laundress: 1 +[7423] laundry: 1 +[7424] laura: 1 +[7425] lavish: 2 +[7426] lavished: 3 +[7427] lavishing: 1 +[7428] lavrenty: 1 +[7429] law: 31 +[7430] lawful: 2 +[7431] lawfully: 1 +[7432] lawn: 1 +[7433] lawn-tennis: 1 +[7434] laws: 20 +[7435] lawsuit: 1 +[7436] lawyer: 24 +[7437] lawyer's: 6 +[7438] lawyers: 4 +[7439] lay: 79 +[7440] layer: 3 +[7441] laying: 21 +[7442] lays: 1 +[7443] lazily: 3 +[7444] laziness: 2 +[7445] lazy: 2 +[7446] le: 16 +[7447] lead: 21 +[7448] leaders: 4 +[7449] leading: 13 +[7450] leads: 3 +[7451] leaf: 9 +[7452] league: 1 +[7453] leak: 1 +[7454] leaked: 1 +[7455] lean: 4 +[7456] leaned: 5 +[7457] leaning: 20 +[7458] leap: 2 +[7459] leaped: 3 +[7460] leaping: 1 +[7461] lear: 3 +[7462] learn: 20 +[7463] learned: 41 +[7464] learners: 1 +[7465] learning: 16 +[7466] learns: 1 +[7467] least: 68 +[7468] leather: 10 +[7469] leather-covered: 1 +[7470] leave: 84 +[7471] leaves: 14 +[7472] leaving: 42 +[7473] lectern: 7 +[7474] lecture: 2 +[7475] lecture-room: 1 +[7476] lectures: 1 +[7477] led: 39 +[7478] lee: 1 +[7479] leeches: 1 +[7480] left: 227 +[7481] leg: 20 +[7482] legal: 9 +[7483] legalize: 1 +[7484] legally: 2 +[7485] leggings: 1 +[7486] legible: 1 +[7487] legion: 2 +[7488] legitimate: 4 +[7489] legitimately: 1 +[7490] legitimization: 1 +[7491] legitimize: 2 +[7492] legs: 64 +[7493] leisure: 3 +[7494] leisure--and: 1 +[7495] leisurely: 1 +[7496] lemon: 3 +[7497] lend: 3 +[7498] lending: 1 +[7499] length: 8 +[7500] lengthening: 1 +[7501] lengths: 1 +[7502] lengthwise: 1 +[7503] lenient: 1 +[7504] lent: 9 +[7505] leo: 4 +[7506] lepers: 1 +[7507] les: 6 +[7508] less: 56 +[7509] less--i'll: 1 +[7510] lessen: 1 +[7511] lessive: 2 +[7512] lesson: 19 +[7513] lessons: 8 +[7514] lest: 1 +[7515] let: 234 +[7516] let's: 42 +[7517] lets: 1 +[7518] letter: 124 +[7519] letter...his: 1 +[7520] lettering: 1 +[7521] letters: 24 +[7522] letting: 31 +[7523] levee: 3 +[7524] level: 10 +[7525] leveled: 1 +[7526] lever: 1 +[7527] levin: 1513 +[7528] levin's: 99 +[7529] levin--"a: 1 +[7530] levin--"he's: 1 +[7531] levin--to: 1 +[7532] levins: 13 +[7533] levy: 2 +[7534] levy's: 1 +[7535] liability: 5 +[7536] liable: 3 +[7537] liaison: 2 +[7538] liar: 2 +[7539] liberal: 12 +[7540] liberalism: 5 +[7541] liberalism--not: 1 +[7542] liberals: 1 +[7543] liberty: 6 +[7544] library: 3 +[7545] libre: 1 +[7546] license: 16 +[7547] licensed: 1 +[7548] licking: 3 +[7549] lid: 1 +[7550] lidi: 1 +[7551] lidia: 110 +[7552] lidia's: 1 +[7553] lidia--i'm: 1 +[7554] lie: 19 +[7555] lied: 1 +[7556] lies: 9 +[7557] lieschen: 1 +[7558] lieu: 2 +[7559] lieutenant: 1 +[7560] life: 451 +[7561] life's: 2 +[7562] life--all: 1 +[7563] life--and: 1 +[7564] life--apart: 1 +[7565] life--falsehood: 1 +[7566] life--how: 1 +[7567] life--if: 1 +[7568] life--the: 1 +[7569] life--those: 1 +[7570] lifeless: 3 +[7571] lifelessness: 1 +[7572] lifetime: 1 +[7573] lift: 6 +[7574] lifted: 27 +[7575] lifting: 25 +[7576] lifts: 1 +[7577] light: 118 +[7578] light-colored: 1 +[7579] light-hearted: 5 +[7580] light-heartedly: 1 +[7581] light-heartedness: 1 +[7582] lighted: 41 +[7583] lightening: 1 +[7584] lighter: 2 +[7585] lighting: 7 +[7586] lightly: 22 +[7587] lightness: 5 +[7588] lightning: 6 +[7589] lights: 2 +[7590] like: 516 +[7591] like--first-rate: 1 +[7592] like--i'm: 1 +[7593] like--should: 1 +[7594] liked: 127 +[7595] likelihood: 2 +[7596] likely: 30 +[7597] likely...i: 1 +[7598] likeness: 1 +[7599] likes: 11 +[7600] liking: 10 +[7601] lilac: 16 +[7602] lili: 1 +[7603] lille: 1 +[7604] lily: 5 +[7605] lily's: 1 +[7606] limb: 1 +[7607] limbs: 3 +[7608] lime: 8 +[7609] lime-tree: 2 +[7610] lime-trees: 1 +[7611] limes: 1 +[7612] limetree: 1 +[7613] limetrees: 1 +[7614] limit: 4 +[7615] limitation: 3 +[7616] limitations: 1 +[7617] limited: 7 +[7618] limits: 8 +[7619] limp: 2 +[7620] limping: 2 +[7621] line: 29 +[7622] lined: 2 +[7623] linen: 9 +[7624] linen's: 1 +[7625] lines: 21 +[7626] linger: 1 +[7627] lingered: 2 +[7628] lingering: 1 +[7629] link: 2 +[7630] linked: 1 +[7631] linking: 2 +[7632] links: 3 +[7633] linon: 11 +[7634] lions: 1 +[7635] lip: 8 +[7636] lips: 98 +[7637] liquor: 1 +[7638] lisp: 1 +[7639] lisping: 1 +[7640] list: 6 +[7641] listen: 35 +[7642] listened: 61 +[7643] listener: 2 +[7644] listening: 55 +[7645] listlessly: 3 +[7646] lit: 3 +[7647] litanies: 1 +[7648] litany: 2 +[7649] literary: 14 +[7650] literature: 8 +[7651] litter: 1 +[7652] little: 460 +[7653] live: 89 +[7654] live--to: 1 +[7655] lived: 61 +[7656] lived--instead: 1 +[7657] lived--really: 1 +[7658] livelier: 1 +[7659] liveliest: 2 +[7660] livelihood: 2 +[7661] liveliness: 2 +[7662] lively: 23 +[7663] liver: 3 +[7664] liveried: 1 +[7665] liveries: 3 +[7666] liveries,--that: 1 +[7667] livery: 3 +[7668] lives: 12 +[7669] living: 100 +[7670] living--a: 1 +[7671] living--she: 1 +[7672] liza: 21 +[7673] liza's: 1 +[7674] lizaveta: 24 +[7675] load: 5 +[7676] loaded: 3 +[7677] loading: 4 +[7678] loads: 3 +[7679] loan: 1 +[7680] loath: 2 +[7681] loathed: 2 +[7682] loathes: 1 +[7683] loathing: 12 +[7684] loathsome: 13 +[7685] loathsomeness: 3 +[7686] loaves: 3 +[7687] lobster: 1 +[7688] local: 5 +[7689] located: 4 +[7690] locations: 2 +[7691] lock: 5 +[7692] locked: 8 +[7693] locket: 2 +[7694] locks: 3 +[7695] locksmith: 1 +[7696] locksmiths: 2 +[7697] lockup: 1 +[7698] lodge: 5 +[7699] lodged: 2 +[7700] lodges: 2 +[7701] lodging: 2 +[7702] lodgings: 1 +[7703] loftier: 1 +[7704] loftiest: 1 +[7705] loftiness: 3 +[7706] lofty: 10 +[7707] logical: 4 +[7708] logically: 2 +[7709] lonely: 7 +[7710] long: 367 +[7711] long-familiar: 1 +[7712] long-lived: 1 +[7713] long-sighted: 2 +[7714] long-skirted: 1 +[7715] long-standing: 1 +[7716] long...that: 1 +[7717] long...yesterday...i: 1 +[7718] longed: 42 +[7719] longer: 40 +[7720] longing: 16 +[7721] longs: 2 +[7722] look: 291 +[7723] look'ee: 2 +[7724] look-ee: 2 +[7725] looked: 335 +[7726] looking: 362 +[7727] looking-glass: 10 +[7728] looking-glasses: 1 +[7729] lookout: 5 +[7730] looks: 21 +[7731] loop: 2 +[7732] loop-holes: 1 +[7733] loose: 7 +[7734] loosed: 1 +[7735] loosely: 1 +[7736] loosely-fitting: 1 +[7737] loosened: 2 +[7738] lop-eared: 2 +[7739] loquacity: 1 +[7740] lord: 26 +[7741] lore: 1 +[7742] lose: 17 +[7743] losing: 27 +[7744] loss: 27 +[7745] losses: 1 +[7746] lost: 65 +[7747] lot: 18 +[7748] loth: 1 +[7749] lots: 5 +[7750] loud: 26 +[7751] louder: 6 +[7752] loudest: 1 +[7753] loudly: 21 +[7754] loudness: 1 +[7755] louis: 1 +[7756] lounge: 3 +[7757] lounged: 1 +[7758] love: 425 +[7759] love,--and: 1 +[7760] love--as: 1 +[7761] love--but: 1 +[7762] love--not: 1 +[7763] love--the: 1 +[7764] love--to: 1 +[7765] love...both: 1 +[7766] love...yes: 1 +[7767] loved: 87 +[7768] loved--but: 1 +[7769] loved--even: 1 +[7770] loveliness: 2 +[7771] lovely: 20 +[7772] lover: 16 +[7773] lover's: 2 +[7774] lovers: 1 +[7775] loves: 22 +[7776] lovesick: 1 +[7777] loving: 32 +[7778] lovingkindness: 2 +[7779] lovingly: 1 +[7780] low: 41 +[7781] low-crowned: 1 +[7782] low-cut: 1 +[7783] low-lying: 2 +[7784] low-necked: 4 +[7785] low-pitched: 1 +[7786] low-spirited: 4 +[7787] lowed: 2 +[7788] lower: 29 +[7789] lowered: 4 +[7790] lowering: 9 +[7791] lowest: 2 +[7792] lowing: 1 +[7793] lucca: 1 +[7794] luck: 9 +[7795] luckily: 5 +[7796] luckless: 2 +[7797] lucky: 8 +[7798] lucrative: 3 +[7799] ludicrous: 10 +[7800] luggage: 4 +[7801] lukitch: 15 +[7802] lull: 3 +[7803] luminous: 1 +[7804] lump: 3 +[7805] lunch: 17 +[7806] lunched: 2 +[7807] luncheon: 3 +[7808] lunching: 3 +[7809] lungs: 3 +[7810] lurid: 1 +[7811] lush: 1 +[7812] lust: 1 +[7813] luster: 1 +[7814] lusterless: 1 +[7815] lusters: 2 +[7816] luxuriant: 1 +[7817] luxuries: 1 +[7818] luxurious: 2 +[7819] luxurious--dolly: 1 +[7820] luxuriously: 1 +[7821] luxury: 12 +[7822] lvov: 16 +[7823] lvov's: 5 +[7824] lvova: 8 +[7825] lying: 56 +[7826] lying-in: 2 +[7827] là: 1 +[7828] lässt: 1 +[7829] m: 5 +[7830] m'a: 1 +[7831] m'excuserez: 1 +[7832] ma: 4 +[7833] ma'am: 3 +[7834] machine: 32 +[7835] machinery: 5 +[7836] machinery--a: 1 +[7837] machines: 7 +[7838] macht: 1 +[7839] macédoine: 1 +[7840] mad: 8 +[7841] madam: 1 +[7842] madame: 122 +[7843] made: 402 +[7844] made--simply: 1 +[7845] made--they: 1 +[7846] mademoiselle: 20 +[7847] madman: 3 +[7848] madman's: 1 +[7849] madness: 5 +[7850] maecenas: 1 +[7851] magazine: 1 +[7852] magazines: 1 +[7853] magdalen: 1 +[7854] magic: 1 +[7855] magical: 1 +[7856] magistrates: 1 +[7857] magnanimity: 5 +[7858] magnanimous: 3 +[7859] magnanimous--that: 1 +[7860] magnanimously: 1 +[7861] magnificence: 1 +[7862] magnificent: 7 +[7863] magnitude: 3 +[7864] mahotin: 15 +[7865] mahotin's: 4 +[7866] maid: 38 +[7867] maid's: 2 +[7868] maid-servant: 1 +[7869] maid-servants: 1 +[7870] maiden: 1 +[7871] maiden's: 1 +[7872] maidenly: 1 +[7873] maids: 6 +[7874] maidservant: 1 +[7875] maidservants: 1 +[7876] main: 6 +[7877] mainly: 1 +[7878] mainspring: 2 +[7879] maintain: 7 +[7880] maintained: 15 +[7881] maintaining: 7 +[7882] maintains: 1 +[7883] maintenance: 1 +[7884] mais: 9 +[7885] majolica: 1 +[7886] majority: 14 +[7887] mak...mak...i: 1 +[7888] make: 266 +[7889] makes: 26 +[7890] making: 106 +[7891] mal: 1 +[7892] malachite: 1 +[7893] male: 2 +[7894] malice: 1 +[7895] malicious: 4 +[7896] malignant: 13 +[7897] malignantly: 1 +[7898] malnutrition: 1 +[7899] malthus: 3 +[7900] malthus's: 1 +[7901] maltishtcheva: 2 +[7902] malvinsky: 1 +[7903] maman: 18 +[7904] maman's: 3 +[7905] mamma: 40 +[7906] mamma's: 2 +[7907] mamonova: 1 +[7908] man: 523 +[7909] man's: 34 +[7910] man--all: 1 +[7911] man--emphatically--in: 1 +[7912] man--felt: 1 +[7913] man--unemphatically--in: 1 +[7914] man--you: 1 +[7915] man-cook: 1 +[7916] man-god: 1 +[7917] manage: 25 +[7918] managed: 11 +[7919] management: 13 +[7920] manager: 3 +[7921] managing: 5 +[7922] mandolin: 1 +[7923] mane: 3 +[7924] maneuvered: 1 +[7925] manger: 1 +[7926] mangle: 1 +[7927] manhood--when: 1 +[7928] manifest: 2 +[7929] manifestation: 5 +[7930] manifestations: 1 +[7931] manifested: 1 +[7932] mankind: 4 +[7933] manly: 10 +[7934] manner: 36 +[7935] manner--_grande: 1 +[7936] manners: 8 +[7937] manor: 1 +[7938] manservant: 3 +[7939] mantelpiece: 1 +[7940] mantle: 1 +[7941] manufactures: 2 +[7942] manufacturing: 2 +[7943] manure: 4 +[7944] manured: 1 +[7945] manuring: 1 +[7946] manuscript: 6 +[7947] manuscripts: 1 +[7948] many: 115 +[7949] many"--and: 1 +[7950] marble: 5 +[7951] march: 2 +[7952] mare: 44 +[7953] mare's: 8 +[7954] marie: 5 +[7955] marie's: 1 +[7956] marie-louise: 1 +[7957] mariette: 3 +[7958] mark: 3 +[7959] marked: 12 +[7960] marked--greater: 1 +[7961] marker: 2 +[7962] marketing: 1 +[7963] marks: 3 +[7964] marmot: 1 +[7965] marquise: 2 +[7966] marriage: 42 +[7967] marriages: 7 +[7968] married: 104 +[7969] marry: 30 +[7970] marrying: 7 +[7971] marsh: 51 +[7972] marshal: 48 +[7973] marshal's: 3 +[7974] marshals: 3 +[7975] marshalship: 1 +[7976] marshes: 3 +[7977] martyr--what: 1 +[7978] marvel: 3 +[7979] marveled: 3 +[7980] marveling: 2 +[7981] marvelous: 17 +[7982] marvels: 2 +[7983] mary: 2 +[7984] marya: 65 +[7985] masculine: 7 +[7986] masha: 19 +[7987] masha's: 2 +[7988] mashkin: 5 +[7989] maslov--that: 1 +[7990] masquerade: 1 +[7991] mass: 12 +[7992] mass--the: 1 +[7993] massacre: 1 +[7994] massacred: 1 +[7995] massive: 3 +[7996] master: 41 +[7997] master's: 8 +[7998] mastered: 2 +[7999] masters: 6 +[8000] mastery: 1 +[8001] match: 13 +[8002] match-making: 3 +[8003] matchboxes: 1 +[8004] matches: 4 +[8005] matchmaker: 1 +[8006] matchmaking: 1 +[8007] material: 15 +[8008] materialism: 1 +[8009] materialistic: 2 +[8010] materialists: 4 +[8011] materials: 3 +[8012] maternal: 1 +[8013] mathematician: 1 +[8014] matin: 1 +[8015] matrimony: 4 +[8016] matrona: 7 +[8017] matted: 1 +[8018] matter: 116 +[8019] mattered: 2 +[8020] matters: 32 +[8021] matthew: 1 +[8022] matting: 1 +[8023] mattress: 3 +[8024] mattresses: 1 +[8025] mature: 1 +[8026] matvey: 29 +[8027] maximum: 1 +[8028] may: 150 +[8029] maybe: 18 +[8030] mazankov: 1 +[8031] mazurka: 14 +[8032] me: 1117 +[8033] me!...i: 1 +[8034] me's: 1 +[8035] me,--and: 1 +[8036] me--he: 2 +[8037] me--i: 1 +[8038] me--not: 1 +[8039] me--of: 1 +[8040] me--only: 1 +[8041] me--they're: 1 +[8042] me...and: 1 +[8043] me...does: 1 +[8044] me...my: 1 +[8045] me?...no: 1 +[8046] me?...not: 1 +[8047] meadow: 30 +[8048] meadow--all: 1 +[8049] meadow-sweet: 1 +[8050] meadowland: 1 +[8051] meadows: 8 +[8052] meal: 3 +[8053] meals: 1 +[8054] mean: 69 +[8055] mean...what: 1 +[8056] meaning: 90 +[8057] meaningful: 2 +[8058] meaningless: 3 +[8059] means: 70 +[8060] means--death: 1 +[8061] means--that: 1 +[8062] meant: 90 +[8063] meant...it: 1 +[8064] meantime: 3 +[8065] meanwhile: 21 +[8066] measure: 5 +[8067] measured: 3 +[8068] measures: 19 +[8069] measuring: 1 +[8070] meat: 1 +[8071] meat-pies: 1 +[8072] mechanical: 3 +[8073] mechanician: 4 +[8074] mechanism: 3 +[8075] medals: 2 +[8076] meddle: 1 +[8077] mediaeval: 4 +[8078] mediaevalism: 1 +[8079] mediation: 1 +[8080] mediator: 2 +[8081] medical: 3 +[8082] medicinal: 2 +[8083] medicine: 12 +[8084] medicines: 1 +[8085] meditating: 1 +[8086] meditation: 4 +[8087] meditations: 3 +[8088] medium: 10 +[8089] medley: 1 +[8090] meek: 2 +[8091] meek-looking: 1 +[8092] meekness: 2 +[8093] meet: 94 +[8094] meeting: 95 +[8095] meetings: 11 +[8096] meidel: 1 +[8097] meine: 1 +[8098] melan: 1 +[8099] melancholy: 7 +[8100] meledinsky--you: 1 +[8101] mellow: 2 +[8102] melody: 1 +[8103] melt: 2 +[8104] melted: 2 +[8105] melting: 2 +[8106] member: 19 +[8107] members: 19 +[8108] memorable: 2 +[8109] memories: 32 +[8110] memory: 39 +[8111] memory--when: 1 +[8112] men: 191 +[8113] men's: 5 +[8114] men--he: 1 +[8115] men--her: 1 +[8116] menace: 3 +[8117] menacing: 2 +[8118] menacingly: 2 +[8119] mend: 1 +[8120] mended: 2 +[8121] mending: 2 +[8122] menelaus: 1 +[8123] ment: 1 +[8124] mental: 22 +[8125] mentally: 13 +[8126] mention: 8 +[8127] mentioned: 14 +[8128] mentioning: 1 +[8129] mentone: 1 +[8130] menu: 2 +[8131] merchant: 19 +[8132] merchant's: 3 +[8133] merchantibility: 1 +[8134] merchants: 6 +[8135] merci: 1 +[8136] mercies: 1 +[8137] merciful: 5 +[8138] merciful...thanks: 1 +[8139] merciless: 3 +[8140] mercy: 29 +[8141] mercy's: 4 +[8142] mere: 24 +[8143] merely: 78 +[8144] merest: 1 +[8145] merged: 4 +[8146] meridian: 1 +[8147] merit: 3 +[8148] merits: 1 +[8149] merkalova: 11 +[8150] merkalova's: 1 +[8151] merrily: 14 +[8152] merriment: 1 +[8153] merry: 12 +[8154] merry-making: 1 +[8155] mertsalova: 1 +[8156] merveilles: 1 +[8157] mes: 1 +[8158] mesdames: 2 +[8159] mesmerizer: 1 +[8160] mess: 3 +[8161] message: 6 +[8162] messages: 1 +[8163] messenger: 7 +[8164] messieurs: 1 +[8165] messroom: 2 +[8166] met: 145 +[8167] metallic: 1 +[8168] metaphysical: 1 +[8169] metaphysics: 2 +[8170] metayers: 1 +[8171] method: 11 +[8172] method--to: 1 +[8173] methodical: 1 +[8174] methods: 14 +[8175] metrov: 22 +[8176] metrov's: 3 +[8177] mettlesome: 1 +[8178] mettre: 1 +[8179] mezhkovs: 1 +[8180] michael: 2 +[8181] michelli: 2 +[8182] midday's: 1 +[8183] middle: 42 +[8184] middle-aged: 5 +[8185] midges: 2 +[8186] midnight: 3 +[8187] midst: 13 +[8188] midwife: 7 +[8189] midwife's: 1 +[8190] midwives: 1 +[8191] mieux: 3 +[8192] might: 218 +[8193] mighty: 2 +[8194] mihail: 21 +[8195] mihailov: 37 +[8196] mihailov's: 6 +[8197] mihailov--ought: 1 +[8198] mihalitch: 3 +[8199] mihalovna: 64 +[8200] mihalovna's: 10 +[8201] milan: 1 +[8202] milan's: 1 +[8203] mild: 2 +[8204] mildew: 4 +[8205] mildewy: 1 +[8206] mile: 1 +[8207] mile-and-a-half: 2 +[8208] mileev: 1 +[8209] miles: 17 +[8210] military: 11 +[8211] milk: 22 +[8212] milky: 2 +[8213] mill: 8 +[8214] mill-wheels: 1 +[8215] mille: 1 +[8216] miller: 2 +[8217] million: 3 +[8218] millions: 16 +[8219] mills: 1 +[8220] mimicked: 1 +[8221] mimicking: 6 +[8222] mimicry: 2 +[8223] mincing: 1 +[8224] mind: 178 +[8225] mind'ee: 1 +[8226] mind's: 1 +[8227] mind--his: 1 +[8228] mind--the: 1 +[8229] mind?--it's: 1 +[8230] minding: 1 +[8231] minds: 5 +[8232] minds--was: 1 +[8233] mine: 13 +[8234] mine--almost: 1 +[8235] mine--the: 1 +[8236] mineral: 1 +[8237] mingled: 1 +[8238] mingling: 1 +[8239] minister: 2 +[8240] ministerial: 1 +[8241] ministers: 6 +[8242] ministry: 7 +[8243] minute: 104 +[8244] minuteness: 1 +[8245] minutes: 40 +[8246] minutes--those: 1 +[8247] minutest: 5 +[8248] mio: 2 +[8249] miracle: 6 +[8250] miracles: 2 +[8251] mire: 5 +[8252] mirror: 4 +[8253] mirth: 4 +[8254] mirthful: 4 +[8255] mirthfully: 1 +[8256] mirthfulness: 1 +[8257] mirthless: 1 +[8258] miry: 1 +[8259] misapprehending: 1 +[8260] misapprehension: 2 +[8261] misappropriated: 1 +[8262] misappropriation: 1 +[8263] misbehavior: 1 +[8264] mischief: 4 +[8265] mischievous: 2 +[8266] misdirected: 1 +[8267] miserable: 26 +[8268] miserably: 8 +[8269] miserly: 2 +[8270] misery: 27 +[8271] misfortune: 16 +[8272] misfortunes: 2 +[8273] misha: 1 +[8274] mishka: 6 +[8275] misinterpretation: 1 +[8276] misinterpreted: 1 +[8277] misinterpreting: 1 +[8278] misled: 1 +[8279] mismanaged: 1 +[8280] misplaced: 1 +[8281] miss: 17 +[8282] missal: 1 +[8283] missed: 16 +[8284] misses: 1 +[8285] misshapen-looking: 1 +[8286] missing: 5 +[8287] mission: 5 +[8288] missionary: 2 +[8289] mississippi: 1 +[8290] misspelt: 1 +[8291] mist: 8 +[8292] mistake: 28 +[8293] mistake--that: 1 +[8294] mistaken: 23 +[8295] mistakenly: 2 +[8296] mistakes: 6 +[8297] mistaking: 1 +[8298] mistiest: 1 +[8299] mistress: 19 +[8300] mistress's: 2 +[8301] mistresses: 1 +[8302] mists: 1 +[8303] misty: 3 +[8304] misunderstanding: 5 +[8305] misunderstandings: 1 +[8306] misunderstood: 3 +[8307] misuse: 1 +[8308] misères: 1 +[8309] mitin: 1 +[8310] mitishtchen: 1 +[8311] mituh: 2 +[8312] mitya: 11 +[8313] mix: 5 +[8314] mixed: 5 +[8315] mixed--that: 1 +[8316] mlle: 4 +[8317] moan: 1 +[8318] moaned: 1 +[8319] mobile: 4 +[8320] mock: 1 +[8321] mockery: 1 +[8322] mocking: 8 +[8323] mockingly: 1 +[8324] mode: 4 +[8325] model: 6 +[8326] moderation: 1 +[8327] modern: 17 +[8328] modes: 2 +[8329] modest: 8 +[8330] modestly: 2 +[8331] modesty: 3 +[8332] modification: 1 +[8333] modified: 3 +[8334] mohammedans: 2 +[8335] moi: 1 +[8336] moist: 14 +[8337] moisten: 1 +[8338] moistened: 1 +[8339] moisture: 1 +[8340] moment: 188 +[8341] moment's: 11 +[8342] moment--but: 1 +[8343] moment...then: 1 +[8344] momentary: 5 +[8345] moments: 35 +[8346] mon: 6 +[8347] monarch: 2 +[8348] monastic: 1 +[8349] monday: 6 +[8350] mondays: 1 +[8351] monde: 1 +[8352] money: 97 +[8353] money's: 2 +[8354] money-lender: 4 +[8355] moneys: 2 +[8356] monk: 2 +[8357] monkey: 1 +[8358] monks: 3 +[8359] monogram: 1 +[8360] monomach: 1 +[8361] monopolies: 2 +[8362] monopolists: 1 +[8363] monotonous: 1 +[8364] monotony: 2 +[8365] monsieur: 1 +[8366] monster: 1 +[8367] monstrosities: 1 +[8368] monstrous: 3 +[8369] montenegrins: 3 +[8370] month: 15 +[8371] monthly: 2 +[8372] months: 31 +[8373] monument: 1 +[8374] mood: 20 +[8375] moods: 1 +[8376] moon: 4 +[8377] moonlight: 1 +[8378] moors: 3 +[8379] moral: 11 +[8380] moral--disons: 1 +[8381] moralist: 2 +[8382] morality: 2 +[8383] morally: 5 +[8384] morals: 1 +[8385] morbid: 1 +[8386] mordvinsky: 1 +[8387] more: 743 +[8388] more--though: 1 +[8389] moreover: 26 +[8390] morfondre: 1 +[8391] morning: 107 +[8392] morning's: 1 +[8393] morning--that: 1 +[8394] mornings: 2 +[8395] morocco: 2 +[8396] morosely: 1 +[8397] morphine: 7 +[8398] morrow: 2 +[8399] morskaia: 2 +[8400] morsky: 1 +[8401] mort: 1 +[8402] mortal: 1 +[8403] mortar: 1 +[8404] mortification: 4 +[8405] mortified: 4 +[8406] mortify: 1 +[8407] mortifying: 3 +[8408] mosaic: 1 +[8409] moscow: 173 +[8410] moses: 1 +[8411] moss: 2 +[8412] mossy: 2 +[8413] most: 247 +[8414] most--the: 1 +[8415] mostly: 1 +[8416] mot--anti-nihilist: 1 +[8417] moth: 4 +[8418] moth--"work: 1 +[8419] mother: 215 +[8420] mother's: 30 +[8421] mother's--and: 1 +[8422] mother--god: 1 +[8423] mother-in-law: 3 +[8424] mother-of-pearl: 3 +[8425] motherhood: 1 +[8426] motherly: 2 +[8427] mothers: 3 +[8428] mothers-in-law: 1 +[8429] moths: 1 +[8430] motion: 12 +[8431] motionless: 9 +[8432] motions: 5 +[8433] motive: 5 +[8434] motives: 5 +[8435] mots: 1 +[8436] motto: 1 +[8437] mould: 1 +[8438] moule: 1 +[8439] mound: 1 +[8440] mounds: 2 +[8441] mount: 4 +[8442] mountain: 2 +[8443] mountains: 2 +[8444] mounted: 4 +[8445] mounting: 2 +[8446] mournful: 7 +[8447] mournfully: 6 +[8448] mourning: 1 +[8449] mouse: 1 +[8450] mouth: 38 +[8451] mouthful: 2 +[8452] mouths: 3 +[8453] movable: 2 +[8454] move: 20 +[8455] moved: 95 +[8456] movement: 36 +[8457] movement...the: 1 +[8458] movements: 30 +[8459] moves: 1 +[8460] moving: 63 +[8461] mow: 13 +[8462] mowed: 8 +[8463] mower: 1 +[8464] mowers: 14 +[8465] mowing: 36 +[8466] mowing-grass: 1 +[8467] mown: 9 +[8468] mr: 1 +[8469] much: 308 +[8470] mud: 20 +[8471] mud-guard: 1 +[8472] mud-guards: 3 +[8473] mud-stained: 1 +[8474] muddied: 2 +[8475] muddle: 4 +[8476] muddled: 2 +[8477] muddles: 1 +[8478] muddy: 4 +[8479] muddy-looking: 1 +[8480] mudspattered: 1 +[8481] muff: 5 +[8482] muffled: 4 +[8483] muffling: 2 +[8484] mulhausen: 2 +[8485] multiplicity: 1 +[8486] mumbled: 3 +[8487] mumbling: 1 +[8488] munching: 4 +[8489] municipal: 1 +[8490] murder: 4 +[8491] murderer: 2 +[8492] murderer's: 1 +[8493] murdering: 1 +[8494] murmured: 4 +[8495] murmuring: 1 +[8496] muscle: 2 +[8497] muscles: 12 +[8498] muscular: 4 +[8499] mused: 8 +[8500] muses: 1 +[8501] mushroom: 10 +[8502] mushroom's: 1 +[8503] mushroom-picking: 1 +[8504] mushrooms: 14 +[8505] music: 24 +[8506] musical: 7 +[8507] musically: 1 +[8508] musician: 1 +[8509] musing: 6 +[8510] musingly: 1 +[8511] muslin: 5 +[8512] muss: 1 +[8513] must: 425 +[8514] mustache: 8 +[8515] mustaches: 10 +[8516] mustiness: 1 +[8517] mustn't: 19 +[8518] mute: 2 +[8519] mutilated: 1 +[8520] muttered: 5 +[8521] muttering: 2 +[8522] mutual: 9 +[8523] muzzle: 4 +[8524] my: 789 +[8525] my...i: 1 +[8526] my...my: 1 +[8527] myakaya: 19 +[8528] myakaya's: 3 +[8529] myakaya--not: 1 +[8530] myakov: 1 +[8531] myaskin: 1 +[8532] myself: 137 +[8533] myself--and: 1 +[8534] myself--the: 1 +[8535] myself--two: 1 +[8536] mysteries: 1 +[8537] mysterious: 22 +[8538] mystery: 6 +[8539] mystical: 1 +[8540] mystified--at: 1 +[8541] n: 4 +[8542] n'a: 1 +[8543] n'ai: 1 +[8544] n'est: 4 +[8545] n'est-ce: 2 +[8546] n-n-no: 1 +[8547] n...and: 1 +[8548] nadinka: 5 +[8549] nag: 1 +[8550] nail: 1 +[8551] nails: 7 +[8552] nainsook: 1 +[8553] naively: 1 +[8554] naked: 7 +[8555] naked--was: 1 +[8556] nakedness: 4 +[8557] name: 59 +[8558] name--that: 1 +[8559] named: 2 +[8560] nameday: 1 +[8561] names: 13 +[8562] names?...the: 1 +[8563] nap: 1 +[8564] nape: 2 +[8565] napkin: 4 +[8566] napkins: 3 +[8567] naples: 2 +[8568] napping: 1 +[8569] narrative: 1 +[8570] narrow: 11 +[8571] narrower: 2 +[8572] nastia's: 1 +[8573] nasty: 8 +[8574] natalia: 11 +[8575] natation: 1 +[8576] national: 2 +[8577] nationalize: 1 +[8578] nations: 1 +[8579] native: 14 +[8580] natural: 56 +[8581] naturally: 8 +[8582] naturalness: 1 +[8583] nature: 37 +[8584] natured: 1 +[8585] natures: 1 +[8586] naughtiness: 1 +[8587] naughty: 5 +[8588] naval: 2 +[8589] navy: 1 +[8590] nay: 1 +[8591] naïf: 1 +[8592] naïve: 6 +[8593] naïvely: 3 +[8594] ne: 5 +[8595] ne'er-do-wells: 2 +[8596] near: 68 +[8597] neared: 1 +[8598] nearer: 26 +[8599] nearest: 6 +[8600] nearly: 9 +[8601] nearness: 7 +[8602] neat: 1 +[8603] neatly: 3 +[8604] neatness: 1 +[8605] necessaries: 1 +[8606] necessarily: 2 +[8607] necessary: 50 +[8608] necessitated: 1 +[8609] necessity: 22 +[8610] neck: 58 +[8611] neckband: 2 +[8612] necklace: 4 +[8613] necks: 1 +[8614] necktie: 1 +[8615] need: 66 +[8616] needed: 39 +[8617] needful: 3 +[8618] needful--to: 1 +[8619] needing: 1 +[8620] needles: 1 +[8621] needlessly: 1 +[8622] needn't: 4 +[8623] needs: 16 +[8624] negation: 3 +[8625] negative: 7 +[8626] negatively: 2 +[8627] neglected: 2 +[8628] neglecting: 1 +[8629] negligence: 1 +[8630] negotiation: 1 +[8631] negotiations: 3 +[8632] negro: 1 +[8633] negroes: 1 +[8634] neighbor: 6 +[8635] neighborhood: 4 +[8636] neighboring: 3 +[8637] neighbors: 7 +[8638] neither: 36 +[8639] nephew: 4 +[8640] neptunova: 1 +[8641] nerve: 6 +[8642] nerves: 6 +[8643] nervous: 21 +[8644] nervously: 5 +[8645] nervousness: 1 +[8646] nest: 4 +[8647] nestled: 2 +[8648] net: 3 +[8649] nettle: 1 +[8650] nettles: 2 +[8651] network: 2 +[8652] never: 410 +[8653] never-ceasing: 4 +[8654] never-failing: 2 +[8655] nevertheless: 1 +[8656] nevsky: 7 +[8657] nevyedovsky: 16 +[8658] nevyedovsky's: 1 +[8659] new: 313 +[8660] new-fashioned: 1 +[8661] newborn: 1 +[8662] newby: 1 +[8663] newest: 2 +[8664] newly: 6 +[8665] news: 37 +[8666] newsletter: 1 +[8667] newspaper: 4 +[8668] newspapers: 6 +[8669] next: 96 +[8670] nibbling: 1 +[8671] nice: 92 +[8672] nicely: 4 +[8673] nicer: 3 +[8674] nicest: 1 +[8675] nicety: 1 +[8676] nich: 1 +[8677] nickname: 1 +[8678] nicknamed: 2 +[8679] niece: 6 +[8680] night: 83 +[8681] night's: 2 +[8682] night-cabmen: 1 +[8683] night-shirt: 1 +[8684] night-watchman: 1 +[8685] nightcap: 2 +[8686] nightingales: 1 +[8687] nightmare: 4 +[8688] nights: 5 +[8689] nightshirt: 2 +[8690] nighttime: 1 +[8691] nihilist: 2 +[8692] nikandrov: 1 +[8693] nikitin: 3 +[8694] nikitins: 1 +[8695] nikititch: 1 +[8696] nikitsky: 1 +[8697] nikolaeva: 2 +[8698] nikolaevitch: 1 +[8699] nikolaevna: 31 +[8700] nikolaevna's: 2 +[8701] nikolay: 86 +[8702] nikolay's: 7 +[8703] nikolay...you: 2 +[8704] nikolinka: 1 +[8705] nil: 1 +[8706] nilsson: 3 +[8707] nilsson's: 1 +[8708] nimble: 4 +[8709] nine: 23 +[8710] nine-tenths: 1 +[8711] nineteen: 3 +[8712] ninety-eight: 1 +[8713] ninety-nine: 2 +[8714] nip: 1 +[8715] nitouche: 1 +[8716] nitrate: 1 +[8717] nizhigorod: 1 +[8718] nizhni: 1 +[8719] no: 1140 +[8720] no...truer: 1 +[8721] noah: 1 +[8722] nobility: 23 +[8723] noble: 18 +[8724] nobleman: 14 +[8725] nobleman's: 1 +[8726] noblemen: 16 +[8727] nobler: 1 +[8728] nobles: 7 +[8729] nobly: 1 +[8730] nobody: 6 +[8731] nod: 3 +[8732] nodded: 6 +[8733] nodding: 7 +[8734] nods: 1 +[8735] noise: 13 +[8736] noiseless: 1 +[8737] noiselessly: 7 +[8738] noises: 1 +[8739] noisily: 5 +[8740] noisy: 3 +[8741] nominal: 1 +[8742] non: 1 +[8743] non-applicability: 1 +[8744] non-arrival: 1 +[8745] non-existent: 2 +[8746] non-materialistic: 1 +[8747] non-official: 1 +[8748] non-platonic: 1 +[8749] non-success: 1 +[8750] nonchalant: 1 +[8751] none: 16 +[8752] nonplussed: 1 +[8753] nonproprietary: 1 +[8754] nonsense: 33 +[8755] noonday: 1 +[8756] noose: 1 +[8757] nor: 71 +[8758] nordston: 23 +[8759] normal: 3 +[8760] north: 1 +[8761] northern: 1 +[8762] nos: 2 +[8763] nose: 18 +[8764] nosegay: 1 +[8765] noses: 1 +[8766] nostrils: 4 +[8767] not: 3428 +[8768] not--and: 1 +[8769] not--for: 1 +[8770] not--i: 1 +[8771] not..._not: 1 +[8772] not...i: 1 +[8773] notary: 1 +[8774] note: 76 +[8775] note--not: 1 +[8776] notebook: 2 +[8777] notebooks: 1 +[8778] noted: 4 +[8779] notes: 16 +[8780] nothing: 531 +[8781] nothing's: 2 +[8782] nothing--she's: 1 +[8783] notice: 27 +[8784] noticeable: 4 +[8785] noticed: 65 +[8786] noticing: 45 +[8787] notified: 1 +[8788] notifies: 1 +[8789] notion: 7 +[8790] notions: 6 +[8791] notorious: 3 +[8792] notwithstanding: 2 +[8793] nourishment: 1 +[8794] nous: 1 +[8795] novel: 8 +[8796] novels: 2 +[8797] novelty: 1 +[8798] november: 1 +[8799] now: 864 +[8800] now--it's: 1 +[8801] now--no: 1 +[8802] now--to: 1 +[8803] now...everything's: 1 +[8804] now...we: 1 +[8805] now...why: 1 +[8806] nowadays: 17 +[8807] nowhere: 5 +[8808] noxious: 2 +[8809] nuits: 1 +[8810] numbed: 1 +[8811] number: 18 +[8812] numbers: 5 +[8813] numerous: 2 +[8814] numerova: 1 +[8815] nurse: 78 +[8816] nurse's: 1 +[8817] nurse,--all: 1 +[8818] nurse--still: 1 +[8819] nursed: 1 +[8820] nursery: 31 +[8821] nurses: 6 +[8822] nursing: 6 +[8823] nut: 1 +[8824] nutrition: 3 +[8825] nuts: 1 +[8826] o: 8 +[8827] o'clock: 63 +[8828] o'clock--the: 1 +[8829] o'clock.--vronsky: 1 +[8830] oak: 4 +[8831] oak-tree: 1 +[8832] oases: 1 +[8833] oasis: 1 +[8834] oatfield: 1 +[8835] oaths: 1 +[8836] oats: 15 +[8837] obedience: 1 +[8838] obedient: 3 +[8839] obediently: 1 +[8840] obeyed: 3 +[8841] obeying: 1 +[8842] obiralovka: 1 +[8843] object: 30 +[8844] objected: 2 +[8845] objection: 2 +[8846] objections: 4 +[8847] objects: 5 +[8848] obligation: 1 +[8849] obligatory: 1 +[8850] oblige: 1 +[8851] obliged: 12 +[8852] obliging: 2 +[8853] obliterated: 1 +[8854] oblivion: 2 +[8855] oblivious: 4 +[8856] oblong: 1 +[8857] oblonskaya: 3 +[8858] oblonsky: 104 +[8859] oblonsky's: 9 +[8860] oblonsky--stiva: 1 +[8861] oblonsky--that: 1 +[8862] oblonskys: 11 +[8863] oblonskys...these: 1 +[8864] obscure: 6 +[8865] observance: 3 +[8866] observation: 8 +[8867] observations: 10 +[8868] observe: 14 +[8869] observed: 24 +[8870] observer: 1 +[8871] observing: 10 +[8872] obsolete: 1 +[8873] obstacle: 8 +[8874] obstacles: 5 +[8875] obstinacy: 4 +[8876] obstinate: 4 +[8877] obstinately: 5 +[8878] obtain: 8 +[8879] obtained: 8 +[8880] obtaining: 6 +[8881] obtrusively: 2 +[8882] obvious: 12 +[8883] obviously: 76 +[8884] occasion: 4 +[8885] occasionally: 1 +[8886] occasionally--unmistakably: 1 +[8887] occasioned: 1 +[8888] occasions: 6 +[8889] occupation: 11 +[8890] occupations: 4 +[8891] occupied: 17 +[8892] occupies: 1 +[8893] occupy: 2 +[8894] occupying: 1 +[8895] occur: 3 +[8896] occur--i: 1 +[8897] occurred: 17 +[8898] ocean: 2 +[8899] october: 1 +[8900] odd: 3 +[8901] odor: 2 +[8902] of: 8721 +[8903] of--i: 1 +[8904] of--of: 1 +[8905] of--what's: 1 +[8906] off: 359 +[8907] off--for: 1 +[8908] offenbach's: 1 +[8909] offend: 8 +[8910] offended: 14 +[8911] offending: 1 +[8912] offense: 4 +[8913] offensive: 6 +[8914] offer: 43 +[8915] offered: 19 +[8916] offering: 4 +[8917] offers: 5 +[8918] office: 20 +[8919] office-papers: 1 +[8920] officer: 34 +[8921] officers: 25 +[8922] officers,--two: 1 +[8923] offices: 2 +[8924] official: 55 +[8925] official--the: 1 +[8926] officially: 1 +[8927] officials: 3 +[8928] officials--that: 1 +[8929] officiating: 1 +[8930] offspring: 1 +[8931] often: 104 +[8932] oftener: 2 +[8933] oh: 351 +[8934] ohotny: 1 +[8935] oil: 3 +[8936] oilcloth: 1 +[8937] old: 394 +[8938] old-fashioned: 14 +[8939] older: 13 +[8940] older...i: 1 +[8941] oldest: 1 +[8942] olive: 1 +[8943] olive-green: 2 +[8944] omen: 1 +[8945] omens: 1 +[8946] omnibuses: 1 +[8947] on: 2210 +[8948] once: 333 +[8949] once--it: 1 +[8950] oncle: 1 +[8951] one: 1187 +[8952] one's: 64 +[8953] one--a: 1 +[8954] one--the: 2 +[8955] one-eyed: 1 +[8956] one-half: 1 +[8957] one-sided: 1 +[8958] one-sidedness: 1 +[8959] one-third: 1 +[8960] one...is: 1 +[8961] ones: 19 +[8962] oneself: 20 +[8963] onions: 1 +[8964] online: 4 +[8965] only: 649 +[8966] only--your: 1 +[8967] onslaught: 1 +[8968] onslaughts: 1 +[8969] ont: 1 +[8970] onto: 41 +[8971] oo: 1 +[8972] open: 72 +[8973] open-handedness: 1 +[8974] opened: 70 +[8975] opening: 31 +[8976] openings: 1 +[8977] openly: 3 +[8978] opens: 2 +[8979] opera: 20 +[8980] opera-glass: 1 +[8981] operations: 2 +[8982] opined: 1 +[8983] opinion: 73 +[8984] opinions: 14 +[8985] opium: 8 +[8986] opponent: 7 +[8987] opponents: 1 +[8988] opportunities: 1 +[8989] opportunity: 9 +[8990] oppose: 4 +[8991] opposed: 13 +[8992] opposing: 1 +[8993] opposite: 38 +[8994] opposition: 9 +[8995] oppress: 2 +[8996] oppressed: 4 +[8997] oppresses: 1 +[8998] oppressing: 2 +[8999] oppression: 2 +[9000] oppressive: 1 +[9001] oppressors: 1 +[9002] or: 611 +[9003] or...he: 1 +[9004] orange: 2 +[9005] oranges: 1 +[9006] orchard: 1 +[9007] orchestra: 3 +[9008] ordained: 2 +[9009] ordeal: 1 +[9010] ordeals: 1 +[9011] order: 52 +[9012] ordered: 31 +[9013] ordering: 5 +[9014] orderly: 1 +[9015] orders: 25 +[9016] ordinarily: 1 +[9017] ordinariness: 1 +[9018] ordinary: 15 +[9019] organ: 1 +[9020] organisms: 1 +[9021] organization: 10 +[9022] organize: 3 +[9023] organized: 2 +[9024] organizing: 1 +[9025] organs: 2 +[9026] oriental: 2 +[9027] origin: 4 +[9028] original: 8 +[9029] originality: 2 +[9030] originated: 1 +[9031] originator: 1 +[9032] ornament: 1 +[9033] orphan: 1 +[9034] orthodox: 2 +[9035] oscillating: 1 +[9036] ossian's: 1 +[9037] ostend: 1 +[9038] ostensibly: 1 +[9039] other: 371 +[9040] other's: 6 +[9041] other--in: 1 +[9042] others: 69 +[9043] others--how: 1 +[9044] others--just: 1 +[9045] otherwise: 5 +[9046] oublie: 1 +[9047] oubliez: 1 +[9048] ought: 140 +[9049] oughtn't: 2 +[9050] our: 214 +[9051] ours: 3 +[9052] ourselves: 14 +[9053] out: 1024 +[9054] out--but: 1 +[9055] out-of-doors: 3 +[9056] outbidding: 1 +[9057] outburst: 2 +[9058] outcast: 1 +[9059] outcries: 1 +[9060] outcry: 1 +[9061] outdated: 1 +[9062] outdone: 1 +[9063] outer: 14 +[9064] outfit: 1 +[9065] outing: 1 +[9066] outlay: 2 +[9067] outline: 1 +[9068] outlines: 3 +[9069] outlived: 1 +[9070] outlook: 2 +[9071] outrer: 1 +[9072] outright: 2 +[9073] outside: 40 +[9074] outsider: 9 +[9075] outsiders: 6 +[9076] outstretched: 3 +[9077] outstrip: 1 +[9078] outstripped: 1 +[9079] outward: 5 +[9080] outwardly: 1 +[9081] outwardly--and: 1 +[9082] outweigh: 1 +[9083] outweighed: 1 +[9084] ov: 1 +[9085] oval: 1 +[9086] ovations: 1 +[9087] over: 585 +[9088] over-bold: 1 +[9089] over-boot: 1 +[9090] over-nervous: 1 +[9091] over-tired: 1 +[9092] overawed: 3 +[9093] overbalancing: 1 +[9094] overbrimming: 1 +[9095] overcast: 1 +[9096] overcoat: 24 +[9097] overcome: 9 +[9098] overcoming: 2 +[9099] overdo: 1 +[9100] overdriven: 1 +[9101] overflowing: 1 +[9102] overgrown: 2 +[9103] overhanging: 3 +[9104] overhead: 2 +[9105] overheard: 4 +[9106] overhearing: 1 +[9107] overjoyed: 2 +[9108] overlook: 5 +[9109] overlooked: 3 +[9110] overpersuaded: 1 +[9111] overseer: 1 +[9112] overseers: 1 +[9113] overspread: 6 +[9114] overspreading: 1 +[9115] overstated: 1 +[9116] overstrained: 2 +[9117] overtake: 4 +[9118] overtaken: 2 +[9119] overtakes: 1 +[9120] overtaking: 5 +[9121] overtook: 11 +[9122] overturn: 1 +[9123] overwhelm: 1 +[9124] overwhelmed: 4 +[9125] overwork: 1 +[9126] overworked: 1 +[9127] overwrought: 3 +[9128] owe: 1 +[9129] owed: 4 +[9130] owing: 14 +[9131] owl: 1 +[9132] own: 359 +[9133] owned: 2 +[9134] owner: 5 +[9135] owner's: 1 +[9136] ownership: 1 +[9137] owns: 3 +[9138] ox: 1 +[9139] oxen: 1 +[9140] oysters: 13 +[9141] p.s.--i: 1 +[9142] pace: 14 +[9143] paced: 1 +[9144] paces: 16 +[9145] pacified: 2 +[9146] pacify: 2 +[9147] pacing: 3 +[9148] pack: 3 +[9149] packed: 5 +[9150] packet: 2 +[9151] packing: 7 +[9152] paddock: 5 +[9153] page: 2 +[9154] pages: 11 +[9155] paid: 25 +[9156] pails: 2 +[9157] pain: 28 +[9158] pained: 1 +[9159] painful: 37 +[9160] painfully: 13 +[9161] pains: 5 +[9162] paint: 13 +[9163] paint's: 1 +[9164] painted: 15 +[9165] painted--weak: 1 +[9166] painter: 6 +[9167] painting: 27 +[9168] painting--he: 1 +[9169] painting--no: 1 +[9170] pair: 13 +[9171] palace: 2 +[9172] palazzo: 8 +[9173] pale: 19 +[9174] paleness: 1 +[9175] palette: 1 +[9176] palings: 2 +[9177] pall: 1 +[9178] palm: 3 +[9179] palms: 1 +[9180] pamphlet: 3 +[9181] pancakes: 2 +[9182] pane: 4 +[9183] paneled: 1 +[9184] panels: 1 +[9185] panes: 2 +[9186] pang: 9 +[9187] pangs: 1 +[9188] panic: 6 +[9189] panic-stricken: 9 +[9190] panics: 1 +[9191] pans: 1 +[9192] pansies: 1 +[9193] panslavist: 1 +[9194] panting: 4 +[9195] papa: 29 +[9196] papa!...how: 1 +[9197] papa's: 3 +[9198] papacy: 1 +[9199] paper: 32 +[9200] paper-knife: 2 +[9201] paper-knives: 1 +[9202] paper-weight: 1 +[9203] papers: 25 +[9204] paperwork: 1 +[9205] par: 1 +[9206] paradise: 1 +[9207] paradox: 1 +[9208] paradoxical: 1 +[9209] paragraph: 11 +[9210] paragraphs: 3 +[9211] parallel: 2 +[9212] paramount: 1 +[9213] parapet: 2 +[9214] parasha: 1 +[9215] parasites: 1 +[9216] parasol: 7 +[9217] parasols: 3 +[9218] parcel: 2 +[9219] pardessus: 1 +[9220] pardon: 27 +[9221] pardoned: 1 +[9222] parents: 19 +[9223] parfait: 1 +[9224] parfen: 2 +[9225] paris: 7 +[9226] paris--i: 1 +[9227] parish: 3 +[9228] parishioner: 1 +[9229] parisian: 1 +[9230] park: 1 +[9231] parks: 1 +[9232] parley: 1 +[9233] parliament: 5 +[9234] parlor: 5 +[9235] parmenitch: 1 +[9236] parmenov: 3 +[9237] parmesan: 1 +[9238] parochial: 1 +[9239] parquet: 4 +[9240] parried: 1 +[9241] part: 139 +[9242] part--he: 2 +[9243] partake: 1 +[9244] parted: 24 +[9245] partial: 4 +[9246] participation: 1 +[9247] particle: 1 +[9248] particolored: 1 +[9249] particular: 15 +[9250] particularly: 80 +[9251] particulars: 2 +[9252] particulary: 1 +[9253] partie: 1 +[9254] parties: 11 +[9255] parting: 12 +[9256] partisan: 1 +[9257] partisans: 2 +[9258] partition: 10 +[9259] partitioned: 1 +[9260] partly: 15 +[9261] partner: 6 +[9262] partners: 5 +[9263] partnership: 4 +[9264] partnerships: 1 +[9265] parts: 14 +[9266] parts--a: 1 +[9267] party: 75 +[9268] party--some: 1 +[9269] pas: 10 +[9270] pasha's: 1 +[9271] paskudin: 2 +[9272] pass: 39 +[9273] passage: 15 +[9274] passed: 109 +[9275] passenger: 1 +[9276] passengers: 8 +[9277] passer: 1 +[9278] passers-by: 2 +[9279] passes: 1 +[9280] passing: 40 +[9281] passion: 33 +[9282] passionate: 14 +[9283] passionately: 4 +[9284] passionless: 1 +[9285] passions: 8 +[9286] passive: 2 +[9287] past: 66 +[9288] past--the: 1 +[9289] paste...no: 1 +[9290] pasterns: 3 +[9291] pastime: 2 +[9292] pasture: 1 +[9293] pastures: 1 +[9294] patch: 6 +[9295] patched: 4 +[9296] patches: 10 +[9297] patent: 1 +[9298] paternal: 1 +[9299] path: 29 +[9300] pathetic: 1 +[9301] paths: 4 +[9302] patience: 3 +[9303] patient: 16 +[9304] patient's: 1 +[9305] patients: 2 +[9306] patriarchal: 1 +[9307] patriarchs: 2 +[9308] patriots: 1 +[9309] patron: 1 +[9310] patronage: 1 +[9311] patronized: 2 +[9312] patronizes: 1 +[9313] patronizing: 3 +[9314] patronymic: 1 +[9315] patted: 4 +[9316] pattered: 1 +[9317] pattern: 6 +[9318] pattern--so: 1 +[9319] patterns: 2 +[9320] patti: 4 +[9321] patti's: 1 +[9322] patting: 3 +[9323] paul: 1 +[9324] paul's: 1 +[9325] pause: 17 +[9326] paused: 19 +[9327] pauses: 1 +[9328] pausing: 3 +[9329] pauvre: 1 +[9330] pava: 7 +[9331] pava's: 2 +[9332] paved: 3 +[9333] pavement: 3 +[9334] pavements: 2 +[9335] pavilion: 21 +[9336] pavilions: 3 +[9337] pavlovna: 14 +[9338] pavlovna's: 3 +[9339] pawn: 1 +[9340] pawned: 1 +[9341] paws: 2 +[9342] pay: 40 +[9343] paying: 15 +[9344] payment: 5 +[9345] payments: 3 +[9346] pea: 1 +[9347] peace: 79 +[9348] peaceable: 1 +[9349] peaceful: 6 +[9350] peacemakers: 1 +[9351] peaches: 2 +[9352] peacock: 1 +[9353] peak: 1 +[9354] peal: 1 +[9355] peals: 2 +[9356] pear: 2 +[9357] pearl: 1 +[9358] pearls: 3 +[9359] pearly: 1 +[9360] peasant: 102 +[9361] peasant's: 10 +[9362] peasant--his: 1 +[9363] peasant-women: 1 +[9364] peasantry: 10 +[9365] peasants: 129 +[9366] pecking: 1 +[9367] peculiar: 38 +[9368] peculiarities: 3 +[9369] peculiarity: 3 +[9370] peculiarly: 8 +[9371] pecuniary: 4 +[9372] pedal: 1 +[9373] pedestal: 1 +[9374] pedestals: 1 +[9375] peel: 1 +[9376] peeled: 2 +[9377] peep: 2 +[9378] peeped: 10 +[9379] peeping: 7 +[9380] peered: 1 +[9381] peering: 1 +[9382] peevish: 2 +[9383] peewit: 1 +[9384] peewits: 3 +[9385] peg: 2 +[9386] pen: 2 +[9387] pence: 2 +[9388] pencil: 5 +[9389] penetrate: 4 +[9390] penetrated: 2 +[9391] penetrating: 2 +[9392] penitent: 8 +[9393] penitently: 3 +[9394] penknife: 2 +[9395] penknives: 2 +[9396] penniless: 1 +[9397] penny: 5 +[9398] pens: 4 +[9399] pense: 1 +[9400] penseur: 1 +[9401] pensions: 1 +[9402] pensive: 7 +[9403] pensively: 1 +[9404] penza: 1 +[9405] people: 319 +[9406] people!--we're: 1 +[9407] people's: 11 +[9408] people--has: 1 +[9409] people--present: 1 +[9410] people--that's: 3 +[9411] people--why: 1 +[9412] peoples: 5 +[9413] per: 6 +[9414] perambulator: 1 +[9415] perceive: 2 +[9416] perceived: 20 +[9417] perceiving: 4 +[9418] perceptible: 15 +[9419] perceptibly: 2 +[9420] perception: 2 +[9421] perceptions: 1 +[9422] perch: 1 +[9423] perdere: 1 +[9424] peremptorily: 1 +[9425] peremptory: 3 +[9426] perfect: 25 +[9427] perfectibility: 1 +[9428] perfection: 12 +[9429] perfectly: 55 +[9430] perforated: 1 +[9431] perforce: 1 +[9432] perform: 3 +[9433] performance: 9 +[9434] performances: 1 +[9435] performed: 11 +[9436] performing: 8 +[9437] perfumed: 3 +[9438] perhaps: 67 +[9439] period: 15 +[9440] periodic: 1 +[9441] periodical: 1 +[9442] periods: 2 +[9443] perish: 1 +[9444] permanent: 5 +[9445] permissible: 1 +[9446] permission: 18 +[9447] permit: 2 +[9448] permitted: 4 +[9449] pernicious: 1 +[9450] perpetrate: 1 +[9451] perplexed: 2 +[9452] perplexes: 1 +[9453] perplexities: 1 +[9454] perplexity: 10 +[9455] persecuted: 2 +[9456] persecution: 1 +[9457] perseveringly: 1 +[9458] persian: 1 +[9459] persisted: 2 +[9460] persistence: 1 +[9461] persistent: 2 +[9462] persistently: 3 +[9463] persists: 1 +[9464] person: 78 +[9465] person's: 3 +[9466] person...i: 1 +[9467] personage: 6 +[9468] personages: 4 +[9469] personages--that: 1 +[9470] personal: 20 +[9471] personality: 2 +[9472] personally: 4 +[9473] personne: 1 +[9474] persons: 29 +[9475] perspective: 1 +[9476] perspiration: 4 +[9477] perspiring: 3 +[9478] persuade: 15 +[9479] persuaded: 14 +[9480] persuading: 4 +[9481] persuasion: 1 +[9482] persuasive: 2 +[9483] pertinacious: 1 +[9484] perturbed: 3 +[9485] perusal: 1 +[9486] pervaded: 1 +[9487] perverse: 1 +[9488] pervozvanny: 1 +[9489] pessimism: 1 +[9490] pestsov: 36 +[9491] petal: 1 +[9492] petals: 2 +[9493] peter: 2 +[9494] peter's: 2 +[9495] peterhof: 7 +[9496] petersbourg: 1 +[9497] petersburg: 126 +[9498] petersburg's: 1 +[9499] petersburger: 1 +[9500] petit: 3 +[9501] petite: 2 +[9502] petites: 1 +[9503] petitesse: 1 +[9504] petition: 2 +[9505] petitioner: 1 +[9506] petitioner's: 1 +[9507] petitioners: 2 +[9508] petitions: 3 +[9509] petritsky: 31 +[9510] petritsky's: 4 +[9511] petrov: 7 +[9512] petrov's: 1 +[9513] petrova: 1 +[9514] petrovitch: 7 +[9515] petrovitch's: 1 +[9516] petrovna: 23 +[9517] petrovna's: 2 +[9518] petrovs: 4 +[9519] petrovsky: 1 +[9520] petted: 1 +[9521] petticoat: 1 +[9522] petticoats: 2 +[9523] pettiest: 1 +[9524] pettily: 1 +[9525] petting: 1 +[9526] petty: 11 +[9527] peu: 1 +[9528] peut: 1 +[9529] pg: 1 +[9530] pglaf: 1 +[9531] phantasm: 1 +[9532] phantasms: 1 +[9533] phantoms: 2 +[9534] pharisaical: 1 +[9535] phase: 2 +[9536] phases: 1 +[9537] pheasants: 1 +[9538] phenomena: 4 +[9539] phenomenon: 4 +[9540] phew: 1 +[9541] philanthropic: 4 +[9542] philanthropy: 1 +[9543] philimonovna: 13 +[9544] philimonovna's: 1 +[9545] philip: 10 +[9546] philip's: 1 +[9547] philosopher: 2 +[9548] philosopher's: 1 +[9549] philosophers: 4 +[9550] philosophic: 1 +[9551] philosophical: 6 +[9552] philosophy: 14 +[9553] phosphorus: 1 +[9554] photograph: 7 +[9555] photographs: 4 +[9556] phrase: 31 +[9557] phrase--that: 1 +[9558] phrase-monger: 1 +[9559] phrases: 7 +[9560] physic: 1 +[9561] physical: 34 +[9562] physically: 10 +[9563] physician: 3 +[9564] physics: 3 +[9565] physiological: 2 +[9566] physiology)--utterly: 1 +[9567] piano: 6 +[9568] pick: 11 +[9569] pick-me-up: 1 +[9570] picked: 15 +[9571] picking: 16 +[9572] pickle's: 1 +[9573] pickled: 1 +[9574] picture: 67 +[9575] picture--a: 1 +[9576] picture-stand: 1 +[9577] pictured: 15 +[9578] pictures: 15 +[9579] pictures--this: 1 +[9580] picturing: 9 +[9581] piebald: 2 +[9582] piece: 19 +[9583] pieces: 12 +[9584] pier: 1 +[9585] pierced: 2 +[9586] piercing: 3 +[9587] pierre: 2 +[9588] pies: 3 +[9589] pietist: 1 +[9590] pietists: 1 +[9591] pig: 2 +[9592] pilate: 10 +[9593] pilate's: 3 +[9594] pile: 1 +[9595] piled: 1 +[9596] piled-up: 1 +[9597] pillow: 14 +[9598] pillowcases: 1 +[9599] pillows: 4 +[9600] pills: 3 +[9601] pince-nez: 6 +[9602] pinch: 2 +[9603] pinched: 4 +[9604] pinching: 1 +[9605] pines: 2 +[9606] pink: 15 +[9607] pinnacle: 5 +[9608] pinned: 2 +[9609] pinning: 1 +[9610] pinpricks: 1 +[9611] piotr: 3 +[9612] pious: 1 +[9613] pipe: 2 +[9614] pipes: 4 +[9615] piping: 2 +[9616] piqued: 1 +[9617] pis: 2 +[9618] pis-aller: 1 +[9619] pistol: 2 +[9620] pistols: 3 +[9621] pit: 1 +[9622] pitch: 4 +[9623] pitch-black: 1 +[9624] pitched: 1 +[9625] pitchers: 2 +[9626] pitchfork: 1 +[9627] pitchforks: 1 +[9628] pitching: 1 +[9629] piteous: 7 +[9630] piteously: 2 +[9631] pitiable: 5 +[9632] pitied: 11 +[9633] pities: 1 +[9634] pitiful: 12 +[9635] pity: 57 +[9636] pity's: 3 +[9637] pitying: 4 +[9638] pivot: 1 +[9639] pièce: 2 +[9640] placards: 1 +[9641] place: 154 +[9642] place--foreign: 1 +[9643] placed: 22 +[9644] places: 17 +[9645] places--there: 1 +[9646] placid: 2 +[9647] placing: 1 +[9648] plague-stricken: 1 +[9649] plaid: 1 +[9650] plain: 9 +[9651] plainer: 1 +[9652] plainly: 12 +[9653] plaintive: 3 +[9654] plaintively: 5 +[9655] plaisir: 1 +[9656] plaited: 1 +[9657] plan: 20 +[9658] planet: 2 +[9659] planing: 1 +[9660] plank: 1 +[9661] planks: 2 +[9662] planned: 4 +[9663] planning: 1 +[9664] plans: 26 +[9665] plant: 4 +[9666] planted: 5 +[9667] plants: 3 +[9668] plaster: 1 +[9669] plastic: 1 +[9670] plate: 5 +[9671] plate-glass: 1 +[9672] plates: 3 +[9673] platform: 22 +[9674] plato: 2 +[9675] platon: 3 +[9676] platonic: 1 +[9677] play: 22 +[9678] playbill: 1 +[9679] played: 15 +[9680] player: 3 +[9681] players: 4 +[9682] playful: 2 +[9683] playfully: 5 +[9684] playfulness: 1 +[9685] playing: 23 +[9686] plays: 1 +[9687] plaything: 5 +[9688] playthings: 2 +[9689] playtime: 1 +[9690] plea: 2 +[9691] pleaded: 1 +[9692] pleasant: 36 +[9693] pleasanter: 2 +[9694] pleasantest: 1 +[9695] pleasantly: 2 +[9696] please: 120 +[9697] pleased: 56 +[9698] pleases: 2 +[9699] pleasing: 1 +[9700] pleasure: 72 +[9701] pleasure--his: 1 +[9702] pleasures: 8 +[9703] pledged: 1 +[9704] plein: 1 +[9705] plenty: 13 +[9706] plied: 1 +[9707] plight: 3 +[9708] plighted: 1 +[9709] plighting: 3 +[9710] plights: 1 +[9711] plinths: 1 +[9712] plots: 1 +[9713] plough: 11 +[9714] ploughed: 7 +[9715] ploughing: 8 +[9716] ploughland: 2 +[9717] ploughs: 7 +[9718] ploughshares: 1 +[9719] pluck: 5 +[9720] pluck--that: 1 +[9721] plucked: 2 +[9722] plucking: 1 +[9723] plucky: 1 +[9724] plum: 2 +[9725] plump: 15 +[9726] plumper: 1 +[9727] plunge: 2 +[9728] plunged: 8 +[9729] plural: 2 +[9730] plus: 2 +[9731] plush: 1 +[9732] poached: 1 +[9733] poches: 1 +[9734] pocket: 12 +[9735] pocket--"and: 1 +[9736] pocketbook: 8 +[9737] pocketed: 1 +[9738] pockets: 8 +[9739] pockmarked: 4 +[9740] poet: 3 +[9741] poetic: 5 +[9742] poetical: 2 +[9743] poetically: 1 +[9744] poetry: 5 +[9745] pogatchev's: 1 +[9746] poignancy: 1 +[9747] poignant: 1 +[9748] point: 115 +[9749] point--his: 1 +[9750] point--i: 1 +[9751] point--the: 1 +[9752] pointe: 1 +[9753] pointed: 13 +[9754] pointed.--"fetch: 1 +[9755] pointer: 2 +[9756] pointing: 45 +[9757] points: 18 +[9758] poison: 1 +[9759] poisoned: 7 +[9760] poked: 4 +[9761] poking: 1 +[9762] pokrovskoe: 11 +[9763] poland: 6 +[9764] poles: 1 +[9765] police: 5 +[9766] policeman: 1 +[9767] policemen: 2 +[9768] policy: 6 +[9769] polish: 1 +[9770] polishing: 1 +[9771] polite: 2 +[9772] politeness: 4 +[9773] politeness--alluded: 1 +[9774] political: 23 +[9775] politician: 4 +[9776] politics: 11 +[9777] polkas: 1 +[9778] pollen: 1 +[9779] poltavsky: 1 +[9780] pomaded: 4 +[9781] pomorsky: 3 +[9782] pomorsky--just: 1 +[9783] pond: 3 +[9784] ponder: 2 +[9785] pondered: 15 +[9786] pondering: 3 +[9787] ponderous: 1 +[9788] pool: 1 +[9789] pools: 4 +[9790] poor: 47 +[9791] pope: 1 +[9792] poplin: 1 +[9793] popped: 1 +[9794] popping: 2 +[9795] popular: 2 +[9796] populated: 1 +[9797] population: 1 +[9798] populations: 1 +[9799] porch: 2 +[9800] porridge: 3 +[9801] port: 1 +[9802] porter: 46 +[9803] porter's: 9 +[9804] porter...you: 1 +[9805] porters: 5 +[9806] portfolio: 8 +[9807] portfolio--stood: 1 +[9808] portioned: 1 +[9809] portions: 1 +[9810] portières: 1 +[9811] portrait: 37 +[9812] portrait--the: 1 +[9813] portrait-painter: 1 +[9814] portraits: 6 +[9815] pose: 6 +[9816] posing: 1 +[9817] position: 288 +[9818] position--all: 1 +[9819] position--incomprehensible: 1 +[9820] position--that's: 1 +[9821] position...there: 1 +[9822] positions: 4 +[9823] positive: 6 +[9824] positively: 55 +[9825] possess: 1 +[9826] possessed: 6 +[9827] possesses: 2 +[9828] possession: 12 +[9829] possibility: 25 +[9830] possible: 121 +[9831] possible,"--if: 1 +[9832] possible--took: 1 +[9833] possibly: 31 +[9834] post: 29 +[9835] posted: 5 +[9836] posting-fares: 1 +[9837] posting-horses: 1 +[9838] posts: 2 +[9839] posture: 3 +[9840] pot: 5 +[9841] potato: 1 +[9842] potato-hoeing: 1 +[9843] potatoes: 7 +[9844] potatoes--everything: 1 +[9845] pothouse: 1 +[9846] pots: 3 +[9847] poudre: 1 +[9848] poulard: 1 +[9849] poulet: 1 +[9850] pounce: 1 +[9851] pounced: 3 +[9852] pounds: 7 +[9853] pour: 3 +[9854] poured: 8 +[9855] pouring: 6 +[9856] pout: 1 +[9857] pouting: 1 +[9858] poverty: 7 +[9859] powder: 7 +[9860] powder-grimed: 1 +[9861] powdering: 1 +[9862] powders: 3 +[9863] power: 30 +[9864] powerful: 13 +[9865] powerfully: 1 +[9866] powerless: 3 +[9867] powers: 6 +[9868] poésie: 1 +[9869] practical: 4 +[9870] practically: 7 +[9871] practice: 8 +[9872] practiced: 3 +[9873] practicing: 1 +[9874] praise: 13 +[9875] praised: 4 +[9876] praises: 2 +[9877] praises--i: 1 +[9878] praising: 3 +[9879] prancing: 1 +[9880] pranks: 2 +[9881] prattle: 1 +[9882] pravdin: 2 +[9883] pray: 15 +[9884] prayed: 13 +[9885] prayer: 17 +[9886] prayers: 7 +[9887] praying: 7 +[9888] prays: 1 +[9889] pre-raphaelite: 1 +[9890] pre-raphaelites: 1 +[9891] preached: 1 +[9892] precarious: 1 +[9893] precautions: 2 +[9894] preceded: 3 +[9895] precedents: 1 +[9896] precedes: 1 +[9897] preceding: 1 +[9898] precept: 1 +[9899] preceptor: 1 +[9900] precious: 11 +[9901] precipice: 1 +[9902] precipitous: 1 +[9903] precise: 3 +[9904] precisely: 21 +[9905] precision: 6 +[9906] precluded: 1 +[9907] predecessor: 3 +[9908] predict: 1 +[9909] prediction: 2 +[9910] predictions: 1 +[9911] preeminence: 1 +[9912] preeminently: 1 +[9913] preening: 1 +[9914] prefer: 3 +[9915] preferred: 4 +[9916] preferring: 1 +[9917] prefigured: 1 +[9918] pregnancy: 3 +[9919] preis: 1 +[9920] preliminary: 3 +[9921] premature: 3 +[9922] prematurely: 2 +[9923] preparation: 6 +[9924] preparations: 12 +[9925] preparatory: 1 +[9926] prepare: 4 +[9927] prepared: 27 +[9928] preparing: 19 +[9929] preponderance: 1 +[9930] prescribe: 1 +[9931] prescribed: 6 +[9932] presence: 43 +[9933] presence...i: 1 +[9934] present: 53 +[9935] present--well: 1 +[9936] present...that: 1 +[9937] presented: 24 +[9938] presentiment: 1 +[9939] presenting: 1 +[9940] presently: 2 +[9941] presents: 5 +[9942] preserve: 2 +[9943] preserved: 1 +[9944] preserves: 1 +[9945] preserving: 2 +[9946] preserving-pan: 1 +[9947] president: 10 +[9948] presidential: 1 +[9949] presiding: 1 +[9950] press: 9 +[9951] pressed: 35 +[9952] presser: 1 +[9953] pressing: 15 +[9954] pressingly: 1 +[9955] pressure: 4 +[9956] prestige: 1 +[9957] presume: 1 +[9958] presupposing: 1 +[9959] pretend: 1 +[9960] pretended: 10 +[9961] pretending: 8 +[9962] pretense: 7 +[9963] pretension: 1 +[9964] pretentious-looking: 1 +[9965] pretext: 6 +[9966] pretexts: 1 +[9967] prettier: 1 +[9968] pretty: 49 +[9969] prevailed: 1 +[9970] prevalent: 2 +[9971] prevent: 17 +[9972] prevented: 14 +[9973] preventing: 1 +[9974] prevents: 1 +[9975] previous: 33 +[9976] previously: 4 +[9977] price: 12 +[9978] price--so: 1 +[9979] priceless: 1 +[9980] prices: 1 +[9981] prick: 1 +[9982] pricked: 5 +[9983] pride: 32 +[9984] pride--so: 1 +[9985] prided: 3 +[9986] priest: 48 +[9987] priest's: 1 +[9988] priests: 2 +[9989] primarily: 2 +[9990] primary: 1 +[9991] prime: 2 +[9992] primesautière: 1 +[9993] primitive: 3 +[9994] prince: 163 +[9995] prince's: 10 +[9996] prince--that's: 1 +[9997] prince...the: 1 +[9998] princes: 4 +[9999] princess: 316 +[10000] princess's: 10 +[10001] princess...the: 1 +[10002] princesses: 1 +[10003] principal: 10 +[10004] principally: 9 +[10005] principle: 17 +[10006] principles: 25 +[10007] print: 3 +[10008] printaniere: 1 +[10009] printanière: 1 +[10010] printed: 3 +[10011] prints: 2 +[10012] pripasov: 1 +[10013] pripasov--would: 1 +[10014] prison: 2 +[10015] prisoner: 1 +[10016] prisons: 2 +[10017] private: 14 +[10018] privation: 1 +[10019] privilege: 1 +[10020] privileged: 1 +[10021] privileges: 3 +[10022] privy: 1 +[10023] prize: 4 +[10024] prize-fighting: 1 +[10025] prized: 4 +[10026] prizes: 1 +[10027] probability: 1 +[10028] probable: 1 +[10029] probably: 25 +[10030] problem: 11 +[10031] problems: 8 +[10032] procedure: 1 +[10033] proceed: 2 +[10034] proceeded: 10 +[10035] proceeding: 4 +[10036] proceedings: 6 +[10037] process: 14 +[10038] processing: 1 +[10039] proclaimed: 2 +[10040] proclamation: 1 +[10041] procreation: 1 +[10042] procure: 1 +[10043] procured: 1 +[10044] prod: 1 +[10045] produce: 4 +[10046] produced: 10 +[10047] produces: 1 +[10048] product: 2 +[10049] production: 4 +[10050] productive: 3 +[10051] productively: 1 +[10052] profaned: 1 +[10053] profaning: 1 +[10054] professez: 1 +[10055] profession: 2 +[10056] professor: 24 +[10057] professor's: 1 +[10058] professors: 4 +[10059] proffered: 1 +[10060] proffering: 1 +[10061] proficient: 1 +[10062] profile: 1 +[10063] profit: 13 +[10064] profit--that's: 1 +[10065] profitable: 5 +[10066] profits: 7 +[10067] profound: 3 +[10068] profoundly: 1 +[10069] program: 6 +[10070] progress: 12 +[10071] progression: 1 +[10072] prohibition: 1 +[10073] prohor: 1 +[10074] project: 90 +[10075] projecting: 4 +[10076] projects: 6 +[10077] prokofy: 2 +[10078] prolong: 2 +[10079] prolonged: 3 +[10080] promenade: 1 +[10081] prominent: 11 +[10082] prominently: 2 +[10083] promise: 21 +[10084] promised: 45 +[10085] promising: 6 +[10086] promissory: 1 +[10087] promoted: 2 +[10088] promoting: 4 +[10089] promotion: 3 +[10090] prompted: 5 +[10091] promptly: 18 +[10092] prompts: 1 +[10093] pronounce: 4 +[10094] pronounced: 5 +[10095] pronouncing: 2 +[10096] proof: 12 +[10097] proofread: 1 +[10098] proofs: 7 +[10099] prop: 1 +[10100] propensities: 4 +[10101] propensities--wicked: 1 +[10102] proper: 12 +[10103] properly: 12 +[10104] property: 30 +[10105] proportion: 3 +[10106] proportionally: 1 +[10107] proportionate: 1 +[10108] proportions: 1 +[10109] propos: 3 +[10110] proposal: 2 +[10111] proposal--that: 1 +[10112] propose: 1 +[10113] proposed: 21 +[10114] proposition: 3 +[10115] propositions: 1 +[10116] propped: 7 +[10117] propping: 2 +[10118] proprietary: 1 +[10119] proprieties: 2 +[10120] proprietors: 1 +[10121] propriety: 7 +[10122] prosecution: 1 +[10123] prosecutor: 3 +[10124] prospect: 3 +[10125] prosperity: 7 +[10126] prosperous: 1 +[10127] prostration: 1 +[10128] protect: 6 +[10129] protected: 2 +[10130] protecting: 1 +[10131] protection: 6 +[10132] protection...though: 1 +[10133] protector: 1 +[10134] protegée: 1 +[10135] protest: 2 +[10136] protestant: 1 +[10137] protestations: 2 +[10138] protests: 1 +[10139] protruding: 1 +[10140] protégés: 1 +[10141] proud: 36 +[10142] proudly: 1 +[10143] prove: 20 +[10144] proved: 14 +[10145] provender: 1 +[10146] proverb: 3 +[10147] proves: 6 +[10148] provide: 11 +[10149] provided: 9 +[10150] providence: 1 +[10151] providential: 1 +[10152] providing: 7 +[10153] province: 43 +[10154] provinces: 7 +[10155] provinces--you: 1 +[10156] provincial: 10 +[10157] proving: 1 +[10158] provision: 1 +[10159] provisions: 3 +[10160] provoke: 3 +[10161] provoked: 1 +[10162] provoking: 1 +[10163] prowess: 1 +[10164] proximity: 1 +[10165] prudence: 2 +[10166] prudent: 3 +[10167] prudno: 1 +[10168] prussia: 3 +[10169] pryatchnikov: 3 +[10170] psalm: 1 +[10171] pseudo-matrimonial: 1 +[10172] psychological: 1 +[10173] public: 76 +[10174] public-spirited: 1 +[10175] publications: 1 +[10176] publicity: 3 +[10177] published: 2 +[10178] publisher...and: 1 +[10179] puce: 1 +[10180] puckered: 3 +[10181] pudding: 1 +[10182] puddings: 2 +[10183] puddles: 1 +[10184] puerperal: 1 +[10185] puffed: 1 +[10186] puffed-out: 1 +[10187] puffing: 1 +[10188] puffs: 1 +[10189] puis: 3 +[10190] pull: 5 +[10191] pulled: 28 +[10192] pulled-up: 1 +[10193] pulling: 31 +[10194] pulls: 1 +[10195] pulse: 3 +[10196] pumping: 1 +[10197] punctilious: 1 +[10198] punctual: 1 +[10199] punctuality: 1 +[10200] punctually: 1 +[10201] punish: 10 +[10202] punished: 9 +[10203] punishing: 4 +[10204] punishment: 9 +[10205] punitive: 1 +[10206] pupil: 3 +[10207] purchase: 3 +[10208] purchaser: 1 +[10209] purchasers: 1 +[10210] purchases: 2 +[10211] pure: 8 +[10212] purely: 3 +[10213] purer: 3 +[10214] purgative: 1 +[10215] purity: 5 +[10216] purity--had: 1 +[10217] purplish: 1 +[10218] purport: 1 +[10219] purpose: 19 +[10220] purposely: 14 +[10221] purposes: 2 +[10222] purse: 1 +[10223] pursed: 1 +[10224] pursing: 1 +[10225] pursue: 5 +[10226] pursued: 27 +[10227] pursuing: 5 +[10228] pursuit: 6 +[10229] pursuits: 9 +[10230] purveyor: 1 +[10231] push: 4 +[10232] pushed: 15 +[10233] pushing: 5 +[10234] put: 301 +[10235] put-to: 1 +[10236] puts: 2 +[10237] putting: 87 +[10238] putty: 1 +[10239] putyatov: 1 +[10240] puzzled: 6 +[10241] puzzling: 2 +[10242] pyevtsov: 2 +[10243] pyotr: 26 +[10244] pyramids: 1 +[10245] pétersbourg: 1 +[10246] pétrir: 1 +[10247] qu'elle: 3 +[10248] qu'est-ce: 1 +[10249] qu'ils: 1 +[10250] quack: 1 +[10251] quacks: 3 +[10252] quadrangle: 1 +[10253] quadrangular: 1 +[10254] quadrille: 10 +[10255] quail's: 1 +[10256] qualification: 3 +[10257] qualifications: 4 +[10258] qualified: 1 +[10259] qualities: 12 +[10260] quality: 9 +[10261] quantity: 1 +[10262] quarrel: 27 +[10263] quarreled: 7 +[10264] quarreling: 2 +[10265] quarrels: 9 +[10266] quarrelsome: 2 +[10267] quarter: 4 +[10268] quartermaster: 5 +[10269] quarters: 5 +[10270] quartette: 1 +[10271] que: 6 +[10272] queen: 2 +[10273] queer: 27 +[10274] queerly: 1 +[10275] quelling: 1 +[10276] quench: 1 +[10277] quenched: 2 +[10278] queried: 17 +[10279] question: 212 +[10280] question's: 1 +[10281] question--"that: 1 +[10282] question--it: 1 +[10283] questioned: 11 +[10284] questioning: 12 +[10285] questioning--hostile: 1 +[10286] questioningly: 3 +[10287] questions: 61 +[10288] qui: 5 +[10289] quick: 21 +[10290] quicken: 1 +[10291] quickened: 7 +[10292] quickening: 3 +[10293] quicker: 1 +[10294] quickly: 86 +[10295] quicksilver: 1 +[10296] quickwittedness: 1 +[10297] quiet: 24 +[10298] quieter: 1 +[10299] quietly: 17 +[10300] quilt: 9 +[10301] quinze: 1 +[10302] quite: 219 +[10303] quite...soon: 1 +[10304] quiver: 8 +[10305] quivered: 13 +[10306] quivering: 18 +[10307] quo: 1 +[10308] quos: 2 +[10309] quotations: 2 +[10310] quote: 1 +[10311] quoted: 1 +[10312] quoting: 1 +[10313] r: 1 +[10314] r's: 1 +[10315] race: 56 +[10316] race-course: 2 +[10317] racers: 7 +[10318] races: 42 +[10319] races...and: 1 +[10320] rachel: 1 +[10321] racing: 3 +[10322] rack: 2 +[10323] racked: 1 +[10324] radiance: 5 +[10325] radiant: 26 +[10326] radical: 1 +[10327] radicalism: 1 +[10328] rage: 8 +[10329] raging: 2 +[10330] ragozov: 1 +[10331] rags: 2 +[10332] raids: 1 +[10333] railed: 1 +[10334] railing: 1 +[10335] raillery: 2 +[10336] railroads: 1 +[10337] rails: 7 +[10338] railway: 21 +[10339] railways: 13 +[10340] rain: 22 +[10341] rain--he: 1 +[10342] rainbow: 1 +[10343] raindrops: 1 +[10344] rained: 1 +[10345] raining: 2 +[10346] rains: 1 +[10347] raise: 8 +[10348] raised: 29 +[10349] raises: 1 +[10350] raising: 13 +[10351] rake: 5 +[10352] rake-handle: 1 +[10353] raked: 2 +[10354] rakes: 2 +[10355] raking: 1 +[10356] rallying: 1 +[10357] rambouillet: 1 +[10358] ramifications: 1 +[10359] rammers--you: 1 +[10360] ramrod: 1 +[10361] ran: 102 +[10362] rancor: 2 +[10363] random: 3 +[10364] rang: 25 +[10365] range: 1 +[10366] ranged: 5 +[10367] ranging: 1 +[10368] rank: 6 +[10369] ranks: 2 +[10370] ransacked: 1 +[10371] raphael: 3 +[10372] rapid: 36 +[10373] rapidity: 10 +[10374] rapidly: 44 +[10375] rapture: 7 +[10376] raptures: 1 +[10377] rapturous: 3 +[10378] rapturously: 1 +[10379] rare: 8 +[10380] rarely: 17 +[10381] rasa_--no: 1 +[10382] rascal: 1 +[10383] raspberries: 7 +[10384] raspberry: 2 +[10385] rate: 10 +[10386] rather: 55 +[10387] rational: 16 +[10388] rations: 2 +[10389] rattle: 3 +[10390] rattling: 1 +[10391] raven: 4 +[10392] raven-black: 1 +[10393] raves: 1 +[10394] ravine: 2 +[10395] raw: 1 +[10396] rays: 4 +[10397] razor: 1 +[10398] re-establish: 1 +[10399] re-read: 1 +[10400] re-use: 2 +[10401] reach: 10 +[10402] reached: 65 +[10403] reaching: 23 +[10404] reactionist: 3 +[10405] reacts: 1 +[10406] read: 134 +[10407] readable: 2 +[10408] reader: 1 +[10409] readier: 1 +[10410] readily: 9 +[10411] readiness: 3 +[10412] reading: 58 +[10413] reading"--he: 1 +[10414] reading--but: 1 +[10415] reading--reading: 1 +[10416] ready: 126 +[10417] ready-made: 2 +[10418] real: 42 +[10419] realism: 3 +[10420] realistic: 1 +[10421] reality: 22 +[10422] reality...and: 1 +[10423] realization: 3 +[10424] realize: 15 +[10425] realized: 21 +[10426] realized--and: 1 +[10427] realizes: 2 +[10428] realizing: 3 +[10429] really: 122 +[10430] reap: 1 +[10431] reaped: 1 +[10432] reaping: 3 +[10433] reappearance: 1 +[10434] reappeared: 2 +[10435] rear: 1 +[10436] reared: 1 +[10437] rearing: 1 +[10438] rearrange: 1 +[10439] rearranged: 2 +[10440] rearranging: 1 +[10441] reason: 60 +[10442] reason--it: 1 +[10443] reasonable: 5 +[10444] reasonableness: 1 +[10445] reasoned: 2 +[10446] reasoning: 7 +[10447] reasons: 5 +[10448] reasserted: 1 +[10449] reassurance: 1 +[10450] reassure: 3 +[10451] reassured: 4 +[10452] reassuring: 2 +[10453] reassuringly: 1 +[10454] rebecca: 3 +[10455] rebound: 1 +[10456] rebounded: 1 +[10457] rebuilt: 1 +[10458] recall: 21 +[10459] recalled: 51 +[10460] recalling: 26 +[10461] recapitulate: 1 +[10462] receipt: 6 +[10463] receive: 26 +[10464] received: 63 +[10465] receiving: 17 +[10466] recent: 4 +[10467] recently: 3 +[10468] reception: 7 +[10469] recess: 1 +[10470] recesses: 1 +[10471] recht: 1 +[10472] reciprocal: 1 +[10473] recited--the: 1 +[10474] reckless: 2 +[10475] recklessly: 1 +[10476] reckon: 9 +[10477] reckoned: 8 +[10478] reckoning: 13 +[10479] reckons: 1 +[10480] recognition: 5 +[10481] recognize: 16 +[10482] recognized: 34 +[10483] recognizes: 1 +[10484] recognizing: 13 +[10485] recollect: 2 +[10486] recollected: 10 +[10487] recollecting: 12 +[10488] recollection: 15 +[10489] recollections: 4 +[10490] recommended: 1 +[10491] reconcile: 4 +[10492] reconciled: 13 +[10493] reconciliation: 15 +[10494] reconciling: 2 +[10495] reconstruction: 2 +[10496] recounted: 1 +[10497] recourse: 3 +[10498] recover: 7 +[10499] recovered: 16 +[10500] recoveries: 1 +[10501] recovering: 3 +[10502] recovery: 5 +[10503] recreations: 1 +[10504] recriminations: 1 +[10505] recruit: 1 +[10506] recruits: 1 +[10507] rectifying: 1 +[10508] recurred: 2 +[10509] recurring: 2 +[10510] red: 72 +[10511] red-armed: 1 +[10512] red-cheeked: 1 +[10513] red-faced: 5 +[10514] red-haired: 1 +[10515] red-palmed: 1 +[10516] red-spotted: 1 +[10517] reddened: 8 +[10518] reddened--"that: 1 +[10519] reddening: 12 +[10520] reddish: 2 +[10521] redemption: 2 +[10522] redistribute: 1 +[10523] redistributing: 2 +[10524] redistribution: 2 +[10525] redoubled: 2 +[10526] reduce: 1 +[10527] reduced: 4 +[10528] reduction: 1 +[10529] reeds: 12 +[10530] reeling: 1 +[10531] reestablished: 3 +[10532] refer: 2 +[10533] reference: 6 +[10534] references: 3 +[10535] referred: 7 +[10536] referring: 5 +[10537] refined: 1 +[10538] refined,--i: 1 +[10539] refinement: 2 +[10540] reflect: 3 +[10541] reflected: 11 +[10542] reflecting: 5 +[10543] reflection: 14 +[10544] reflections: 5 +[10545] reflector: 1 +[10546] reflex: 2 +[10547] reform: 4 +[10548] reformation: 2 +[10549] reformed: 2 +[10550] reforms: 3 +[10551] refrain: 1 +[10552] refrained: 1 +[10553] refreshed: 3 +[10554] refreshment: 3 +[10555] refreshments: 3 +[10556] refuge: 3 +[10557] refund: 10 +[10558] refusal: 12 +[10559] refusal's: 1 +[10560] refuse: 22 +[10561] refused: 31 +[10562] refuses: 2 +[10563] refusing: 7 +[10564] refute: 1 +[10565] regain: 3 +[10566] regained: 7 +[10567] regaining: 5 +[10568] regale: 1 +[10569] regaled: 1 +[10570] regard: 37 +[10571] regarded: 19 +[10572] regarding: 5 +[10573] regardless: 5 +[10574] regards: 6 +[10575] regiment: 27 +[10576] regiment--who: 1 +[10577] regimental: 3 +[10578] regiments: 1 +[10579] regions: 4 +[10580] register: 1 +[10581] registered: 4 +[10582] regret: 28 +[10583] regretfully: 5 +[10584] regretted: 7 +[10585] regretting: 4 +[10586] regular: 12 +[10587] regulate: 2 +[10588] regulating: 2 +[10589] rehabilitate: 1 +[10590] rehearsal: 2 +[10591] rehearsing: 2 +[10592] rein: 5 +[10593] reins: 18 +[10594] rejected: 3 +[10595] rejecting: 3 +[10596] rejection: 4 +[10597] rejoice: 6 +[10598] rejoiced: 5 +[10599] rejoicing: 9 +[10600] rejoin: 1 +[10601] rejoinder: 1 +[10602] rejoined: 1 +[10603] rejuvenated: 1 +[10604] relate: 2 +[10605] related: 7 +[10606] relating: 7 +[10607] relation: 24 +[10608] relations: 98 +[10609] relationship: 3 +[10610] relationships: 1 +[10611] relative: 1 +[10612] relatives: 1 +[10613] relax: 1 +[10614] relaxation: 1 +[10615] relaxed: 1 +[10616] relaxing: 2 +[10617] relays: 1 +[10618] release: 2 +[10619] relented: 1 +[10620] relentlessly: 1 +[10621] relic: 3 +[10622] relief: 18 +[10623] relieve: 3 +[10624] relieved: 2 +[10625] religion: 31 +[10626] religion--you: 1 +[10627] religions: 2 +[10628] religious: 18 +[10629] religiously-patriotic: 1 +[10630] relinquish: 1 +[10631] relish: 1 +[10632] relished: 1 +[10633] reluctance: 1 +[10634] reluctant: 1 +[10635] reluctantly: 7 +[10636] rely: 1 +[10637] relying: 1 +[10638] remain: 26 +[10639] remainder: 3 +[10640] remained: 28 +[10641] remaining: 8 +[10642] remains: 3 +[10643] remark: 15 +[10644] remarkable: 12 +[10645] remarked: 1 +[10646] remarks: 10 +[10647] remedies: 2 +[10648] remedy: 6 +[10649] remember: 67 +[10650] remember?...what: 1 +[10651] remembered: 66 +[10652] remembering: 32 +[10653] remembers: 1 +[10654] remind: 6 +[10655] reminded: 10 +[10656] reminding: 3 +[10657] reminiscence: 1 +[10658] reminiscences: 7 +[10659] remnants: 1 +[10660] remorse: 16 +[10661] remorseful: 1 +[10662] remote: 14 +[10663] remoteness: 1 +[10664] remotest: 1 +[10665] removal: 3 +[10666] remove: 3 +[10667] removed: 5 +[10668] removing: 3 +[10669] renamed: 1 +[10670] rendered: 3 +[10671] rendering: 1 +[10672] rendezvous: 1 +[10673] renew: 3 +[10674] renewed: 2 +[10675] renewing: 2 +[10676] renounce: 2 +[10677] renounced: 1 +[10678] renouncing: 3 +[10679] renowned: 2 +[10680] rent: 17 +[10681] rented: 3 +[10682] rents: 3 +[10683] renunciation: 2 +[10684] reopened: 1 +[10685] reorganization: 2 +[10686] reorganizing: 1 +[10687] rep: 1 +[10688] repainted: 1 +[10689] repair: 1 +[10690] repaired: 3 +[10691] repairing: 4 +[10692] repairs: 1 +[10693] repay: 2 +[10694] repaying: 1 +[10695] repeat: 16 +[10696] repeated: 87 +[10697] repeatedly: 2 +[10698] repeating: 17 +[10699] repeats: 1 +[10700] repellant: 1 +[10701] repelled: 3 +[10702] repent: 4 +[10703] repentance: 2 +[10704] repented: 3 +[10705] repenting: 1 +[10706] repetition: 6 +[10707] replace: 1 +[10708] replaced: 10 +[10709] replacement: 5 +[10710] replacing: 1 +[10711] replied: 20 +[10712] replies: 3 +[10713] reply: 32 +[10714] replying: 4 +[10715] report: 22 +[10716] reported: 6 +[10717] reports: 7 +[10718] repose: 7 +[10719] repose--suddenly: 1 +[10720] reprehensible: 2 +[10721] represent: 1 +[10722] representations: 3 +[10723] representative: 2 +[10724] representatives: 3 +[10725] represented: 3 +[10726] representing: 1 +[10727] repress: 1 +[10728] repressed: 1 +[10729] repressing: 2 +[10730] reprimand: 1 +[10731] reprimanded: 1 +[10732] reproach: 17 +[10733] reproached: 4 +[10734] reproaches: 4 +[10735] reproachful: 3 +[10736] reproachfully: 5 +[10737] reproachfulness: 3 +[10738] reproaching: 2 +[10739] reprove: 1 +[10740] reprovingly: 1 +[10741] repudiated: 1 +[10742] repugnance: 1 +[10743] repulse: 1 +[10744] repulsion: 7 +[10745] repulsive: 7 +[10746] repulsively: 1 +[10747] reputation: 10 +[10748] request: 7 +[10749] request--that: 1 +[10750] requests: 1 +[10751] require: 2 +[10752] required: 12 +[10753] requirements: 8 +[10754] requires: 1 +[10755] requiring: 1 +[10756] requisite: 1 +[10757] rescue: 2 +[10758] rescued: 1 +[10759] research: 2 +[10760] resemblance: 1 +[10761] resembled: 1 +[10762] resenting: 2 +[10763] resentment: 1 +[10764] reservations: 1 +[10765] reserve: 11 +[10766] reserved: 5 +[10767] reserving: 1 +[10768] residents: 1 +[10769] resigned: 2 +[10770] resist: 7 +[10771] resistance: 2 +[10772] resisted: 1 +[10773] resolute: 21 +[10774] resolutely: 18 +[10775] resolution: 7 +[10776] resolution--that: 1 +[10777] resolutions: 2 +[10778] resolved: 20 +[10779] resolving: 3 +[10780] resorted: 1 +[10781] resounded: 3 +[10782] resounding: 1 +[10783] resources: 1 +[10784] respect: 42 +[10785] respectable: 2 +[10786] respected: 8 +[10787] respectful: 11 +[10788] respectfully: 7 +[10789] respectfulness: 1 +[10790] respective: 1 +[10791] respects: 4 +[10792] respects'--that's: 1 +[10793] resplendent: 2 +[10794] respond: 5 +[10795] responded: 44 +[10796] responding: 2 +[10797] response: 6 +[10798] responses: 1 +[10799] responsibility: 1 +[10800] responsible: 8 +[10801] rest: 57 +[10802] restaurant: 4 +[10803] restaurants: 1 +[10804] rested: 11 +[10805] restful: 2 +[10806] resting: 3 +[10807] restive: 2 +[10808] restless: 2 +[10809] restlessly: 1 +[10810] restore: 2 +[10811] restored: 2 +[10812] restrain: 16 +[10813] restrained: 4 +[10814] restraining: 8 +[10815] restraint: 1 +[10816] restricted: 1 +[10817] restrictions: 3 +[10818] rests: 5 +[10819] result: 17 +[10820] result--the: 1 +[10821] results: 6 +[10822] resumed: 10 +[10823] resumed--"she: 1 +[10824] retain: 1 +[10825] retained: 1 +[10826] retinue: 1 +[10827] retire: 4 +[10828] retired: 7 +[10829] retiring: 1 +[10830] retreat: 6 +[10831] retreated: 4 +[10832] retreating: 4 +[10833] retrieved: 1 +[10834] return: 35 +[10835] returned: 26 +[10836] returning: 13 +[10837] returns: 1 +[10838] reveal: 1 +[10839] revealed: 17 +[10840] revealing: 2 +[10841] revelation: 5 +[10842] revelations: 1 +[10843] revelry: 1 +[10844] revenez: 1 +[10845] revenge: 2 +[10846] revengeful: 1 +[10847] revenue: 2 +[10848] revenues: 1 +[10849] reverence: 2 +[10850] reverend: 2 +[10851] reverential: 1 +[10852] reverie: 1 +[10853] reveries: 1 +[10854] reverse: 2 +[10855] reversed: 1 +[10856] reverted: 1 +[10857] review: 6 +[10858] reviewed: 3 +[10859] reviews: 5 +[10860] revising: 2 +[10861] revision: 4 +[10862] revival: 1 +[10863] revive: 3 +[10864] revived: 5 +[10865] reviving: 2 +[10866] revoir: 3 +[10867] revolt: 1 +[10868] revolted: 5 +[10869] revolting: 6 +[10870] revolution: 6 +[10871] revolutionary: 3 +[10872] revolutionist: 1 +[10873] revolutionize: 1 +[10874] revolutions: 1 +[10875] revolver: 6 +[10876] revulsion: 1 +[10877] reward: 8 +[10878] rewarded: 1 +[10879] rewarding: 1 +[10880] rewards: 1 +[10881] rhine: 2 +[10882] rhythm: 2 +[10883] rhythmically: 6 +[10884] rib: 1 +[10885] ribbon: 8 +[10886] ribbons: 12 +[10887] ribs: 2 +[10888] rich: 9 +[10889] richer: 1 +[10890] riches: 1 +[10891] richly: 1 +[10892] rid: 18 +[10893] ridden: 4 +[10894] riddle: 4 +[10895] riddle--do: 1 +[10896] ride: 4 +[10897] rider: 5 +[10898] riders: 3 +[10899] ridge: 2 +[10900] ridges: 2 +[10901] ridicule: 11 +[10902] ridiculed: 2 +[10903] ridiculing: 1 +[10904] ridiculous: 14 +[10905] riding: 23 +[10906] rien: 2 +[10907] rigged: 2 +[10908] right: 262 +[10909] right...but: 1 +[10910] righteous: 1 +[10911] righting: 1 +[10912] rightly: 9 +[10913] rights: 27 +[10914] rights--power: 1 +[10915] rigid: 1 +[10916] rigidity: 3 +[10917] rim: 1 +[10918] ring: 30 +[10919] ring-covered: 1 +[10920] ringing: 12 +[10921] ringlets: 6 +[10922] rings: 14 +[10923] rinsed: 1 +[10924] ripe: 3 +[10925] ripen: 1 +[10926] rise: 6 +[10927] risen: 12 +[10928] rises: 1 +[10929] rising: 13 +[10930] risk: 4 +[10931] risky: 1 +[10932] ristitch--to: 1 +[10933] ristitch-kudzhitsky: 1 +[10934] rite: 2 +[10935] rites: 1 +[10936] rival: 9 +[10937] rivalry: 2 +[10938] rivals: 3 +[10939] river: 9 +[10940] river-bank: 1 +[10941] riverside: 3 +[10942] riz: 1 +[10943] road: 41 +[10944] roads: 5 +[10945] roadside: 2 +[10946] roan: 1 +[10947] roar: 6 +[10948] roared: 4 +[10949] roaring: 1 +[10950] roars: 3 +[10951] roast: 3 +[10952] roasting: 1 +[10953] robbed: 4 +[10954] robe: 1 +[10955] robes: 1 +[10956] robust: 2 +[10957] rock: 2 +[10958] rocking: 4 +[10959] rocking-chair: 1 +[10960] rod: 1 +[10961] rode: 18 +[10962] roguish: 1 +[10963] roguishly: 1 +[10964] roi: 2 +[10965] roland: 1 +[10966] rolandak: 1 +[10967] rolandak's: 1 +[10968] roll: 11 +[10969] rolled: 11 +[10970] rolling: 5 +[10971] rolls: 5 +[10972] roman: 1 +[10973] romance: 2 +[10974] romances: 1 +[10975] romantic: 2 +[10976] rome: 5 +[10977] rompue: 1 +[10978] rond: 1 +[10979] rood: 1 +[10980] roof: 11 +[10981] roofs: 8 +[10982] room: 394 +[10983] room--that: 1 +[10984] room...i: 1 +[10985] rooms: 38 +[10986] rooms--the: 1 +[10987] roomy: 4 +[10988] root: 2 +[10989] roots: 6 +[10990] rope: 2 +[10991] rose: 64 +[10992] roses: 1 +[10993] rosettes: 2 +[10994] rosier: 1 +[10995] rossi's: 1 +[10996] rosy: 13 +[10997] rosy-checked: 2 +[10998] rotation: 1 +[10999] rouble: 4 +[11000] rouble's: 1 +[11001] roubles: 43 +[11002] roubles--consisted: 1 +[11003] rough: 11 +[11004] roughly: 1 +[11005] roughness: 1 +[11006] round: 253 +[11007] round-faced: 1 +[11008] round-shouldered: 2 +[11009] round...i: 1 +[11010] round...i'll: 1 +[11011] rounded: 3 +[11012] roundly: 1 +[11013] rounds: 1 +[11014] rouse: 5 +[11015] roused: 12 +[11016] rouses: 1 +[11017] rousing: 7 +[11018] route: 1 +[11019] routine: 2 +[11020] row: 30 +[11021] rows: 22 +[11022] royalties: 2 +[11023] royalty: 3 +[11024] rtishtcheva: 1 +[11025] rub: 2 +[11026] rubbed: 10 +[11027] rubbing: 9 +[11028] rubbish: 4 +[11029] rubens: 1 +[11030] rubicund: 1 +[11031] ruddy: 1 +[11032] rude: 4 +[11033] rudeness: 4 +[11034] ruefully: 1 +[11035] ruffled: 1 +[11036] rug: 24 +[11037] rugs: 7 +[11038] ruin: 22 +[11039] ruined: 19 +[11040] ruining: 4 +[11041] ruins: 2 +[11042] rule: 8 +[11043] rules: 7 +[11044] rum: 1 +[11045] rumble: 5 +[11046] rumbled: 1 +[11047] rumbling: 2 +[11048] rumored: 1 +[11049] rumors: 2 +[11050] run: 55 +[11051] running: 40 +[11052] runs: 2 +[11053] rupture: 6 +[11054] rural: 3 +[11055] rurik: 2 +[11056] rush: 19 +[11057] rushed: 12 +[11058] rushes: 1 +[11059] rushing: 4 +[11060] russe: 1 +[11061] russia: 54 +[11062] russia's: 1 +[11063] russia--had: 1 +[11064] russia--the: 1 +[11065] russian: 89 +[11066] russian--were: 1 +[11067] russians: 13 +[11068] russification: 4 +[11069] rust: 1 +[11070] rustle: 10 +[11071] rustling: 1 +[11072] rusty: 1 +[11073] ruthlessly: 1 +[11074] ruts: 4 +[11075] ryabinin: 18 +[11076] ryabinin's: 3 +[11077] rye: 11 +[11078] rye-beer: 3 +[11079] ryezunov: 4 +[11080] ryezunov's: 2 +[11081] réunit: 1 +[11082] réussi: 1 +[11083] rôle: 4 +[11084] s: 2 +[11085] s/he: 1 +[11086] sa: 1 +[11087] sack: 2 +[11088] sacks: 2 +[11089] sacrament: 12 +[11090] sacred: 7 +[11091] sacrifice: 7 +[11092] sacrificed: 7 +[11093] sacrifices: 4 +[11094] sad: 5 +[11095] saddle: 14 +[11096] saddle-girth: 2 +[11097] saddle-horse: 1 +[11098] saddle-horses--not: 1 +[11099] saddled: 1 +[11100] saddler: 1 +[11101] saddler's: 1 +[11102] saddling: 2 +[11103] safe: 1 +[11104] safeguard: 1 +[11105] saffron-colored: 1 +[11106] saffron-red: 1 +[11107] sage: 1 +[11108] said: 2726 +[11109] said--"when: 1 +[11110] said--came: 1 +[11111] said--obviously: 1 +[11112] said--that: 1 +[11113] sailor: 1 +[11114] sails: 1 +[11115] saint: 2 +[11116] sainte: 1 +[11117] saintly: 1 +[11118] sake: 64 +[11119] sake--i: 1 +[11120] salaries: 3 +[11121] salary: 14 +[11122] sale: 9 +[11123] sales: 1 +[11124] sallow: 2 +[11125] salt: 7 +[11126] salted: 2 +[11127] salutation: 1 +[11128] salvation: 15 +[11129] sam: 1 +[11130] samara: 1 +[11131] same: 447 +[11132] same--if: 1 +[11133] sameness: 1 +[11134] sammt: 1 +[11135] samovar: 11 +[11136] samson: 1 +[11137] sancta: 1 +[11138] sanction: 4 +[11139] sanctioned: 1 +[11140] sanctity: 1 +[11141] sanctuary: 1 +[11142] sand: 4 +[11143] sands: 1 +[11144] sandy: 1 +[11145] sang: 9 +[11146] sanina: 2 +[11147] sanity: 1 +[11148] sank: 25 +[11149] sap: 2 +[11150] saplings: 1 +[11151] sappho: 11 +[11152] sappho's: 2 +[11153] sarcasm: 1 +[11154] sarcastic: 6 +[11155] sarcastically: 3 +[11156] sarmatskys: 1 +[11157] sash: 3 +[11158] sasha: 1 +[11159] sat: 167 +[11160] satchel: 2 +[11161] satin: 5 +[11162] satiny: 1 +[11163] satisfaction: 36 +[11164] satisfactorily: 4 +[11165] satisfactory: 4 +[11166] satisfied: 33 +[11167] satisfied--at: 1 +[11168] satisfy: 3 +[11169] satisfying: 2 +[11170] saturated: 1 +[11171] saturday: 2 +[11172] sauce: 12 +[11173] saucers: 1 +[11174] sauces: 1 +[11175] saul: 1 +[11176] saunter: 1 +[11177] sausages: 5 +[11178] savage: 6 +[11179] savageness: 1 +[11180] savages: 2 +[11181] savant: 1 +[11182] savants: 1 +[11183] save: 20 +[11184] saved: 14 +[11185] saving: 2 +[11186] saviors: 1 +[11187] saw: 421 +[11188] sawing: 1 +[11189] saxe: 1 +[11190] say: 511 +[11191] say--exquisite: 1 +[11192] say--worse: 1 +[11193] say...i: 2 +[11194] saying: 153 +[11195] sayings: 1 +[11196] says: 47 +[11197] says,--that: 1 +[11198] scaffolding: 2 +[11199] scaffolds: 1 +[11200] scale: 6 +[11201] scales: 1 +[11202] scalloped: 2 +[11203] scandal: 14 +[11204] scandalous: 1 +[11205] scandals: 2 +[11206] scanned: 8 +[11207] scanning: 10 +[11208] scant: 1 +[11209] scanty: 6 +[11210] scapegoat: 1 +[11211] scarce: 1 +[11212] scarcely: 30 +[11213] scarcity: 1 +[11214] scare: 1 +[11215] scared: 18 +[11216] scarf: 2 +[11217] scarifier: 1 +[11218] scarlatina: 7 +[11219] scarlatina--one: 1 +[11220] scarlet: 2 +[11221] scatter: 1 +[11222] scattered: 6 +[11223] scattering: 2 +[11224] scene: 10 +[11225] scenes: 6 +[11226] scent: 14 +[11227] scented: 2 +[11228] scents: 1 +[11229] scepticism: 1 +[11230] schelling: 1 +[11231] scheme: 4 +[11232] schemes: 1 +[11233] scholar: 1 +[11234] school: 33 +[11235] school,--dissipating: 1 +[11236] school--how: 1 +[11237] schoolboy: 2 +[11238] schoolboys: 1 +[11239] schooled: 1 +[11240] schoolfellow: 3 +[11241] schoolfellows: 1 +[11242] schoolmistress: 1 +[11243] schoolroom: 2 +[11244] schools: 24 +[11245] schopenhauer: 2 +[11246] schulze-delitsch: 1 +[11247] schützburgs: 1 +[11248] science: 18 +[11249] sciences: 3 +[11250] scientific: 16 +[11251] scientifically: 1 +[11252] scissors: 5 +[11253] scoffer: 1 +[11254] scold: 2 +[11255] scolded: 2 +[11256] scolding: 2 +[11257] scolds: 1 +[11258] scope: 1 +[11259] scorched: 3 +[11260] score: 4 +[11261] scored: 1 +[11262] scorn: 2 +[11263] scornful: 1 +[11264] scotch: 5 +[11265] scoundrel: 2 +[11266] scoundrelly: 1 +[11267] scoundrels: 1 +[11268] scowled: 8 +[11269] scowling: 17 +[11270] scrapes: 1 +[11271] scraping: 1 +[11272] scratching: 4 +[11273] scream: 11 +[11274] screamed: 4 +[11275] screaming: 10 +[11276] screams: 3 +[11277] screen: 11 +[11278] screens: 1 +[11279] screw: 6 +[11280] screwed: 1 +[11281] screwing: 5 +[11282] screws: 1 +[11283] scribbled: 2 +[11284] scribbling: 2 +[11285] scripture: 2 +[11286] scrub: 2 +[11287] scrubbing: 2 +[11288] scruples: 1 +[11289] scrupules: 1 +[11290] scrupulous: 1 +[11291] scrupulously: 1 +[11292] scrutinize: 1 +[11293] scrutinized: 4 +[11294] scrutinizing: 7 +[11295] scrutiny: 1 +[11296] sculptor: 1 +[11297] sculpturesque: 1 +[11298] scum: 2 +[11299] scurrying: 1 +[11300] scythe: 30 +[11301] scythes: 9 +[11302] se: 4 +[11303] sea: 13 +[11304] sea-bathing: 1 +[11305] seal: 2 +[11306] sealed: 9 +[11307] sealing: 1 +[11308] seals: 1 +[11309] seams: 2 +[11310] search: 4 +[11311] searched: 1 +[11312] searching: 4 +[11313] season: 4 +[11314] seasoned: 1 +[11315] seat: 23 +[11316] seated: 12 +[11317] seating: 3 +[11318] seats: 3 +[11319] seclusion: 1 +[11320] second: 80 +[11321] second-class: 2 +[11322] secondarily: 1 +[11323] secondary: 1 +[11324] secondly: 8 +[11325] seconds: 13 +[11326] secret: 24 +[11327] secret!--and: 1 +[11328] secretary: 32 +[11329] secretary's: 2 +[11330] secretly: 2 +[11331] secrets: 5 +[11332] secrétaire: 1 +[11333] section: 7 +[11334] sections: 3 +[11335] sects: 2 +[11336] secular: 1 +[11337] secure: 12 +[11338] securing: 1 +[11339] security: 3 +[11340] sedate: 1 +[11341] sedge: 3 +[11342] seductive: 1 +[11343] see: 611 +[11344] see--a: 1 +[11345] see--all: 1 +[11346] see--it: 1 +[11347] see--where: 1 +[11348] seed: 9 +[11349] seed-corn: 1 +[11350] seeds: 2 +[11351] seeing: 147 +[11352] seek: 11 +[11353] seeking: 25 +[11354] seem: 22 +[11355] seemed: 292 +[11356] seemed--presented: 1 +[11357] seeming: 5 +[11358] seemly: 1 +[11359] seems: 34 +[11360] seen: 159 +[11361] sees: 24 +[11362] seize: 2 +[11363] seized: 4 +[11364] seizing: 6 +[11365] seldom: 3 +[11366] select: 4 +[11367] select--religious: 1 +[11368] selected: 5 +[11369] selecting: 3 +[11370] selection: 2 +[11371] seleznevsky: 2 +[11372] self: 3 +[11373] self-advertisement: 1 +[11374] self-assertive: 1 +[11375] self-complacent: 1 +[11376] self-conceit: 1 +[11377] self-confidence: 4 +[11378] self-confident: 2 +[11379] self-contempt: 1 +[11380] self-control: 2 +[11381] self-controlled: 1 +[11382] self-deception: 4 +[11383] self-defense: 2 +[11384] self-dissatisfaction: 2 +[11385] self-esteem: 1 +[11386] self-flattery--calculated: 1 +[11387] self-government: 3 +[11388] self-interest: 7 +[11389] self-pity: 3 +[11390] self-possessed: 6 +[11391] self-possession: 10 +[11392] self-respect: 2 +[11393] self-sacrifice: 2 +[11394] self-satisfaction: 1 +[11395] self-satisfied: 3 +[11396] self-styled: 1 +[11397] selfish: 1 +[11398] selfishness: 1 +[11399] sell: 13 +[11400] seller: 1 +[11401] selling: 6 +[11402] selo: 1 +[11403] seltzer: 6 +[11404] semi-abstract: 1 +[11405] semicircular: 1 +[11406] sempstress: 1 +[11407] semyenovna: 1 +[11408] semyon: 3 +[11409] semyonitch: 1 +[11410] semyonovitch: 1 +[11411] semyonovna: 1 +[11412] send: 56 +[11413] sending: 16 +[11414] sends: 3 +[11415] sensation: 22 +[11416] sensations: 7 +[11417] sense: 102 +[11418] sense--for: 1 +[11419] sense-organ: 1 +[11420] senseless: 9 +[11421] senselessness: 3 +[11422] senses: 6 +[11423] sensibility: 1 +[11424] sensible: 6 +[11425] sensibly: 1 +[11426] sensitive: 3 +[11427] sent: 102 +[11428] sentence: 12 +[11429] sentiment: 2 +[11430] sentimental: 4 +[11431] sentimentality: 1 +[11432] sentiments: 4 +[11433] separate: 21 +[11434] separated: 7 +[11435] separately: 4 +[11436] separates: 1 +[11437] separation: 9 +[11438] sept: 1 +[11439] september: 3 +[11440] sequel: 1 +[11441] sequence: 2 +[11442] sera: 1 +[11443] serbia: 1 +[11444] serenade: 1 +[11445] serenades: 1 +[11446] serene: 17 +[11447] serenely: 8 +[11448] serenity: 6 +[11449] serf: 3 +[11450] serf-labor: 1 +[11451] serf-owner's: 1 +[11452] serfdom: 6 +[11453] serfs: 3 +[11454] serge: 1 +[11455] sergey: 299 +[11456] series: 7 +[11457] serious: 44 +[11458] serious-minded: 1 +[11459] seriously: 17 +[11460] seriousness: 2 +[11461] serpohovskoy's: 1 +[11462] serpuhovskey: 1 +[11463] serpuhovskoy: 36 +[11464] serpuhovskoy's: 1 +[11465] servant: 38 +[11466] servant-girl: 1 +[11467] servants: 28 +[11468] serve: 7 +[11469] served: 15 +[11470] serves: 3 +[11471] servia: 3 +[11472] servian: 4 +[11473] servians: 3 +[11474] service: 53 +[11475] service--had: 1 +[11476] service--the: 1 +[11477] services: 9 +[11478] serving: 2 +[11479] seryozha: 111 +[11480] seryozha's: 9 +[11481] seryozha--sergey: 1 +[11482] ses: 1 +[11483] session: 1 +[11484] sestrin: 1 +[11485] set: 150 +[11486] sets: 2 +[11487] settee: 1 +[11488] setter: 1 +[11489] setter-dog: 1 +[11490] setting: 28 +[11491] settle: 9 +[11492] settled: 59 +[11493] settlement: 4 +[11494] settlement--the: 1 +[11495] settles: 1 +[11496] settling: 6 +[11497] seven: 15 +[11498] sevens: 1 +[11499] seventeen: 9 +[11500] seventh: 1 +[11501] seventy: 2 +[11502] several: 72 +[11503] severance: 1 +[11504] severe: 11 +[11505] severed: 1 +[11506] severely: 13 +[11507] severity: 2 +[11508] sewing: 2 +[11509] sewn: 1 +[11510] sh: 1 +[11511] sh--sh--sh: 1 +[11512] sh...it's: 1 +[11513] shabby: 1 +[11514] shade: 24 +[11515] shaded: 4 +[11516] shades: 1 +[11517] shadow: 17 +[11518] shadows: 6 +[11519] shady: 2 +[11520] shaft: 2 +[11521] shaft-horse: 2 +[11522] shaft-horses: 1 +[11523] shafts: 5 +[11524] shag: 1 +[11525] shaggy: 1 +[11526] shahovskaya: 1 +[11527] shake: 12 +[11528] shaken: 4 +[11529] shakes: 1 +[11530] shakespeare: 2 +[11531] shaking: 41 +[11532] shaky: 1 +[11533] shall: 220 +[11534] shallow: 1 +[11535] shallowness: 1 +[11536] sham: 10 +[11537] shame: 50 +[11538] shame-faced: 1 +[11539] shame-stricken: 1 +[11540] shamefaced: 2 +[11541] shameful: 19 +[11542] shamefully: 1 +[11543] shamelessly: 2 +[11544] shamestruck: 1 +[11545] shan't: 21 +[11546] shape: 8 +[11547] shaped: 2 +[11548] shapeless: 1 +[11549] shapely: 4 +[11550] shapes: 2 +[11551] share: 26 +[11552] shared: 8 +[11553] shareholder: 1 +[11554] shares: 4 +[11555] sharing: 5 +[11556] sharp: 13 +[11557] sharpened: 1 +[11558] sharpening: 1 +[11559] sharper: 1 +[11560] sharply: 9 +[11561] shatter: 2 +[11562] shattered: 3 +[11563] shaved: 1 +[11564] shaven: 2 +[11565] shaving: 4 +[11566] shawl: 6 +[11567] she: 4264 +[11568] she'd: 2 +[11569] she'll: 6 +[11570] she's: 107 +[11571] she--better: 1 +[11572] she--simple: 1 +[11573] she-bear: 2 +[11574] sheaf: 2 +[11575] sheaves: 6 +[11576] shed: 8 +[11577] sheds: 3 +[11578] sheep: 1 +[11579] sheepskin: 7 +[11580] sheepskins: 1 +[11581] sheet: 5 +[11582] sheets: 4 +[11583] shelf: 2 +[11584] shell: 5 +[11585] shells: 2 +[11586] shelter: 5 +[11587] sherry: 2 +[11588] shifted: 4 +[11589] shifting: 6 +[11590] shillings: 2 +[11591] shilton: 1 +[11592] shine: 1 +[11593] shining: 19 +[11594] ship: 1 +[11595] ships: 3 +[11596] shirked: 2 +[11597] shirkov: 1 +[11598] shirt: 22 +[11599] shirt--it: 1 +[11600] shirt-collar: 1 +[11601] shirt-cuff: 1 +[11602] shirt-cuffs: 1 +[11603] shirt-sleeves: 1 +[11604] shirts: 4 +[11605] shivered: 3 +[11606] shlupik: 3 +[11607] shlupiks: 4 +[11608] shock: 5 +[11609] shocking: 2 +[11610] shocks: 1 +[11611] shod: 1 +[11612] shoe: 1 +[11613] shoemaker: 1 +[11614] shoes: 9 +[11615] shone: 13 +[11616] shook: 47 +[11617] shook--"as: 1 +[11618] shoot: 15 +[11619] shooting: 44 +[11620] shooting-boots: 1 +[11621] shoots: 5 +[11622] shop: 10 +[11623] shop-people: 1 +[11624] shopkeeper: 2 +[11625] shopman: 1 +[11626] shopping: 2 +[11627] shops: 7 +[11628] shore: 1 +[11629] short: 93 +[11630] short-cropped: 2 +[11631] shortcomings: 3 +[11632] shortly: 6 +[11633] shot: 26 +[11634] shots: 6 +[11635] should: 314 +[11636] shoulder: 25 +[11637] shoulder-cape: 1 +[11638] shouldering: 1 +[11639] shoulders: 48 +[11640] shoulders--"he: 1 +[11641] shoulders--they: 1 +[11642] shouldn't: 14 +[11643] shout: 3 +[11644] shouted: 64 +[11645] shouting: 14 +[11646] shouts: 7 +[11647] shove: 1 +[11648] shoved: 1 +[11649] shoving: 1 +[11650] show: 71 +[11651] showed: 44 +[11652] shower: 2 +[11653] showers: 1 +[11654] showing: 30 +[11655] shown: 16 +[11656] shows: 7 +[11657] shrank: 2 +[11658] shrewd: 8 +[11659] shriek: 6 +[11660] shrieked: 15 +[11661] shrieking: 4 +[11662] shrieks: 6 +[11663] shrill: 15 +[11664] shrilly: 3 +[11665] shrine: 1 +[11666] shrink: 2 +[11667] shrinking: 1 +[11668] shrouded: 3 +[11669] shrug: 3 +[11670] shrugged: 5 +[11671] shrugging: 5 +[11672] shrunk: 1 +[11673] shtcherbatskaya: 13 +[11674] shtcherbatskaya's: 2 +[11675] shtcherbatsky: 29 +[11676] shtcherbatsky's: 1 +[11677] shtcherbatskys: 41 +[11678] shtoltz: 4 +[11679] shudder: 5 +[11680] shuddered: 10 +[11681] shuddering: 2 +[11682] shuffling: 1 +[11683] shuraev: 2 +[11684] shut: 27 +[11685] shutter: 1 +[11686] shutters: 1 +[11687] shutting: 4 +[11688] shy: 11 +[11689] shyly: 4 +[11690] shyness: 8 +[11691] si: 2 +[11692] sich: 1 +[11693] sick: 63 +[11694] sick-room: 4 +[11695] sickening: 1 +[11696] sickens: 1 +[11697] sickliness: 2 +[11698] sickly: 5 +[11699] sickly-looking: 1 +[11700] sickness: 2 +[11701] side: 154 +[11702] side--a: 1 +[11703] side--acacias: 1 +[11704] side--his: 1 +[11705] side--why: 1 +[11706] side-horse: 1 +[11707] side-saddle: 3 +[11708] side-whiskers: 1 +[11709] sideboard: 2 +[11710] sidelong: 4 +[11711] sides: 26 +[11712] sideways: 12 +[11713] sidling: 1 +[11714] sieve: 2 +[11715] sifted: 3 +[11716] sigh: 13 +[11717] sighed: 28 +[11718] sighing: 6 +[11719] sight: 79 +[11720] sights: 1 +[11721] sign: 17 +[11722] signal-box: 1 +[11723] signaled: 1 +[11724] signature: 2 +[11725] signed: 3 +[11726] significance: 34 +[11727] significant: 7 +[11728] significantly: 7 +[11729] signify: 2 +[11730] signifying: 1 +[11731] signing: 4 +[11732] signs: 18 +[11733] sigonin: 1 +[11734] sigonin's: 1 +[11735] silence: 65 +[11736] silent: 53 +[11737] silently: 7 +[11738] silk: 8 +[11739] silken: 1 +[11740] silky: 2 +[11741] silly: 11 +[11742] silly--so: 1 +[11743] silver: 12 +[11744] silvery: 4 +[11745] silvery-gray: 1 +[11746] similar: 7 +[11747] simile: 1 +[11748] similes: 1 +[11749] simper: 1 +[11750] simple: 60 +[11751] simple-hearted: 7 +[11752] simplehearted: 1 +[11753] simpler: 6 +[11754] simplest: 8 +[11755] simplicitas: 1 +[11756] simplicity: 14 +[11757] simplified: 1 +[11758] simply: 184 +[11759] simultaneously: 3 +[11760] sin: 10 +[11761] sin--i: 1 +[11762] since: 122 +[11763] since...stiva: 1 +[11764] sincere: 10 +[11765] sincerely: 7 +[11766] sincerity: 9 +[11767] sinews: 1 +[11768] sinful: 1 +[11769] sing: 8 +[11770] singer: 4 +[11771] singer's: 1 +[11772] singers: 1 +[11773] singing: 15 +[11774] single: 35 +[11775] single-hearted: 1 +[11776] singly: 1 +[11777] sings: 1 +[11778] singular: 1 +[11779] siniavin: 2 +[11780] sink: 3 +[11781] sinking: 8 +[11782] sinks: 1 +[11783] sinned: 3 +[11784] sinner: 1 +[11785] sinners: 1 +[11786] sins: 9 +[11787] sins...are: 1 +[11788] sipped: 1 +[11789] sips: 1 +[11790] sir: 43 +[11791] sister: 65 +[11792] sister's: 19 +[11793] sister-in-law: 28 +[11794] sister-in-law's: 3 +[11795] sisters: 21 +[11796] sit: 42 +[11797] site: 4 +[11798] sitnikov: 2 +[11799] sits: 4 +[11800] sitting: 146 +[11801] sittings: 3 +[11802] situation: 5 +[11803] six: 36 +[11804] sixes: 1 +[11805] sixpence: 1 +[11806] sixteen: 3 +[11807] sixth: 3 +[11808] sixty: 5 +[11809] size: 4 +[11810] skate: 12 +[11811] skated: 11 +[11812] skater: 1 +[11813] skaters: 6 +[11814] skates: 10 +[11815] skating: 4 +[11816] skating-ground: 2 +[11817] skeleton: 4 +[11818] skeletons: 1 +[11819] skep: 1 +[11820] sketch: 9 +[11821] sketched: 2 +[11822] sketching: 2 +[11823] sketchy: 1 +[11824] skies: 1 +[11825] skill: 5 +[11826] skillful: 2 +[11827] skillfully: 1 +[11828] skim: 1 +[11829] skin: 7 +[11830] skip: 3 +[11831] skipping: 2 +[11832] skips: 1 +[11833] skirmish: 1 +[11834] skirt: 11 +[11835] skirts: 5 +[11836] skorodumov: 1 +[11837] sky: 26 +[11838] slackened: 1 +[11839] slackening: 1 +[11840] slaking: 1 +[11841] slam: 1 +[11842] slammed: 1 +[11843] slamming: 3 +[11844] slander: 1 +[11845] slanting: 8 +[11846] slapped: 1 +[11847] slapping: 2 +[11848] slate-colored: 1 +[11849] slav: 2 +[11850] slave: 4 +[11851] slavery: 1 +[11852] slaves: 2 +[11853] slavish: 2 +[11854] slavonic: 15 +[11855] slavophiles: 1 +[11856] slavs: 1 +[11857] sledge: 24 +[11858] sledge-driver: 1 +[11859] sledge-drivers: 1 +[11860] sledges: 6 +[11861] sledging: 1 +[11862] sleek: 9 +[11863] sleep: 64 +[11864] sleepers: 1 +[11865] sleepily: 2 +[11866] sleeping: 11 +[11867] sleeping-carriage: 1 +[11868] sleepless: 5 +[11869] sleeplessness: 1 +[11870] sleeps: 1 +[11871] sleepy: 9 +[11872] sleeve: 10 +[11873] sleeves: 7 +[11874] slender: 11 +[11875] slender-stalked: 1 +[11876] slender-tipped: 1 +[11877] slept: 11 +[11878] slices: 1 +[11879] slide: 1 +[11880] sliding: 1 +[11881] slight: 22 +[11882] slighted: 3 +[11883] slightest: 34 +[11884] slightingly: 1 +[11885] slightly: 17 +[11886] slim: 1 +[11887] slime: 1 +[11888] slime-covered: 1 +[11889] sling: 1 +[11890] slip: 9 +[11891] slipped: 14 +[11892] slippers: 7 +[11893] slippery: 2 +[11894] slipping: 3 +[11895] slits: 1 +[11896] slope: 3 +[11897] sloping: 1 +[11898] slops: 1 +[11899] sloth: 1 +[11900] slouch: 1 +[11901] slovenliness: 1 +[11902] slow: 6 +[11903] slowly: 37 +[11904] sludin: 5 +[11905] sludin's: 2 +[11906] slur: 1 +[11907] slush: 3 +[11908] slushy: 2 +[11909] sly: 8 +[11910] slyly: 1 +[11911] slyness: 1 +[11912] smacked: 1 +[11913] smacking: 1 +[11914] small: 29 +[11915] small-boned: 1 +[11916] small-shot: 1 +[11917] smaller: 6 +[11918] smallest: 5 +[11919] smallpox: 1 +[11920] smart: 18 +[11921] smart-looking: 3 +[11922] smarting: 1 +[11923] smartly: 5 +[11924] smashed: 2 +[11925] smashing: 1 +[11926] smearing: 1 +[11927] smell: 15 +[11928] smelling: 2 +[11929] smells: 1 +[11930] smelt: 4 +[11931] smile: 328 +[11932] smile--not: 1 +[11933] smiled: 118 +[11934] smiles: 8 +[11935] smiling: 177 +[11936] smilingly: 1 +[11937] smite: 1 +[11938] smitten: 1 +[11939] smock: 5 +[11940] smoke: 15 +[11941] smoke"--and: 1 +[11942] smoked: 2 +[11943] smoking: 13 +[11944] smooth: 17 +[11945] smoothed: 3 +[11946] smoothing: 5 +[11947] smoothly: 8 +[11948] smoothness: 1 +[11949] smote: 1 +[11950] smother: 1 +[11951] smothered: 6 +[11952] snake: 1 +[11953] snap: 3 +[11954] snapped: 2 +[11955] snapping: 3 +[11956] snare: 1 +[11957] snares: 2 +[11958] snatch: 2 +[11959] snatched: 7 +[11960] snatching: 7 +[11961] sneer: 1 +[11962] sneering: 1 +[11963] sneeringly: 1 +[11964] sneezed: 2 +[11965] snetkov: 15 +[11966] sniff: 1 +[11967] sniffed: 2 +[11968] sniffing: 3 +[11969] snipe: 37 +[11970] snore: 2 +[11971] snoring: 3 +[11972] snort: 3 +[11973] snorted: 3 +[11974] snorting: 4 +[11975] snorts: 1 +[11976] snow: 26 +[11977] snow-covered: 1 +[11978] snowdrift: 1 +[11979] snowstorm: 1 +[11980] snowy: 2 +[11981] snug: 2 +[11982] so: 1529 +[11983] so--as: 1 +[11984] so--not: 1 +[11985] so--towards: 1 +[11986] so-and-so: 2 +[11987] so-called: 5 +[11988] so...yes: 1 +[11989] soaked: 6 +[11990] soaking: 1 +[11991] soap: 3 +[11992] sob: 2 +[11993] sobbed: 3 +[11994] sobbing: 6 +[11995] sobs: 22 +[11996] social: 12 +[11997] sociale: 1 +[11998] socialism: 2 +[11999] socialistic: 2 +[12000] socially: 1 +[12001] societies: 1 +[12002] society: 106 +[12003] society's: 2 +[12004] society--all: 1 +[12005] society--owing: 1 +[12006] society--so: 1 +[12007] sociology: 3 +[12008] socrates: 1 +[12009] soden: 4 +[12010] sofa: 25 +[12011] sofas: 1 +[12012] soft: 42 +[12013] soften: 6 +[12014] softened: 14 +[12015] softening: 8 +[12016] softer: 1 +[12017] softly: 18 +[12018] softness: 8 +[12019] soil: 7 +[12020] soiree: 1 +[12021] soirèe: 1 +[12022] soirée: 1 +[12023] soit: 1 +[12024] sokolov: 3 +[12025] sold: 12 +[12026] soldier: 9 +[12027] soldiers: 8 +[12028] sole: 14 +[12029] solely: 1 +[12030] solemn: 9 +[12031] solemnly: 2 +[12032] solicit: 2 +[12033] solicitation: 1 +[12034] solicitor: 5 +[12035] solicitous: 2 +[12036] solicitude: 1 +[12037] solid: 6 +[12038] solitary: 8 +[12039] solitude: 11 +[12040] solitude--she: 1 +[12041] solo: 1 +[12042] solution: 20 +[12043] solution,--to: 1 +[12044] solutions: 1 +[12045] solve: 4 +[12046] solved: 6 +[12047] some: 418 +[12048] somebody: 3 +[12049] somehow: 16 +[12050] someone: 53 +[12051] someone's: 1 +[12052] somersaults: 1 +[12053] something: 429 +[12054] something--just: 1 +[12055] something--looked: 1 +[12056] something--whether: 1 +[12057] sometimes: 48 +[12058] somewhat: 6 +[12059] somewhere: 23 +[12060] somewhere--has: 1 +[12061] son: 140 +[12062] son's: 12 +[12063] son--all: 1 +[12064] son-in-law: 2 +[12065] song: 9 +[12066] songs: 9 +[12067] sons: 6 +[12068] sons-in-law: 1 +[12069] sont: 1 +[12070] soon: 134 +[12071] sooner: 13 +[12072] soot-laden: 1 +[12073] soothe: 14 +[12074] soothed: 8 +[12075] soothing: 7 +[12076] soothingly: 2 +[12077] sop: 2 +[12078] sophistries: 1 +[12079] sophistry: 1 +[12080] sopped: 1 +[12081] sore: 12 +[12082] sorokina: 11 +[12083] sorrel: 2 +[12084] sorrento: 1 +[12085] sorrow: 14 +[12086] sorrowfully: 1 +[12087] sorrows: 1 +[12088] sorry: 70 +[12089] sort: 113 +[12090] sort--about: 1 +[12091] sorte: 3 +[12092] sorted: 1 +[12093] sorting: 5 +[12094] sorts: 26 +[12095] sought: 16 +[12096] sought--in: 1 +[12097] soul: 103 +[12098] soul's: 1 +[12099] soul--and: 1 +[12100] souls: 2 +[12101] sound: 81 +[12102] sounded: 14 +[12103] sounding: 1 +[12104] soundly: 2 +[12105] sounds: 13 +[12106] soup: 16 +[12107] soupe: 1 +[12108] sour: 2 +[12109] source: 14 +[12110] sources: 2 +[12111] sousing: 1 +[12112] south: 3 +[12113] southern: 3 +[12114] sow: 3 +[12115] sowed: 3 +[12116] sowing: 17 +[12117] sown: 5 +[12118] sown,--this: 1 +[12119] space: 15 +[12120] spade: 3 +[12121] spades: 2 +[12122] spain: 1 +[12123] spanish: 2 +[12124] spare: 6 +[12125] spared: 1 +[12126] spark: 1 +[12127] sparkled: 7 +[12128] sparkling: 8 +[12129] sparrow: 1 +[12130] spats: 1 +[12131] spatter: 1 +[12132] spattered: 1 +[12133] speak: 145 +[12134] speak--because: 1 +[12135] speaker: 2 +[12136] speakers: 1 +[12137] speaking: 95 +[12138] speaks: 3 +[12139] special: 72 +[12140] specialist: 2 +[12141] specialists: 1 +[12142] specialized: 1 +[12143] specially: 15 +[12144] specialty: 1 +[12145] specific: 1 +[12146] specified: 2 +[12147] specimens: 1 +[12148] speck: 2 +[12149] speckly-headed: 1 +[12150] spectacles: 6 +[12151] spectator: 2 +[12152] spectator--not: 1 +[12153] spectators: 5 +[12154] speculate: 1 +[12155] speculation: 2 +[12156] speculation--all: 1 +[12157] speculator: 1 +[12158] speculators: 1 +[12159] speech: 15 +[12160] speeches: 4 +[12161] speed: 7 +[12162] speedily: 1 +[12163] spell: 1 +[12164] spellbound: 1 +[12165] spencer: 4 +[12166] spend: 20 +[12167] spending: 14 +[12168] spent: 55 +[12169] sphere: 2 +[12170] spheres: 3 +[12171] spider-web: 1 +[12172] spiders: 2 +[12173] spiderweb: 1 +[12174] spill: 1 +[12175] spilling: 1 +[12176] spilt: 1 +[12177] spin: 1 +[12178] spinal: 1 +[12179] spindle-tree: 1 +[12180] spine: 4 +[12181] spinning: 1 +[12182] spinoza: 1 +[12183] spirit: 22 +[12184] spirit-lamp: 1 +[12185] spirited: 4 +[12186] spirits: 28 +[12187] spirits--she: 1 +[12188] spiritual: 39 +[12189] spiritualism: 3 +[12190] spiritualists: 3 +[12191] spiritually: 1 +[12192] spiritually--divided: 1 +[12193] spite: 116 +[12194] spiteful: 8 +[12195] spittle: 1 +[12196] splash: 1 +[12197] splashed: 3 +[12198] splashing: 8 +[12199] splendid: 57 +[12200] splendid!...i: 1 +[12201] splendidly: 4 +[12202] splendor: 1 +[12203] split: 8 +[12204] spluttered: 1 +[12205] spoil: 13 +[12206] spoiled: 9 +[12207] spoiled...i've: 1 +[12208] spoiling: 5 +[12209] spoils: 1 +[12210] spoilt: 1 +[12211] spoke: 50 +[12212] spoke--"to: 1 +[12213] spoke--being: 1 +[12214] spoken: 26 +[12215] spokes: 1 +[12216] spokesman: 1 +[12217] sponge: 2 +[12218] sponging: 1 +[12219] spontaneously: 1 +[12220] spoon: 5 +[12221] sport: 5 +[12222] sports: 2 +[12223] sportsman: 8 +[12224] sportsman's: 2 +[12225] sportsmen: 10 +[12226] sportsmen's: 1 +[12227] spot: 21 +[12228] spot-and-tan: 1 +[12229] spots: 2 +[12230] spotted: 5 +[12231] spouse: 1 +[12232] sprained: 1 +[12233] sprang: 6 +[12234] sprawling: 3 +[12235] spread: 11 +[12236] spring: 51 +[12237] spring,--one: 1 +[12238] spring-rattle: 1 +[12239] springiness: 1 +[12240] springing: 1 +[12241] springs: 20 +[12242] springy: 4 +[12243] sprinkle: 2 +[12244] sprinkled: 3 +[12245] spruce: 1 +[12246] sprung: 6 +[12247] spurs: 1 +[12248] spurting: 1 +[12249] squabbles: 1 +[12250] squadron: 2 +[12251] squall: 1 +[12252] squalling: 1 +[12253] square: 2 +[12254] squared: 2 +[12255] squarely: 1 +[12256] squaring: 1 +[12257] squat: 1 +[12258] squatting: 1 +[12259] squeaked: 1 +[12260] squeeze: 4 +[12261] squeezed: 7 +[12262] squeezing: 15 +[12263] squelching: 2 +[12264] squirrel-lined: 1 +[12265] squirting: 3 +[12266] st: 5 +[12267] stabbed: 2 +[12268] stable: 10 +[12269] stable-boy: 1 +[12270] stable-boys: 1 +[12271] stables: 7 +[12272] staccato: 1 +[12273] stack: 3 +[12274] stacks: 5 +[12275] staff: 3 +[12276] staff-captain: 1 +[12277] staff-officer: 1 +[12278] stag's: 1 +[12279] stage: 15 +[12280] staggered: 3 +[12281] staggering: 3 +[12282] stagnant: 3 +[12283] stagnant-tasting: 1 +[12284] stagnate: 1 +[12285] stagnation: 1 +[12286] stahl: 46 +[12287] stahl's: 2 +[12288] staircase: 19 +[12289] stairs: 15 +[12290] stake: 2 +[12291] stakes: 2 +[12292] staking: 1 +[12293] stale: 3 +[12294] stalk: 2 +[12295] stalks: 2 +[12296] stall: 5 +[12297] stallion: 2 +[12298] stalls: 6 +[12299] stammered: 2 +[12300] stamp: 1 +[12301] stamping: 3 +[12302] stand: 41 +[12303] stand-shooting: 4 +[12304] stand-up: 1 +[12305] standard: 3 +[12306] standing: 131 +[12307] standpoint: 1 +[12308] stands: 3 +[12309] standstill: 6 +[12310] stanislavitch: 1 +[12311] star: 7 +[12312] star-shaped: 1 +[12313] starched: 4 +[12314] starchy: 2 +[12315] stare: 2 +[12316] stared: 16 +[12317] staring: 15 +[12318] starlight: 1 +[12319] stars: 14 +[12320] start: 23 +[12321] started: 45 +[12322] starting: 12 +[12323] startled: 7 +[12324] starts: 1 +[12325] starve: 1 +[12326] state: 52 +[12327] state's: 1 +[12328] stated: 2 +[12329] stately: 1 +[12330] statement: 5 +[12331] statements: 5 +[12332] states: 16 +[12333] statesman: 2 +[12334] statesmen: 1 +[12335] stating: 2 +[12336] station: 39 +[12337] station--on: 1 +[12338] station-master: 5 +[12339] stationary: 1 +[12340] statue: 1 +[12341] status: 5 +[12342] stay: 75 +[12343] stayed: 22 +[12344] staying: 30 +[12345] stays: 2 +[12346] steadfast: 1 +[12347] steadily: 2 +[12348] steady: 2 +[12349] steak: 2 +[12350] steal: 4 +[12351] stealing: 6 +[12352] stealthily: 1 +[12353] stealthy: 1 +[12354] steam: 4 +[12355] steamer: 1 +[12356] steaming: 3 +[12357] steamy: 2 +[12358] steed: 2 +[12359] steel: 1 +[12360] steel-gray: 1 +[12361] steel-toothed: 1 +[12362] steely: 1 +[12363] steep: 4 +[12364] steeped: 1 +[12365] steeplechase: 4 +[12366] steered: 2 +[12367] steering: 1 +[12368] stem: 1 +[12369] step: 56 +[12370] stepan: 547 +[12371] stepanovitch: 1 +[12372] stephan: 1 +[12373] stepmother: 1 +[12374] steppe: 2 +[12375] stepped: 17 +[12376] steppes: 2 +[12377] stepping: 16 +[12378] steps: 116 +[12379] steps--distracted: 1 +[12380] stepson: 1 +[12381] stereotyped: 1 +[12382] sterling: 1 +[12383] stern: 17 +[12384] sternly: 10 +[12385] stethoscope: 1 +[12386] steward: 12 +[12387] steward--a: 1 +[12388] stick: 15 +[12389] sticking: 6 +[12390] sticks: 1 +[12391] sticky: 5 +[12392] stiff: 6 +[12393] stiffened: 3 +[12394] stiffening: 3 +[12395] stiffly: 2 +[12396] stiffness: 2 +[12397] stifle: 1 +[12398] stifled: 1 +[12399] stifling: 5 +[12400] still: 425 +[12401] stillness: 6 +[12402] stimulated: 1 +[12403] stimulating: 2 +[12404] stimulus: 1 +[12405] sting: 2 +[12406] stinging: 1 +[12407] stinking: 3 +[12408] stipulation: 1 +[12409] stipules: 1 +[12410] stir: 10 +[12411] stirred: 12 +[12412] stirring: 6 +[12413] stirrup: 2 +[12414] stitches: 1 +[12415] stiva: 59 +[12416] stiva"--she: 1 +[12417] stiva's: 3 +[12418] stiva...if: 1 +[12419] sto-op: 1 +[12420] stock: 8 +[12421] stock--a: 1 +[12422] stocking: 3 +[12423] stockings: 11 +[12424] stocks: 2 +[12425] stole: 4 +[12426] stolen: 4 +[12427] stomach: 6 +[12428] stone: 11 +[12429] stones: 6 +[12430] stony: 2 +[12431] stood: 129 +[12432] stoop: 3 +[12433] stooped: 2 +[12434] stooping: 8 +[12435] stop: 50 +[12436] stopped: 87 +[12437] stopping: 31 +[12438] store: 6 +[12439] stored: 1 +[12440] storeroom: 1 +[12441] stores: 2 +[12442] stories: 3 +[12443] storing: 1 +[12444] storm: 18 +[12445] storm-clouds: 2 +[12446] storms: 1 +[12447] stormy: 3 +[12448] story: 27 +[12449] story--he: 2 +[12450] story-book: 1 +[12451] storytelling: 1 +[12452] stout: 13 +[12453] stoutly: 1 +[12454] stove: 6 +[12455] stoveheater: 1 +[12456] straight: 91 +[12457] straightened: 4 +[12458] straightening: 3 +[12459] straightforward: 5 +[12460] straightforwardness: 2 +[12461] strain: 16 +[12462] strained: 12 +[12463] straining: 3 +[12464] strains: 1 +[12465] strange: 97 +[12466] strangely: 7 +[12467] strangeness: 2 +[12468] stranger: 9 +[12469] stranger's: 1 +[12470] stranger--yes: 1 +[12471] strangers: 5 +[12472] strangers--strangers: 1 +[12473] strangest: 2 +[12474] strangle: 1 +[12475] strap: 2 +[12476] strapped-up: 1 +[12477] strata: 1 +[12478] straw: 11 +[12479] strawberries: 1 +[12480] stray: 7 +[12481] strayed: 1 +[12482] straying: 3 +[12483] streak: 2 +[12484] streaks: 2 +[12485] stream: 19 +[12486] stream--agitated: 1 +[12487] streamed: 2 +[12488] streaming: 3 +[12489] streams: 8 +[12490] street: 18 +[12491] streets: 5 +[12492] stremov: 20 +[12493] stremov's: 2 +[12494] strength: 33 +[12495] strengthen: 3 +[12496] strengthened: 4 +[12497] strenuous: 1 +[12498] strenuously: 1 +[12499] stress: 5 +[12500] stretch: 8 +[12501] stretched: 18 +[12502] stretching: 8 +[12503] strewn: 1 +[12504] stricken: 1 +[12505] strict: 10 +[12506] strictest: 1 +[12507] strictly: 7 +[12508] stride: 1 +[12509] strides: 1 +[12510] striding: 1 +[12511] strife: 4 +[12512] strike: 4 +[12513] strikes: 1 +[12514] striking: 12 +[12515] strikingly: 2 +[12516] string: 9 +[12517] stringed: 1 +[12518] strings: 5 +[12519] stringy: 1 +[12520] strip: 1 +[12521] striped: 1 +[12522] stripes: 1 +[12523] stripped: 4 +[12524] stripping: 3 +[12525] strips: 3 +[12526] strive: 2 +[12527] striven: 2 +[12528] striving: 3 +[12529] strode: 6 +[12530] stroke: 2 +[12531] stroked: 6 +[12532] strokes: 3 +[12533] stroking: 8 +[12534] stroll: 2 +[12535] strong: 47 +[12536] strong-smelling: 2 +[12537] stronger: 22 +[12538] strongly: 1 +[12539] strove: 1 +[12540] struck: 68 +[12541] struggle: 22 +[12542] struggled: 6 +[12543] struggles: 1 +[12544] struggling: 20 +[12545] stubble: 2 +[12546] stubble-land: 1 +[12547] stubborn: 3 +[12548] stubbornly: 4 +[12549] stuccoed: 1 +[12550] stuck: 11 +[12551] stud: 1 +[12552] studded: 1 +[12553] student: 7 +[12554] students: 3 +[12555] studied: 11 +[12556] studies: 8 +[12557] studio: 6 +[12558] studios: 1 +[12559] studiously: 6 +[12560] studs: 2 +[12561] study: 65 +[12562] studying: 6 +[12563] stuff: 5 +[12564] stuffy: 2 +[12565] stumble: 1 +[12566] stumble--see: 1 +[12567] stumbled: 9 +[12568] stumbling: 6 +[12569] stump: 3 +[12570] stumps: 1 +[12571] stung: 10 +[12572] stupefied: 2 +[12573] stupid: 37 +[12574] stupider: 1 +[12575] stupidly: 1 +[12576] sturdy: 3 +[12577] sturdy-looking: 1 +[12578] sturgeon: 1 +[12579] stuttered: 1 +[12580] style: 23 +[12581] stylish: 3 +[12582] subalterns: 1 +[12583] subdivided: 1 +[12584] subdivisions: 2 +[12585] subdued: 11 +[12586] subject: 100 +[12587] subject's: 1 +[12588] subject--"you: 1 +[12589] subjection: 2 +[12590] subjects: 10 +[12591] subjects--"aline-nadine: 1 +[12592] subjects--also: 1 +[12593] sublime: 3 +[12594] submission: 3 +[12595] submissive: 4 +[12596] submissively: 5 +[12597] submissiveness: 1 +[12598] submit: 9 +[12599] submitted: 1 +[12600] subordinated: 1 +[12601] subordinates: 6 +[12602] subscribe: 1 +[12603] subscribed: 2 +[12604] subscriptions: 2 +[12605] subsequent: 1 +[12606] subside: 1 +[12607] subsided: 3 +[12608] subsiding: 1 +[12609] substance: 2 +[12610] substitute: 1 +[12611] substituted: 1 +[12612] subtle: 11 +[12613] subtleties: 1 +[12614] subtly: 3 +[12615] subtract: 1 +[12616] subtraction: 1 +[12617] suburb: 2 +[12618] succeed: 10 +[12619] succeeded: 22 +[12620] succeeding: 1 +[12621] success: 28 +[12622] successful: 20 +[12623] successfully: 3 +[12624] succession: 3 +[12625] succor: 5 +[12626] succulent: 1 +[12627] succumbed: 1 +[12628] such: 389 +[12629] sucked: 4 +[12630] sucking: 3 +[12631] suckle: 1 +[12632] sudden: 29 +[12633] suddenly: 172 +[12634] suffer: 23 +[12635] suffered: 8 +[12636] sufferer: 1 +[12637] sufferers: 1 +[12638] suffering: 57 +[12639] sufferings: 25 +[12640] sufficient: 3 +[12641] sufficiently: 2 +[12642] suffused: 3 +[12643] sugar: 6 +[12644] suggest: 2 +[12645] suggested: 14 +[12646] suggesting: 1 +[12647] suggestion: 4 +[12648] suggestions: 1 +[12649] suggestive: 1 +[12650] suggests: 1 +[12651] suicide: 2 +[12652] suit: 8 +[12653] suitability: 1 +[12654] suitable: 4 +[12655] suitably: 1 +[12656] suite: 1 +[12657] suited: 2 +[12658] suitors: 3 +[12659] suits: 2 +[12660] sullen: 2 +[12661] sullying: 1 +[12662] sum: 8 +[12663] summed: 2 +[12664] summer: 51 +[12665] summer's: 1 +[12666] summing: 1 +[12667] summon: 2 +[12668] summoned: 5 +[12669] summoning: 1 +[12670] summons: 1 +[12671] sumptuous: 3 +[12672] sumptuousness: 3 +[12673] sums: 6 +[12674] sun: 38 +[12675] sun's: 1 +[12676] sun-blackened: 1 +[12677] sunbeams: 1 +[12678] sunburnt: 5 +[12679] sunday: 9 +[12680] sung: 2 +[12681] sunk: 4 +[12682] sunken: 2 +[12683] sunlight: 2 +[12684] sunny: 2 +[12685] sunrise: 2 +[12686] sunset: 3 +[12687] sunshade: 3 +[12688] sunshine: 10 +[12689] superb: 2 +[12690] superficial: 8 +[12691] superficiality: 1 +[12692] superfluous: 12 +[12693] superintend: 1 +[12694] superintendence: 2 +[12695] superintendents: 1 +[12696] superior: 3 +[12697] superiority: 5 +[12698] superiors: 2 +[12699] supernatural: 1 +[12700] supersede: 1 +[12701] superstructure: 1 +[12702] supervision: 2 +[12703] supper: 34 +[12704] supplants: 1 +[12705] supple: 6 +[12706] supplicating: 2 +[12707] supplication: 1 +[12708] supplied: 1 +[12709] supplies: 1 +[12710] supply: 3 +[12711] support: 32 +[12712] supported: 5 +[12713] supporter: 1 +[12714] supporters: 1 +[12715] supporting: 6 +[12716] suppose: 61 +[12717] supposed: 23 +[12718] supposes: 2 +[12719] supposing: 14 +[12720] supposition: 5 +[12721] suppositions: 5 +[12722] suppress: 7 +[12723] suppressed: 5 +[12724] suppressing: 2 +[12725] supremely: 1 +[12726] sure: 74 +[12727] surely: 14 +[12728] surety: 2 +[12729] surface: 4 +[12730] surged: 1 +[12731] surgeon: 1 +[12732] surging: 1 +[12733] surmised: 1 +[12734] surmises: 2 +[12735] surmount: 1 +[12736] surmounting: 1 +[12737] surname: 4 +[12738] surovsky: 2 +[12739] surplices--all: 1 +[12740] surplus: 3 +[12741] surprise: 22 +[12742] surprised: 20 +[12743] surprises: 2 +[12744] surprising: 3 +[12745] surrender: 2 +[12746] surrendered: 2 +[12747] surreptitiously: 1 +[12748] surrounded: 12 +[12749] surrounding: 6 +[12750] surroundings: 6 +[12751] survey: 1 +[12752] survive: 1 +[12753] survived: 1 +[12754] sury: 1 +[12755] susceptible: 2 +[12756] suspect: 3 +[12757] suspected: 6 +[12758] suspecting: 2 +[12759] suspense: 4 +[12760] suspicion: 6 +[12761] suspicions: 8 +[12762] suspicious: 6 +[12763] sustain: 1 +[12764] sustained: 1 +[12765] sventitsky: 2 +[12766] sviazhskaya: 2 +[12767] sviazhsky: 114 +[12768] sviazhsky's: 21 +[12769] sviazhsky--"over: 1 +[12770] sviazhsky--he's: 1 +[12771] sviazhskys: 3 +[12772] svintitch: 1 +[12773] swaddling: 1 +[12774] swagger: 1 +[12775] swain: 1 +[12776] swallow: 1 +[12777] swallow-tail: 1 +[12778] swallowed: 2 +[12779] swallowing: 1 +[12780] swallows: 2 +[12781] swamp: 6 +[12782] swampy: 1 +[12783] swarm: 5 +[12784] swarmed: 3 +[12785] swarming: 5 +[12786] swarms: 2 +[12787] swathed: 1 +[12788] sway: 3 +[12789] swayed: 4 +[12790] swaying: 6 +[12791] swear: 1 +[12792] swearing: 1 +[12793] sweat: 10 +[12794] sweat-drenched: 1 +[12795] swede: 2 +[12796] sweden: 1 +[12797] sweden's: 1 +[12798] swedish: 2 +[12799] sweep: 5 +[12800] sweeping: 1 +[12801] sweet: 50 +[12802] sweet--to: 1 +[12803] sweet-smelling: 1 +[12804] sweetest: 2 +[12805] sweetmeats: 4 +[12806] sweetmeats!...he'd: 1 +[12807] sweetness: 3 +[12808] sweets: 4 +[12809] swell: 1 +[12810] swelled: 2 +[12811] swelling: 3 +[12812] swept: 1 +[12813] swift: 9 +[12814] swiftly: 14 +[12815] swiftness: 4 +[12816] swim: 2 +[12817] swimming: 4 +[12818] swimming-mistress: 1 +[12819] swindle: 2 +[12820] swindler: 1 +[12821] swindling: 1 +[12822] swine: 1 +[12823] swing: 8 +[12824] swinging: 12 +[12825] swings: 1 +[12826] swinishness: 2 +[12827] swish: 1 +[12828] swishing: 1 +[12829] switched: 1 +[12830] switzerland: 3 +[12831] swollen: 12 +[12832] swoop: 1 +[12833] swooped: 4 +[12834] swooping: 2 +[12835] sword: 2 +[12836] swore: 1 +[12837] swung: 5 +[12838] syllable: 2 +[12839] syllables: 1 +[12840] syllogism: 1 +[12841] symbol: 1 +[12842] symmetry: 1 +[12843] sympathetic: 9 +[12844] sympathetically: 4 +[12845] sympathies: 1 +[12846] sympathize: 4 +[12847] sympathized: 2 +[12848] sympathizing: 5 +[12849] sympathy: 28 +[12850] symptom: 1 +[12851] symptoms: 3 +[12852] synod: 2 +[12853] synonymous: 1 +[12854] synopsis: 1 +[12855] syringe: 1 +[12856] syrup: 2 +[12857] system: 33 +[12858] system's: 1 +[12859] systems: 2 +[12860] sépare: 1 +[12861] t: 4 +[12862] t...act: 1 +[12863] table: 173 +[12864] table-turning: 4 +[12865] tablecloths: 1 +[12866] tables: 10 +[12867] tabula: 1 +[12868] taciturn: 1 +[12869] taciturnity: 1 +[12870] tacked: 1 +[12871] tackle: 1 +[12872] tact: 10 +[12873] tactics: 2 +[12874] tactlessly: 1 +[12875] tail: 11 +[12876] tailor: 3 +[12877] tailor--were: 1 +[12878] tails: 1 +[12879] taine: 1 +[12880] take: 231 +[12881] taken: 134 +[12882] takes: 13 +[12883] taking: 174 +[12884] tale: 2 +[12885] talent: 12 +[12886] talents: 1 +[12887] tales: 1 +[12888] talk: 212 +[12889] talkative: 4 +[12890] talked: 82 +[12891] talker: 1 +[12892] talkers: 1 +[12893] talking: 179 +[12894] talking-to: 1 +[12895] talks: 5 +[12896] talks--she: 1 +[12897] tall: 29 +[12898] taller: 1 +[12899] talleyrand: 1 +[12900] tallow: 2 +[12901] tangle: 2 +[12902] tangled: 4 +[12903] tanitchka: 1 +[12904] tank: 1 +[12905] tant: 4 +[12906] tante: 1 +[12907] tanya: 24 +[12908] tanya's: 3 +[12909] tap: 1 +[12910] tape: 1 +[12911] tapes: 1 +[12912] tapped: 2 +[12913] tapping: 2 +[12914] tar: 2 +[12915] tard: 1 +[12916] tardiness: 1 +[12917] tart: 5 +[12918] tart--he: 1 +[12919] tashkend: 5 +[12920] task: 18 +[12921] tassel: 2 +[12922] tassels: 3 +[12923] taste: 18 +[12924] tasted: 3 +[12925] tastelessly: 1 +[12926] tastes: 9 +[12927] tatar: 14 +[12928] tatters: 1 +[12929] taught: 9 +[12930] tavern: 2 +[12931] taverns: 1 +[12932] tax: 6 +[12933] taxes: 2 +[12934] taxing: 1 +[12935] taxpayer--though: 1 +[12936] tchagin: 1 +[12937] tcharskaya: 2 +[12938] tcharsky: 2 +[12939] tchefirovka: 1 +[12940] tchetchensky: 6 +[12941] tchibisova: 2 +[12942] tchirikov: 8 +[12943] tchirkova: 1 +[12944] tchk: 2 +[12945] tchudovo: 1 +[12946] tea: 70 +[12947] tea-table: 3 +[12948] tea-time: 1 +[12949] teach: 9 +[12950] teacher: 18 +[12951] teachers: 8 +[12952] teaches: 1 +[12953] teaching: 6 +[12954] tear: 11 +[12955] tear-stained: 3 +[12956] tearful: 3 +[12957] tearfully: 1 +[12958] tearing: 10 +[12959] tears: 104 +[12960] teased: 2 +[12961] teasing: 1 +[12962] technique: 8 +[12963] tedious: 4 +[12964] teeth: 25 +[12965] telegram: 33 +[12966] telegrams: 6 +[12967] telegraph: 3 +[12968] telegraphed: 1 +[12969] telegraphing: 1 +[12970] tell: 286 +[12971] tellement: 1 +[12972] telling: 51 +[12973] tells: 6 +[12974] temper: 22 +[12975] temper'll: 1 +[12976] temperament: 5 +[12977] temperature: 1 +[12978] tempered: 1 +[12979] tempers: 2 +[12980] tempest: 2 +[12981] temple: 1 +[12982] temples: 7 +[12983] temporary: 5 +[12984] tempt: 1 +[12985] temptation: 3 +[12986] tempted: 5 +[12987] ten: 45 +[12988] tendencies: 2 +[12989] tendency: 4 +[12990] tender: 25 +[12991] tenderer: 2 +[12992] tenderest: 1 +[12993] tenderly: 6 +[12994] tenderness: 43 +[12995] tenderness--and: 1 +[12996] tending: 1 +[12997] tendrils: 1 +[12998] tenfold: 1 +[12999] tennis: 1 +[13000] tenor: 2 +[13001] tenors: 1 +[13002] tens: 3 +[13003] tense: 4 +[13004] tension: 5 +[13005] tenth: 3 +[13006] tenure: 1 +[13007] terenty: 1 +[13008] tereshtchenko: 1 +[13009] term: 3 +[13010] terms: 43 +[13011] terrace: 22 +[13012] terre-à-terre: 2 +[13013] terrible: 61 +[13014] terribly: 4 +[13015] terrified: 4 +[13016] terror: 32 +[13017] terror-stricken: 1 +[13018] terrors: 2 +[13019] tesoro: 1 +[13020] tesoro_--not: 1 +[13021] test: 4 +[13022] testament: 6 +[13023] tested: 1 +[13024] testified: 1 +[13025] text: 2 +[13026] texts: 1 +[13027] thalers: 1 +[13028] than: 367 +[13029] thank: 47 +[13030] thanked: 5 +[13031] thankful: 2 +[13032] thanking: 3 +[13033] thanklessness: 1 +[13034] thanks: 15 +[13035] that: 5139 +[13036] that'll: 3 +[13037] that's: 325 +[13038] that's--hell: 1 +[13039] that,--but: 1 +[13040] that--can: 1 +[13041] that--disgust: 1 +[13042] that--he: 2 +[13043] that--i: 1 +[13044] that--no: 1 +[13045] that--nothing: 1 +[13046] that--thanks: 1 +[13047] that--was: 1 +[13048] that--what: 1 +[13049] that...and: 1 +[13050] that...i've: 1 +[13051] that...that...that: 1 +[13052] that...the: 1 +[13053] thatch: 1 +[13054] thatching: 1 +[13055] thaw: 1 +[13056] thawed: 2 +[13057] thawing: 2 +[13058] thaws: 1 +[13059] the: 17675 +[13060] the--(1: 1 +[13061] the...what's: 1 +[13062] theater: 25 +[13063] thee: 6 +[13064] their: 702 +[13065] theirs: 6 +[13066] them: 834 +[13067] them,--but: 1 +[13068] them--as: 1 +[13069] them--at: 1 +[13070] them--i: 1 +[13071] them--it's: 1 +[13072] them--of: 1 +[13073] them--or: 1 +[13074] themselves: 67 +[13075] themselves...to: 1 +[13076] then: 511 +[13077] then--all: 1 +[13078] then--i: 1 +[13079] then...roast: 1 +[13080] then?--unlighted: 1 +[13081] thence: 1 +[13082] theologians: 1 +[13083] theological: 1 +[13084] theology: 2 +[13085] theoretical: 2 +[13086] theoretically: 3 +[13087] theories: 10 +[13088] theory: 16 +[13089] theory's: 1 +[13090] there: 1014 +[13091] there'd: 1 +[13092] there'll: 5 +[13093] there's: 177 +[13094] there--incredibly: 1 +[13095] there--it's: 1 +[13096] there...i: 1 +[13097] there...in: 1 +[13098] thereafter: 1 +[13099] thereby: 4 +[13100] therefore: 23 +[13101] thereupon: 4 +[13102] thermometer: 1 +[13103] these: 275 +[13104] they: 1110 +[13105] they'd: 5 +[13106] they'll: 20 +[13107] they're: 67 +[13108] they've: 28 +[13109] they--that: 1 +[13110] they--they're: 1 +[13111] they--wurt: 1 +[13112] thick: 31 +[13113] thick-set: 2 +[13114] thicker: 2 +[13115] thickest: 1 +[13116] thicket: 3 +[13117] thickets: 1 +[13118] thickly: 1 +[13119] thief: 3 +[13120] thighs: 2 +[13121] thin: 37 +[13122] thing: 232 +[13123] thing"--bartnyansky: 1 +[13124] thing's: 8 +[13125] thing--faith: 1 +[13126] thing--he's: 1 +[13127] thing--i: 1 +[13128] thing--love: 1 +[13129] thing--we: 1 +[13130] thing--your: 1 +[13131] things: 158 +[13132] things--that: 1 +[13133] things--was: 1 +[13134] think: 313 +[13135] think--and: 1 +[13136] think...of: 1 +[13137] think...take: 1 +[13138] thinking: 158 +[13139] thinks: 16 +[13140] thinned: 1 +[13141] thinner: 7 +[13142] thinness: 2 +[13143] thinning: 2 +[13144] thinnish: 2 +[13145] third: 45 +[13146] thirdly: 4 +[13147] thirdly--the: 1 +[13148] thirst: 3 +[13149] thirteen: 1 +[13150] thirteenth: 1 +[13151] thirty: 15 +[13152] thirty-eight: 2 +[13153] thirty-five: 1 +[13154] thirty-four: 1 +[13155] thirty-fourth: 1 +[13156] thirty-seven: 1 +[13157] thirty-two: 3 +[13158] this: 1397 +[13159] this--all: 1 +[13160] this...to: 2 +[13161] this?--that's: 1 +[13162] thoroughbred: 2 +[13163] thoroughly: 11 +[13164] those: 219 +[13165] those--what's: 1 +[13166] thou: 7 +[13167] though: 519 +[13168] thought: 564 +[13169] thought--a: 1 +[13170] thought--that: 1 +[13171] thought--the: 1 +[13172] thoughtful: 5 +[13173] thoughtfully: 1 +[13174] thoughtless: 2 +[13175] thoughtlessly: 1 +[13176] thoughtlessness: 1 +[13177] thoughts: 89 +[13178] thousand: 71 +[13179] thousand--after: 1 +[13180] thousand--well: 1 +[13181] thousand...you'd: 1 +[13182] thousands: 9 +[13183] thrash: 1 +[13184] thrashed: 3 +[13185] thrasher: 1 +[13186] thrashing: 12 +[13187] thread: 6 +[13188] threadbare: 1 +[13189] threading: 1 +[13190] threads: 1 +[13191] threat: 3 +[13192] threat--obtain: 1 +[13193] threatening: 6 +[13194] three: 154 +[13195] three--dozen: 1 +[13196] three-button: 1 +[13197] three-horse: 2 +[13198] three-mile: 3 +[13199] three-rouble: 3 +[13200] three-year-old: 1 +[13201] threes: 1 +[13202] threshing: 2 +[13203] threshing-floor: 1 +[13204] threw: 22 +[13205] thrill: 4 +[13206] thrilled: 1 +[13207] thrilling: 1 +[13208] throat: 15 +[13209] throats: 1 +[13210] throbbed: 4 +[13211] throbbing: 7 +[13212] throbs: 1 +[13213] throng: 2 +[13214] throng--when: 1 +[13215] thronged: 5 +[13216] thronging: 2 +[13217] through: 214 +[13218] throughout: 2 +[13219] throw: 16 +[13220] throwing: 3 +[13221] thrown: 17 +[13222] throws: 1 +[13223] thrust: 18 +[13224] thrusting: 2 +[13225] thud: 3 +[13226] thuff...thuff: 1 +[13227] thuffering: 1 +[13228] thule: 1 +[13229] thunder: 5 +[13230] thundery: 1 +[13231] thursday: 1 +[13232] thursdays: 2 +[13233] thus: 9 +[13234] thy: 12 +[13235] thèrése: 2 +[13236] ticket: 2 +[13237] tickled: 2 +[13238] tidily: 2 +[13239] tidy: 4 +[13240] tidying: 1 +[13241] tie: 18 +[13242] tied: 11 +[13243] ties: 12 +[13244] tiger-skin: 4 +[13245] tight: 8 +[13246] tightened: 1 +[13247] tightening: 1 +[13248] tighter: 2 +[13249] tightly: 16 +[13250] tightly-drawn: 1 +[13251] till: 77 +[13252] tillage: 1 +[13253] tilt: 1 +[13254] tilted: 1 +[13255] timber: 7 +[13256] time: 562 +[13257] time"--his: 1 +[13258] time's: 2 +[13259] times: 84 +[13260] timetable: 1 +[13261] timid: 16 +[13262] timidity: 9 +[13263] timidity--or: 1 +[13264] timidly: 17 +[13265] timorously: 1 +[13266] tin: 2 +[13267] tingled: 1 +[13268] tinier: 1 +[13269] tiniest: 1 +[13270] tinkle: 1 +[13271] tinplate: 1 +[13272] tintoretto: 1 +[13273] tiny: 22 +[13274] tip: 4 +[13275] tipping: 2 +[13276] tips: 4 +[13277] tipsy: 2 +[13278] tiptoe: 8 +[13279] tire: 2 +[13280] tired: 23 +[13281] tired-looking: 1 +[13282] tires: 1 +[13283] tiresome: 12 +[13284] tis: 1 +[13285] tit: 19 +[13286] tit's: 3 +[13287] titian: 1 +[13288] title: 6 +[13289] title-deed: 1 +[13290] tiutkin: 3 +[13291] to: 10194 +[13292] to,--and: 1 +[13293] to--why: 1 +[13294] to-day: 1 +[13295] to-do: 2 +[13296] to-morrow's: 1 +[13297] to?--to: 1 +[13298] toadying: 1 +[13299] toast: 1 +[13300] tobacco: 1 +[13301] tochter: 1 +[13302] today: 90 +[13303] today's: 3 +[13304] today...i: 1 +[13305] toe: 1 +[13306] toes: 3 +[13307] together: 134 +[13308] together!--i: 1 +[13309] together--here: 1 +[13310] together...together: 1 +[13311] toil: 10 +[13312] toiled: 1 +[13313] toilet: 2 +[13314] toilette: 1 +[13315] toiling: 1 +[13316] token: 3 +[13317] tokens: 2 +[13318] told: 260 +[13319] tolerable: 1 +[13320] tolstoy: 4 +[13321] tomb: 1 +[13322] tomber: 1 +[13323] tomorrow: 71 +[13324] tomorrow...i'll: 1 +[13325] ton: 1 +[13326] tone: 99 +[13327] tone--hardly: 1 +[13328] tone...but: 1 +[13329] tones: 5 +[13330] tongue: 3 +[13331] tongues: 3 +[13332] tonight: 7 +[13333] too: 503 +[13334] too--but: 2 +[13335] too...where: 1 +[13336] too?--what: 1 +[13337] took: 241 +[13338] tool: 1 +[13339] tools: 3 +[13340] tooth: 5 +[13341] toothache: 5 +[13342] toothless: 2 +[13343] top: 20 +[13344] top-boots: 1 +[13345] topic: 7 +[13346] topic--gossip: 1 +[13347] topics: 1 +[13348] topmost: 1 +[13349] topov: 1 +[13350] tops: 2 +[13351] topsy-turvy: 1 +[13352] toqué: 1 +[13353] tore: 6 +[13354] torment: 1 +[13355] tormented: 3 +[13356] tormenting: 2 +[13357] torments: 1 +[13358] torn: 16 +[13359] torrent: 2 +[13360] torrents: 1 +[13361] tortoise-shell: 1 +[13362] torture: 17 +[13363] tortured: 16 +[13364] tortures: 1 +[13365] torturing: 6 +[13366] tossed: 5 +[13367] tossing: 2 +[13368] totally: 4 +[13369] totter: 1 +[13370] tottered: 1 +[13371] tottering: 1 +[13372] touch: 20 +[13373] touched: 34 +[13374] touches: 1 +[13375] touchiness: 2 +[13376] touching: 24 +[13377] touchingly: 1 +[13378] tour: 8 +[13379] tours: 2 +[13380] tout: 2 +[13381] tout-à-fait: 1 +[13382] toutes: 1 +[13383] towards: 172 +[13384] towel: 2 +[13385] towels: 2 +[13386] towered: 1 +[13387] town: 51 +[13388] town's: 1 +[13389] towns: 3 +[13390] townsfolk: 1 +[13391] townspeople: 1 +[13392] toy: 3 +[13393] toys: 5 +[13394] trace: 10 +[13395] trace-horse: 2 +[13396] trace-horses: 1 +[13397] traces: 6 +[13398] track: 3 +[13399] tracks: 3 +[13400] tract: 1 +[13401] tracts: 1 +[13402] trademark: 10 +[13403] trademark/copyright: 1 +[13404] trades: 1 +[13405] tradition: 3 +[13406] traditional: 1 +[13407] traditionalism: 1 +[13408] traditions: 1 +[13409] tragedians: 1 +[13410] tragedy: 6 +[13411] tragic: 1 +[13412] tragically: 2 +[13413] train: 55 +[13414] train's: 1 +[13415] train...who: 1 +[13416] trained: 2 +[13417] trainer: 3 +[13418] training: 1 +[13419] trains: 3 +[13420] trait: 2 +[13421] traits: 2 +[13422] tramp: 3 +[13423] trample: 4 +[13424] trampled: 4 +[13425] trampling: 1 +[13426] trance: 1 +[13427] tranquil: 2 +[13428] tranquillity: 1 +[13429] transact: 1 +[13430] transcendental: 1 +[13431] transcribe: 1 +[13432] transcription: 1 +[13433] transferred: 3 +[13434] transform: 2 +[13435] transformation: 2 +[13436] transformations: 1 +[13437] transformed: 10 +[13438] transforming: 1 +[13439] transient: 2 +[13440] transition: 7 +[13441] transitions: 2 +[13442] translate: 1 +[13443] translated: 2 +[13444] translating: 1 +[13445] translation: 2 +[13446] translator: 1 +[13447] transmigration: 1 +[13448] transmission: 1 +[13449] transparent: 6 +[13450] transparent-looking: 1 +[13451] transported: 1 +[13452] transposed: 3 +[13453] trap: 26 +[13454] trapeze: 1 +[13455] travel: 1 +[13456] traveled: 5 +[13457] traveler: 6 +[13458] travelers: 1 +[13459] traveling: 5 +[13460] traveling-bag: 1 +[13461] travels: 1 +[13462] tray: 8 +[13463] trays: 1 +[13464] treacheries: 1 +[13465] treachery: 1 +[13466] tread: 4 +[13467] treading: 3 +[13468] treasure: 2 +[13469] treat: 2 +[13470] treated: 12 +[13471] treating: 4 +[13472] treatise: 1 +[13473] treatment: 8 +[13474] tree: 23 +[13475] tree-tops: 3 +[13476] trees: 25 +[13477] treillage: 2 +[13478] tremble: 1 +[13479] trembled: 3 +[13480] trembling: 14 +[13481] tremendously: 1 +[13482] tremens: 1 +[13483] trend: 1 +[13484] trepidation: 1 +[13485] tres: 1 +[13486] tress: 2 +[13487] tresses: 1 +[13488] trial: 4 +[13489] trials: 1 +[13490] triangle: 4 +[13491] triangles: 1 +[13492] tribes: 15 +[13493] tribunal: 1 +[13494] tribute: 1 +[13495] trice: 1 +[13496] trick: 9 +[13497] trickery: 2 +[13498] trickling: 1 +[13499] tricks: 1 +[13500] tried: 159 +[13501] tries: 4 +[13502] trifle: 2 +[13503] trifles: 1 +[13504] trifling: 7 +[13505] trifling--and: 1 +[13506] trigger: 3 +[13507] trilled: 1 +[13508] trimmed: 2 +[13509] trinity: 1 +[13510] trinkets: 1 +[13511] triumph: 18 +[13512] triumphant: 5 +[13513] triumphantly: 2 +[13514] triumphed: 1 +[13515] triumphing: 1 +[13516] trivial: 11 +[13517] triviality: 1 +[13518] trodden: 3 +[13519] trois: 1 +[13520] troitsa: 1 +[13521] trolleys: 1 +[13522] trop: 1 +[13523] trot: 6 +[13524] troth: 5 +[13525] trotted: 2 +[13526] trotter: 1 +[13527] trotting: 2 +[13528] trouble: 51 +[13529] troubled: 10 +[13530] troubles: 4 +[13531] troubling: 4 +[13532] trough: 2 +[13533] trousers: 10 +[13534] trousers--though: 1 +[13535] trousseau: 8 +[13536] trousseau--the: 1 +[13537] trowels: 1 +[13538] trubetskaya: 1 +[13539] trubin: 1 +[13540] trudging: 2 +[13541] true: 91 +[13542] true--true: 1 +[13543] true...now: 1 +[13544] truffles: 1 +[13545] truly: 12 +[13546] trunk: 3 +[13547] trunks: 3 +[13548] trussing: 1 +[13549] trust: 6 +[13550] trusted: 4 +[13551] trustee: 1 +[13552] trustfully: 2 +[13553] trustworthy: 2 +[13554] truth: 47 +[13555] truthful: 18 +[13556] truthfully: 1 +[13557] truthfulness: 1 +[13558] truths: 4 +[13559] try: 67 +[13560] trying: 134 +[13561] très: 2 +[13562] tsar: 14 +[13563] tsar's: 1 +[13564] tsaritsino: 1 +[13565] tsarskoe: 2 +[13566] tub: 1 +[13567] tuberculous: 4 +[13568] tucked: 9 +[13569] tucking: 1 +[13570] tuesday: 5 +[13571] tuft: 3 +[13572] tufts: 2 +[13573] tugged: 2 +[13574] tugging: 5 +[13575] tulle: 4 +[13576] tumbler: 1 +[13577] tunic: 1 +[13578] turban: 1 +[13579] turbid: 1 +[13580] turbot: 5 +[13581] turin's: 1 +[13582] turkey: 3 +[13583] turkeys: 1 +[13584] turkin: 1 +[13585] turkish: 2 +[13586] turks: 7 +[13587] turks?--ivan: 1 +[13588] turmoil: 2 +[13589] turn: 56 +[13590] turn-down: 1 +[13591] turn-out: 1 +[13592] turned: 207 +[13593] turning: 115 +[13594] turning-point: 2 +[13595] turnings: 1 +[13596] turns: 9 +[13597] turovtsin: 17 +[13598] turovtsin's: 1 +[13599] turovtsin--"_acted: 1 +[13600] turovtsin--good: 1 +[13601] turovtsin--he: 1 +[13602] tushkevitch: 22 +[13603] tushkevitch--"with: 1 +[13604] tushkevitch--you: 1 +[13605] tutor: 8 +[13606] tutor's: 3 +[13607] tver: 6 +[13608] tverskaya: 15 +[13609] tverskaya's: 9 +[13610] tverskoys: 2 +[13611] tversky: 2 +[13612] twelve: 14 +[13613] twentieth: 1 +[13614] twenty: 26 +[13615] twenty--had: 1 +[13616] twenty-eight: 2 +[13617] twenty-five: 6 +[13618] twenty-four: 2 +[13619] twenty-six: 2 +[13620] twenty-two: 1 +[13621] twice: 14 +[13622] twig: 4 +[13623] twigs: 5 +[13624] twilight: 5 +[13625] twinge: 1 +[13626] twinkle: 1 +[13627] twinkled: 2 +[13628] twinkling: 2 +[13629] twirling: 2 +[13630] twist: 1 +[13631] twisted: 4 +[13632] twisting: 7 +[13633] twitch: 1 +[13634] twitched: 9 +[13635] twitching: 14 +[13636] twittered: 3 +[13637] two: 293 +[13638] two--or: 1 +[13639] two-and-twenty: 1 +[13640] two-thirds: 1 +[13641] twopence: 2 +[13642] twos: 1 +[13643] tying: 1 +[13644] tyndall: 1 +[13645] tyndall's: 1 +[13646] type: 6 +[13647] type--she: 1 +[13648] types: 2 +[13649] typhus: 2 +[13650] typical: 2 +[13651] typically: 1 +[13652] télégraphe: 1 +[13653] tête-à-tête: 1 +[13654] u.s: 3 +[13655] ud: 1 +[13656] udder: 1 +[13657] ugh: 1 +[13658] uglier: 1 +[13659] ugliness: 1 +[13660] ugly: 11 +[13661] ultimate: 1 +[13662] umbrella: 1 +[13663] umpire: 1 +[13664] un: 7 +[13665] unable: 34 +[13666] unaccountable: 1 +[13667] unaccustomed: 6 +[13668] unaffected: 2 +[13669] unaided: 1 +[13670] unalterable: 5 +[13671] unalterably: 2 +[13672] unanimity: 3 +[13673] unanimously: 1 +[13674] unannounced: 1 +[13675] unanswered: 1 +[13676] unapproachable: 1 +[13677] unasked: 1 +[13678] unassailable: 1 +[13679] unattainable: 4 +[13680] unattractive: 2 +[13681] unavoidable: 1 +[13682] unaware: 3 +[13683] unawares: 1 +[13684] unbearable: 6 +[13685] unbearably: 1 +[13686] unbecoming: 5 +[13687] unbecomingly: 2 +[13688] unbelief: 6 +[13689] unbeliever: 9 +[13690] unbelievers: 1 +[13691] unbelieving: 1 +[13692] unbending: 1 +[13693] unbridled: 1 +[13694] unbroken: 1 +[13695] unbuttoned: 5 +[13696] uncalled: 3 +[13697] uncannily: 1 +[13698] uncanny: 1 +[13699] unceasing: 1 +[13700] unceasingly: 5 +[13701] uncertain: 8 +[13702] uncertainly: 2 +[13703] uncertainty: 13 +[13704] unchanged: 6 +[13705] uncivil: 1 +[13706] uncle: 13 +[13707] uncle's: 2 +[13708] unclean: 1 +[13709] uncleanness: 1 +[13710] uncles: 2 +[13711] uncomfortable: 16 +[13712] uncommonly: 2 +[13713] uncomprehended: 2 +[13714] uncompromising: 2 +[13715] uncongenial: 3 +[13716] unconscious: 3 +[13717] unconsciously: 44 +[13718] unconsciousness: 5 +[13719] uncontrollably: 2 +[13720] uncorking: 1 +[13721] uncouth: 2 +[13722] uncover: 5 +[13723] uncovered: 3 +[13724] uncovering: 1 +[13725] uncrooked: 1 +[13726] unction: 3 +[13727] uncut: 5 +[13728] und: 1 +[13729] undefined: 4 +[13730] under: 167 +[13731] undercassock: 1 +[13732] underclothes: 1 +[13733] undergoing: 1 +[13734] undergrowth: 1 +[13735] underlying: 1 +[13736] understand: 263 +[13737] understand--why: 1 +[13738] understanding: 32 +[13739] understands: 12 +[13740] understood: 89 +[13741] understood--"i: 1 +[13742] undertake: 5 +[13743] undertaken: 5 +[13744] undertaking: 4 +[13745] undertakings: 1 +[13746] undeserved: 2 +[13747] undesigned: 1 +[13748] undeveloped: 1 +[13749] undid: 1 +[13750] undignified: 1 +[13751] undisguised: 1 +[13752] undivided: 2 +[13753] undivided--and: 1 +[13754] undo: 3 +[13755] undoing: 1 +[13756] undone: 1 +[13757] undoubted: 1 +[13758] undoubtedly: 7 +[13759] undress: 1 +[13760] undressed: 5 +[13761] undressing: 2 +[13762] undue: 1 +[13763] undulating: 1 +[13764] une: 7 +[13765] unearned: 1 +[13766] unearthly: 3 +[13767] uneasily: 5 +[13768] uneasiness: 6 +[13769] uneasy: 10 +[13770] unenforceability: 1 +[13771] unequal: 2 +[13772] unequaled: 1 +[13773] unequally: 1 +[13774] uneven: 3 +[13775] unevenly: 1 +[13776] uneventful: 1 +[13777] unexpected: 15 +[13778] unexpectedly: 10 +[13779] unfailing: 2 +[13780] unfair: 7 +[13781] unfair...i: 1 +[13782] unfairness: 1 +[13783] unfaithful: 8 +[13784] unfaithfulness: 3 +[13785] unfamiliar: 3 +[13786] unfastening: 1 +[13787] unfathomable: 1 +[13788] unfavorable: 2 +[13789] unfavorably: 1 +[13790] unfeeling: 1 +[13791] unfeigned: 1 +[13792] unfeminine: 1 +[13793] unfinished: 3 +[13794] unfit: 1 +[13795] unflagging: 3 +[13796] unfold: 1 +[13797] unfolded: 3 +[13798] unfolding: 1 +[13799] unforeseen: 1 +[13800] unfortunate: 1 +[13801] unfortunately: 2 +[13802] unfrequent: 1 +[13803] ungracious: 1 +[13804] unhappily: 1 +[13805] unhappiness: 12 +[13806] unhappiness--no: 1 +[13807] unhappy: 53 +[13808] unharmed: 1 +[13809] unharness: 1 +[13810] unharnessed: 2 +[13811] unharnessing: 1 +[13812] unhasting: 1 +[13813] unhealthily: 1 +[13814] unhesitating: 4 +[13815] unhinged: 1 +[13816] unhooked: 1 +[13817] unhurt: 6 +[13818] unification: 1 +[13819] uniform: 32 +[13820] uniformly: 1 +[13821] uniforms: 10 +[13822] unimpeachable: 2 +[13823] unimportant: 5 +[13824] unintelligible: 2 +[13825] uninteresting: 2 +[13826] uninterrupted: 1 +[13827] union: 4 +[13828] unique: 2 +[13829] unison: 1 +[13830] united: 16 +[13831] uniting: 2 +[13832] unity: 3 +[13833] universal: 9 +[13834] universities: 1 +[13835] university: 20 +[13836] unjust: 8 +[13837] unjustly: 2 +[13838] unkempt: 1 +[13839] unkindness: 1 +[13840] unknown: 19 +[13841] unlawful: 1 +[13842] unlawfully: 1 +[13843] unlearning: 1 +[13844] unless: 6 +[13845] unlighted: 1 +[13846] unlike: 19 +[13847] unlink: 1 +[13848] unlooked: 1 +[13849] unloosed: 1 +[13850] unloved: 1 +[13851] unluckily: 5 +[13852] unlucky: 9 +[13853] unmanly: 1 +[13854] unmarried: 3 +[13855] unmelted: 1 +[13856] unmistakable: 16 +[13857] unmistakably: 31 +[13858] unmoved: 4 +[13859] unmown: 2 +[13860] unnatural: 17 +[13861] unnaturally: 4 +[13862] unnaturalness: 3 +[13863] unnecessary: 6 +[13864] unnoticed: 7 +[13865] unobserved: 3 +[13866] unobtrusively: 2 +[13867] unoccupied: 5 +[13868] unpack: 2 +[13869] unpacked: 2 +[13870] unpacking: 1 +[13871] unpardonable: 4 +[13872] unpardonably: 2 +[13873] unpleasant: 39 +[13874] unpleasantly: 1 +[13875] unpleasantness: 4 +[13876] unprejudiced: 1 +[13877] unprepared: 1 +[13878] unprepossessing: 1 +[13879] unproductive: 1 +[13880] unproductively: 1 +[13881] unprofitably: 1 +[13882] unpunctualities: 1 +[13883] unqualified: 1 +[13884] unquestionable: 1 +[13885] unreasonable: 1 +[13886] unresisting: 1 +[13887] unresting: 1 +[13888] unromantic: 1 +[13889] unsafe: 1 +[13890] unsatisfactory: 4 +[13891] unsatisfied: 2 +[13892] unscrewed: 1 +[13893] unseemly: 8 +[13894] unseen: 10 +[13895] unsettled: 3 +[13896] unshaken: 1 +[13897] unsifted: 1 +[13898] unsolicited: 1 +[13899] unsolved: 1 +[13900] unsound: 1 +[13901] unspoken: 2 +[13902] unstirred: 1 +[13903] unsuccessful: 2 +[13904] unsuitability: 1 +[13905] unsuitable: 3 +[13906] unsullied: 1 +[13907] unsuspecting: 1 +[13908] unsympathetic: 1 +[13909] untarnished: 1 +[13910] untidy: 3 +[13911] untied: 3 +[13912] until: 5 +[13913] unto: 2 +[13914] untouched: 3 +[13915] untrained: 2 +[13916] untrampled: 1 +[13917] untroubled: 1 +[13918] untrue: 1 +[13919] untruly: 1 +[13920] untrussing: 1 +[13921] untruth: 1 +[13922] untying: 1 +[13923] unusual: 5 +[13924] unusually: 1 +[13925] unutterable: 1 +[13926] unutterably: 4 +[13927] unvarying: 2 +[13928] unwarily: 1 +[13929] unwell: 9 +[13930] unwholesome: 1 +[13931] unwilling: 5 +[13932] unwillingly: 3 +[13933] unwithered: 1 +[13934] unwonted: 1 +[13935] unworthily: 1 +[13936] unworthiness: 1 +[13937] unworthy: 4 +[13938] unyoked: 1 +[13939] up: 1306 +[13940] up--it: 1 +[13941] up-to-date: 1 +[13942] up...but: 1 +[13943] up...don't: 1 +[13944] updated: 2 +[13945] upheld: 1 +[13946] uphill: 2 +[13947] upholding: 1 +[13948] upland: 5 +[13949] upland's: 1 +[13950] uplands: 1 +[13951] uplifting: 1 +[13952] upon: 207 +[13953] upper: 6 +[13954] uppermost: 1 +[13955] upright: 3 +[13956] upset: 9 +[13957] upsets: 1 +[13958] upsetting: 4 +[13959] upside: 2 +[13960] upstairs: 28 +[13961] upstarts: 2 +[13962] upward: 1 +[13963] upwards: 11 +[13964] urbanity: 1 +[13965] urge: 3 +[13966] urged: 9 +[13967] urgent: 2 +[13968] urgently: 3 +[13969] urging: 5 +[13970] us: 232 +[13971] us--this: 1 +[13972] us...i: 1 +[13973] use: 73 +[13974] used: 119 +[13975] useful: 7 +[13976] usefulness: 1 +[13977] useless: 15 +[13978] uselessness: 1 +[13979] user: 3 +[13980] ushering: 1 +[13981] using: 14 +[13982] usual: 59 +[13983] usually: 19 +[13984] usurped: 1 +[13985] ut: 1 +[13986] utility: 3 +[13987] utmost: 15 +[13988] utopia: 1 +[13989] utter: 19 +[13990] utterance: 12 +[13991] utterances: 1 +[13992] uttered: 30 +[13993] uttered--"the: 1 +[13994] uttering: 7 +[13995] utterly: 83 +[13996] va: 3 +[13997] vacated: 1 +[13998] vaccinate: 1 +[13999] vacillating: 2 +[14000] vague: 14 +[14001] vaguely: 13 +[14002] vaguest: 1 +[14003] vain: 9 +[14004] vainly: 1 +[14005] valet: 17 +[14006] valley: 1 +[14007] valorous: 1 +[14008] valuable: 3 +[14009] value: 21 +[14010] valued: 1 +[14011] valued--"look: 1 +[14012] values: 1 +[14013] valuing: 1 +[14014] van: 2 +[14015] vanilla: 2 +[14016] vanished: 28 +[14017] vanishes: 1 +[14018] vanishing: 1 +[14019] vanity: 6 +[14020] vanquished: 1 +[14021] vanya's: 1 +[14022] vapor: 1 +[14023] varenka: 140 +[14024] varenka's: 14 +[14025] varenka...i: 1 +[14026] varied: 2 +[14027] variety: 3 +[14028] various: 22 +[14029] variously: 1 +[14030] varnished: 4 +[14031] varvara: 29 +[14032] varvara--but: 1 +[14033] varvara--you: 1 +[14034] varya: 14 +[14035] varyagi: 1 +[14036] vase: 1 +[14037] vases: 1 +[14038] vashtchenkov's: 1 +[14039] vaska: 8 +[14040] vassenka: 61 +[14041] vassenka's: 4 +[14042] vassiliev: 1 +[14043] vassilievitch: 9 +[14044] vassilievna: 1 +[14045] vassiltchikov: 1 +[14046] vassiltchikova: 1 +[14047] vassily: 36 +[14048] vassya's: 1 +[14049] vast: 7 +[14050] vasya: 1 +[14051] vatkovskaya: 1 +[14052] vats: 1 +[14053] vault: 1 +[14054] vaulted: 1 +[14055] vegetable: 1 +[14056] vegetables: 2 +[14057] vegetating: 1 +[14058] vehicle: 2 +[14059] veil: 19 +[14060] veiled: 1 +[14061] veins: 6 +[14062] velvet: 15 +[14063] velvety: 1 +[14064] venden: 3 +[14065] venden's: 1 +[14066] venerable: 1 +[14067] venetian: 1 +[14068] venez: 2 +[14069] vengeance: 2 +[14070] venice: 1 +[14071] venovsky: 3 +[14072] ventilation: 1 +[14073] ventilator: 1 +[14074] venture: 4 +[14075] ventured: 3 +[14076] venturing: 2 +[14077] venus: 3 +[14078] verbal: 1 +[14079] verbose: 1 +[14080] verification: 1 +[14081] verified: 4 +[14082] verify: 3 +[14083] vermin: 2 +[14084] vers: 1 +[14085] verse: 4 +[14086] verses: 3 +[14087] version: 1 +[14088] vertebrae: 1 +[14089] very: 652 +[14090] veslovsky: 104 +[14091] veslovsky's: 4 +[14092] veslovsky...you: 1 +[14093] veslovsky?"--it: 1 +[14094] vespers: 1 +[14095] vestals: 1 +[14096] vestige: 1 +[14097] vestment: 3 +[14098] vestments: 2 +[14099] veteran: 2 +[14100] veterinary: 1 +[14101] vexation: 14 +[14102] vexatious: 1 +[14103] vexed: 17 +[14104] vexing: 2 +[14105] vibration: 1 +[14106] vicar: 1 +[14107] vices: 1 +[14108] vicious: 4 +[14109] viciously: 1 +[14110] victim: 2 +[14111] victim--killed: 1 +[14112] victorious: 1 +[14113] victory: 6 +[14114] vie: 1 +[14115] viel: 1 +[14116] vienna: 1 +[14117] vieux: 1 +[14118] view: 72 +[14119] view--stupid: 1 +[14120] viewed: 2 +[14121] viewing: 1 +[14122] views: 44 +[14123] vigor: 4 +[14124] vigorous: 10 +[14125] vigorous-looking: 1 +[14126] vigorously: 9 +[14127] vile: 4 +[14128] villa: 9 +[14129] village: 35 +[14130] villages: 1 +[14131] villain: 1 +[14132] villains: 1 +[14133] villas: 3 +[14134] vinaigre: 1 +[14135] vindicate: 1 +[14136] vindictive: 2 +[14137] vindictiveness: 2 +[14138] vinegar: 1 +[14139] vinovsky: 1 +[14140] violates: 1 +[14141] violence: 2 +[14142] violent: 13 +[14143] violently: 6 +[14144] violet: 2 +[14145] virtue: 5 +[14146] virtues: 2 +[14147] virtuous: 1 +[14148] virus: 1 +[14149] vis-a-vis: 1 +[14150] visible: 13 +[14151] visibly: 2 +[14152] vision: 6 +[14153] visions: 1 +[14154] visit: 27 +[14155] visited: 5 +[14156] visiting: 3 +[14157] visitor: 23 +[14158] visitors: 34 +[14159] visits: 6 +[14160] vital: 2 +[14161] vitality: 1 +[14162] vite: 1 +[14163] vive: 1 +[14164] vivid: 6 +[14165] vividly: 18 +[14166] vividness: 6 +[14167] vladimir: 2 +[14168] vladimirsky: 1 +[14169] vlassieva: 2 +[14170] vlasyevna: 1 +[14171] vlasyevna,"--this: 1 +[14172] vocation: 3 +[14173] vodka: 16 +[14174] vogue: 1 +[14175] voice: 191 +[14176] voices: 31 +[14177] void: 1 +[14178] volga: 1 +[14179] volgarinov: 3 +[14180] volgarinov's: 3 +[14181] volkov: 1 +[14182] volume: 3 +[14183] volunteer: 1 +[14184] volunteered: 1 +[14185] volunteers: 23 +[14186] vom: 1 +[14187] vorknev: 1 +[14188] vorkuev: 10 +[14189] vorkuev...you: 1 +[14190] vos: 1 +[14191] vote: 10 +[14192] voted: 2 +[14193] votes: 7 +[14194] voting: 5 +[14195] votre: 1 +[14196] vouchsafe: 2 +[14197] vouchsafed: 3 +[14198] vouchsafing: 1 +[14199] vous: 9 +[14200] voyez: 2 +[14201] voytov: 3 +[14202] vozdrem: 1 +[14203] vozdvizhenskoe: 8 +[14204] vrede: 7 +[14205] vronskaya: 4 +[14206] vronskaya's: 2 +[14207] vronsky: 770 +[14208] vronsky's: 85 +[14209] vronsky's--a: 1 +[14210] vronsky--a: 1 +[14211] vronsky--i: 1 +[14212] vronsky--since: 1 +[14213] vronsky--that: 1 +[14214] vronskys: 3 +[14215] vu: 1 +[14216] vulgar: 8 +[14217] vulgar--as: 1 +[14218] vulgarity: 1 +[14219] vulgarize: 1 +[14220] vulgarly: 1 +[14221] vult: 1 +[14222] w: 2 +[14223] wade: 1 +[14224] wafer: 1 +[14225] wag: 1 +[14226] wage-fund: 1 +[14227] wages: 8 +[14228] wagging: 3 +[14229] waging: 1 +[14230] wagner: 2 +[14231] wagon-loads: 2 +[14232] wagonette: 13 +[14233] wagons: 5 +[14234] wags: 1 +[14235] wailed: 1 +[14236] wailing: 1 +[14237] wain: 1 +[14238] waist: 12 +[14239] waistcoat: 12 +[14240] waistcoats: 2 +[14241] waists: 2 +[14242] wait: 66 +[14243] waited: 19 +[14244] waiter: 21 +[14245] waiter's: 1 +[14246] waiters: 8 +[14247] waiters--all: 1 +[14248] waiting: 82 +[14249] waiting-room: 3 +[14250] waitresses: 1 +[14251] wake: 9 +[14252] waked: 18 +[14253] wakes: 1 +[14254] waking: 10 +[14255] walk: 50 +[14256] walk--still: 1 +[14257] walked: 150 +[14258] walking: 64 +[14259] walks: 6 +[14260] wall: 16 +[14261] wallpapers--they're: 1 +[14262] walls: 8 +[14263] waltz: 13 +[14264] waltzed: 1 +[14265] waltzes: 1 +[14266] waltzing: 2 +[14267] wandered: 1 +[14268] wandering: 1 +[14269] wane: 1 +[14270] waned: 1 +[14271] waning: 3 +[14272] want: 229 +[14273] wanted: 172 +[14274] wanted...yes: 1 +[14275] wanting: 13 +[14276] wanton: 1 +[14277] wants: 38 +[14278] war: 24 +[14279] ward: 1 +[14280] wardrobe: 1 +[14281] wards: 2 +[14282] wardship: 4 +[14283] wardships: 1 +[14284] warehouse: 1 +[14285] warfare: 1 +[14286] warily: 3 +[14287] warm: 30 +[14288] warmed: 3 +[14289] warmer: 2 +[14290] warmly: 13 +[14291] warmth: 8 +[14292] warn: 6 +[14293] warned: 2 +[14294] warning: 2 +[14295] warranties: 3 +[14296] warranty: 2 +[14297] warriors: 1 +[14298] wars: 1 +[14299] wary: 3 +[14300] was: 5298 +[14301] was--catholic: 1 +[14302] was...tries: 1 +[14303] wash: 10 +[14304] washed: 18 +[14305] washhouse: 1 +[14306] washing: 9 +[14307] washstand: 2 +[14308] wasn't: 21 +[14309] wasn't...i: 1 +[14310] wasp: 2 +[14311] waste: 9 +[14312] wasted: 13 +[14313] wasted...i'd: 1 +[14314] wastepaper: 1 +[14315] wastes: 1 +[14316] wasting: 8 +[14317] watch: 37 +[14318] watch's: 1 +[14319] watch-chain: 2 +[14320] watched: 20 +[14321] watches: 1 +[14322] watching: 30 +[14323] watchmaker: 2 +[14324] water: 64 +[14325] watering: 3 +[14326] watering-place: 7 +[14327] waters: 9 +[14328] wave: 4 +[14329] waved: 8 +[14330] waver: 1 +[14331] wavered: 3 +[14332] wavering: 3 +[14333] waves: 4 +[14334] waving: 19 +[14335] wax: 5 +[14336] waxing: 1 +[14337] way: 315 +[14338] way's: 1 +[14339] way--a: 1 +[14340] way--the: 2 +[14341] ways: 19 +[14342] we: 456 +[14343] we'd: 4 +[14344] we'll: 49 +[14345] we're: 40 +[14346] we've: 36 +[14347] we--i: 1 +[14348] we--old--with: 1 +[14349] weak: 13 +[14350] weakened: 1 +[14351] weakening: 1 +[14352] weaker: 1 +[14353] weakly: 1 +[14354] weakness: 21 +[14355] weaknesses: 5 +[14356] weal: 3 +[14357] wealth: 13 +[14358] wealthy: 14 +[14359] weaned: 2 +[14360] weapon: 5 +[14361] wear: 2 +[14362] wearers: 1 +[14363] wearied: 1 +[14364] wearily: 2 +[14365] weariness: 12 +[14366] wearing: 24 +[14367] wearisome: 3 +[14368] weary: 23 +[14369] weather: 17 +[14370] web: 6 +[14371] wedding: 26 +[14372] wedding--from: 1 +[14373] wedlock: 1 +[14374] wednesday: 1 +[14375] wee: 2 +[14376] weed: 1 +[14377] weeding: 1 +[14378] weeds: 2 +[14379] week: 16 +[14380] week's: 2 +[14381] week-days: 1 +[14382] weeks: 11 +[14383] weep: 2 +[14384] weeping: 7 +[14385] weibliche: 1 +[14386] weigh: 3 +[14387] weighed: 9 +[14388] weighing: 2 +[14389] weighs: 2 +[14390] weight: 15 +[14391] weights: 2 +[14392] weighty: 8 +[14393] weirdness: 1 +[14394] welcome: 8 +[14395] welcomed: 3 +[14396] welfare: 7 +[14397] well: 627 +[14398] well--and: 1 +[14399] well-being: 1 +[14400] well-bred: 5 +[14401] well-brushed: 1 +[14402] well-built: 2 +[14403] well-cared-for: 1 +[14404] well-combed: 1 +[14405] well-connected: 1 +[14406] well-cut: 1 +[14407] well-directed: 1 +[14408] well-dressed: 1 +[14409] well-fed: 3 +[14410] well-finished: 1 +[14411] well-groomed: 1 +[14412] well-known: 8 +[14413] well-matched: 1 +[14414] well-ordered: 3 +[14415] well-painted: 1 +[14416] well-preserved: 1 +[14417] well-remembered: 1 +[14418] well-swept: 1 +[14419] well-to-do: 3 +[14420] well-washed: 1 +[14421] welling: 1 +[14422] wells: 1 +[14423] wench: 2 +[14424] wench's: 1 +[14425] wenches: 1 +[14426] wenn: 1 +[14427] wenn's: 1 +[14428] went: 660 +[14429] went...to: 1 +[14430] werden: 1 +[14431] were: 1233 +[14432] weren't: 10 +[14433] wertherish: 1 +[14434] west: 2 +[14435] western: 1 +[14436] wet: 28 +[14437] wet-nurse: 8 +[14438] wet-nurse's: 1 +[14439] wetted: 1 +[14440] wetting: 1 +[14441] what: 1676 +[14442] what's: 97 +[14443] what--what: 1 +[14444] what...has: 1 +[14445] what?--eternal: 1 +[14446] whatever: 46 +[14447] whatsoever: 2 +[14448] wheat: 15 +[14449] wheel: 4 +[14450] wheels: 23 +[14451] when: 947 +[14452] when's: 1 +[14453] whence: 7 +[14454] whenever: 10 +[14455] where: 318 +[14456] where's: 6 +[14457] whereabouts: 1 +[14458] wherefore: 2 +[14459] wherein: 1 +[14460] wherever: 6 +[14461] wherewithal: 1 +[14462] whether: 147 +[14463] whetstone: 1 +[14464] whetstones: 1 +[14465] whetted: 1 +[14466] whetting: 4 +[14467] which: 1078 +[14468] which--eyes: 1 +[14469] which--i: 1 +[14470] whiffs: 1 +[14471] while: 330 +[14472] while--not: 1 +[14473] whim: 1 +[14474] whims: 1 +[14475] whimsical: 1 +[14476] whined: 1 +[14477] whines: 1 +[14478] whining: 5 +[14479] whinnying: 1 +[14480] whip: 2 +[14481] whips: 1 +[14482] whir: 3 +[14483] whirled: 1 +[14484] whirling: 7 +[14485] whirring: 1 +[14486] whiskered: 1 +[14487] whiskers: 21 +[14488] whisking: 1 +[14489] whisper: 21 +[14490] whisper...but: 1 +[14491] whispered: 35 +[14492] whispering: 5 +[14493] whistle: 7 +[14494] whistled: 3 +[14495] whistles: 2 +[14496] whistling: 4 +[14497] whit: 1 +[14498] white: 130 +[14499] white-breasted: 1 +[14500] white-headed: 2 +[14501] white-legged: 2 +[14502] white-seal: 1 +[14503] whitebreast: 1 +[14504] whiteness: 1 +[14505] whiter: 2 +[14506] whizzing: 1 +[14507] who: 784 +[14508] who'd: 3 +[14509] who'll: 1 +[14510] who're: 3 +[14511] who's: 24 +[14512] who've: 1 +[14513] who--and: 1 +[14514] who--her: 1 +[14515] whoever: 4 +[14516] whole: 216 +[14517] wholly: 3 +[14518] whom: 196 +[14519] whose: 50 +[14520] whosoever: 1 +[14521] why: 435 +[14522] why--whether: 1 +[14523] wicked: 7 +[14524] wide: 19 +[14525] wide-awake: 1 +[14526] wide-brimmed: 2 +[14527] wide-margined: 1 +[14528] wide-open: 4 +[14529] widely: 1 +[14530] wider: 6 +[14531] widest: 2 +[14532] widow: 3 +[14533] widow's: 1 +[14534] widower: 1 +[14535] wiesbaden: 1 +[14536] wife: 364 +[14537] wife's: 49 +[14538] wife--a: 1 +[14539] wife--and: 1 +[14540] wife--my: 1 +[14541] wild: 18 +[14542] wilderness: 1 +[14543] wildest: 1 +[14544] wilds: 2 +[14545] wiles: 2 +[14546] wilful: 1 +[14547] will: 462 +[14548] will--a: 1 +[14549] willfully: 2 +[14550] willing: 2 +[14551] willow: 5 +[14552] willow-tree: 1 +[14553] wills: 3 +[14554] wilson's: 2 +[14555] wilt: 1 +[14556] win: 5 +[14557] wind: 20 +[14558] winding: 5 +[14559] windmill: 1 +[14560] windmills: 3 +[14561] window: 65 +[14562] window's: 1 +[14563] window--you: 1 +[14564] window-frame: 1 +[14565] window-panes: 1 +[14566] windows: 11 +[14567] wine: 27 +[14568] wine-glass: 1 +[14569] wines: 5 +[14570] wing: 4 +[14571] wings: 13 +[14572] wink: 2 +[14573] winked: 2 +[14574] winking: 4 +[14575] winner: 1 +[14576] winning: 6 +[14577] winning--seventeen: 1 +[14578] winnowed: 1 +[14579] winnowing: 1 +[14580] winter: 40 +[14581] winter's: 1 +[14582] wipe: 2 +[14583] wiped: 4 +[14584] wiping: 7 +[14585] wire: 1 +[14586] wise: 7 +[14587] wish: 43 +[14588] wish...except: 1 +[14589] wished: 35 +[14590] wished...i: 1 +[14591] wishes: 16 +[14592] wishing: 18 +[14593] wit: 4 +[14594] witchcraft: 1 +[14595] with: 3792 +[14596] withdraw: 2 +[14597] withdrawing: 1 +[14598] withdrawn: 1 +[14599] withdrew: 7 +[14600] withers: 1 +[14601] within: 31 +[14602] without: 429 +[14603] witness: 3 +[14604] witnessed: 2 +[14605] wits: 1 +[14606] wittiest: 1 +[14607] wittily: 1 +[14608] witty: 2 +[14609] wives: 8 +[14610] wives--you'd: 1 +[14611] wo: 1 +[14612] wobbling: 2 +[14613] woes: 1 +[14614] woke: 7 +[14615] wolf: 1 +[14616] wolves--everyone: 1 +[14617] woman: 184 +[14618] woman's: 16 +[14619] woman--and: 1 +[14620] woman--no: 1 +[14621] woman--that: 1 +[14622] woman--the: 1 +[14623] womanly: 1 +[14624] women: 124 +[14625] women's: 2 +[14626] women,--at: 1 +[14627] women--god: 1 +[14628] women-folk: 2 +[14629] women-friends: 2 +[14630] womenfolks: 1 +[14631] won: 8 +[14632] won't: 144 +[14633] won't...i: 1 +[14634] wonder: 29 +[14635] wondered: 20 +[14636] wonderful: 17 +[14637] wonderfully: 10 +[14638] wondering: 19 +[14639] wonderingly: 4 +[14640] wonders: 2 +[14641] wood: 10 +[14642] wood-merchant: 1 +[14643] wooded: 1 +[14644] wooden: 4 +[14645] woodland: 1 +[14646] woods: 3 +[14647] wool: 3 +[14648] woolen: 3 +[14649] word: 126 +[14650] word--_son: 1 +[14651] word--on: 1 +[14652] wordless: 1 +[14653] words: 261 +[14654] words--"scoundrel: 1 +[14655] wordy: 1 +[14656] wore: 12 +[14657] work: 302 +[14658] work--anything: 1 +[14659] work--it's: 1 +[14660] workaday: 1 +[14661] worked: 28 +[14662] workers: 1 +[14663] working: 45 +[14664] workings: 1 +[14665] workman: 3 +[14666] workmen: 4 +[14667] workpeople: 1 +[14668] works: 43 +[14669] world: 140 +[14670] world's: 2 +[14671] world--he: 1 +[14672] world--the: 2 +[14673] worldly: 8 +[14674] worm: 2 +[14675] worn: 11 +[14676] worn-out: 1 +[14677] worried: 23 +[14678] worried-looking: 1 +[14679] worries: 11 +[14680] worry: 12 +[14681] worry--in: 1 +[14682] worrying: 11 +[14683] worse: 60 +[14684] worships: 1 +[14685] worst: 16 +[14686] worth: 30 +[14687] worthless: 5 +[14688] worthy: 3 +[14689] would: 1044 +[14690] would--take: 1 +[14691] wouldn't: 38 +[14692] wound: 17 +[14693] wounded: 16 +[14694] wounding: 4 +[14695] wounds: 4 +[14696] wrangling: 2 +[14697] wrap: 1 +[14698] wrapped: 6 +[14699] wrapper: 1 +[14700] wrapping: 6 +[14701] wrappings: 3 +[14702] wrappings--faults: 1 +[14703] wraps: 1 +[14704] wrath: 5 +[14705] wrathful: 1 +[14706] wrathful-looking: 1 +[14707] wrathfully: 5 +[14708] wreath: 4 +[14709] wreathed: 1 +[14710] wreck: 2 +[14711] wrecking: 1 +[14712] wretch: 2 +[14713] wretched: 21 +[14714] wretchedest: 1 +[14715] wretchedness: 3 +[14716] wretchedness...or: 1 +[14717] wretches: 1 +[14718] wriggling: 2 +[14719] wring: 1 +[14720] wrinkled: 5 +[14721] wrinkles: 2 +[14722] wrinkling: 1 +[14723] wrist: 8 +[14724] wrists: 1 +[14725] write: 44 +[14726] writer: 3 +[14727] writer's: 2 +[14728] writers: 1 +[14729] writes: 10 +[14730] writing: 39 +[14731] writing-table: 5 +[14732] writing-tables: 1 +[14733] written: 31 +[14734] wrong: 88 +[14735] wrong--shameful: 1 +[14736] wronged: 3 +[14737] wrongly: 7 +[14738] wrongs: 1 +[14739] wrote: 53 +[14740] wrought: 2 +[14741] wrung: 1 +[14742] wry: 2 +[14743] wurt: 1 +[14744] www.gutenberg.net: 3 +[14745] wünscht: 1 +[14746] xxvii: 1 +[14747] y: 4 +[14748] yacht: 1 +[14749] yard: 9 +[14750] yards: 8 +[14751] yashvin: 64 +[14752] yashvin's: 4 +[14753] yashvin--a: 1 +[14754] yausky: 1 +[14755] yawn: 6 +[14756] yawned: 2 +[14757] yawning: 3 +[14758] year: 68 +[14759] year's: 4 +[14760] year--the: 1 +[14761] year--was: 1 +[14762] year--which: 1 +[14763] yearling: 1 +[14764] yearly: 1 +[14765] yearnings: 1 +[14766] years: 84 +[14767] yegor: 11 +[14768] yegorov: 1 +[14769] yegorushka: 1 +[14770] yeliseev's: 1 +[14771] yellow: 15 +[14772] yellow-green: 1 +[14773] yellow-red: 1 +[14774] yellowish: 1 +[14775] yelping: 1 +[14776] yermil: 1 +[14777] yermilin: 1 +[14778] yes: 529 +[14779] yes--yes--yes: 1 +[14780] yes--you're: 1 +[14781] yes...just: 1 +[14782] yes...no: 1 +[14783] yes...oh: 1 +[14784] yesterday: 66 +[14785] yesterday's: 5 +[14786] yesterday--he: 1 +[14787] yet: 142 +[14788] yet--to: 1 +[14789] yet...and: 1 +[14790] yevgeney: 1 +[14791] yevgenyevna: 6 +[14792] yield: 5 +[14793] yielded: 7 +[14794] yielding: 1 +[14795] yields: 1 +[14796] yoke: 3 +[14797] yonder: 3 +[14798] you: 3035 +[14799] you'd: 22 +[14800] you'll: 53 +[14801] you're: 176 +[14802] you've: 88 +[14803] you--and: 1 +[14804] you--do: 1 +[14805] you--i: 1 +[14806] you--she: 1 +[14807] you--that: 1 +[14808] you--to: 1 +[14809] you--two: 1 +[14810] you--yes: 1 +[14811] you...and: 1 +[14812] you...at: 1 +[14813] you...but: 1 +[14814] you...grisha: 1 +[14815] you...no: 1 +[14816] you...not: 1 +[14817] you...with: 1 +[14818] you...you: 2 +[14819] you?--though: 1 +[14820] young: 207 +[14821] young-looking: 1 +[14822] younger: 24 +[14823] youngest: 6 +[14824] youngish: 3 +[14825] your: 528 +[14826] yours: 12 +[14827] yourself: 61 +[14828] yourselves: 2 +[14829] youth: 30 +[14830] youthful: 7 +[14831] youthful-looking: 1 +[14832] youthfulness--positively: 1 +[14833] youths: 1 +[14834] yury: 1 +[14835] zahar: 1 +[14836] zaraisky: 4 +[14837] zeal: 3 +[14838] zealously: 1 +[14839] zest: 1 +[14840] zhivahov: 1 +[14841] zigzag: 1 +[14842] zipporah: 1 +[14843] znamenka: 1 +[14844] zoological: 2 +[14845] zoology: 2 +[14846] zu: 2 +[14847] À: 1 +[14848] Ça: 2 +[14849] à: 11 +[14850] ça: 2 +[14851] écoles: 1 +[14852] été: 1 +[14853] être: 1 +[14854] the: 1 diff --git a/sequential.cpp b/sequential.cpp index d3d5440..7cf648b 100644 --- a/sequential.cpp +++ b/sequential.cpp @@ -10,13 +10,23 @@ using namespace std; void process_word(string &w) { - // Remove punctuation at beginning - while (!w.empty() && ispunct(w[0])) { - w.erase(0, 1); + // Remove punctuation and non-ascii chars at beginning + while (!w.empty()) { + signed char c = w.front(); + if (c < 0 || ispunct(c)) { + w.erase(0, 1); + continue; + } + break; } - // Remove punctuation at end - while (!w.empty() && ispunct(w[w.size() - 1])) { - w.pop_back(); + // Remove punctuation and non-ascii chars at end + while (!w.empty()) { + signed char c = w.back(); + if (c < 0 || ispunct(c)) { + w.pop_back(); + continue; + } + break; } // Convert all letters to lowercase for (size_t i = 0; i < w.length(); ++i) { @@ -28,19 +38,25 @@ void process_word(string &w) { int main(int argc, char* argv[]) { if (argc < 2) { - fprintf(stderr, "usage: %s \n", argv[0]); + fprintf(stderr, "usage: %s \n", argv[0]); return 1; } + vector> raw_tuples; + size_t file_word_count = 0; + double start, end; start = omp_get_wtime(); + // File reading step - ifstream fin(argv[1]); - if (!fin) { - fprintf(stderr, "error: unable to open input file: %s\n", argv[1]); - return 1; - } + size_t f_count = 1; + while (argv[f_count]) { + ifstream fin(argv[f_count]); + if (!fin) { + fprintf(stderr, "error: unable to open input file: %s\n", argv[f_count]); + return 1; + } string word; vector> raw_tuples; @@ -51,7 +67,7 @@ int main(int argc, char* argv[]) { // Map step if (!word.empty()) { // avoid pushing empty strings file_word_count++; - raw_tuples.push_back(pair(word, 1)); + raw_tuples.push_back(make_pair(word, 1)); } } @@ -68,7 +84,7 @@ int main(int argc, char* argv[]) { for (size_t i = 0; i < entry.second.size(); ++i) { sum += entry.second[i]; } - counts.push_back(pair(entry.first, sum)); + counts.push_back(make_pair(entry.first, sum)); } // Sort in alphabetical order