[init] init repo
Browse files- README.md +140 -0
- config.yaml +33 -0
- dataset.tsv +15 -0
- global_cmvn +1 -0
- paper.pdf +0 -0
- pytorch_model.bin +3 -0
- vocab.txt +4990 -0
README.md
CHANGED
@@ -1,3 +1,143 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
license: cc-by-nc-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language: en
|
3 |
+
datasets:
|
4 |
+
- librispeech
|
5 |
+
metrics:
|
6 |
+
- wer
|
7 |
+
pipeline_tag: automatic-speech-recognition
|
8 |
+
tags:
|
9 |
+
- transcription
|
10 |
+
- audio
|
11 |
+
- speech
|
12 |
+
- chunkformer
|
13 |
+
- asr
|
14 |
+
- automatic-speech-recognition
|
15 |
+
- long-form transcription
|
16 |
+
- librispeech
|
17 |
license: cc-by-nc-4.0
|
18 |
+
model-index:
|
19 |
+
- name: ChunkFormer-Large-En-Libri-960h
|
20 |
+
results:
|
21 |
+
- task:
|
22 |
+
name: Speech Recognition
|
23 |
+
type: automatic-speech-recognition
|
24 |
+
dataset:
|
25 |
+
name: test-clean
|
26 |
+
type: librispeech
|
27 |
+
args: en
|
28 |
+
metrics:
|
29 |
+
- name: Test WER
|
30 |
+
type: wer
|
31 |
+
value: 2.69
|
32 |
+
- task:
|
33 |
+
name: Speech Recognition
|
34 |
+
type: automatic-speech-recognition
|
35 |
+
dataset:
|
36 |
+
name: test-other
|
37 |
+
type: librispeech
|
38 |
+
args: en
|
39 |
+
metrics:
|
40 |
+
- name: Test WER
|
41 |
+
type: wer
|
42 |
+
value: 6.89
|
43 |
---
|
44 |
+
|
45 |
+
# **ChunkFormer-Large-En-Libri-960h: Pretrained ChunkFormer-Large on 960 hours of LibriSpeech dataset**
|
46 |
+
|
47 |
+
[](https://creativecommons.org/licenses/by-nc/4.0/)
|
48 |
+
[](https://github.com/khanld/chunkformer)
|
49 |
+
[](paper.pdf)
|
50 |
+
|
51 |
+
---
|
52 |
+
## Table of contents
|
53 |
+
1. [Model Description](#description)
|
54 |
+
2. [Documentation and Implementation](#implementation)
|
55 |
+
3. [Benchmark Results](#benchmark)
|
56 |
+
4. [Usage](#usage)
|
57 |
+
6. [Citation](#citation)
|
58 |
+
7. [Contact](#contact)
|
59 |
+
|
60 |
+
---
|
61 |
+
<a name = "description" ></a>
|
62 |
+
## Model Description
|
63 |
+
**ChunkFormer-Large-En-Libri-960h** is an English Automatic Speech Recognition (ASR) model based on the **ChunkFormer** architecture, introduced at **ICASSP 2025**. The model has been fine-tuned on 960 hours of LibriSpeech, a widely-used dataset for ASR research.
|
64 |
+
|
65 |
+
---
|
66 |
+
<a name = "implementation" ></a>
|
67 |
+
## Documentation and Implementation
|
68 |
+
The [Documentation]() and [Implementation](https://github.com/khanld/chunkformer) of ChunkFormer are publicly available.
|
69 |
+
|
70 |
+
---
|
71 |
+
<a name = "benchmark" ></a>
|
72 |
+
## Benchmark Results
|
73 |
+
We evaluate the models using **Word Error Rate (WER)**. To ensure a fair comparison, all models are trained exclusively with the [**WENET**](https://github.com/wenet-e2e/wenet) framework.
|
74 |
+
|
75 |
+
| STT | Model | Test-Clean | Test-Other | Avg. |
|
76 |
+
|-----|-----------------------|------------|------------|------ |
|
77 |
+
| 1 | **ChunkFormer** | 2.69 | 6.89 | 4.79 |
|
78 |
+
| 2 | **Efficient Conformer** | 2.71 | 6.95 | 4.83 |
|
79 |
+
| 3 | **Conformer** | 2.77 | 6.93 | 4.85 |
|
80 |
+
| 4 | **Squeezeformer** | 2.87 | 7.16 | 5.02 |
|
81 |
+
|
82 |
+
|
83 |
+
|
84 |
+
---
|
85 |
+
<a name = "usage" ></a>
|
86 |
+
## Quick Usage
|
87 |
+
To use the ChunkFormer model for English Automatic Speech Recognition, follow these steps:
|
88 |
+
|
89 |
+
1. **Download the ChunkFormer Repository**
|
90 |
+
```bash
|
91 |
+
git clone https://github.com/khanld/chunkformer.git
|
92 |
+
cd chunkformer
|
93 |
+
pip install -r requirements.txt
|
94 |
+
```
|
95 |
+
2. **Download the Model Checkpoint from Hugging Face**
|
96 |
+
```bash
|
97 |
+
pip install huggingface_hub
|
98 |
+
huggingface-cli download khanhld/chunkformer-large-en-libri-960h --local-dir "./chunkformer-large-en-libri-960h"
|
99 |
+
```
|
100 |
+
or
|
101 |
+
```bash
|
102 |
+
git lfs install
|
103 |
+
git clone https://huggingface.co/khanhld/chunkformer-large-en-libri-960h
|
104 |
+
```
|
105 |
+
This will download the model checkpoint to the checkpoints folder inside your chunkformer directory.
|
106 |
+
|
107 |
+
3. **Run the model**
|
108 |
+
```bash
|
109 |
+
python decode.py \
|
110 |
+
--model_checkpoint path/to/local/chunkformer-large-en-libri-960h \
|
111 |
+
--long_form_audio path/to/audio.wav \
|
112 |
+
--max_duration 14400 \ #in second, default is 1800
|
113 |
+
--chunk_size 64 \
|
114 |
+
--left_context_size 128 \
|
115 |
+
--right_context_size 128
|
116 |
+
```
|
117 |
+
**Advanced Usage** can be found [HERE](https://github.com/khanld/chunkformer/tree/main?tab=readme-ov-file#usage)
|
118 |
+
|
119 |
+
|
120 |
+
---
|
121 |
+
<a name = "citation" ></a>
|
122 |
+
## Citation
|
123 |
+
If you use this work in your research, please cite:
|
124 |
+
|
125 |
+
```bibtex
|
126 |
+
@inproceedings{chunkformer,
|
127 |
+
title={ChunkFormer: Masked Chunking Conformer For Long-Form Speech Transcription},
|
128 |
+
author={Khanh Le, Tuan Vu Ho, Dung Tran and Duc Thanh Chau},
|
129 |
+
booktitle={ICASSP},
|
130 |
+
year={2025}
|
131 |
+
}
|
132 |
+
```
|
133 |
+
|
134 |
+
---
|
135 |
+
<a name = "contact"></a>
|
136 |
+
## Contact
|
137 | |
138 |
+
- [](https://github.com/khanld)
|
139 |
+
- [](https://www.linkedin.com/in/khanhld257/)
|
140 |
+
|
141 |
+
|
142 |
+
|
143 |
+
|
config.yaml
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
encoder: chunkformer
|
2 |
+
is_json_cmvn: true
|
3 |
+
cmvn_file: chunkformer-large-en/global_cmvn
|
4 |
+
input_dim: 80
|
5 |
+
output_dim: 4990
|
6 |
+
|
7 |
+
encoder_conf:
|
8 |
+
output_size: 512 # dimension of attention
|
9 |
+
attention_heads: 8
|
10 |
+
linear_units: 2048 # the number of units of position-wise feed forward
|
11 |
+
num_blocks: 17 # the number of encoder blocks
|
12 |
+
dropout_rate: 0.1
|
13 |
+
positional_dropout_rate: 0.1
|
14 |
+
attention_dropout_rate: 0.1
|
15 |
+
input_layer: 'depthwise' # encoder input type, you can chose conv2d, conv2d6 and conv2d8
|
16 |
+
normalize_before: true
|
17 |
+
cnn_module_kernel: 15
|
18 |
+
use_cnn_module: true
|
19 |
+
activation_type: 'swish'
|
20 |
+
pos_enc_layer_type: 'stream_rel_pos'
|
21 |
+
selfattention_layer_type: 'stream_rel_selfattn'
|
22 |
+
causal: false
|
23 |
+
use_dynamic_chunk: false
|
24 |
+
use_limited_chunk: false
|
25 |
+
use_context_hint_chunk: false
|
26 |
+
right_context_probs: [0.75]
|
27 |
+
right_context_sizes: [128, 128, 128]
|
28 |
+
limited_decoding_chunk_sizes: [64, 128, 256]
|
29 |
+
limited_left_chunk_sizes: [128, 256, 128]
|
30 |
+
cnn_module_norm: 'layer_norm' # using nn.LayerNorm makes model converge faster
|
31 |
+
use_dynamic_left_chunk: false
|
32 |
+
use_dynamic_conv: true
|
33 |
+
freeze_subsampling_layer: false
|
dataset.tsv
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
data Estimated hour Link
|
3 |
+
AILAB-VNUHCM/vivos 15 https://huggingface.co/datasets/AILAB-VNUHCM/vivos
|
4 |
+
doof-ferb/vlsp2020_vinai_100h 100 https://huggingface.co/datasets/doof-ferb/vlsp2020_vinai_100h
|
5 |
+
doof-ferb/fpt_fosd 100 https://huggingface.co/datasets/doof-ferb/fpt_fosd
|
6 |
+
doof-ferb/infore1_25hours 25 https://huggingface.co/datasets/doof-ferb/infore1_25hours
|
7 |
+
linhtran92/viet_bud500 500 https://huggingface.co/datasets/linhtran92/viet_bud500
|
8 |
+
doof-ferb/LSVSC 100 https://huggingface.co/datasets/doof-ferb/LSVSC
|
9 |
+
doof-ferb/vais1000 2 https://huggingface.co/datasets/doof-ferb/vais1000
|
10 |
+
doof-ferb/VietMed_labeled 3 https://huggingface.co/datasets/doof-ferb/VietMed_labeled
|
11 |
+
NhutP/VSV-1100 1100 https://huggingface.co/datasets/NhutP/VSV-1100
|
12 |
+
doof-ferb/Speech-MASSIVE_vie 1 https://huggingface.co/datasets/doof-ferb/Speech-MASSIVE_vie
|
13 |
+
doof-ferb/BibleMMS_vie 1 https://huggingface.co/datasets/doof-ferb/BibleMMS_vie
|
14 |
+
capleaf/viVoice 1000 https://huggingface.co/datasets/capleaf/viVoice
|
15 |
+
linhtran92/viet_youtube_asr_corpus_v2 100 https://huggingface.co/datasets/linhtran92/viet_youtube_asr_corpus_v2
|
global_cmvn
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"mean_stat": [3434119680.0, 3568381952.0, 3832807424.0, 4080342784.0, 4305885184.0, 4462120448.0, 4547404800.0, 4550051840.0, 4544064512.0, 4521095168.0, 4578125312.0, 4635887616.0, 4731517440.0, 4797233152.0, 4814841344.0, 4831283200.0, 4827689984.0, 4797329920.0, 4812083712.0, 4711990272.0, 4630183424.0, 4674857472.0, 4590486016.0, 4623380992.0, 4589602304.0, 4616807424.0, 4582350336.0, 4611138560.0, 4604939264.0, 4618679296.0, 4638089216.0, 4657904640.0, 4695759360.0, 4773794304.0, 4822946816.0, 4842792448.0, 4883296768.0, 4920815104.0, 4960315392.0, 4950962688.0, 4990208000.0, 4974529536.0, 5001054720.0, 4997782528.0, 5016528384.0, 5044737536.0, 5074694656.0, 5107784192.0, 5132635136.0, 5151592448.0, 5154454528.0, 5158597632.0, 5173139968.0, 5180575744.0, 5170579968.0, 5170140672.0, 5168843264.0, 5166371328.0, 5167736320.0, 5163300352.0, 5168896000.0, 5148725760.0, 5107189760.0, 5076585984.0, 5043360768.0, 5010366976.0, 4976523264.0, 4942435840.0, 4914770944.0, 4895716864.0, 4873939456.0, 4865753600.0, 4864621568.0, 4862510080.0, 4851490304.0, 4832770048.0, 4817650176.0, 4780095488.0, 4749602816.0, 4714272256.0], "var_stat": [38744154112.0, 42121637888.0, 48975306752.0, 55209926656.0, 61412601856.0, 65994989568.0, 68673089536.0, 68914135040.0, 68496445440.0, 67543150592.0, 68974698496.0, 70661701632.0, 73430474752.0, 75303518208.0, 75734212608.0, 76067069952.0, 75796799488.0, 74794516480.0, 75031715840.0, 72032272384.0, 69606580224.0, 70614802432.0, 68128825344.0, 68808753152.0, 67727708160.0, 68278140928.0, 67238391808.0, 67912241152.0, 67717263360.0, 68051533824.0, 68526632960.0, 69010612224.0, 69852127232.0, 71464189952.0, 72885796864.0, 74002489344.0, 75181293568.0, 76229468160.0, 77330317312.0, 77022167040.0, 78095425536.0, 77585006592.0, 78272274432.0, 78178697216.0, 78745796608.0, 79611142144.0, 80568041472.0, 81624424448.0, 82390720512.0, 82923773952.0, 82929786880.0, 83062136832.0, 83449995264.0, 83680870400.0, 83348676608.0, 83294863360.0, 83238567936.0, 83165421568.0, 83203227648.0, 83056885760.0, 83107282944.0, 82345377792.0, 81312284672.0, 80394641408.0, 79387688960.0, 78386380800.0, 77348044800.0, 76360499200.0, 75564752896.0, 74965450752.0, 74340663296.0, 74051706880.0, 73981829120.0, 73901506560.0, 73556172800.0, 72952545280.0, 72468865024.0, 71496556544.0, 70676078592.0, 69712977920.0], "frame_num": 345484372}
|
paper.pdf
ADDED
Binary file (800 kB). View file
|
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:015c879bbae04ef50b668bf6b54ae0777c9b461a2fa4db9ab485ef555d10cb04
|
3 |
+
size 593420152
|
vocab.txt
ADDED
@@ -0,0 +1,4990 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<blank> 0
|
2 |
+
<unk> 1
|
3 |
+
' 2
|
4 |
+
▁ 3
|
5 |
+
▁a 4
|
6 |
+
a 5
|
7 |
+
▁ab 6
|
8 |
+
ab 7
|
9 |
+
▁abandon 8
|
10 |
+
abel 9
|
11 |
+
abeth 10
|
12 |
+
ability 11
|
13 |
+
▁able 12
|
14 |
+
able 13
|
15 |
+
ables 14
|
16 |
+
ably 15
|
17 |
+
▁abo 16
|
18 |
+
▁about 17
|
19 |
+
▁above 18
|
20 |
+
▁abs 19
|
21 |
+
▁absence 20
|
22 |
+
▁absolute 21
|
23 |
+
▁absolutely 22
|
24 |
+
▁absor 23
|
25 |
+
▁absurd 24
|
26 |
+
▁ac 25
|
27 |
+
ac 26
|
28 |
+
▁acc 27
|
29 |
+
▁accept 28
|
30 |
+
▁accepted 29
|
31 |
+
▁accident 30
|
32 |
+
▁accom 31
|
33 |
+
▁accompan 32
|
34 |
+
▁accompanied 33
|
35 |
+
▁accompl 34
|
36 |
+
▁accord 35
|
37 |
+
▁according 36
|
38 |
+
▁accordingly 37
|
39 |
+
▁account 38
|
40 |
+
▁accustomed 39
|
41 |
+
ace 40
|
42 |
+
aced 41
|
43 |
+
aces 42
|
44 |
+
ach 43
|
45 |
+
ached 44
|
46 |
+
achel 45
|
47 |
+
acher 46
|
48 |
+
aches 47
|
49 |
+
aching 48
|
50 |
+
acing 49
|
51 |
+
acious 50
|
52 |
+
acity 51
|
53 |
+
▁ack 52
|
54 |
+
ack 53
|
55 |
+
acked 54
|
56 |
+
▁acknow 55
|
57 |
+
acks 56
|
58 |
+
acle 57
|
59 |
+
acles 58
|
60 |
+
▁acqu 59
|
61 |
+
▁acquaint 60
|
62 |
+
▁acquaintance 61
|
63 |
+
▁acquainted 62
|
64 |
+
▁across 63
|
65 |
+
▁act 64
|
66 |
+
act 65
|
67 |
+
▁action 66
|
68 |
+
action 67
|
69 |
+
▁actions 68
|
70 |
+
▁active 69
|
71 |
+
▁actual 70
|
72 |
+
▁actually 71
|
73 |
+
acy 72
|
74 |
+
▁ad 73
|
75 |
+
ad 74
|
76 |
+
▁adam 75
|
77 |
+
▁add 76
|
78 |
+
add 77
|
79 |
+
▁added 78
|
80 |
+
▁addition 79
|
81 |
+
▁address 80
|
82 |
+
▁addressed 81
|
83 |
+
ade 82
|
84 |
+
aded 83
|
85 |
+
ades 84
|
86 |
+
ading 85
|
87 |
+
▁adj 86
|
88 |
+
▁adm 87
|
89 |
+
▁admin 88
|
90 |
+
▁admir 89
|
91 |
+
▁admiration 90
|
92 |
+
▁admit 91
|
93 |
+
▁admitted 92
|
94 |
+
▁adop 93
|
95 |
+
▁adv 94
|
96 |
+
▁advance 95
|
97 |
+
▁advanced 96
|
98 |
+
▁advant 97
|
99 |
+
▁advantage 98
|
100 |
+
▁advent 99
|
101 |
+
▁adventure 100
|
102 |
+
▁advice 101
|
103 |
+
ady 102
|
104 |
+
▁af 103
|
105 |
+
af 104
|
106 |
+
▁aff 105
|
107 |
+
aff 106
|
108 |
+
▁affair 107
|
109 |
+
▁affairs 108
|
110 |
+
▁affect 109
|
111 |
+
▁affected 110
|
112 |
+
▁affection 111
|
113 |
+
▁afford 112
|
114 |
+
▁afraid 113
|
115 |
+
▁after 114
|
116 |
+
▁aftern 115
|
117 |
+
▁afternoon 116
|
118 |
+
▁afterward 117
|
119 |
+
▁afterwards 118
|
120 |
+
▁ag 119
|
121 |
+
ag 120
|
122 |
+
▁again 121
|
123 |
+
▁against 122
|
124 |
+
▁age 123
|
125 |
+
age 124
|
126 |
+
aged 125
|
127 |
+
ager 126
|
128 |
+
▁ages 127
|
129 |
+
ages 128
|
130 |
+
agger 129
|
131 |
+
agn 130
|
132 |
+
▁ago 131
|
133 |
+
▁agre 132
|
134 |
+
▁agree 133
|
135 |
+
▁agreeable 134
|
136 |
+
▁agreed 135
|
137 |
+
ague 136
|
138 |
+
▁ah 137
|
139 |
+
ah 138
|
140 |
+
▁ahead 139
|
141 |
+
▁aid 140
|
142 |
+
ail 141
|
143 |
+
ailed 142
|
144 |
+
ails 143
|
145 |
+
▁aim 144
|
146 |
+
aim 145
|
147 |
+
aimed 146
|
148 |
+
▁ain 147
|
149 |
+
ain 148
|
150 |
+
ained 149
|
151 |
+
aining 150
|
152 |
+
ains 151
|
153 |
+
aint 152
|
154 |
+
▁air 153
|
155 |
+
air 154
|
156 |
+
airs 155
|
157 |
+
ak 156
|
158 |
+
ake 157
|
159 |
+
aked 158
|
160 |
+
aken 159
|
161 |
+
aker 160
|
162 |
+
akes 161
|
163 |
+
aking 162
|
164 |
+
▁al 163
|
165 |
+
al 164
|
166 |
+
▁alar 165
|
167 |
+
▁alarm 166
|
168 |
+
▁alas 167
|
169 |
+
ald 168
|
170 |
+
▁ale 169
|
171 |
+
ale 170
|
172 |
+
aled 171
|
173 |
+
ales 172
|
174 |
+
▁alex 173
|
175 |
+
▁alexand 174
|
176 |
+
▁ali 175
|
177 |
+
▁alice 176
|
178 |
+
aling 177
|
179 |
+
ality 178
|
180 |
+
▁alive 179
|
181 |
+
alk 180
|
182 |
+
▁all 181
|
183 |
+
all 182
|
184 |
+
▁allow 183
|
185 |
+
▁allowed 184
|
186 |
+
ally 185
|
187 |
+
▁almost 186
|
188 |
+
▁alone 187
|
189 |
+
▁along 188
|
190 |
+
▁aloud 189
|
191 |
+
alous 190
|
192 |
+
▁already 191
|
193 |
+
als 192
|
194 |
+
▁also 193
|
195 |
+
▁alt 194
|
196 |
+
alt 195
|
197 |
+
▁alth 196
|
198 |
+
alth 197
|
199 |
+
▁although 198
|
200 |
+
▁alto 199
|
201 |
+
▁altogether 200
|
202 |
+
▁always 201
|
203 |
+
aly 202
|
204 |
+
▁am 203
|
205 |
+
am 204
|
206 |
+
▁amaz 205
|
207 |
+
▁amb 206
|
208 |
+
amb 207
|
209 |
+
amber 208
|
210 |
+
ame 209
|
211 |
+
amed 210
|
212 |
+
ament 211
|
213 |
+
▁americ 212
|
214 |
+
▁america 213
|
215 |
+
▁american 214
|
216 |
+
ames 215
|
217 |
+
▁amid 216
|
218 |
+
aming 217
|
219 |
+
amm 218
|
220 |
+
▁among 219
|
221 |
+
▁amongst 220
|
222 |
+
▁amount 221
|
223 |
+
amp 222
|
224 |
+
ams 223
|
225 |
+
▁amuse 224
|
226 |
+
▁an 225
|
227 |
+
an 226
|
228 |
+
anc 227
|
229 |
+
ance 228
|
230 |
+
anced 229
|
231 |
+
ances 230
|
232 |
+
anch 231
|
233 |
+
anches 232
|
234 |
+
▁ancient 233
|
235 |
+
ancing 234
|
236 |
+
ancy 235
|
237 |
+
▁and 236
|
238 |
+
and 237
|
239 |
+
andon 238
|
240 |
+
▁andrew 239
|
241 |
+
ane 240
|
242 |
+
▁ang 241
|
243 |
+
ang 242
|
244 |
+
▁ange 243
|
245 |
+
ange 244
|
246 |
+
anged 245
|
247 |
+
▁angel 246
|
248 |
+
▁anger 247
|
249 |
+
anger 248
|
250 |
+
angers 249
|
251 |
+
anges 250
|
252 |
+
anging 251
|
253 |
+
▁angry 252
|
254 |
+
▁anim 253
|
255 |
+
▁animal 254
|
256 |
+
▁animals 255
|
257 |
+
ank 256
|
258 |
+
▁ann 257
|
259 |
+
ann 258
|
260 |
+
▁anne 259
|
261 |
+
▁announced 260
|
262 |
+
▁another 261
|
263 |
+
▁ans 262
|
264 |
+
ans 263
|
265 |
+
▁answer 264
|
266 |
+
▁answered 265
|
267 |
+
▁ant 266
|
268 |
+
ant 267
|
269 |
+
anted 268
|
270 |
+
antic 269
|
271 |
+
antly 270
|
272 |
+
ants 271
|
273 |
+
▁anx 272
|
274 |
+
▁anxiety 273
|
275 |
+
▁anxious 274
|
276 |
+
▁any 275
|
277 |
+
▁anybody 276
|
278 |
+
▁anyone 277
|
279 |
+
▁anything 278
|
280 |
+
▁anywhere 279
|
281 |
+
▁ap 280
|
282 |
+
ap 281
|
283 |
+
▁apart 282
|
284 |
+
▁apartment 283
|
285 |
+
ape 284
|
286 |
+
aped 285
|
287 |
+
▁app 286
|
288 |
+
app 287
|
289 |
+
▁apparent 288
|
290 |
+
▁apparently 289
|
291 |
+
▁appe 290
|
292 |
+
▁appear 291
|
293 |
+
▁appearance 292
|
294 |
+
▁appeared 293
|
295 |
+
▁appears 294
|
296 |
+
apped 295
|
297 |
+
▁appet 296
|
298 |
+
▁appl 297
|
299 |
+
▁appointed 298
|
300 |
+
▁appre 299
|
301 |
+
▁appreci 300
|
302 |
+
▁appro 301
|
303 |
+
▁approach 302
|
304 |
+
▁approached 303
|
305 |
+
▁approaching 304
|
306 |
+
▁apr 305
|
307 |
+
aps 306
|
308 |
+
▁ar 307
|
309 |
+
ar 308
|
310 |
+
▁ara 309
|
311 |
+
ara 310
|
312 |
+
▁arch 311
|
313 |
+
arch 312
|
314 |
+
ard 313
|
315 |
+
ards 314
|
316 |
+
▁are 315
|
317 |
+
are 316
|
318 |
+
ared 317
|
319 |
+
arent 318
|
320 |
+
arer 319
|
321 |
+
arest 320
|
322 |
+
aret 321
|
323 |
+
arf 322
|
324 |
+
▁arg 323
|
325 |
+
▁argument 324
|
326 |
+
aries 325
|
327 |
+
arily 326
|
328 |
+
aring 327
|
329 |
+
▁arist 328
|
330 |
+
ark 329
|
331 |
+
▁arm 330
|
332 |
+
▁armed 331
|
333 |
+
▁arms 332
|
334 |
+
▁army 333
|
335 |
+
▁arose 334
|
336 |
+
▁around 335
|
337 |
+
▁arr 336
|
338 |
+
▁arrange 337
|
339 |
+
▁arranged 338
|
340 |
+
▁arrest 339
|
341 |
+
▁arri 340
|
342 |
+
▁arrival 341
|
343 |
+
▁arrived 342
|
344 |
+
ars 343
|
345 |
+
arse 344
|
346 |
+
▁art 345
|
347 |
+
art 346
|
348 |
+
artagnan 347
|
349 |
+
▁arth 348
|
350 |
+
▁arthur 349
|
351 |
+
▁artic 350
|
352 |
+
ary 351
|
353 |
+
▁as 352
|
354 |
+
as 353
|
355 |
+
asant 354
|
356 |
+
asc 355
|
357 |
+
▁asce 356
|
358 |
+
ase 357
|
359 |
+
ased 358
|
360 |
+
ases 359
|
361 |
+
▁ash 360
|
362 |
+
ash 361
|
363 |
+
▁ashamed 362
|
364 |
+
ashed 363
|
365 |
+
ashing 364
|
366 |
+
▁aside 365
|
367 |
+
asing 366
|
368 |
+
▁ask 367
|
369 |
+
ask 368
|
370 |
+
▁asked 369
|
371 |
+
▁asking 370
|
372 |
+
▁asleep 371
|
373 |
+
asm 372
|
374 |
+
ason 373
|
375 |
+
asons 374
|
376 |
+
asp 375
|
377 |
+
asped 376
|
378 |
+
▁ass 377
|
379 |
+
ass 378
|
380 |
+
▁assemb 379
|
381 |
+
▁assert 380
|
382 |
+
▁assist 381
|
383 |
+
▁assistance 382
|
384 |
+
▁associ 383
|
385 |
+
▁assure 384
|
386 |
+
▁assured 385
|
387 |
+
▁ast 386
|
388 |
+
ast 387
|
389 |
+
aster 388
|
390 |
+
astic 389
|
391 |
+
▁aston 390
|
392 |
+
▁astonished 391
|
393 |
+
▁astonishment 392
|
394 |
+
asure 393
|
395 |
+
▁at 394
|
396 |
+
at 395
|
397 |
+
atched 396
|
398 |
+
▁ate 397
|
399 |
+
ate 398
|
400 |
+
ated 399
|
401 |
+
ately 400
|
402 |
+
ates 401
|
403 |
+
ath 402
|
404 |
+
ather 403
|
405 |
+
athered 404
|
406 |
+
atherine 405
|
407 |
+
atic 406
|
408 |
+
ating 407
|
409 |
+
ation 408
|
410 |
+
ations 409
|
411 |
+
ative 410
|
412 |
+
atively 411
|
413 |
+
atives 412
|
414 |
+
▁atm 413
|
415 |
+
▁atmosp 414
|
416 |
+
▁atmosphere 415
|
417 |
+
ator 416
|
418 |
+
ators 417
|
419 |
+
atory 418
|
420 |
+
ats 419
|
421 |
+
▁att 420
|
422 |
+
▁attack 421
|
423 |
+
▁attempt 422
|
424 |
+
▁attend 423
|
425 |
+
▁attention 424
|
426 |
+
attered 425
|
427 |
+
▁attitude 426
|
428 |
+
▁attract 427
|
429 |
+
ature 428
|
430 |
+
au 429
|
431 |
+
▁aud 430
|
432 |
+
aud 431
|
433 |
+
▁aug 432
|
434 |
+
aught 433
|
435 |
+
aughter 434
|
436 |
+
▁august 435
|
437 |
+
ault 436
|
438 |
+
▁aunt 437
|
439 |
+
aunt 438
|
440 |
+
ause 439
|
441 |
+
▁aust 440
|
442 |
+
▁aut 441
|
443 |
+
aut 442
|
444 |
+
▁auth 443
|
445 |
+
▁author 444
|
446 |
+
▁authority 445
|
447 |
+
▁av 446
|
448 |
+
av 447
|
449 |
+
aval 448
|
450 |
+
ave 449
|
451 |
+
▁aven 450
|
452 |
+
▁avo 451
|
453 |
+
▁avoid 452
|
454 |
+
▁aw 453
|
455 |
+
aw 454
|
456 |
+
▁awa 455
|
457 |
+
▁awake 456
|
458 |
+
▁aware 457
|
459 |
+
▁away 458
|
460 |
+
▁awful 459
|
461 |
+
aws 460
|
462 |
+
▁ax 461
|
463 |
+
ax 462
|
464 |
+
▁ay 463
|
465 |
+
ay 464
|
466 |
+
ayed 465
|
467 |
+
ays 466
|
468 |
+
az 467
|
469 |
+
▁b 468
|
470 |
+
b 469
|
471 |
+
▁bab 470
|
472 |
+
▁baby 471
|
473 |
+
▁back 472
|
474 |
+
▁bad 473
|
475 |
+
▁bade 474
|
476 |
+
▁bag 475
|
477 |
+
▁bal 476
|
478 |
+
▁ball 477
|
479 |
+
▁ban 478
|
480 |
+
▁band 479
|
481 |
+
band 480
|
482 |
+
▁bank 481
|
483 |
+
▁banks 482
|
484 |
+
▁bar 483
|
485 |
+
▁barb 484
|
486 |
+
▁bare 485
|
487 |
+
▁bark 486
|
488 |
+
▁baron 487
|
489 |
+
▁bas 488
|
490 |
+
▁base 489
|
491 |
+
▁bask 490
|
492 |
+
▁basket 491
|
493 |
+
▁bat 492
|
494 |
+
▁bath 493
|
495 |
+
▁battle 494
|
496 |
+
▁bay 495
|
497 |
+
bb 496
|
498 |
+
▁be 497
|
499 |
+
be 498
|
500 |
+
▁bear 499
|
501 |
+
▁beard 500
|
502 |
+
▁bearing 501
|
503 |
+
▁beast 502
|
504 |
+
▁beat 503
|
505 |
+
▁beaut 504
|
506 |
+
▁beautiful 505
|
507 |
+
▁beauty 506
|
508 |
+
▁bec 507
|
509 |
+
▁became 508
|
510 |
+
▁because 509
|
511 |
+
▁becom 510
|
512 |
+
▁become 511
|
513 |
+
▁becomes 512
|
514 |
+
▁becoming 513
|
515 |
+
▁bed 514
|
516 |
+
bed 515
|
517 |
+
▁bee 516
|
518 |
+
▁been 517
|
519 |
+
▁before 518
|
520 |
+
▁beg 519
|
521 |
+
▁began 520
|
522 |
+
▁begged 521
|
523 |
+
▁begin 522
|
524 |
+
▁beginning 523
|
525 |
+
▁begun 524
|
526 |
+
▁beh 525
|
527 |
+
▁beheld 526
|
528 |
+
▁behind 527
|
529 |
+
▁behold 528
|
530 |
+
▁being 529
|
531 |
+
▁bel 530
|
532 |
+
▁belie 531
|
533 |
+
▁belief 532
|
534 |
+
▁believe 533
|
535 |
+
▁believed 534
|
536 |
+
▁bell 535
|
537 |
+
▁belong 536
|
538 |
+
▁belonged 537
|
539 |
+
▁below 538
|
540 |
+
▁ben 539
|
541 |
+
▁bene 540
|
542 |
+
▁beneath 541
|
543 |
+
▁benef 542
|
544 |
+
▁bent 543
|
545 |
+
▁ber 544
|
546 |
+
ber 545
|
547 |
+
bered 546
|
548 |
+
bers 547
|
549 |
+
bert 548
|
550 |
+
▁bes 549
|
551 |
+
▁beside 550
|
552 |
+
▁besides 551
|
553 |
+
▁best 552
|
554 |
+
▁bet 553
|
555 |
+
▁betr 554
|
556 |
+
▁better 555
|
557 |
+
▁between 556
|
558 |
+
▁bew 557
|
559 |
+
▁bey 558
|
560 |
+
▁beyond 559
|
561 |
+
▁big 560
|
562 |
+
▁bill 561
|
563 |
+
▁billy 562
|
564 |
+
bing 563
|
565 |
+
▁bir 564
|
566 |
+
▁bird 565
|
567 |
+
▁birds 566
|
568 |
+
▁birth 567
|
569 |
+
▁bishop 568
|
570 |
+
▁bit 569
|
571 |
+
bit 570
|
572 |
+
▁bitter 571
|
573 |
+
▁bl 572
|
574 |
+
▁black 573
|
575 |
+
▁blame 574
|
576 |
+
▁blank 575
|
577 |
+
▁blaz 576
|
578 |
+
▁ble 577
|
579 |
+
ble 578
|
580 |
+
▁bless 579
|
581 |
+
▁blind 580
|
582 |
+
▁blood 581
|
583 |
+
▁bloom 582
|
584 |
+
▁blow 583
|
585 |
+
▁blue 584
|
586 |
+
bly 585
|
587 |
+
▁bo 586
|
588 |
+
bo 587
|
589 |
+
▁board 588
|
590 |
+
board 589
|
591 |
+
▁boat 590
|
592 |
+
▁bob 591
|
593 |
+
▁bod 592
|
594 |
+
▁bodies 593
|
595 |
+
▁body 594
|
596 |
+
body 595
|
597 |
+
▁bol 596
|
598 |
+
▁bold 597
|
599 |
+
▁bon 598
|
600 |
+
▁bones 599
|
601 |
+
▁book 600
|
602 |
+
▁books 601
|
603 |
+
▁boots 602
|
604 |
+
▁bor 603
|
605 |
+
bor 604
|
606 |
+
▁bore 605
|
607 |
+
▁born 606
|
608 |
+
▁bos 607
|
609 |
+
▁bosom 608
|
610 |
+
▁both 609
|
611 |
+
▁bott 610
|
612 |
+
▁bottle 611
|
613 |
+
▁bottom 612
|
614 |
+
▁bought 613
|
615 |
+
▁bound 614
|
616 |
+
bour 615
|
617 |
+
▁bow 616
|
618 |
+
▁bowed 617
|
619 |
+
▁box 618
|
620 |
+
▁boy 619
|
621 |
+
▁boys 620
|
622 |
+
▁br 621
|
623 |
+
br 622
|
624 |
+
▁bra 623
|
625 |
+
▁brain 624
|
626 |
+
▁branches 625
|
627 |
+
▁brand 626
|
628 |
+
▁brave 627
|
629 |
+
▁bre 628
|
630 |
+
▁bread 629
|
631 |
+
▁break 630
|
632 |
+
▁breakfast 631
|
633 |
+
▁breaking 632
|
634 |
+
▁breast 633
|
635 |
+
▁breat 634
|
636 |
+
▁breath 635
|
637 |
+
▁bree 636
|
638 |
+
▁brid 637
|
639 |
+
▁bride 638
|
640 |
+
▁bridge 639
|
641 |
+
▁brief 640
|
642 |
+
▁bright 641
|
643 |
+
▁brill 642
|
644 |
+
▁brilliant 643
|
645 |
+
▁bring 644
|
646 |
+
▁bringing 645
|
647 |
+
▁brit 646
|
648 |
+
▁british 647
|
649 |
+
▁bro 648
|
650 |
+
▁broad 649
|
651 |
+
▁broke 650
|
652 |
+
▁broken 651
|
653 |
+
▁brother 652
|
654 |
+
▁brothers 653
|
655 |
+
▁brought 654
|
656 |
+
▁brow 655
|
657 |
+
▁brown 656
|
658 |
+
bs 657
|
659 |
+
▁bu 658
|
660 |
+
▁buck 659
|
661 |
+
▁bud 660
|
662 |
+
▁build 661
|
663 |
+
▁building 662
|
664 |
+
▁built 663
|
665 |
+
▁bul 664
|
666 |
+
▁bull 665
|
667 |
+
▁bur 666
|
668 |
+
bur 667
|
669 |
+
▁buried 668
|
670 |
+
▁burn 669
|
671 |
+
▁burned 670
|
672 |
+
▁burning 671
|
673 |
+
▁burst 672
|
674 |
+
bury 673
|
675 |
+
▁bus 674
|
676 |
+
▁bushes 675
|
677 |
+
▁business 676
|
678 |
+
▁busy 677
|
679 |
+
▁but 678
|
680 |
+
▁butter 679
|
681 |
+
▁buy 680
|
682 |
+
▁by 681
|
683 |
+
by 682
|
684 |
+
▁bye 683
|
685 |
+
▁c 684
|
686 |
+
c 685
|
687 |
+
▁ca 686
|
688 |
+
▁cab 687
|
689 |
+
▁cabin 688
|
690 |
+
▁cal 689
|
691 |
+
▁calcul 690
|
692 |
+
▁call 691
|
693 |
+
▁called 692
|
694 |
+
▁calling 693
|
695 |
+
▁calm 694
|
696 |
+
▁cam 695
|
697 |
+
▁came 696
|
698 |
+
▁camp 697
|
699 |
+
▁can 698
|
700 |
+
can 699
|
701 |
+
▁cand 700
|
702 |
+
▁candle 701
|
703 |
+
▁cannot 702
|
704 |
+
▁cap 703
|
705 |
+
▁capable 704
|
706 |
+
▁capital 705
|
707 |
+
▁capt 706
|
708 |
+
▁captain 707
|
709 |
+
▁car 708
|
710 |
+
▁card 709
|
711 |
+
▁care 710
|
712 |
+
▁cared 711
|
713 |
+
▁careful 712
|
714 |
+
▁carefully 713
|
715 |
+
▁carpet 714
|
716 |
+
▁carriage 715
|
717 |
+
▁carried 716
|
718 |
+
▁carry 717
|
719 |
+
▁carrying 718
|
720 |
+
▁cart 719
|
721 |
+
▁cas 720
|
722 |
+
▁case 721
|
723 |
+
▁cases 722
|
724 |
+
▁cast 723
|
725 |
+
▁castle 724
|
726 |
+
▁cat 725
|
727 |
+
▁catch 726
|
728 |
+
▁cath 727
|
729 |
+
▁catherine 728
|
730 |
+
▁cattle 729
|
731 |
+
▁caught 730
|
732 |
+
▁cause 731
|
733 |
+
▁caused 732
|
734 |
+
▁causes 733
|
735 |
+
▁caut 734
|
736 |
+
▁cave 735
|
737 |
+
cc 736
|
738 |
+
▁ce 737
|
739 |
+
ce 738
|
740 |
+
▁ceased 739
|
741 |
+
ced 740
|
742 |
+
cei 741
|
743 |
+
ceive 742
|
744 |
+
ceived 743
|
745 |
+
ceiving 744
|
746 |
+
▁celebr 745
|
747 |
+
▁cell 746
|
748 |
+
cell 747
|
749 |
+
▁cent 748
|
750 |
+
cent 749
|
751 |
+
▁centre 750
|
752 |
+
▁century 751
|
753 |
+
cept 752
|
754 |
+
ception 753
|
755 |
+
cer 754
|
756 |
+
▁certain 755
|
757 |
+
▁certainly 756
|
758 |
+
ces 757
|
759 |
+
cess 758
|
760 |
+
▁ch 759
|
761 |
+
ch 760
|
762 |
+
▁chair 761
|
763 |
+
▁chamber 762
|
764 |
+
chan 763
|
765 |
+
▁chance 764
|
766 |
+
▁change 765
|
767 |
+
▁changed 766
|
768 |
+
▁changes 767
|
769 |
+
▁chap 768
|
770 |
+
▁chapter 769
|
771 |
+
▁char 770
|
772 |
+
char 771
|
773 |
+
▁charac 772
|
774 |
+
▁character 773
|
775 |
+
▁charge 774
|
776 |
+
▁charles 775
|
777 |
+
▁charm 776
|
778 |
+
▁charming 777
|
779 |
+
▁chat 778
|
780 |
+
▁che 779
|
781 |
+
che 780
|
782 |
+
▁check 781
|
783 |
+
ched 782
|
784 |
+
▁chee 783
|
785 |
+
▁cheek 784
|
786 |
+
▁cheeks 785
|
787 |
+
▁cheer 786
|
788 |
+
▁cheerful 787
|
789 |
+
chen 788
|
790 |
+
▁cher 789
|
791 |
+
cher 790
|
792 |
+
ches 791
|
793 |
+
▁chest 792
|
794 |
+
chie 793
|
795 |
+
▁chief 794
|
796 |
+
chief 795
|
797 |
+
▁child 796
|
798 |
+
▁children 797
|
799 |
+
▁chim 798
|
800 |
+
▁chin 799
|
801 |
+
ching 800
|
802 |
+
▁cho 801
|
803 |
+
cho 802
|
804 |
+
▁choice 803
|
805 |
+
choly 804
|
806 |
+
▁choose 805
|
807 |
+
▁chosen 806
|
808 |
+
▁chr 807
|
809 |
+
▁christ 808
|
810 |
+
▁christian 809
|
811 |
+
▁christmas 810
|
812 |
+
▁chur 811
|
813 |
+
▁church 812
|
814 |
+
ci 813
|
815 |
+
cial 814
|
816 |
+
cially 815
|
817 |
+
cience 816
|
818 |
+
cient 817
|
819 |
+
▁cig 818
|
820 |
+
cil 819
|
821 |
+
cing 820
|
822 |
+
cious 821
|
823 |
+
cip 822
|
824 |
+
▁cir 823
|
825 |
+
▁circ 824
|
826 |
+
▁circle 825
|
827 |
+
▁circum 826
|
828 |
+
▁circumst 827
|
829 |
+
▁circumstances 828
|
830 |
+
cise 829
|
831 |
+
▁cit 830
|
832 |
+
▁cities 831
|
833 |
+
▁citiz 832
|
834 |
+
▁citizens 833
|
835 |
+
▁city 834
|
836 |
+
▁civ 835
|
837 |
+
▁civil 836
|
838 |
+
ck 837
|
839 |
+
cked 838
|
840 |
+
▁cl 839
|
841 |
+
cl 840
|
842 |
+
▁claim 841
|
843 |
+
▁class 842
|
844 |
+
▁cle 843
|
845 |
+
▁clean 844
|
846 |
+
▁clear 845
|
847 |
+
▁clearly 846
|
848 |
+
▁cler 847
|
849 |
+
cles 848
|
850 |
+
▁clever 849
|
851 |
+
▁cliff 850
|
852 |
+
▁clim 851
|
853 |
+
▁climbed 852
|
854 |
+
▁clo 853
|
855 |
+
▁clock 854
|
856 |
+
clock 855
|
857 |
+
▁clos 856
|
858 |
+
▁close 857
|
859 |
+
▁closed 858
|
860 |
+
▁closely 859
|
861 |
+
▁clot 860
|
862 |
+
▁cloth 861
|
863 |
+
▁clothes 862
|
864 |
+
▁cloud 863
|
865 |
+
▁clouds 864
|
866 |
+
▁club 865
|
867 |
+
▁co 866
|
868 |
+
co 867
|
869 |
+
▁coach 868
|
870 |
+
▁coast 869
|
871 |
+
▁coat 870
|
872 |
+
▁coffe 871
|
873 |
+
▁coffee 872
|
874 |
+
▁col 873
|
875 |
+
col 874
|
876 |
+
▁cold 875
|
877 |
+
▁coll 876
|
878 |
+
▁colle 877
|
879 |
+
▁collect 878
|
880 |
+
▁college 879
|
881 |
+
▁colonel 880
|
882 |
+
▁color 881
|
883 |
+
▁colour 882
|
884 |
+
▁com 883
|
885 |
+
com 884
|
886 |
+
▁comb 885
|
887 |
+
▁come 886
|
888 |
+
come 887
|
889 |
+
▁comes 888
|
890 |
+
▁comfort 889
|
891 |
+
▁comfortable 890
|
892 |
+
▁coming 891
|
893 |
+
▁comm 892
|
894 |
+
▁command 893
|
895 |
+
▁commanded 894
|
896 |
+
▁commer 895
|
897 |
+
▁commission 896
|
898 |
+
▁common 897
|
899 |
+
▁commun 898
|
900 |
+
▁comp 899
|
901 |
+
▁compan 900
|
902 |
+
▁companion 901
|
903 |
+
▁companions 902
|
904 |
+
▁company 903
|
905 |
+
▁compar 904
|
906 |
+
▁compass 905
|
907 |
+
▁compelled 906
|
908 |
+
▁compl 907
|
909 |
+
▁comple 908
|
910 |
+
▁complete 909
|
911 |
+
▁completely 910
|
912 |
+
▁complex 911
|
913 |
+
▁composed 912
|
914 |
+
▁compre 913
|
915 |
+
▁comr 914
|
916 |
+
▁con 915
|
917 |
+
con 916
|
918 |
+
▁conc 917
|
919 |
+
▁conce 918
|
920 |
+
▁concern 919
|
921 |
+
▁concerned 920
|
922 |
+
▁concerning 921
|
923 |
+
▁concl 922
|
924 |
+
▁concluded 923
|
925 |
+
▁conclusion 924
|
926 |
+
▁cond 925
|
927 |
+
cond 926
|
928 |
+
▁condem 927
|
929 |
+
▁condition 928
|
930 |
+
▁conditions 929
|
931 |
+
▁conduct 930
|
932 |
+
▁conf 931
|
933 |
+
▁confess 932
|
934 |
+
▁confidence 933
|
935 |
+
▁confusion 934
|
936 |
+
▁conn 935
|
937 |
+
▁connect 936
|
938 |
+
▁connected 937
|
939 |
+
▁connection 938
|
940 |
+
conom 939
|
941 |
+
▁conqu 940
|
942 |
+
▁cons 941
|
943 |
+
▁conscience 942
|
944 |
+
▁conscious 943
|
945 |
+
▁consciousness 944
|
946 |
+
▁conse 945
|
947 |
+
▁consent 946
|
948 |
+
▁consequ 947
|
949 |
+
▁consequence 948
|
950 |
+
▁consider 949
|
951 |
+
▁considerable 950
|
952 |
+
▁consideration 951
|
953 |
+
▁considered 952
|
954 |
+
▁const 953
|
955 |
+
▁constant 954
|
956 |
+
▁constantly 955
|
957 |
+
▁constit 956
|
958 |
+
▁constitution 957
|
959 |
+
▁consult 958
|
960 |
+
▁cont 959
|
961 |
+
▁contained 960
|
962 |
+
▁contem 961
|
963 |
+
▁contempl 962
|
964 |
+
▁contempt 963
|
965 |
+
▁content 964
|
966 |
+
▁contin 965
|
967 |
+
▁continue 966
|
968 |
+
▁continued 967
|
969 |
+
▁contr 968
|
970 |
+
▁contract 969
|
971 |
+
▁contrary 970
|
972 |
+
▁contro 971
|
973 |
+
▁control 972
|
974 |
+
▁conv 973
|
975 |
+
▁conven 974
|
976 |
+
▁convent 975
|
977 |
+
▁convers 976
|
978 |
+
▁conversation 977
|
979 |
+
▁convin 978
|
980 |
+
▁convinced 979
|
981 |
+
▁coo 980
|
982 |
+
▁cook 981
|
983 |
+
▁cool 982
|
984 |
+
▁cop 983
|
985 |
+
▁cor 984
|
986 |
+
▁cord 985
|
987 |
+
▁corn 986
|
988 |
+
▁corner 987
|
989 |
+
▁correct 988
|
990 |
+
▁correspond 989
|
991 |
+
▁cost 990
|
992 |
+
▁cott 991
|
993 |
+
▁cottage 992
|
994 |
+
▁cou 993
|
995 |
+
▁could 994
|
996 |
+
▁couldn 995
|
997 |
+
▁coun 996
|
998 |
+
▁council 997
|
999 |
+
▁count 998
|
1000 |
+
▁countenance 999
|
1001 |
+
▁countess 1000
|
1002 |
+
▁country 1001
|
1003 |
+
▁couple 1002
|
1004 |
+
▁cour 1003
|
1005 |
+
▁courage 1004
|
1006 |
+
▁course 1005
|
1007 |
+
▁court 1006
|
1008 |
+
▁cous 1007
|
1009 |
+
▁cousin 1008
|
1010 |
+
▁cover 1009
|
1011 |
+
▁covered 1010
|
1012 |
+
▁cow 1011
|
1013 |
+
▁cr 1012
|
1014 |
+
▁cra 1013
|
1015 |
+
▁crack 1014
|
1016 |
+
▁craft 1015
|
1017 |
+
▁craw 1016
|
1018 |
+
▁cre 1017
|
1019 |
+
▁creat 1018
|
1020 |
+
▁creature 1019
|
1021 |
+
▁creatures 1020
|
1022 |
+
▁cred 1021
|
1023 |
+
▁credit 1022
|
1024 |
+
▁crept 1023
|
1025 |
+
▁crew 1024
|
1026 |
+
cri 1025
|
1027 |
+
▁cried 1026
|
1028 |
+
▁crim 1027
|
1029 |
+
▁crime 1028
|
1030 |
+
▁crit 1029
|
1031 |
+
▁cro 1030
|
1032 |
+
▁cross 1031
|
1033 |
+
▁crossed 1032
|
1034 |
+
▁crow 1033
|
1035 |
+
▁crowd 1034
|
1036 |
+
▁crown 1035
|
1037 |
+
▁cruel 1036
|
1038 |
+
▁cry 1037
|
1039 |
+
▁crying 1038
|
1040 |
+
ct 1039
|
1041 |
+
ction 1040
|
1042 |
+
cture 1041
|
1043 |
+
cul 1042
|
1044 |
+
▁cult 1043
|
1045 |
+
▁cup 1044
|
1046 |
+
▁cur 1045
|
1047 |
+
▁curi 1046
|
1048 |
+
▁curiosity 1047
|
1049 |
+
▁curious 1048
|
1050 |
+
▁current 1049
|
1051 |
+
▁curtain 1050
|
1052 |
+
▁custom 1051
|
1053 |
+
▁cut 1052
|
1054 |
+
cy 1053
|
1055 |
+
▁d 1054
|
1056 |
+
d 1055
|
1057 |
+
▁da 1056
|
1058 |
+
▁daily 1057
|
1059 |
+
▁dam 1058
|
1060 |
+
▁dan 1059
|
1061 |
+
▁dance 1060
|
1062 |
+
▁dancing 1061
|
1063 |
+
▁danger 1062
|
1064 |
+
▁dangerous 1063
|
1065 |
+
▁dar 1064
|
1066 |
+
▁dare 1065
|
1067 |
+
▁dared 1066
|
1068 |
+
▁dark 1067
|
1069 |
+
▁darkness 1068
|
1070 |
+
▁darling 1069
|
1071 |
+
▁dart 1070
|
1072 |
+
▁daughter 1071
|
1073 |
+
▁dav 1072
|
1074 |
+
▁david 1073
|
1075 |
+
▁dawn 1074
|
1076 |
+
▁day 1075
|
1077 |
+
day 1076
|
1078 |
+
▁days 1077
|
1079 |
+
dd 1078
|
1080 |
+
dden 1079
|
1081 |
+
▁de 1080
|
1082 |
+
de 1081
|
1083 |
+
▁dead 1082
|
1084 |
+
▁deal 1083
|
1085 |
+
▁dear 1084
|
1086 |
+
▁death 1085
|
1087 |
+
▁deb 1086
|
1088 |
+
▁dec 1087
|
1089 |
+
▁dece 1088
|
1090 |
+
▁decided 1089
|
1091 |
+
▁deck 1090
|
1092 |
+
▁decl 1091
|
1093 |
+
▁declared 1092
|
1094 |
+
▁deep 1093
|
1095 |
+
▁deeply 1094
|
1096 |
+
▁def 1095
|
1097 |
+
▁defe 1096
|
1098 |
+
▁deg 1097
|
1099 |
+
▁degree 1098
|
1100 |
+
▁degrees 1099
|
1101 |
+
▁del 1100
|
1102 |
+
▁delay 1101
|
1103 |
+
▁deliber 1102
|
1104 |
+
▁delic 1103
|
1105 |
+
▁delicate 1104
|
1106 |
+
▁delight 1105
|
1107 |
+
▁delighted 1106
|
1108 |
+
▁delightful 1107
|
1109 |
+
▁dem 1108
|
1110 |
+
▁demand 1109
|
1111 |
+
▁demanded 1110
|
1112 |
+
▁den 1111
|
1113 |
+
den 1112
|
1114 |
+
▁dep 1113
|
1115 |
+
▁depart 1114
|
1116 |
+
▁departure 1115
|
1117 |
+
▁depend 1116
|
1118 |
+
▁depth 1117
|
1119 |
+
▁der 1118
|
1120 |
+
der 1119
|
1121 |
+
dered 1120
|
1122 |
+
▁des 1121
|
1123 |
+
▁desce 1122
|
1124 |
+
▁descended 1123
|
1125 |
+
▁descri 1124
|
1126 |
+
▁described 1125
|
1127 |
+
▁desert 1126
|
1128 |
+
▁deserted 1127
|
1129 |
+
▁design 1128
|
1130 |
+
▁desir 1129
|
1131 |
+
▁desire 1130
|
1132 |
+
▁desired 1131
|
1133 |
+
▁desp 1132
|
1134 |
+
▁despair 1133
|
1135 |
+
▁desper 1134
|
1136 |
+
▁dest 1135
|
1137 |
+
▁destroy 1136
|
1138 |
+
▁destroyed 1137
|
1139 |
+
▁det 1138
|
1140 |
+
▁detect 1139
|
1141 |
+
▁deter 1140
|
1142 |
+
▁determ 1141
|
1143 |
+
▁determined 1142
|
1144 |
+
▁dev 1143
|
1145 |
+
▁develop 1144
|
1146 |
+
▁devil 1145
|
1147 |
+
▁devoted 1146
|
1148 |
+
▁di 1147
|
1149 |
+
▁diam 1148
|
1150 |
+
▁diamond 1149
|
1151 |
+
▁dick 1150
|
1152 |
+
▁did 1151
|
1153 |
+
▁didn 1152
|
1154 |
+
▁die 1153
|
1155 |
+
▁died 1154
|
1156 |
+
▁dif 1155
|
1157 |
+
▁diffe 1156
|
1158 |
+
��difference 1157
|
1159 |
+
▁different 1158
|
1160 |
+
▁difficult 1159
|
1161 |
+
▁difficulties 1160
|
1162 |
+
▁difficulty 1161
|
1163 |
+
▁dig 1162
|
1164 |
+
▁dign 1163
|
1165 |
+
▁dignity 1164
|
1166 |
+
▁dim 1165
|
1167 |
+
▁din 1166
|
1168 |
+
ding 1167
|
1169 |
+
▁dinner 1168
|
1170 |
+
▁dir 1169
|
1171 |
+
▁dire 1170
|
1172 |
+
▁direct 1171
|
1173 |
+
▁directed 1172
|
1174 |
+
▁direction 1173
|
1175 |
+
▁directly 1174
|
1176 |
+
▁dis 1175
|
1177 |
+
▁disapp 1176
|
1178 |
+
▁disappe 1177
|
1179 |
+
▁disappeared 1178
|
1180 |
+
▁disc 1179
|
1181 |
+
▁disco 1180
|
1182 |
+
▁discover 1181
|
1183 |
+
▁discovered 1182
|
1184 |
+
▁discovery 1183
|
1185 |
+
▁discuss 1184
|
1186 |
+
▁dise 1185
|
1187 |
+
▁disg 1186
|
1188 |
+
▁dish 1187
|
1189 |
+
▁dism 1188
|
1190 |
+
▁disp 1189
|
1191 |
+
▁displ 1190
|
1192 |
+
▁diss 1191
|
1193 |
+
▁dist 1192
|
1194 |
+
▁distance 1193
|
1195 |
+
▁distant 1194
|
1196 |
+
▁distinct 1195
|
1197 |
+
▁distingu 1196
|
1198 |
+
▁distinguished 1197
|
1199 |
+
▁distr 1198
|
1200 |
+
▁distress 1199
|
1201 |
+
▁district 1200
|
1202 |
+
▁distur 1201
|
1203 |
+
▁div 1202
|
1204 |
+
▁divided 1203
|
1205 |
+
▁divine 1204
|
1206 |
+
dle 1205
|
1207 |
+
▁do 1206
|
1208 |
+
▁doct 1207
|
1209 |
+
▁doctor 1208
|
1210 |
+
▁does 1209
|
1211 |
+
▁doesn 1210
|
1212 |
+
▁dog 1211
|
1213 |
+
▁dogs 1212
|
1214 |
+
▁doing 1213
|
1215 |
+
▁doll 1214
|
1216 |
+
▁dollars 1215
|
1217 |
+
▁dom 1216
|
1218 |
+
dom 1217
|
1219 |
+
▁don 1218
|
1220 |
+
▁done 1219
|
1221 |
+
▁door 1220
|
1222 |
+
▁doors 1221
|
1223 |
+
▁dor 1222
|
1224 |
+
▁double 1223
|
1225 |
+
▁doubt 1224
|
1226 |
+
▁doubtless 1225
|
1227 |
+
▁down 1226
|
1228 |
+
▁dozen 1227
|
1229 |
+
▁dr 1228
|
1230 |
+
▁dra 1229
|
1231 |
+
▁drag 1230
|
1232 |
+
▁draw 1231
|
1233 |
+
▁drawing 1232
|
1234 |
+
▁drawn 1233
|
1235 |
+
▁dread 1234
|
1236 |
+
▁dreadful 1235
|
1237 |
+
▁dream 1236
|
1238 |
+
▁dreams 1237
|
1239 |
+
▁dress 1238
|
1240 |
+
▁dressed 1239
|
1241 |
+
▁drew 1240
|
1242 |
+
▁dri 1241
|
1243 |
+
▁drift 1242
|
1244 |
+
▁drink 1243
|
1245 |
+
▁drive 1244
|
1246 |
+
▁driven 1245
|
1247 |
+
▁dro 1246
|
1248 |
+
▁drop 1247
|
1249 |
+
▁dropped 1248
|
1250 |
+
▁drove 1249
|
1251 |
+
▁drown 1250
|
1252 |
+
▁drunk 1251
|
1253 |
+
▁dry 1252
|
1254 |
+
ds 1253
|
1255 |
+
▁du 1254
|
1256 |
+
du 1255
|
1257 |
+
▁due 1256
|
1258 |
+
▁duke 1257
|
1259 |
+
▁dull 1258
|
1260 |
+
▁dun 1259
|
1261 |
+
▁dur 1260
|
1262 |
+
▁during 1261
|
1263 |
+
▁dust 1262
|
1264 |
+
▁dut 1263
|
1265 |
+
▁duties 1264
|
1266 |
+
▁duty 1265
|
1267 |
+
▁dw 1266
|
1268 |
+
▁dwell 1267
|
1269 |
+
dy 1268
|
1270 |
+
▁dying 1269
|
1271 |
+
▁e 1270
|
1272 |
+
e 1271
|
1273 |
+
▁each 1272
|
1274 |
+
ead 1273
|
1275 |
+
▁eager 1274
|
1276 |
+
▁eagerly 1275
|
1277 |
+
▁ear 1276
|
1278 |
+
▁earl 1277
|
1279 |
+
▁early 1278
|
1280 |
+
▁earn 1279
|
1281 |
+
▁earnest 1280
|
1282 |
+
▁ears 1281
|
1283 |
+
▁earth 1282
|
1284 |
+
▁eas 1283
|
1285 |
+
▁ease 1284
|
1286 |
+
▁easily 1285
|
1287 |
+
▁east 1286
|
1288 |
+
▁easter 1287
|
1289 |
+
▁easy 1288
|
1290 |
+
▁eat 1289
|
1291 |
+
▁eating 1290
|
1292 |
+
ec 1291
|
1293 |
+
ech 1292
|
1294 |
+
▁echo 1293
|
1295 |
+
▁econom 1294
|
1296 |
+
ect 1295
|
1297 |
+
▁ed 1296
|
1298 |
+
ed 1297
|
1299 |
+
▁edge 1298
|
1300 |
+
eds 1299
|
1301 |
+
▁educ 1300
|
1302 |
+
▁education 1301
|
1303 |
+
▁edward 1302
|
1304 |
+
edy 1303
|
1305 |
+
ee 1304
|
1306 |
+
eem 1305
|
1307 |
+
een 1306
|
1308 |
+
eer 1307
|
1309 |
+
▁eff 1308
|
1310 |
+
▁effect 1309
|
1311 |
+
▁effort 1310
|
1312 |
+
▁efforts 1311
|
1313 |
+
▁egg 1312
|
1314 |
+
▁eggs 1313
|
1315 |
+
▁egypt 1314
|
1316 |
+
▁eight 1315
|
1317 |
+
▁eighteen 1316
|
1318 |
+
▁eighty 1317
|
1319 |
+
▁either 1318
|
1320 |
+
▁el 1319
|
1321 |
+
el 1320
|
1322 |
+
▁eld 1321
|
1323 |
+
▁elder 1322
|
1324 |
+
▁ele 1323
|
1325 |
+
▁elect 1324
|
1326 |
+
▁eleven 1325
|
1327 |
+
elia 1326
|
1328 |
+
▁eliz 1327
|
1329 |
+
▁elizabeth 1328
|
1330 |
+
ell 1329
|
1331 |
+
els 1330
|
1332 |
+
▁else 1331
|
1333 |
+
▁elsie 1332
|
1334 |
+
elt 1333
|
1335 |
+
▁em 1334
|
1336 |
+
em 1335
|
1337 |
+
▁emb 1336
|
1338 |
+
▁embar 1337
|
1339 |
+
ement 1338
|
1340 |
+
▁emer 1339
|
1341 |
+
▁emotion 1340
|
1342 |
+
▁emp 1341
|
1343 |
+
▁emper 1342
|
1344 |
+
▁emperor 1343
|
1345 |
+
▁emph 1344
|
1346 |
+
▁empl 1345
|
1347 |
+
▁employ 1346
|
1348 |
+
▁employed 1347
|
1349 |
+
▁empt 1348
|
1350 |
+
empt 1349
|
1351 |
+
▁empty 1350
|
1352 |
+
▁en 1351
|
1353 |
+
en 1352
|
1354 |
+
enance 1353
|
1355 |
+
▁enc 1354
|
1356 |
+
ence 1355
|
1357 |
+
enced 1356
|
1358 |
+
ences 1357
|
1359 |
+
ency 1358
|
1360 |
+
▁end 1359
|
1361 |
+
▁ende 1360
|
1362 |
+
▁endeav 1361
|
1363 |
+
▁ended 1362
|
1364 |
+
▁ends 1363
|
1365 |
+
ene 1364
|
1366 |
+
ened 1365
|
1367 |
+
▁enem 1366
|
1368 |
+
▁enemies 1367
|
1369 |
+
▁enemy 1368
|
1370 |
+
▁ener 1369
|
1371 |
+
▁energy 1370
|
1372 |
+
eness 1371
|
1373 |
+
▁eng 1372
|
1374 |
+
▁engage 1373
|
1375 |
+
▁engaged 1374
|
1376 |
+
enger 1375
|
1377 |
+
▁engine 1376
|
1378 |
+
▁england 1377
|
1379 |
+
▁english 1378
|
1380 |
+
ening 1379
|
1381 |
+
▁enj 1380
|
1382 |
+
▁enjoy 1381
|
1383 |
+
▁enorm 1382
|
1384 |
+
▁enormous 1383
|
1385 |
+
▁enough 1384
|
1386 |
+
ens 1385
|
1387 |
+
ense 1386
|
1388 |
+
ensive 1387
|
1389 |
+
▁ent 1388
|
1390 |
+
ent 1389
|
1391 |
+
ental 1390
|
1392 |
+
ented 1391
|
1393 |
+
▁enter 1392
|
1394 |
+
▁entered 1393
|
1395 |
+
▁entering 1394
|
1396 |
+
▁entertain 1395
|
1397 |
+
enth 1396
|
1398 |
+
▁enthusi 1397
|
1399 |
+
ential 1398
|
1400 |
+
ention 1399
|
1401 |
+
▁entire 1400
|
1402 |
+
▁entirely 1401
|
1403 |
+
ently 1402
|
1404 |
+
▁entrance 1403
|
1405 |
+
ents 1404
|
1406 |
+
enty 1405
|
1407 |
+
▁env 1406
|
1408 |
+
▁ep 1407
|
1409 |
+
ep 1408
|
1410 |
+
eping 1409
|
1411 |
+
ept 1410
|
1412 |
+
▁equ 1411
|
1413 |
+
▁equal 1412
|
1414 |
+
▁equally 1413
|
1415 |
+
▁er 1414
|
1416 |
+
er 1415
|
1417 |
+
erable 1416
|
1418 |
+
eral 1417
|
1419 |
+
▁ere 1418
|
1420 |
+
▁erect 1419
|
1421 |
+
ered 1420
|
1422 |
+
erial 1421
|
1423 |
+
eric 1422
|
1424 |
+
ering 1423
|
1425 |
+
ern 1424
|
1426 |
+
erous 1425
|
1427 |
+
▁err 1426
|
1428 |
+
ers 1427
|
1429 |
+
ert 1428
|
1430 |
+
ertain 1429
|
1431 |
+
erv 1430
|
1432 |
+
erve 1431
|
1433 |
+
erved 1432
|
1434 |
+
erves 1433
|
1435 |
+
ery 1434
|
1436 |
+
▁es 1435
|
1437 |
+
es 1436
|
1438 |
+
▁esc 1437
|
1439 |
+
▁escape 1438
|
1440 |
+
▁escaped 1439
|
1441 |
+
ese 1440
|
1442 |
+
esh 1441
|
1443 |
+
▁espe 1442
|
1444 |
+
▁especially 1443
|
1445 |
+
▁ess 1444
|
1446 |
+
ess 1445
|
1447 |
+
▁est 1446
|
1448 |
+
est 1447
|
1449 |
+
▁estab 1448
|
1450 |
+
▁establish 1449
|
1451 |
+
▁established 1450
|
1452 |
+
ested 1451
|
1453 |
+
estic 1452
|
1454 |
+
ests 1453
|
1455 |
+
esty 1454
|
1456 |
+
▁et 1455
|
1457 |
+
et 1456
|
1458 |
+
eter 1457
|
1459 |
+
eth 1458
|
1460 |
+
ets 1459
|
1461 |
+
ett 1460
|
1462 |
+
ette 1461
|
1463 |
+
ety 1462
|
1464 |
+
▁eur 1463
|
1465 |
+
▁europe 1464
|
1466 |
+
▁ev 1465
|
1467 |
+
▁even 1466
|
1468 |
+
▁evening 1467
|
1469 |
+
▁event 1468
|
1470 |
+
▁events 1469
|
1471 |
+
▁ever 1470
|
1472 |
+
ever 1471
|
1473 |
+
▁every 1472
|
1474 |
+
▁everybody 1473
|
1475 |
+
▁everyone 1474
|
1476 |
+
▁everything 1475
|
1477 |
+
▁everywhere 1476
|
1478 |
+
▁evidence 1477
|
1479 |
+
▁evident 1478
|
1480 |
+
▁evidently 1479
|
1481 |
+
▁evil 1480
|
1482 |
+
ew 1481
|
1483 |
+
▁ex 1482
|
1484 |
+
▁exact 1483
|
1485 |
+
▁exactly 1484
|
1486 |
+
▁exam 1485
|
1487 |
+
▁example 1486
|
1488 |
+
▁exc 1487
|
1489 |
+
▁exceed 1488
|
1490 |
+
▁excell 1489
|
1491 |
+
▁excellent 1490
|
1492 |
+
▁except 1491
|
1493 |
+
▁exch 1492
|
1494 |
+
▁excit 1493
|
1495 |
+
▁excited 1494
|
1496 |
+
▁excitement 1495
|
1497 |
+
▁excl 1496
|
1498 |
+
▁exclaimed 1497
|
1499 |
+
▁excuse 1498
|
1500 |
+
▁exec 1499
|
1501 |
+
▁exer 1500
|
1502 |
+
▁exercise 1501
|
1503 |
+
▁exh 1502
|
1504 |
+
▁exha 1503
|
1505 |
+
▁exhib 1504
|
1506 |
+
▁exist 1505
|
1507 |
+
▁existence 1506
|
1508 |
+
▁exp 1507
|
1509 |
+
▁expect 1508
|
1510 |
+
▁expected 1509
|
1511 |
+
▁exped 1510
|
1512 |
+
▁exper 1511
|
1513 |
+
▁experi 1512
|
1514 |
+
▁experience 1513
|
1515 |
+
▁expl 1514
|
1516 |
+
▁explain 1515
|
1517 |
+
▁explained 1516
|
1518 |
+
▁explan 1517
|
1519 |
+
▁explanation 1518
|
1520 |
+
▁express 1519
|
1521 |
+
▁expressed 1520
|
1522 |
+
▁expression 1521
|
1523 |
+
▁ext 1522
|
1524 |
+
▁extended 1523
|
1525 |
+
▁extent 1524
|
1526 |
+
▁extra 1525
|
1527 |
+
▁extraord 1526
|
1528 |
+
▁extraordinary 1527
|
1529 |
+
▁extreme 1528
|
1530 |
+
▁extremely 1529
|
1531 |
+
▁ey 1530
|
1532 |
+
ey 1531
|
1533 |
+
▁eye 1532
|
1534 |
+
▁eyes 1533
|
1535 |
+
▁f 1534
|
1536 |
+
f 1535
|
1537 |
+
▁fa 1536
|
1538 |
+
▁fac 1537
|
1539 |
+
▁face 1538
|
1540 |
+
▁faced 1539
|
1541 |
+
▁faces 1540
|
1542 |
+
▁fact 1541
|
1543 |
+
▁facts 1542
|
1544 |
+
▁fail 1543
|
1545 |
+
▁failed 1544
|
1546 |
+
▁faint 1545
|
1547 |
+
▁fair 1546
|
1548 |
+
▁fairly 1547
|
1549 |
+
▁fairy 1548
|
1550 |
+
▁faith 1549
|
1551 |
+
▁faithful 1550
|
1552 |
+
▁fal 1551
|
1553 |
+
▁fall 1552
|
1554 |
+
fall 1553
|
1555 |
+
▁fallen 1554
|
1556 |
+
▁falling 1555
|
1557 |
+
▁false 1556
|
1558 |
+
▁fam 1557
|
1559 |
+
▁famil 1558
|
1560 |
+
▁familiar 1559
|
1561 |
+
▁family 1560
|
1562 |
+
▁famous 1561
|
1563 |
+
▁fan 1562
|
1564 |
+
▁fanci 1563
|
1565 |
+
▁fancy 1564
|
1566 |
+
▁far 1565
|
1567 |
+
▁fare 1566
|
1568 |
+
▁farm 1567
|
1569 |
+
▁farmer 1568
|
1570 |
+
▁fart 1569
|
1571 |
+
▁farther 1570
|
1572 |
+
▁fash 1571
|
1573 |
+
▁fashion 1572
|
1574 |
+
▁fast 1573
|
1575 |
+
fast 1574
|
1576 |
+
▁fat 1575
|
1577 |
+
▁fatal 1576
|
1578 |
+
▁fate 1577
|
1579 |
+
▁father 1578
|
1580 |
+
father 1579
|
1581 |
+
▁fault 1580
|
1582 |
+
▁fav 1581
|
1583 |
+
▁favor 1582
|
1584 |
+
▁favour 1583
|
1585 |
+
▁fe 1584
|
1586 |
+
fe 1585
|
1587 |
+
▁fear 1586
|
1588 |
+
▁feared 1587
|
1589 |
+
▁feast 1588
|
1590 |
+
▁feat 1589
|
1591 |
+
▁feather 1590
|
1592 |
+
▁features 1591
|
1593 |
+
fect 1592
|
1594 |
+
▁fed 1593
|
1595 |
+
▁fee 1594
|
1596 |
+
▁feed 1595
|
1597 |
+
▁feel 1596
|
1598 |
+
▁feeling 1597
|
1599 |
+
▁feelings 1598
|
1600 |
+
▁feet 1599
|
1601 |
+
▁fell 1600
|
1602 |
+
▁fellow 1601
|
1603 |
+
▁fellows 1602
|
1604 |
+
▁felt 1603
|
1605 |
+
▁fem 1604
|
1606 |
+
▁female 1605
|
1607 |
+
▁fer 1606
|
1608 |
+
fer 1607
|
1609 |
+
fered 1608
|
1610 |
+
ference 1609
|
1611 |
+
▁fet 1610
|
1612 |
+
▁fever 1611
|
1613 |
+
▁few 1612
|
1614 |
+
ff 1613
|
1615 |
+
ffe 1614
|
1616 |
+
ffect 1615
|
1617 |
+
fic 1616
|
1618 |
+
fice 1617
|
1619 |
+
fied 1618
|
1620 |
+
▁field 1619
|
1621 |
+
field 1620
|
1622 |
+
▁fields 1621
|
1623 |
+
▁fier 1622
|
1624 |
+
▁fierce 1623
|
1625 |
+
▁fif 1624
|
1626 |
+
▁fifteen 1625
|
1627 |
+
▁fifty 1626
|
1628 |
+
▁fig 1627
|
1629 |
+
▁fight 1628
|
1630 |
+
▁fighting 1629
|
1631 |
+
▁figure 1630
|
1632 |
+
▁figures 1631
|
1633 |
+
▁fil 1632
|
1634 |
+
▁fill 1633
|
1635 |
+
▁filled 1634
|
1636 |
+
▁fin 1635
|
1637 |
+
▁final 1636
|
1638 |
+
▁finally 1637
|
1639 |
+
▁find 1638
|
1640 |
+
▁finding 1639
|
1641 |
+
▁fine 1640
|
1642 |
+
▁fing 1641
|
1643 |
+
▁finger 1642
|
1644 |
+
▁fingers 1643
|
1645 |
+
▁finished 1644
|
1646 |
+
▁fir 1645
|
1647 |
+
▁fire 1646
|
1648 |
+
▁firm 1647
|
1649 |
+
▁firmly 1648
|
1650 |
+
▁first 1649
|
1651 |
+
▁fis 1650
|
1652 |
+
▁fish 1651
|
1653 |
+
▁fisher 1652
|
1654 |
+
▁fit 1653
|
1655 |
+
▁five 1654
|
1656 |
+
▁fix 1655
|
1657 |
+
▁fixed 1656
|
1658 |
+
▁fl 1657
|
1659 |
+
fl 1658
|
1660 |
+
▁flag 1659
|
1661 |
+
▁flash 1660
|
1662 |
+
▁flat 1661
|
1663 |
+
▁fle 1662
|
1664 |
+
▁fled 1663
|
1665 |
+
▁fleet 1664
|
1666 |
+
▁flesh 1665
|
1667 |
+
▁flew 1666
|
1668 |
+
▁flight 1667
|
1669 |
+
▁flo 1668
|
1670 |
+
▁flood 1669
|
1671 |
+
▁floor 1670
|
1672 |
+
▁flore 1671
|
1673 |
+
▁flour 1672
|
1674 |
+
▁flower 1673
|
1675 |
+
▁flowers 1674
|
1676 |
+
▁flung 1675
|
1677 |
+
▁fly 1676
|
1678 |
+
▁flying 1677
|
1679 |
+
▁fo 1678
|
1680 |
+
▁fol 1679
|
1681 |
+
▁fold 1680
|
1682 |
+
▁folk 1681
|
1683 |
+
▁follow 1682
|
1684 |
+
▁followed 1683
|
1685 |
+
▁following 1684
|
1686 |
+
▁follows 1685
|
1687 |
+
▁fond 1686
|
1688 |
+
▁food 1687
|
1689 |
+
▁fool 1688
|
1690 |
+
▁foolish 1689
|
1691 |
+
▁foot 1690
|
1692 |
+
▁for 1691
|
1693 |
+
for 1692
|
1694 |
+
▁forb 1693
|
1695 |
+
▁force 1694
|
1696 |
+
▁forced 1695
|
1697 |
+
▁forces 1696
|
1698 |
+
ford 1697
|
1699 |
+
▁fore 1698
|
1700 |
+
fore 1699
|
1701 |
+
▁forehead 1700
|
1702 |
+
▁foreign 1701
|
1703 |
+
▁forest 1702
|
1704 |
+
▁forg 1703
|
1705 |
+
▁forget 1704
|
1706 |
+
▁forgive 1705
|
1707 |
+
▁forgot 1706
|
1708 |
+
▁forgotten 1707
|
1709 |
+
▁form 1708
|
1710 |
+
form 1709
|
1711 |
+
▁formed 1710
|
1712 |
+
▁former 1711
|
1713 |
+
▁forms 1712
|
1714 |
+
▁fort 1713
|
1715 |
+
fort 1714
|
1716 |
+
▁forth 1715
|
1717 |
+
▁fortun 1716
|
1718 |
+
fortun 1717
|
1719 |
+
▁fortune 1718
|
1720 |
+
▁forty 1719
|
1721 |
+
▁forward 1720
|
1722 |
+
▁fought 1721
|
1723 |
+
▁found 1722
|
1724 |
+
▁four 1723
|
1725 |
+
▁fourteen 1724
|
1726 |
+
▁fourth 1725
|
1727 |
+
▁fox 1726
|
1728 |
+
▁fr 1727
|
1729 |
+
▁frag 1728
|
1730 |
+
▁frame 1729
|
1731 |
+
▁franc 1730
|
1732 |
+
▁france 1731
|
1733 |
+
▁frank 1732
|
1734 |
+
▁fre 1733
|
1735 |
+
▁fred 1734
|
1736 |
+
▁free 1735
|
1737 |
+
▁freed 1736
|
1738 |
+
▁freedom 1737
|
1739 |
+
▁french 1738
|
1740 |
+
▁frequ 1739
|
1741 |
+
▁frequently 1740
|
1742 |
+
▁fresh 1741
|
1743 |
+
▁friend 1742
|
1744 |
+
▁friendly 1743
|
1745 |
+
▁friends 1744
|
1746 |
+
▁friendship 1745
|
1747 |
+
▁fright 1746
|
1748 |
+
▁frightened 1747
|
1749 |
+
▁fro 1748
|
1750 |
+
▁from 1749
|
1751 |
+
▁front 1750
|
1752 |
+
▁fruit 1751
|
1753 |
+
ft 1752
|
1754 |
+
ful 1753
|
1755 |
+
▁full 1754
|
1756 |
+
▁fully 1755
|
1757 |
+
fully 1756
|
1758 |
+
▁fun 1757
|
1759 |
+
▁fur 1758
|
1760 |
+
▁furn 1759
|
1761 |
+
▁further 1760
|
1762 |
+
▁fut 1761
|
1763 |
+
▁future 1762
|
1764 |
+
▁g 1763
|
1765 |
+
g 1764
|
1766 |
+
▁ga 1765
|
1767 |
+
▁gain 1766
|
1768 |
+
▁gained 1767
|
1769 |
+
▁gall 1768
|
1770 |
+
▁game 1769
|
1771 |
+
gan 1770
|
1772 |
+
▁gar 1771
|
1773 |
+
gar 1772
|
1774 |
+
▁gard 1773
|
1775 |
+
▁garden 1774
|
1776 |
+
▁gas 1775
|
1777 |
+
▁gate 1776
|
1778 |
+
▁gates 1777
|
1779 |
+
▁gather 1778
|
1780 |
+
▁gathered 1779
|
1781 |
+
▁gave 1780
|
1782 |
+
▁gay 1781
|
1783 |
+
▁gaz 1782
|
1784 |
+
▁gaze 1783
|
1785 |
+
▁gazed 1784
|
1786 |
+
▁ge 1785
|
1787 |
+
ge 1786
|
1788 |
+
ged 1787
|
1789 |
+
▁gen 1788
|
1790 |
+
▁gener 1789
|
1791 |
+
▁general 1790
|
1792 |
+
▁generally 1791
|
1793 |
+
▁genius 1792
|
1794 |
+
▁gent 1793
|
1795 |
+
▁gentle 1794
|
1796 |
+
▁gentleman 1795
|
1797 |
+
▁gentlemen 1796
|
1798 |
+
▁gently 1797
|
1799 |
+
▁geor 1798
|
1800 |
+
▁george 1799
|
1801 |
+
▁ger 1800
|
1802 |
+
ger 1801
|
1803 |
+
▁german 1802
|
1804 |
+
gers 1803
|
1805 |
+
ges 1804
|
1806 |
+
▁gest 1805
|
1807 |
+
▁get 1806
|
1808 |
+
get 1807
|
1809 |
+
▁gets 1808
|
1810 |
+
▁getting 1809
|
1811 |
+
gg 1810
|
1812 |
+
gged 1811
|
1813 |
+
▁gh 1812
|
1814 |
+
gh 1813
|
1815 |
+
ghed 1814
|
1816 |
+
▁ghost 1815
|
1817 |
+
ght 1816
|
1818 |
+
▁gi 1817
|
1819 |
+
▁giant 1818
|
1820 |
+
▁gift 1819
|
1821 |
+
ging 1820
|
1822 |
+
▁girl 1821
|
1823 |
+
▁girls 1822
|
1824 |
+
▁give 1823
|
1825 |
+
▁given 1824
|
1826 |
+
▁gives 1825
|
1827 |
+
▁giving 1826
|
1828 |
+
▁gl 1827
|
1829 |
+
▁glad 1828
|
1830 |
+
▁glance 1829
|
1831 |
+
▁glanced 1830
|
1832 |
+
▁glass 1831
|
1833 |
+
▁gle 1832
|
1834 |
+
▁glim 1833
|
1835 |
+
▁glo 1834
|
1836 |
+
▁gloom 1835
|
1837 |
+
▁gloomy 1836
|
1838 |
+
▁glory 1837
|
1839 |
+
gment 1838
|
1840 |
+
gn 1839
|
1841 |
+
▁go 1840
|
1842 |
+
go 1841
|
1843 |
+
▁god 1842
|
1844 |
+
▁gods 1843
|
1845 |
+
▁goes 1844
|
1846 |
+
▁going 1845
|
1847 |
+
▁gold 1846
|
1848 |
+
▁golden 1847
|
1849 |
+
▁gone 1848
|
1850 |
+
▁good 1849
|
1851 |
+
▁goods 1850
|
1852 |
+
▁got 1851
|
1853 |
+
▁govern 1852
|
1854 |
+
▁government 1853
|
1855 |
+
▁governor 1854
|
1856 |
+
▁gown 1855
|
1857 |
+
▁gr 1856
|
1858 |
+
gr 1857
|
1859 |
+
▁gra 1858
|
1860 |
+
▁grace 1859
|
1861 |
+
▁grad 1860
|
1862 |
+
▁gradually 1861
|
1863 |
+
▁grand 1862
|
1864 |
+
▁grandfather 1863
|
1865 |
+
▁grant 1864
|
1866 |
+
▁grass 1865
|
1867 |
+
▁grat 1866
|
1868 |
+
▁grate 1867
|
1869 |
+
▁grave 1868
|
1870 |
+
▁gray 1869
|
1871 |
+
▁gre 1870
|
1872 |
+
▁great 1871
|
1873 |
+
▁greater 1872
|
1874 |
+
▁greatest 1873
|
1875 |
+
▁greatly 1874
|
1876 |
+
▁gree 1875
|
1877 |
+
▁green 1876
|
1878 |
+
▁greet 1877
|
1879 |
+
gress 1878
|
1880 |
+
▁grew 1879
|
1881 |
+
▁grey 1880
|
1882 |
+
▁gri 1881
|
1883 |
+
▁grie 1882
|
1884 |
+
▁grief 1883
|
1885 |
+
▁grim 1884
|
1886 |
+
▁gro 1885
|
1887 |
+
▁grou 1886
|
1888 |
+
▁ground 1887
|
1889 |
+
▁group 1888
|
1890 |
+
▁grow 1889
|
1891 |
+
▁growing 1890
|
1892 |
+
▁grown 1891
|
1893 |
+
gs 1892
|
1894 |
+
gth 1893
|
1895 |
+
▁gu 1894
|
1896 |
+
▁guard 1895
|
1897 |
+
▁guess 1896
|
1898 |
+
▁guest 1897
|
1899 |
+
▁guests 1898
|
1900 |
+
▁guide 1899
|
1901 |
+
▁guil 1900
|
1902 |
+
▁guilty 1901
|
1903 |
+
▁gun 1902
|
1904 |
+
▁guns 1903
|
1905 |
+
gy 1904
|
1906 |
+
gypt 1905
|
1907 |
+
▁h 1906
|
1908 |
+
h 1907
|
1909 |
+
▁ha 1908
|
1910 |
+
ha 1909
|
1911 |
+
▁hab 1910
|
1912 |
+
▁habit 1911
|
1913 |
+
▁habits 1912
|
1914 |
+
▁had 1913
|
1915 |
+
▁hadn 1914
|
1916 |
+
▁hair 1915
|
1917 |
+
▁hale 1916
|
1918 |
+
▁half 1917
|
1919 |
+
▁hall 1918
|
1920 |
+
▁halt 1919
|
1921 |
+
▁ham 1920
|
1922 |
+
ham 1921
|
1923 |
+
hamed 1922
|
1924 |
+
▁hand 1923
|
1925 |
+
▁handed 1924
|
1926 |
+
▁handker 1925
|
1927 |
+
▁handkerchief 1926
|
1928 |
+
▁hands 1927
|
1929 |
+
▁handsome 1928
|
1930 |
+
▁hang 1929
|
1931 |
+
▁hanging 1930
|
1932 |
+
▁hans 1931
|
1933 |
+
▁happ 1932
|
1934 |
+
▁happen 1933
|
1935 |
+
▁happened 1934
|
1936 |
+
▁happiness 1935
|
1937 |
+
▁happy 1936
|
1938 |
+
haps 1937
|
1939 |
+
▁har 1938
|
1940 |
+
▁hard 1939
|
1941 |
+
▁hardly 1940
|
1942 |
+
▁harm 1941
|
1943 |
+
▁harry 1942
|
1944 |
+
▁has 1943
|
1945 |
+
▁hast 1944
|
1946 |
+
▁haste 1945
|
1947 |
+
▁hastily 1946
|
1948 |
+
▁hat 1947
|
1949 |
+
▁hate 1948
|
1950 |
+
▁hath 1949
|
1951 |
+
▁have 1950
|
1952 |
+
▁haven 1951
|
1953 |
+
▁having 1952
|
1954 |
+
▁haw 1953
|
1955 |
+
▁hay 1954
|
1956 |
+
▁he 1955
|
1957 |
+
he 1956
|
1958 |
+
▁hea 1957
|
1959 |
+
▁head 1958
|
1960 |
+
head 1959
|
1961 |
+
▁heads 1960
|
1962 |
+
▁health 1961
|
1963 |
+
▁hear 1962
|
1964 |
+
▁heard 1963
|
1965 |
+
▁hearing 1964
|
1966 |
+
▁heart 1965
|
1967 |
+
▁hearts 1966
|
1968 |
+
▁heat 1967
|
1969 |
+
▁heav 1968
|
1970 |
+
▁heaven 1969
|
1971 |
+
▁heavy 1970
|
1972 |
+
hed 1971
|
1973 |
+
▁height 1972
|
1974 |
+
▁hel 1973
|
1975 |
+
hel 1974
|
1976 |
+
▁held 1975
|
1977 |
+
held 1976
|
1978 |
+
▁helen 1977
|
1979 |
+
▁hell 1978
|
1980 |
+
▁help 1979
|
1981 |
+
▁helped 1980
|
1982 |
+
hem 1981
|
1983 |
+
▁hen 1982
|
1984 |
+
hen 1983
|
1985 |
+
▁hence 1984
|
1986 |
+
▁henry 1985
|
1987 |
+
hens 1986
|
1988 |
+
▁her 1987
|
1989 |
+
her 1988
|
1990 |
+
▁here 1989
|
1991 |
+
here 1990
|
1992 |
+
hered 1991
|
1993 |
+
▁hero 1992
|
1994 |
+
▁hers 1993
|
1995 |
+
▁herself 1994
|
1996 |
+
▁hes 1995
|
1997 |
+
hes 1996
|
1998 |
+
hest 1997
|
1999 |
+
het 1998
|
2000 |
+
▁hid 1999
|
2001 |
+
▁hidden 2000
|
2002 |
+
▁hide 2001
|
2003 |
+
▁hig 2002
|
2004 |
+
▁high 2003
|
2005 |
+
▁higher 2004
|
2006 |
+
▁highest 2005
|
2007 |
+
▁highly 2006
|
2008 |
+
▁hill 2007
|
2009 |
+
▁hills 2008
|
2010 |
+
▁him 2009
|
2011 |
+
▁himself 2010
|
2012 |
+
▁hind 2011
|
2013 |
+
hing 2012
|
2014 |
+
▁hint 2013
|
2015 |
+
hip 2014
|
2016 |
+
▁his 2015
|
2017 |
+
▁hist 2016
|
2018 |
+
▁history 2017
|
2019 |
+
▁hit 2018
|
2020 |
+
▁hither 2019
|
2021 |
+
hn 2020
|
2022 |
+
▁ho 2021
|
2023 |
+
▁hol 2022
|
2024 |
+
▁hold 2023
|
2025 |
+
hold 2024
|
2026 |
+
▁holding 2025
|
2027 |
+
▁hole 2026
|
2028 |
+
▁hollow 2027
|
2029 |
+
▁holy 2028
|
2030 |
+
▁hom 2029
|
2031 |
+
▁home 2030
|
2032 |
+
▁hon 2031
|
2033 |
+
▁honest 2032
|
2034 |
+
▁honor 2033
|
2035 |
+
▁honour 2034
|
2036 |
+
hood 2035
|
2037 |
+
▁hop 2036
|
2038 |
+
▁hope 2037
|
2039 |
+
▁hoped 2038
|
2040 |
+
▁hopes 2039
|
2041 |
+
▁hor 2040
|
2042 |
+
▁horiz 2041
|
2043 |
+
▁horn 2042
|
2044 |
+
▁horri 2043
|
2045 |
+
▁horrible 2044
|
2046 |
+
▁horror 2045
|
2047 |
+
▁hors 2046
|
2048 |
+
▁horse 2047
|
2049 |
+
▁horses 2048
|
2050 |
+
▁hosp 2049
|
2051 |
+
▁host 2050
|
2052 |
+
▁hot 2051
|
2053 |
+
▁hotel 2052
|
2054 |
+
▁hour 2053
|
2055 |
+
▁hours 2054
|
2056 |
+
▁house 2055
|
2057 |
+
house 2056
|
2058 |
+
▁household 2057
|
2059 |
+
▁houses 2058
|
2060 |
+
▁how 2059
|
2061 |
+
how 2060
|
2062 |
+
▁however 2061
|
2063 |
+
▁hu 2062
|
2064 |
+
▁huge 2063
|
2065 |
+
▁hum 2064
|
2066 |
+
▁human 2065
|
2067 |
+
▁humble 2066
|
2068 |
+
▁hun 2067
|
2069 |
+
▁hund 2068
|
2070 |
+
▁hundred 2069
|
2071 |
+
▁hung 2070
|
2072 |
+
▁hunger 2071
|
2073 |
+
▁hungry 2072
|
2074 |
+
▁hunt 2073
|
2075 |
+
▁hunting 2074
|
2076 |
+
▁hur 2075
|
2077 |
+
▁hurried 2076
|
2078 |
+
▁hurry 2077
|
2079 |
+
▁hurt 2078
|
2080 |
+
▁hus 2079
|
2081 |
+
hus 2080
|
2082 |
+
▁husband 2081
|
2083 |
+
▁hut 2082
|
2084 |
+
▁hy 2083
|
2085 |
+
hy 2084
|
2086 |
+
▁hyp 2085
|
2087 |
+
▁i 2086
|
2088 |
+
i 2087
|
2089 |
+
ia 2088
|
2090 |
+
iable 2089
|
2091 |
+
ial 2090
|
2092 |
+
ially 2091
|
2093 |
+
iam 2092
|
2094 |
+
ian 2093
|
2095 |
+
iana 2094
|
2096 |
+
iance 2095
|
2097 |
+
ians 2096
|
2098 |
+
iant 2097
|
2099 |
+
iar 2098
|
2100 |
+
iation 2099
|
2101 |
+
ib 2100
|
2102 |
+
iber 2101
|
2103 |
+
ibility 2102
|
2104 |
+
ible 2103
|
2105 |
+
ibly 2104
|
2106 |
+
ic 2105
|
2107 |
+
ical 2106
|
2108 |
+
ically 2107
|
2109 |
+
icate 2108
|
2110 |
+
icated 2109
|
2111 |
+
ication 2110
|
2112 |
+
▁ice 2111
|
2113 |
+
ice 2112
|
2114 |
+
iced 2113
|
2115 |
+
ices 2114
|
2116 |
+
ich 2115
|
2117 |
+
icip 2116
|
2118 |
+
ick 2117
|
2119 |
+
icked 2118
|
2120 |
+
ics 2119
|
2121 |
+
ict 2120
|
2122 |
+
icted 2121
|
2123 |
+
iction 2122
|
2124 |
+
▁id 2123
|
2125 |
+
id 2124
|
2126 |
+
iday 2125
|
2127 |
+
idd 2126
|
2128 |
+
idden 2127
|
2129 |
+
iddle 2128
|
2130 |
+
▁ide 2129
|
2131 |
+
ide 2130
|
2132 |
+
▁idea 2131
|
2133 |
+
▁ideal 2132
|
2134 |
+
▁ideas 2133
|
2135 |
+
ided 2134
|
2136 |
+
idence 2135
|
2137 |
+
▁ident 2136
|
2138 |
+
ident 2137
|
2139 |
+
idently 2138
|
2140 |
+
ider 2139
|
2141 |
+
idered 2140
|
2142 |
+
ides 2141
|
2143 |
+
idge 2142
|
2144 |
+
iding 2143
|
2145 |
+
ids 2144
|
2146 |
+
ie 2145
|
2147 |
+
ied 2146
|
2148 |
+
ief 2147
|
2149 |
+
ield 2148
|
2150 |
+
ience 2149
|
2151 |
+
iend 2150
|
2152 |
+
ient 2151
|
2153 |
+
iently 2152
|
2154 |
+
ier 2153
|
2155 |
+
iers 2154
|
2156 |
+
ies 2155
|
2157 |
+
iest 2156
|
2158 |
+
iet 2157
|
2159 |
+
iety 2158
|
2160 |
+
iew 2159
|
2161 |
+
▁if 2160
|
2162 |
+
if 2161
|
2163 |
+
ife 2162
|
2164 |
+
iff 2163
|
2165 |
+
ific 2164
|
2166 |
+
ification 2165
|
2167 |
+
ified 2166
|
2168 |
+
iform 2167
|
2169 |
+
ift 2168
|
2170 |
+
iful 2169
|
2171 |
+
ify 2170
|
2172 |
+
ig 2171
|
2173 |
+
igh 2172
|
2174 |
+
ighed 2173
|
2175 |
+
ight 2174
|
2176 |
+
▁ign 2175
|
2177 |
+
ign 2176
|
2178 |
+
igned 2177
|
2179 |
+
▁ignor 2178
|
2180 |
+
▁ignorant 2179
|
2181 |
+
ik 2180
|
2182 |
+
il 2181
|
2183 |
+
ilar 2182
|
2184 |
+
ild 2183
|
2185 |
+
ile 2184
|
2186 |
+
iled 2185
|
2187 |
+
iles 2186
|
2188 |
+
iling 2187
|
2189 |
+
ilities 2188
|
2190 |
+
ility 2189
|
2191 |
+
▁ill 2190
|
2192 |
+
ill 2191
|
2193 |
+
illa 2192
|
2194 |
+
ille 2193
|
2195 |
+
illed 2194
|
2196 |
+
illing 2195
|
2197 |
+
▁illust 2196
|
2198 |
+
illy 2197
|
2199 |
+
ils 2198
|
2200 |
+
ilst 2199
|
2201 |
+
ilt 2200
|
2202 |
+
ily 2201
|
2203 |
+
▁im 2202
|
2204 |
+
im 2203
|
2205 |
+
▁imag 2204
|
2206 |
+
▁image 2205
|
2207 |
+
▁imagination 2206
|
2208 |
+
▁imagine 2207
|
2209 |
+
imate 2208
|
2210 |
+
ime 2209
|
2211 |
+
iment 2210
|
2212 |
+
iments 2211
|
2213 |
+
imes 2212
|
2214 |
+
▁imm 2213
|
2215 |
+
▁immediate 2214
|
2216 |
+
▁immediately 2215
|
2217 |
+
▁immense 2216
|
2218 |
+
▁imp 2217
|
2219 |
+
▁impat 2218
|
2220 |
+
▁imper 2219
|
2221 |
+
▁impl 2220
|
2222 |
+
▁import 2221
|
2223 |
+
▁importance 2222
|
2224 |
+
▁important 2223
|
2225 |
+
▁imposs 2224
|
2226 |
+
▁impossible 2225
|
2227 |
+
▁impress 2226
|
2228 |
+
▁impression 2227
|
2229 |
+
▁impro 2228
|
2230 |
+
▁improve 2229
|
2231 |
+
▁in 2230
|
2232 |
+
in 2231
|
2233 |
+
ina 2232
|
2234 |
+
inal 2233
|
2235 |
+
inary 2234
|
2236 |
+
inate 2235
|
2237 |
+
ination 2236
|
2238 |
+
▁inc 2237
|
2239 |
+
ince 2238
|
2240 |
+
▁incl 2239
|
2241 |
+
▁inclined 2240
|
2242 |
+
▁incre 2241
|
2243 |
+
▁increase 2242
|
2244 |
+
▁increased 2243
|
2245 |
+
inct 2244
|
2246 |
+
▁ind 2245
|
2247 |
+
ind 2246
|
2248 |
+
▁inde 2247
|
2249 |
+
▁indeed 2248
|
2250 |
+
▁independ 2249
|
2251 |
+
▁indian 2250
|
2252 |
+
▁indians 2251
|
2253 |
+
▁indif 2252
|
2254 |
+
▁indign 2253
|
2255 |
+
▁individ 2254
|
2256 |
+
▁individual 2255
|
2257 |
+
▁indul 2256
|
2258 |
+
��indust 2257
|
2259 |
+
▁ine 2258
|
2260 |
+
ine 2259
|
2261 |
+
ined 2260
|
2262 |
+
inent 2261
|
2263 |
+
ines 2262
|
2264 |
+
iness 2263
|
2265 |
+
▁inf 2264
|
2266 |
+
▁infinite 2265
|
2267 |
+
▁infl 2266
|
2268 |
+
▁influ 2267
|
2269 |
+
▁influence 2268
|
2270 |
+
▁inform 2269
|
2271 |
+
▁information 2270
|
2272 |
+
▁informed 2271
|
2273 |
+
▁ing 2272
|
2274 |
+
ing 2273
|
2275 |
+
inging 2274
|
2276 |
+
ingly 2275
|
2277 |
+
ings 2276
|
2278 |
+
ingu 2277
|
2279 |
+
▁inh 2278
|
2280 |
+
▁inhab 2279
|
2281 |
+
▁inhabit 2280
|
2282 |
+
▁inhabitants 2281
|
2283 |
+
ining 2282
|
2284 |
+
inite 2283
|
2285 |
+
▁inj 2284
|
2286 |
+
ink 2285
|
2287 |
+
▁inn 2286
|
2288 |
+
▁innoc 2287
|
2289 |
+
▁innocent 2288
|
2290 |
+
▁inqu 2289
|
2291 |
+
▁inquir 2290
|
2292 |
+
▁inquired 2291
|
2293 |
+
▁ins 2292
|
2294 |
+
ins 2293
|
2295 |
+
▁inside 2294
|
2296 |
+
▁inst 2295
|
2297 |
+
▁instance 2296
|
2298 |
+
▁instant 2297
|
2299 |
+
▁instantly 2298
|
2300 |
+
▁instead 2299
|
2301 |
+
▁instinct 2300
|
2302 |
+
▁instit 2301
|
2303 |
+
▁instr 2302
|
2304 |
+
▁instruct 2303
|
2305 |
+
▁int 2304
|
2306 |
+
int 2305
|
2307 |
+
▁inte 2306
|
2308 |
+
▁intellect 2307
|
2309 |
+
▁intellectual 2308
|
2310 |
+
▁intellig 2309
|
2311 |
+
▁intelligence 2310
|
2312 |
+
▁intended 2311
|
2313 |
+
▁intense 2312
|
2314 |
+
▁intent 2313
|
2315 |
+
▁intention 2314
|
2316 |
+
▁inter 2315
|
2317 |
+
▁interest 2316
|
2318 |
+
▁interested 2317
|
2319 |
+
▁interesting 2318
|
2320 |
+
▁interests 2319
|
2321 |
+
▁interp 2320
|
2322 |
+
▁interrupt 2321
|
2323 |
+
▁interrupted 2322
|
2324 |
+
▁interv 2323
|
2325 |
+
▁into 2324
|
2326 |
+
▁introdu 2325
|
2327 |
+
▁introduced 2326
|
2328 |
+
▁inv 2327
|
2329 |
+
▁invent 2328
|
2330 |
+
▁invest 2329
|
2331 |
+
▁investig 2330
|
2332 |
+
▁invited 2331
|
2333 |
+
▁invol 2332
|
2334 |
+
iny 2333
|
2335 |
+
io 2334
|
2336 |
+
iod 2335
|
2337 |
+
ion 2336
|
2338 |
+
ions 2337
|
2339 |
+
ior 2338
|
2340 |
+
iot 2339
|
2341 |
+
ious 2340
|
2342 |
+
iously 2341
|
2343 |
+
ip 2342
|
2344 |
+
ipp 2343
|
2345 |
+
ipped 2344
|
2346 |
+
ips 2345
|
2347 |
+
▁ir 2346
|
2348 |
+
ir 2347
|
2349 |
+
ird 2348
|
2350 |
+
ire 2349
|
2351 |
+
ired 2350
|
2352 |
+
ires 2351
|
2353 |
+
irl 2352
|
2354 |
+
irm 2353
|
2355 |
+
▁iron 2354
|
2356 |
+
irt 2355
|
2357 |
+
▁is 2356
|
2358 |
+
is 2357
|
2359 |
+
▁isabel 2358
|
2360 |
+
isc 2359
|
2361 |
+
ise 2360
|
2362 |
+
ised 2361
|
2363 |
+
ises 2362
|
2364 |
+
isf 2363
|
2365 |
+
ish 2364
|
2366 |
+
ished 2365
|
2367 |
+
ishing 2366
|
2368 |
+
ishment 2367
|
2369 |
+
ishop 2368
|
2370 |
+
ising 2369
|
2371 |
+
ision 2370
|
2372 |
+
isions 2371
|
2373 |
+
▁island 2372
|
2374 |
+
ism 2373
|
2375 |
+
▁isn 2374
|
2376 |
+
ison 2375
|
2377 |
+
isp 2376
|
2378 |
+
▁iss 2377
|
2379 |
+
iss 2378
|
2380 |
+
ission 2379
|
2381 |
+
ist 2380
|
2382 |
+
isted 2381
|
2383 |
+
ister 2382
|
2384 |
+
isters 2383
|
2385 |
+
istic 2384
|
2386 |
+
istr 2385
|
2387 |
+
ists 2386
|
2388 |
+
▁it 2387
|
2389 |
+
it 2388
|
2390 |
+
itable 2389
|
2391 |
+
▁ital 2390
|
2392 |
+
ital 2391
|
2393 |
+
itary 2392
|
2394 |
+
itate 2393
|
2395 |
+
itated 2394
|
2396 |
+
itation 2395
|
2397 |
+
itch 2396
|
2398 |
+
ite 2397
|
2399 |
+
ited 2398
|
2400 |
+
iter 2399
|
2401 |
+
ites 2400
|
2402 |
+
ith 2401
|
2403 |
+
ither 2402
|
2404 |
+
ities 2403
|
2405 |
+
iting 2404
|
2406 |
+
ition 2405
|
2407 |
+
itions 2406
|
2408 |
+
itive 2407
|
2409 |
+
itor 2408
|
2410 |
+
▁its 2409
|
2411 |
+
its 2410
|
2412 |
+
▁itself 2411
|
2413 |
+
itt 2412
|
2414 |
+
itted 2413
|
2415 |
+
itten 2414
|
2416 |
+
itting 2415
|
2417 |
+
ittle 2416
|
2418 |
+
itu 2417
|
2419 |
+
itude 2418
|
2420 |
+
iture 2419
|
2421 |
+
ity 2420
|
2422 |
+
ium 2421
|
2423 |
+
ius 2422
|
2424 |
+
▁iv 2423
|
2425 |
+
iv 2424
|
2426 |
+
ival 2425
|
2427 |
+
ive 2426
|
2428 |
+
ived 2427
|
2429 |
+
ively 2428
|
2430 |
+
iven 2429
|
2431 |
+
iver 2430
|
2432 |
+
ivered 2431
|
2433 |
+
ivers 2432
|
2434 |
+
ives 2433
|
2435 |
+
ivid 2434
|
2436 |
+
ivity 2435
|
2437 |
+
ix 2436
|
2438 |
+
iz 2437
|
2439 |
+
ization 2438
|
2440 |
+
ize 2439
|
2441 |
+
ized 2440
|
2442 |
+
izing 2441
|
2443 |
+
▁j 2442
|
2444 |
+
j 2443
|
2445 |
+
▁jac 2444
|
2446 |
+
▁jack 2445
|
2447 |
+
▁james 2446
|
2448 |
+
▁jane 2447
|
2449 |
+
▁je 2448
|
2450 |
+
▁jealous 2449
|
2451 |
+
ject 2450
|
2452 |
+
▁jer 2451
|
2453 |
+
▁jes 2452
|
2454 |
+
▁jesus 2453
|
2455 |
+
▁jew 2454
|
2456 |
+
▁jim 2455
|
2457 |
+
▁jo 2456
|
2458 |
+
jo 2457
|
2459 |
+
▁job 2458
|
2460 |
+
▁joe 2459
|
2461 |
+
▁john 2460
|
2462 |
+
▁join 2461
|
2463 |
+
▁joined 2462
|
2464 |
+
▁jose 2463
|
2465 |
+
▁joseph 2464
|
2466 |
+
▁jour 2465
|
2467 |
+
▁journey 2466
|
2468 |
+
▁joy 2467
|
2469 |
+
▁jud 2468
|
2470 |
+
▁judge 2469
|
2471 |
+
▁judgment 2470
|
2472 |
+
▁jul 2471
|
2473 |
+
▁julia 2472
|
2474 |
+
▁jump 2473
|
2475 |
+
▁jumped 2474
|
2476 |
+
▁june 2475
|
2477 |
+
▁just 2476
|
2478 |
+
▁justice 2477
|
2479 |
+
▁k 2478
|
2480 |
+
k 2479
|
2481 |
+
ka 2480
|
2482 |
+
▁kat 2481
|
2483 |
+
▁katy 2482
|
2484 |
+
▁ke 2483
|
2485 |
+
ke 2484
|
2486 |
+
ked 2485
|
2487 |
+
▁keen 2486
|
2488 |
+
▁keep 2487
|
2489 |
+
keep 2488
|
2490 |
+
▁keeping 2489
|
2491 |
+
▁ken 2490
|
2492 |
+
ken 2491
|
2493 |
+
▁kept 2492
|
2494 |
+
ker 2493
|
2495 |
+
kes 2494
|
2496 |
+
▁key 2495
|
2497 |
+
key 2496
|
2498 |
+
ki 2497
|
2499 |
+
▁kill 2498
|
2500 |
+
▁killed 2499
|
2501 |
+
kin 2500
|
2502 |
+
▁kind 2501
|
2503 |
+
kind 2502
|
2504 |
+
▁kindly 2503
|
2505 |
+
▁kindness 2504
|
2506 |
+
▁kinds 2505
|
2507 |
+
▁king 2506
|
2508 |
+
king 2507
|
2509 |
+
▁kingdom 2508
|
2510 |
+
▁kings 2509
|
2511 |
+
kins 2510
|
2512 |
+
▁kiss 2511
|
2513 |
+
▁kissed 2512
|
2514 |
+
▁kit 2513
|
2515 |
+
▁kitchen 2514
|
2516 |
+
▁kn 2515
|
2517 |
+
▁kne 2516
|
2518 |
+
▁knees 2517
|
2519 |
+
▁knew 2518
|
2520 |
+
▁knife 2519
|
2521 |
+
▁knight 2520
|
2522 |
+
▁knights 2521
|
2523 |
+
▁knock 2522
|
2524 |
+
▁know 2523
|
2525 |
+
▁knowing 2524
|
2526 |
+
▁knowledge 2525
|
2527 |
+
▁known 2526
|
2528 |
+
▁knows 2527
|
2529 |
+
ks 2528
|
2530 |
+
ky 2529
|
2531 |
+
▁l 2530
|
2532 |
+
l 2531
|
2533 |
+
▁la 2532
|
2534 |
+
la 2533
|
2535 |
+
▁lab 2534
|
2536 |
+
▁labor 2535
|
2537 |
+
▁lack 2536
|
2538 |
+
▁lad 2537
|
2539 |
+
▁ladies 2538
|
2540 |
+
▁lady 2539
|
2541 |
+
▁laid 2540
|
2542 |
+
▁lake 2541
|
2543 |
+
▁lamp 2542
|
2544 |
+
▁lan 2543
|
2545 |
+
▁land 2544
|
2546 |
+
land 2545
|
2547 |
+
▁lands 2546
|
2548 |
+
▁lang 2547
|
2549 |
+
▁langu 2548
|
2550 |
+
▁language 2549
|
2551 |
+
▁lap 2550
|
2552 |
+
▁lar 2551
|
2553 |
+
▁large 2552
|
2554 |
+
▁larger 2553
|
2555 |
+
▁last 2554
|
2556 |
+
▁lat 2555
|
2557 |
+
▁late 2556
|
2558 |
+
▁lately 2557
|
2559 |
+
▁later 2558
|
2560 |
+
▁latter 2559
|
2561 |
+
▁lau 2560
|
2562 |
+
▁laugh 2561
|
2563 |
+
▁laughed 2562
|
2564 |
+
▁laughing 2563
|
2565 |
+
▁laughter 2564
|
2566 |
+
▁law 2565
|
2567 |
+
▁laws 2566
|
2568 |
+
▁lawyer 2567
|
2569 |
+
▁lay 2568
|
2570 |
+
ld 2569
|
2571 |
+
ldom 2570
|
2572 |
+
▁le 2571
|
2573 |
+
le 2572
|
2574 |
+
▁lea 2573
|
2575 |
+
▁lead 2574
|
2576 |
+
▁leading 2575
|
2577 |
+
▁leaf 2576
|
2578 |
+
▁lean 2577
|
2579 |
+
▁leaned 2578
|
2580 |
+
▁leaning 2579
|
2581 |
+
▁leap 2580
|
2582 |
+
▁lear 2581
|
2583 |
+
▁learn 2582
|
2584 |
+
▁learned 2583
|
2585 |
+
▁learning 2584
|
2586 |
+
▁least 2585
|
2587 |
+
▁leave 2586
|
2588 |
+
▁leaves 2587
|
2589 |
+
▁leaving 2588
|
2590 |
+
lebr 2589
|
2591 |
+
lect 2590
|
2592 |
+
lected 2591
|
2593 |
+
lection 2592
|
2594 |
+
▁led 2593
|
2595 |
+
led 2594
|
2596 |
+
ledge 2595
|
2597 |
+
leep 2596
|
2598 |
+
▁left 2597
|
2599 |
+
▁leg 2598
|
2600 |
+
▁legs 2599
|
2601 |
+
▁leis 2600
|
2602 |
+
▁leisure 2601
|
2603 |
+
▁len 2602
|
2604 |
+
lend 2603
|
2605 |
+
▁length 2604
|
2606 |
+
ler 2605
|
2607 |
+
les 2606
|
2608 |
+
▁less 2607
|
2609 |
+
less 2608
|
2610 |
+
lessly 2609
|
2611 |
+
▁lest 2610
|
2612 |
+
▁let 2611
|
2613 |
+
let 2612
|
2614 |
+
▁letter 2613
|
2615 |
+
▁letters 2614
|
2616 |
+
▁lev 2615
|
2617 |
+
▁level 2616
|
2618 |
+
ley 2617
|
2619 |
+
lf 2618
|
2620 |
+
▁li 2619
|
2621 |
+
li 2620
|
2622 |
+
▁liber 2621
|
2623 |
+
▁libert 2622
|
2624 |
+
▁liberty 2623
|
2625 |
+
▁libr 2624
|
2626 |
+
lic 2625
|
2627 |
+
▁lie 2626
|
2628 |
+
▁lies 2627
|
2629 |
+
▁lieuten 2628
|
2630 |
+
▁life 2629
|
2631 |
+
▁lift 2630
|
2632 |
+
▁lifted 2631
|
2633 |
+
▁light 2632
|
2634 |
+
light 2633
|
2635 |
+
▁lighted 2634
|
2636 |
+
▁lights 2635
|
2637 |
+
▁like 2636
|
2638 |
+
like 2637
|
2639 |
+
▁liked 2638
|
2640 |
+
▁likely 2639
|
2641 |
+
▁likewise 2640
|
2642 |
+
▁lim 2641
|
2643 |
+
▁lin 2642
|
2644 |
+
lin 2643
|
2645 |
+
▁line 2644
|
2646 |
+
▁lines 2645
|
2647 |
+
liness 2646
|
2648 |
+
▁ling 2647
|
2649 |
+
ling 2648
|
2650 |
+
▁lion 2649
|
2651 |
+
▁lips 2650
|
2652 |
+
lish 2651
|
2653 |
+
lished 2652
|
2654 |
+
▁list 2653
|
2655 |
+
▁listen 2654
|
2656 |
+
▁listened 2655
|
2657 |
+
▁listening 2656
|
2658 |
+
▁lit 2657
|
2659 |
+
▁liter 2658
|
2660 |
+
▁little 2659
|
2661 |
+
▁live 2660
|
2662 |
+
▁lived 2661
|
2663 |
+
▁lives 2662
|
2664 |
+
▁living 2663
|
2665 |
+
ll 2664
|
2666 |
+
lla 2665
|
2667 |
+
lle 2666
|
2668 |
+
llect 2667
|
2669 |
+
lled 2668
|
2670 |
+
llen 2669
|
2671 |
+
llig 2670
|
2672 |
+
lling 2671
|
2673 |
+
llow 2672
|
2674 |
+
lls 2673
|
2675 |
+
lly 2674
|
2676 |
+
▁lo 2675
|
2677 |
+
▁loc 2676
|
2678 |
+
▁local 2677
|
2679 |
+
▁lock 2678
|
2680 |
+
▁locked 2679
|
2681 |
+
▁lod 2680
|
2682 |
+
▁loft 2681
|
2683 |
+
▁log 2682
|
2684 |
+
▁london 2683
|
2685 |
+
▁lone 2684
|
2686 |
+
▁lonely 2685
|
2687 |
+
▁long 2686
|
2688 |
+
▁longer 2687
|
2689 |
+
▁loo 2688
|
2690 |
+
▁look 2689
|
2691 |
+
▁looked 2690
|
2692 |
+
▁looking 2691
|
2693 |
+
▁looks 2692
|
2694 |
+
▁loose 2693
|
2695 |
+
▁lord 2694
|
2696 |
+
▁lose 2695
|
2697 |
+
▁loss 2696
|
2698 |
+
▁lost 2697
|
2699 |
+
▁lot 2698
|
2700 |
+
lot 2699
|
2701 |
+
▁lou 2700
|
2702 |
+
▁loud 2701
|
2703 |
+
▁louis 2702
|
2704 |
+
▁love 2703
|
2705 |
+
▁loved 2704
|
2706 |
+
▁lovely 2705
|
2707 |
+
▁lover 2706
|
2708 |
+
▁loves 2707
|
2709 |
+
▁loving 2708
|
2710 |
+
▁low 2709
|
2711 |
+
▁lower 2710
|
2712 |
+
ls 2711
|
2713 |
+
lt 2712
|
2714 |
+
▁lu 2713
|
2715 |
+
▁luck 2714
|
2716 |
+
▁lucy 2715
|
2717 |
+
▁lux 2716
|
2718 |
+
lv 2717
|
2719 |
+
▁ly 2718
|
2720 |
+
ly 2719
|
2721 |
+
▁lying 2720
|
2722 |
+
▁m 2721
|
2723 |
+
m 2722
|
2724 |
+
▁ma 2723
|
2725 |
+
ma 2724
|
2726 |
+
▁mach 2725
|
2727 |
+
▁machine 2726
|
2728 |
+
▁mad 2727
|
2729 |
+
▁madam 2728
|
2730 |
+
▁madame 2729
|
2731 |
+
▁made 2730
|
2732 |
+
▁mag 2731
|
2733 |
+
▁magic 2732
|
2734 |
+
▁magn 2733
|
2735 |
+
▁magnific 2734
|
2736 |
+
▁magnificent 2735
|
2737 |
+
▁maid 2736
|
2738 |
+
▁maiden 2737
|
2739 |
+
▁main 2738
|
2740 |
+
▁maint 2739
|
2741 |
+
▁maj 2740
|
2742 |
+
▁majesty 2741
|
2743 |
+
▁major 2742
|
2744 |
+
▁make 2743
|
2745 |
+
▁makes 2744
|
2746 |
+
▁making 2745
|
2747 |
+
▁mal 2746
|
2748 |
+
▁mam 2747
|
2749 |
+
▁mamma 2748
|
2750 |
+
▁man 2749
|
2751 |
+
man 2750
|
2752 |
+
▁manage 2751
|
2753 |
+
▁managed 2752
|
2754 |
+
▁manif 2753
|
2755 |
+
▁mankind 2754
|
2756 |
+
▁manner 2755
|
2757 |
+
▁manners 2756
|
2758 |
+
▁many 2757
|
2759 |
+
▁mar 2758
|
2760 |
+
▁march 2759
|
2761 |
+
▁marg 2760
|
2762 |
+
▁margaret 2761
|
2763 |
+
▁mark 2762
|
2764 |
+
▁marked 2763
|
2765 |
+
▁market 2764
|
2766 |
+
▁marriage 2765
|
2767 |
+
▁married 2766
|
2768 |
+
▁marry 2767
|
2769 |
+
▁mart 2768
|
2770 |
+
▁mary 2769
|
2771 |
+
▁mas 2770
|
2772 |
+
mas 2771
|
2773 |
+
▁mass 2772
|
2774 |
+
▁master 2773
|
2775 |
+
▁mat 2774
|
2776 |
+
▁match 2775
|
2777 |
+
▁material 2776
|
2778 |
+
▁matter 2777
|
2779 |
+
▁matters 2778
|
2780 |
+
▁max 2779
|
2781 |
+
▁may 2780
|
2782 |
+
▁maybe 2781
|
2783 |
+
mb 2782
|
2784 |
+
mber 2783
|
2785 |
+
▁mc 2784
|
2786 |
+
▁me 2785
|
2787 |
+
me 2786
|
2788 |
+
▁mead 2787
|
2789 |
+
▁meal 2788
|
2790 |
+
▁mean 2789
|
2791 |
+
▁meaning 2790
|
2792 |
+
▁means 2791
|
2793 |
+
▁meant 2792
|
2794 |
+
▁meanwhile 2793
|
2795 |
+
▁meas 2794
|
2796 |
+
▁measure 2795
|
2797 |
+
▁meat 2796
|
2798 |
+
▁mechan 2797
|
2799 |
+
▁med 2798
|
2800 |
+
med 2799
|
2801 |
+
medi 2800
|
2802 |
+
▁medic 2801
|
2803 |
+
▁meet 2802
|
2804 |
+
▁meeting 2803
|
2805 |
+
▁mel 2804
|
2806 |
+
▁melan 2805
|
2807 |
+
▁melancholy 2806
|
2808 |
+
▁mem 2807
|
2809 |
+
▁memb 2808
|
2810 |
+
▁member 2809
|
2811 |
+
▁members 2810
|
2812 |
+
▁memory 2811
|
2813 |
+
▁men 2812
|
2814 |
+
men 2813
|
2815 |
+
mend 2814
|
2816 |
+
ment 2815
|
2817 |
+
▁mental 2816
|
2818 |
+
▁mention 2817
|
2819 |
+
▁mentioned 2818
|
2820 |
+
ments 2819
|
2821 |
+
▁mer 2820
|
2822 |
+
mer 2821
|
2823 |
+
▁merch 2822
|
2824 |
+
▁merchant 2823
|
2825 |
+
▁mercy 2824
|
2826 |
+
▁mere 2825
|
2827 |
+
▁merely 2826
|
2828 |
+
▁merry 2827
|
2829 |
+
▁mess 2828
|
2830 |
+
▁message 2829
|
2831 |
+
▁met 2830
|
2832 |
+
▁meth 2831
|
2833 |
+
▁method 2832
|
2834 |
+
▁mid 2833
|
2835 |
+
▁middle 2834
|
2836 |
+
▁midnight 2835
|
2837 |
+
▁midst 2836
|
2838 |
+
▁might 2837
|
2839 |
+
▁mighty 2838
|
2840 |
+
▁mil 2839
|
2841 |
+
▁mile 2840
|
2842 |
+
▁miles 2841
|
2843 |
+
▁military 2842
|
2844 |
+
▁milk 2843
|
2845 |
+
▁mill 2844
|
2846 |
+
▁million 2845
|
2847 |
+
▁min 2846
|
2848 |
+
min 2847
|
2849 |
+
▁mind 2848
|
2850 |
+
▁minds 2849
|
2851 |
+
▁mine 2850
|
2852 |
+
▁ming 2851
|
2853 |
+
ming 2852
|
2854 |
+
▁minister 2853
|
2855 |
+
▁minute 2854
|
2856 |
+
▁minutes 2855
|
2857 |
+
▁mir 2856
|
2858 |
+
▁mis 2857
|
2859 |
+
▁miserable 2858
|
2860 |
+
▁misery 2859
|
2861 |
+
▁miss 2860
|
2862 |
+
▁missus 2861
|
2863 |
+
▁mist 2862
|
2864 |
+
▁mistake 2863
|
2865 |
+
▁mistaken 2864
|
2866 |
+
▁mister 2865
|
2867 |
+
▁mistress 2866
|
2868 |
+
mit 2867
|
2869 |
+
mith 2868
|
2870 |
+
▁mix 2869
|
2871 |
+
mn 2870
|
2872 |
+
▁mo 2871
|
2873 |
+
▁mod 2872
|
2874 |
+
▁moder 2873
|
2875 |
+
▁modern 2874
|
2876 |
+
▁mom 2875
|
2877 |
+
▁moment 2876
|
2878 |
+
▁moments 2877
|
2879 |
+
▁mon 2878
|
2880 |
+
mon 2879
|
2881 |
+
mond 2880
|
2882 |
+
▁money 2881
|
2883 |
+
▁monsieur 2882
|
2884 |
+
▁mont 2883
|
2885 |
+
▁month 2884
|
2886 |
+
▁months 2885
|
2887 |
+
▁mood 2886
|
2888 |
+
▁moon 2887
|
2889 |
+
▁mor 2888
|
2890 |
+
▁moral 2889
|
2891 |
+
▁more 2890
|
2892 |
+
more 2891
|
2893 |
+
▁moreover 2892
|
2894 |
+
▁morn 2893
|
2895 |
+
▁morning 2894
|
2896 |
+
▁morrow 2895
|
2897 |
+
▁mort 2896
|
2898 |
+
▁most 2897
|
2899 |
+
most 2898
|
2900 |
+
▁mot 2899
|
2901 |
+
▁mother 2900
|
2902 |
+
mother 2901
|
2903 |
+
▁motion 2902
|
2904 |
+
▁mount 2903
|
2905 |
+
▁mountain 2904
|
2906 |
+
▁mountains 2905
|
2907 |
+
▁mounted 2906
|
2908 |
+
▁mour 2907
|
2909 |
+
▁mouth 2908
|
2910 |
+
▁move 2909
|
2911 |
+
▁moved 2910
|
2912 |
+
▁movement 2911
|
2913 |
+
▁movements 2912
|
2914 |
+
▁moving 2913
|
2915 |
+
ms 2914
|
2916 |
+
▁mu 2915
|
2917 |
+
▁much 2916
|
2918 |
+
▁mud 2917
|
2919 |
+
▁mult 2918
|
2920 |
+
▁mur 2919
|
2921 |
+
▁murder 2920
|
2922 |
+
▁murm 2921
|
2923 |
+
▁murmured 2922
|
2924 |
+
▁mus 2923
|
2925 |
+
▁music 2924
|
2926 |
+
▁must 2925
|
2927 |
+
▁mut 2926
|
2928 |
+
▁muttered 2927
|
2929 |
+
▁my 2928
|
2930 |
+
my 2929
|
2931 |
+
▁myself 2930
|
2932 |
+
▁myst 2931
|
2933 |
+
▁myster 2932
|
2934 |
+
▁mysterious 2933
|
2935 |
+
▁mystery 2934
|
2936 |
+
▁n 2935
|
2937 |
+
n 2936
|
2938 |
+
na 2937
|
2939 |
+
nal 2938
|
2940 |
+
▁name 2939
|
2941 |
+
▁named 2940
|
2942 |
+
▁names 2941
|
2943 |
+
▁nap 2942
|
2944 |
+
▁nar 2943
|
2945 |
+
▁narrow 2944
|
2946 |
+
▁nat 2945
|
2947 |
+
▁nation 2946
|
2948 |
+
▁national 2947
|
2949 |
+
▁nations 2948
|
2950 |
+
▁native 2949
|
2951 |
+
▁natur 2950
|
2952 |
+
▁natural 2951
|
2953 |
+
▁naturally 2952
|
2954 |
+
▁nature 2953
|
2955 |
+
▁nay 2954
|
2956 |
+
nce 2955
|
2957 |
+
nd 2956
|
2958 |
+
nday 2957
|
2959 |
+
nded 2958
|
2960 |
+
nder 2959
|
2961 |
+
ndered 2960
|
2962 |
+
nders 2961
|
2963 |
+
nding 2962
|
2964 |
+
ndon 2963
|
2965 |
+
nds 2964
|
2966 |
+
▁ne 2965
|
2967 |
+
ne 2966
|
2968 |
+
▁near 2967
|
2969 |
+
▁nearer 2968
|
2970 |
+
▁nearest 2969
|
2971 |
+
▁nearly 2970
|
2972 |
+
▁necess 2971
|
2973 |
+
▁necessary 2972
|
2974 |
+
▁necessity 2973
|
2975 |
+
▁neck 2974
|
2976 |
+
ned 2975
|
2977 |
+
▁need 2976
|
2978 |
+
▁needed 2977
|
2979 |
+
▁needs 2978
|
2980 |
+
▁neg 2979
|
2981 |
+
▁negro 2980
|
2982 |
+
▁neigh 2981
|
2983 |
+
▁neighb 2982
|
2984 |
+
▁neighbor 2983
|
2985 |
+
▁neighbour 2984
|
2986 |
+
▁neither 2985
|
2987 |
+
ner 2986
|
2988 |
+
ners 2987
|
2989 |
+
▁nerv 2988
|
2990 |
+
▁nervous 2989
|
2991 |
+
nes 2990
|
2992 |
+
ness 2991
|
2993 |
+
▁nest 2992
|
2994 |
+
▁never 2993
|
2995 |
+
▁nevertheless 2994
|
2996 |
+
▁new 2995
|
2997 |
+
▁news 2996
|
2998 |
+
▁newspap 2997
|
2999 |
+
▁next 2998
|
3000 |
+
ney 2999
|
3001 |
+
ng 3000
|
3002 |
+
���nice 3001
|
3003 |
+
▁night 3002
|
3004 |
+
night 3003
|
3005 |
+
▁nights 3004
|
3006 |
+
▁nin 3005
|
3007 |
+
▁nine 3006
|
3008 |
+
▁ninet 3007
|
3009 |
+
▁nineteen 3008
|
3010 |
+
▁ninety 3009
|
3011 |
+
ning 3010
|
3012 |
+
▁no 3011
|
3013 |
+
▁nob 3012
|
3014 |
+
▁noble 3013
|
3015 |
+
▁nobody 3014
|
3016 |
+
▁nodd 3015
|
3017 |
+
▁nodded 3016
|
3018 |
+
▁noise 3017
|
3019 |
+
▁none 3018
|
3020 |
+
▁nons 3019
|
3021 |
+
▁nonsense 3020
|
3022 |
+
▁nor 3021
|
3023 |
+
▁north 3022
|
3024 |
+
▁norther 3023
|
3025 |
+
▁northern 3024
|
3026 |
+
▁nose 3025
|
3027 |
+
▁not 3026
|
3028 |
+
not 3027
|
3029 |
+
▁note 3028
|
3030 |
+
▁notes 3029
|
3031 |
+
▁nothing 3030
|
3032 |
+
▁notice 3031
|
3033 |
+
▁noticed 3032
|
3034 |
+
▁novel 3033
|
3035 |
+
▁now 3034
|
3036 |
+
now 3035
|
3037 |
+
nown 3036
|
3038 |
+
nt 3037
|
3039 |
+
nton 3038
|
3040 |
+
▁num 3039
|
3041 |
+
▁number 3040
|
3042 |
+
▁numbers 3041
|
3043 |
+
▁numerous 3042
|
3044 |
+
▁nur 3043
|
3045 |
+
▁nurs 3044
|
3046 |
+
▁nurse 3045
|
3047 |
+
▁nut 3046
|
3048 |
+
ny 3047
|
3049 |
+
▁o 3048
|
3050 |
+
o 3049
|
3051 |
+
▁oak 3050
|
3052 |
+
▁ob 3051
|
3053 |
+
ob 3052
|
3054 |
+
▁obey 3053
|
3055 |
+
▁object 3054
|
3056 |
+
▁objects 3055
|
3057 |
+
▁obl 3056
|
3058 |
+
▁oblig 3057
|
3059 |
+
▁obliged 3058
|
3060 |
+
▁obs 3059
|
3061 |
+
▁obsc 3060
|
3062 |
+
▁obser 3061
|
3063 |
+
▁observ 3062
|
3064 |
+
▁observe 3063
|
3065 |
+
▁observed 3064
|
3066 |
+
▁obst 3065
|
3067 |
+
▁obt 3066
|
3068 |
+
▁obtain 3067
|
3069 |
+
▁obtained 3068
|
3070 |
+
▁obv 3069
|
3071 |
+
oc 3070
|
3072 |
+
▁occ 3071
|
3073 |
+
▁occas 3072
|
3074 |
+
▁occasion 3073
|
3075 |
+
▁occup 3074
|
3076 |
+
▁occupied 3075
|
3077 |
+
▁occur 3076
|
3078 |
+
▁occurred 3077
|
3079 |
+
▁oce 3078
|
3080 |
+
▁ocean 3079
|
3081 |
+
ock 3080
|
3082 |
+
ocked 3081
|
3083 |
+
ocks 3082
|
3084 |
+
ocr 3083
|
3085 |
+
▁od 3084
|
3086 |
+
od 3085
|
3087 |
+
▁odd 3086
|
3088 |
+
oe 3087
|
3089 |
+
oes 3088
|
3090 |
+
▁of 3089
|
3091 |
+
▁off 3090
|
3092 |
+
▁offe 3091
|
3093 |
+
▁offer 3092
|
3094 |
+
▁offered 3093
|
3095 |
+
▁offic 3094
|
3096 |
+
▁office 3095
|
3097 |
+
▁officer 3096
|
3098 |
+
▁officers 3097
|
3099 |
+
▁official 3098
|
3100 |
+
▁often 3099
|
3101 |
+
og 3100
|
3102 |
+
ograph 3101
|
3103 |
+
▁oh 3102
|
3104 |
+
oint 3103
|
3105 |
+
ointed 3104
|
3106 |
+
ointment 3105
|
3107 |
+
oke 3106
|
3108 |
+
▁ol 3107
|
3109 |
+
ol 3108
|
3110 |
+
▁old 3109
|
3111 |
+
old 3110
|
3112 |
+
▁older 3111
|
3113 |
+
ole 3112
|
3114 |
+
olic 3113
|
3115 |
+
olog 3114
|
3116 |
+
ology 3115
|
3117 |
+
ols 3116
|
3118 |
+
olute 3117
|
3119 |
+
om 3118
|
3120 |
+
ome 3119
|
3121 |
+
omen 3120
|
3122 |
+
omp 3121
|
3123 |
+
oms 3122
|
3124 |
+
▁on 3123
|
3125 |
+
on 3124
|
3126 |
+
▁once 3125
|
3127 |
+
ond 3126
|
3128 |
+
▁one 3127
|
3129 |
+
one 3128
|
3130 |
+
onel 3129
|
3131 |
+
▁ones 3130
|
3132 |
+
ones 3131
|
3133 |
+
oney 3132
|
3134 |
+
ong 3133
|
3135 |
+
▁only 3134
|
3136 |
+
ons 3135
|
3137 |
+
onscious 3136
|
3138 |
+
onsie 3137
|
3139 |
+
onstr 3138
|
3140 |
+
ont 3139
|
3141 |
+
ony 3140
|
3142 |
+
oo 3141
|
3143 |
+
ood 3142
|
3144 |
+
oof 3143
|
3145 |
+
ook 3144
|
3146 |
+
ooks 3145
|
3147 |
+
ool 3146
|
3148 |
+
oom 3147
|
3149 |
+
oon 3148
|
3150 |
+
oop 3149
|
3151 |
+
oops 3150
|
3152 |
+
oose 3151
|
3153 |
+
▁op 3152
|
3154 |
+
op 3153
|
3155 |
+
ope 3154
|
3156 |
+
▁open 3155
|
3157 |
+
▁opened 3156
|
3158 |
+
▁opening 3157
|
3159 |
+
▁oper 3158
|
3160 |
+
▁opin 3159
|
3161 |
+
▁opinion 3160
|
3162 |
+
▁opp 3161
|
3163 |
+
▁opport 3162
|
3164 |
+
▁opportunity 3163
|
3165 |
+
▁opposite 3164
|
3166 |
+
▁or 3165
|
3167 |
+
or 3166
|
3168 |
+
ora 3167
|
3169 |
+
▁ord 3168
|
3170 |
+
ord 3169
|
3171 |
+
▁order 3170
|
3172 |
+
▁ordered 3171
|
3173 |
+
▁orders 3172
|
3174 |
+
▁ordinary 3173
|
3175 |
+
ore 3174
|
3176 |
+
ored 3175
|
3177 |
+
▁organ 3176
|
3178 |
+
ories 3177
|
3179 |
+
▁orig 3178
|
3180 |
+
▁origin 3179
|
3181 |
+
▁original 3180
|
3182 |
+
orious 3181
|
3183 |
+
ork 3182
|
3184 |
+
orm 3183
|
3185 |
+
▁orn 3184
|
3186 |
+
orn 3185
|
3187 |
+
orous 3186
|
3188 |
+
ors 3187
|
3189 |
+
ort 3188
|
3190 |
+
orted 3189
|
3191 |
+
orth 3190
|
3192 |
+
ortion 3191
|
3193 |
+
ory 3192
|
3194 |
+
os 3193
|
3195 |
+
ose 3194
|
3196 |
+
osed 3195
|
3197 |
+
osen 3196
|
3198 |
+
oses 3197
|
3199 |
+
osing 3198
|
3200 |
+
osite 3199
|
3201 |
+
osition 3200
|
3202 |
+
osity 3201
|
3203 |
+
osop 3202
|
3204 |
+
osp 3203
|
3205 |
+
oss 3204
|
3206 |
+
ost 3205
|
3207 |
+
ot 3206
|
3208 |
+
ote 3207
|
3209 |
+
oted 3208
|
3210 |
+
oth 3209
|
3211 |
+
▁other 3210
|
3212 |
+
other 3211
|
3213 |
+
▁others 3212
|
3214 |
+
▁otherwise 3213
|
3215 |
+
otion 3214
|
3216 |
+
ots 3215
|
3217 |
+
ott 3216
|
3218 |
+
otted 3217
|
3219 |
+
otten 3218
|
3220 |
+
ou 3219
|
3221 |
+
oub 3220
|
3222 |
+
ouble 3221
|
3223 |
+
oubt 3222
|
3224 |
+
oud 3223
|
3225 |
+
ough 3224
|
3226 |
+
▁ought 3225
|
3227 |
+
ought 3226
|
3228 |
+
oul 3227
|
3229 |
+
ould 3228
|
3230 |
+
oun 3229
|
3231 |
+
ounce 3230
|
3232 |
+
ounced 3231
|
3233 |
+
ound 3232
|
3234 |
+
ounded 3233
|
3235 |
+
ounds 3234
|
3236 |
+
ount 3235
|
3237 |
+
▁our 3236
|
3238 |
+
our 3237
|
3239 |
+
oura 3238
|
3240 |
+
oured 3239
|
3241 |
+
▁ours 3240
|
3242 |
+
ours 3241
|
3243 |
+
ourse 3242
|
3244 |
+
▁ourselves 3243
|
3245 |
+
ous 3244
|
3246 |
+
ousand 3245
|
3247 |
+
ouse 3246
|
3248 |
+
oused 3247
|
3249 |
+
ouses 3248
|
3250 |
+
ously 3249
|
3251 |
+
▁out 3250
|
3252 |
+
out 3251
|
3253 |
+
outh 3252
|
3254 |
+
▁outl 3253
|
3255 |
+
▁outside 3254
|
3256 |
+
ov 3255
|
3257 |
+
ove 3256
|
3258 |
+
oved 3257
|
3259 |
+
▁over 3258
|
3260 |
+
over 3259
|
3261 |
+
▁overt 3260
|
3262 |
+
▁ow 3261
|
3263 |
+
ow 3262
|
3264 |
+
owed 3263
|
3265 |
+
ower 3264
|
3266 |
+
owers 3265
|
3267 |
+
owing 3266
|
3268 |
+
▁own 3267
|
3269 |
+
own 3268
|
3270 |
+
ows 3269
|
3271 |
+
▁ox 3270
|
3272 |
+
ox 3271
|
3273 |
+
oy 3272
|
3274 |
+
▁p 3273
|
3275 |
+
p 3274
|
3276 |
+
▁pa 3275
|
3277 |
+
▁pack 3276
|
3278 |
+
▁page 3277
|
3279 |
+
▁paid 3278
|
3280 |
+
▁pain 3279
|
3281 |
+
▁painful 3280
|
3282 |
+
▁paint 3281
|
3283 |
+
▁pair 3282
|
3284 |
+
▁pal 3283
|
3285 |
+
▁palace 3284
|
3286 |
+
▁pale 3285
|
3287 |
+
▁pan 3286
|
3288 |
+
pan 3287
|
3289 |
+
▁pap 3288
|
3290 |
+
pap 3289
|
3291 |
+
▁papa 3290
|
3292 |
+
▁paper 3291
|
3293 |
+
▁papers 3292
|
3294 |
+
▁par 3293
|
3295 |
+
par 3294
|
3296 |
+
▁pard 3295
|
3297 |
+
▁pardon 3296
|
3298 |
+
▁parent 3297
|
3299 |
+
▁parents 3298
|
3300 |
+
▁paris 3299
|
3301 |
+
▁park 3300
|
3302 |
+
▁parl 3301
|
3303 |
+
▁parli 3302
|
3304 |
+
▁parliament 3303
|
3305 |
+
▁part 3304
|
3306 |
+
▁partic 3305
|
3307 |
+
▁particular 3306
|
3308 |
+
▁particularly 3307
|
3309 |
+
▁parties 3308
|
3310 |
+
▁partly 3309
|
3311 |
+
▁parts 3310
|
3312 |
+
▁party 3311
|
3313 |
+
▁pass 3312
|
3314 |
+
▁passage 3313
|
3315 |
+
▁passed 3314
|
3316 |
+
▁passing 3315
|
3317 |
+
▁passion 3316
|
3318 |
+
▁past 3317
|
3319 |
+
▁pat 3318
|
3320 |
+
▁path 3319
|
3321 |
+
▁patience 3320
|
3322 |
+
▁patient 3321
|
3323 |
+
▁paul 3322
|
3324 |
+
▁pause 3323
|
3325 |
+
▁paused 3324
|
3326 |
+
▁pay 3325
|
3327 |
+
▁pe 3326
|
3328 |
+
pe 3327
|
3329 |
+
▁peace 3328
|
3330 |
+
▁pear 3329
|
3331 |
+
pect 3330
|
3332 |
+
pected 3331
|
3333 |
+
▁pecul 3332
|
3334 |
+
▁peculiar 3333
|
3335 |
+
ped 3334
|
3336 |
+
pelled 3335
|
3337 |
+
▁pen 3336
|
3338 |
+
pend 3337
|
3339 |
+
pent 3338
|
3340 |
+
▁peop 3339
|
3341 |
+
▁people 3340
|
3342 |
+
▁per 3341
|
3343 |
+
per 3342
|
3344 |
+
▁perceived 3343
|
3345 |
+
pered 3344
|
3346 |
+
▁perfect 3345
|
3347 |
+
▁perfectly 3346
|
3348 |
+
▁perform 3347
|
3349 |
+
▁perhaps 3348
|
3350 |
+
▁period 3349
|
3351 |
+
▁perm 3350
|
3352 |
+
▁permitted 3351
|
3353 |
+
▁perpet 3352
|
3354 |
+
▁pers 3353
|
3355 |
+
▁person 3354
|
3356 |
+
▁personal 3355
|
3357 |
+
▁persons 3356
|
3358 |
+
▁persu 3357
|
3359 |
+
pes 3358
|
3360 |
+
▁pet 3359
|
3361 |
+
pet 3360
|
3362 |
+
▁peter 3361
|
3363 |
+
▁ph 3362
|
3364 |
+
ph 3363
|
3365 |
+
pher 3364
|
3366 |
+
▁phil 3365
|
3367 |
+
▁philip 3366
|
3368 |
+
▁philosop 3367
|
3369 |
+
▁phr 3368
|
3370 |
+
▁phys 3369
|
3371 |
+
▁physic 3370
|
3372 |
+
▁physical 3371
|
3373 |
+
▁pi 3372
|
3374 |
+
▁pian 3373
|
3375 |
+
pic 3374
|
3376 |
+
▁pick 3375
|
3377 |
+
▁picked 3376
|
3378 |
+
▁pict 3377
|
3379 |
+
▁picture 3378
|
3380 |
+
▁pictures 3379
|
3381 |
+
▁pie 3380
|
3382 |
+
▁piece 3381
|
3383 |
+
▁pieces 3382
|
3384 |
+
▁pier 3383
|
3385 |
+
▁pierre 3384
|
3386 |
+
▁pig 3385
|
3387 |
+
▁pil 3386
|
3388 |
+
▁pill 3387
|
3389 |
+
▁pin 3388
|
3390 |
+
���pink 3389
|
3391 |
+
▁pipe 3390
|
3392 |
+
▁pir 3391
|
3393 |
+
pir 3392
|
3394 |
+
▁pit 3393
|
3395 |
+
▁pity 3394
|
3396 |
+
▁pl 3395
|
3397 |
+
pl 3396
|
3398 |
+
▁place 3397
|
3399 |
+
▁placed 3398
|
3400 |
+
▁places 3399
|
3401 |
+
▁plain 3400
|
3402 |
+
▁plainly 3401
|
3403 |
+
▁plan 3402
|
3404 |
+
▁plans 3403
|
3405 |
+
▁plant 3404
|
3406 |
+
▁plants 3405
|
3407 |
+
▁plat 3406
|
3408 |
+
▁plate 3407
|
3409 |
+
▁play 3408
|
3410 |
+
▁played 3409
|
3411 |
+
▁playing 3410
|
3412 |
+
▁ple 3411
|
3413 |
+
ple 3412
|
3414 |
+
▁pleas 3413
|
3415 |
+
▁pleasant 3414
|
3416 |
+
▁please 3415
|
3417 |
+
▁pleased 3416
|
3418 |
+
▁pleasure 3417
|
3419 |
+
▁plenty 3418
|
3420 |
+
ples 3419
|
3421 |
+
pless 3420
|
3422 |
+
▁plun 3421
|
3423 |
+
ply 3422
|
3424 |
+
▁po 3423
|
3425 |
+
▁pock 3424
|
3426 |
+
▁pocket 3425
|
3427 |
+
▁poet 3426
|
3428 |
+
▁point 3427
|
3429 |
+
▁pointed 3428
|
3430 |
+
▁points 3429
|
3431 |
+
▁poison 3430
|
3432 |
+
▁pol 3431
|
3433 |
+
▁polic 3432
|
3434 |
+
▁police 3433
|
3435 |
+
▁polit 3434
|
3436 |
+
▁polite 3435
|
3437 |
+
▁political 3436
|
3438 |
+
▁poor 3437
|
3439 |
+
▁pop 3438
|
3440 |
+
▁popular 3439
|
3441 |
+
▁por 3440
|
3442 |
+
por 3441
|
3443 |
+
▁port 3442
|
3444 |
+
▁portion 3443
|
3445 |
+
▁pos 3444
|
3446 |
+
▁position 3445
|
3447 |
+
▁poss 3446
|
3448 |
+
▁possess 3447
|
3449 |
+
▁possessed 3448
|
3450 |
+
▁possession 3449
|
3451 |
+
▁possible 3450
|
3452 |
+
▁possibly 3451
|
3453 |
+
▁post 3452
|
3454 |
+
▁pot 3453
|
3455 |
+
▁pounds 3454
|
3456 |
+
▁pour 3455
|
3457 |
+
▁pow 3456
|
3458 |
+
▁power 3457
|
3459 |
+
▁powerful 3458
|
3460 |
+
▁powers 3459
|
3461 |
+
pp 3460
|
3462 |
+
pped 3461
|
3463 |
+
pper 3462
|
3464 |
+
pping 3463
|
3465 |
+
▁pr 3464
|
3466 |
+
pr 3465
|
3467 |
+
▁pra 3466
|
3468 |
+
▁pract 3467
|
3469 |
+
▁practical 3468
|
3470 |
+
▁practice 3469
|
3471 |
+
▁praise 3470
|
3472 |
+
▁pray 3471
|
3473 |
+
▁prayer 3472
|
3474 |
+
▁pre 3473
|
3475 |
+
▁prec 3474
|
3476 |
+
▁preced 3475
|
3477 |
+
▁precious 3476
|
3478 |
+
▁precise 3477
|
3479 |
+
▁pred 3478
|
3480 |
+
▁prefer 3479
|
3481 |
+
▁prep 3480
|
3482 |
+
▁prepar 3481
|
3483 |
+
▁prepared 3482
|
3484 |
+
▁pres 3483
|
3485 |
+
▁presence 3484
|
3486 |
+
▁present 3485
|
3487 |
+
▁presented 3486
|
3488 |
+
▁presently 3487
|
3489 |
+
▁president 3488
|
3490 |
+
▁press 3489
|
3491 |
+
▁pressed 3490
|
3492 |
+
▁pret 3491
|
3493 |
+
▁pretty 3492
|
3494 |
+
▁prev 3493
|
3495 |
+
▁prevent 3494
|
3496 |
+
▁previous 3495
|
3497 |
+
▁pri 3496
|
3498 |
+
▁price 3497
|
3499 |
+
▁pride 3498
|
3500 |
+
▁priest 3499
|
3501 |
+
▁prim 3500
|
3502 |
+
▁prin 3501
|
3503 |
+
▁prince 3502
|
3504 |
+
▁princess 3503
|
3505 |
+
▁princi 3504
|
3506 |
+
▁princip 3505
|
3507 |
+
▁principal 3506
|
3508 |
+
▁principle 3507
|
3509 |
+
▁principles 3508
|
3510 |
+
▁print 3509
|
3511 |
+
▁prison 3510
|
3512 |
+
▁prisoner 3511
|
3513 |
+
▁priv 3512
|
3514 |
+
▁private 3513
|
3515 |
+
▁privile 3514
|
3516 |
+
▁pro 3515
|
3517 |
+
▁prob 3516
|
3518 |
+
▁probably 3517
|
3519 |
+
▁proble 3518
|
3520 |
+
▁proc 3519
|
3521 |
+
▁proceed 3520
|
3522 |
+
▁proceeded 3521
|
3523 |
+
▁process 3522
|
3524 |
+
▁produ 3523
|
3525 |
+
▁produce 3524
|
3526 |
+
▁produced 3525
|
3527 |
+
▁prof 3526
|
3528 |
+
▁profess 3527
|
3529 |
+
▁profession 3528
|
3530 |
+
▁professor 3529
|
3531 |
+
▁profound 3530
|
3532 |
+
▁progress 3531
|
3533 |
+
▁project 3532
|
3534 |
+
▁prom 3533
|
3535 |
+
▁promise 3534
|
3536 |
+
▁promised 3535
|
3537 |
+
▁prompt 3536
|
3538 |
+
▁pron 3537
|
3539 |
+
▁proof 3538
|
3540 |
+
▁prop 3539
|
3541 |
+
▁proper 3540
|
3542 |
+
▁properly 3541
|
3543 |
+
▁propert 3542
|
3544 |
+
▁property 3543
|
3545 |
+
▁proportion 3544
|
3546 |
+
▁proposed 3545
|
3547 |
+
▁pros 3546
|
3548 |
+
▁prospect 3547
|
3549 |
+
▁prosper 3548
|
3550 |
+
▁prot 3549
|
3551 |
+
▁protect 3550
|
3552 |
+
▁protection 3551
|
3553 |
+
▁protest 3552
|
3554 |
+
▁proud 3553
|
3555 |
+
▁prov 3554
|
3556 |
+
▁prove 3555
|
3557 |
+
▁proved 3556
|
3558 |
+
▁provided 3557
|
3559 |
+
▁prud 3558
|
3560 |
+
ps 3559
|
3561 |
+
pse 3560
|
3562 |
+
pt 3561
|
3563 |
+
ption 3562
|
3564 |
+
▁pu 3563
|
3565 |
+
▁pub 3564
|
3566 |
+
▁public 3565
|
3567 |
+
▁pull 3566
|
3568 |
+
▁pulled 3567
|
3569 |
+
▁pun 3568
|
3570 |
+
▁punishment 3569
|
3571 |
+
▁pur 3570
|
3572 |
+
▁purch 3571
|
3573 |
+
▁pure 3572
|
3574 |
+
▁purp 3573
|
3575 |
+
▁purpose 3574
|
3576 |
+
▁purs 3575
|
3577 |
+
▁pushed 3576
|
3578 |
+
▁put 3577
|
3579 |
+
▁putting 3578
|
3580 |
+
▁puzz 3579
|
3581 |
+
q 3580
|
3582 |
+
▁qu 3581
|
3583 |
+
qu 3582
|
3584 |
+
▁qual 3583
|
3585 |
+
▁quality 3584
|
3586 |
+
▁quant 3585
|
3587 |
+
▁quar 3586
|
3588 |
+
▁quarter 3587
|
3589 |
+
▁quarters 3588
|
3590 |
+
que 3589
|
3591 |
+
▁queen 3590
|
3592 |
+
▁queer 3591
|
3593 |
+
▁quest 3592
|
3594 |
+
▁question 3593
|
3595 |
+
▁questions 3594
|
3596 |
+
▁quick 3595
|
3597 |
+
▁quickly 3596
|
3598 |
+
▁quiet 3597
|
3599 |
+
▁quietly 3598
|
3600 |
+
quis 3599
|
3601 |
+
▁quite 3600
|
3602 |
+
▁r 3601
|
3603 |
+
r 3602
|
3604 |
+
▁ra 3603
|
3605 |
+
ra 3604
|
3606 |
+
▁rab 3605
|
3607 |
+
▁race 3606
|
3608 |
+
race 3607
|
3609 |
+
ract 3608
|
3610 |
+
▁rad 3609
|
3611 |
+
▁rag 3610
|
3612 |
+
▁rage 3611
|
3613 |
+
rage 3612
|
3614 |
+
▁ragged 3613
|
3615 |
+
raid 3614
|
3616 |
+
▁rail 3615
|
3617 |
+
▁rain 3616
|
3618 |
+
▁raise 3617
|
3619 |
+
▁raised 3618
|
3620 |
+
▁ral 3619
|
3621 |
+
ral 3620
|
3622 |
+
▁ralph 3621
|
3623 |
+
▁ran 3622
|
3624 |
+
rance 3623
|
3625 |
+
▁rang 3624
|
3626 |
+
▁range 3625
|
3627 |
+
▁rank 3626
|
3628 |
+
rant 3627
|
3629 |
+
▁rap 3628
|
3630 |
+
raph 3629
|
3631 |
+
▁rapid 3630
|
3632 |
+
▁rapidly 3631
|
3633 |
+
▁rare 3632
|
3634 |
+
rass 3633
|
3635 |
+
▁rat 3634
|
3636 |
+
▁rate 3635
|
3637 |
+
rated 3636
|
3638 |
+
▁rather 3637
|
3639 |
+
ration 3638
|
3640 |
+
▁rays 3639
|
3641 |
+
▁re 3640
|
3642 |
+
re 3641
|
3643 |
+
▁reach 3642
|
3644 |
+
▁reached 3643
|
3645 |
+
▁read 3644
|
3646 |
+
read 3645
|
3647 |
+
▁reader 3646
|
3648 |
+
▁reading 3647
|
3649 |
+
▁ready 3648
|
3650 |
+
ready 3649
|
3651 |
+
▁real 3650
|
3652 |
+
▁reality 3651
|
3653 |
+
▁realized 3652
|
3654 |
+
▁really 3653
|
3655 |
+
ream 3654
|
3656 |
+
▁reason 3655
|
3657 |
+
▁reasons 3656
|
3658 |
+
reat 3657
|
3659 |
+
▁reb 3658
|
3660 |
+
▁rebe 3659
|
3661 |
+
▁rec 3660
|
3662 |
+
▁recall 3661
|
3663 |
+
▁receive 3662
|
3664 |
+
▁received 3663
|
3665 |
+
▁reck 3664
|
3666 |
+
▁reckon 3665
|
3667 |
+
▁reco 3666
|
3668 |
+
▁recogn 3667
|
3669 |
+
▁recognized 3668
|
3670 |
+
▁recollect 3669
|
3671 |
+
▁recom 3670
|
3672 |
+
▁record 3671
|
3673 |
+
▁recovered 3672
|
3674 |
+
rect 3673
|
3675 |
+
▁red 3674
|
3676 |
+
red 3675
|
3677 |
+
▁redu 3676
|
3678 |
+
ree 3677
|
3679 |
+
rees 3678
|
3680 |
+
▁ref 3679
|
3681 |
+
▁refer 3680
|
3682 |
+
▁reflect 3681
|
3683 |
+
▁reflection 3682
|
3684 |
+
▁refuse 3683
|
3685 |
+
▁refused 3684
|
3686 |
+
▁reg 3685
|
3687 |
+
reg 3686
|
3688 |
+
▁regard 3687
|
3689 |
+
▁regarded 3688
|
3690 |
+
▁regret 3689
|
3691 |
+
▁regular 3690
|
3692 |
+
▁rejo 3691
|
3693 |
+
▁rel 3692
|
3694 |
+
rel 3693
|
3695 |
+
▁relation 3694
|
3696 |
+
▁relations 3695
|
3697 |
+
▁rele 3696
|
3698 |
+
▁relie 3697
|
3699 |
+
▁relief 3698
|
3700 |
+
▁relig 3699
|
3701 |
+
▁religion 3700
|
3702 |
+
▁religious 3701
|
3703 |
+
▁rem 3702
|
3704 |
+
rem 3703
|
3705 |
+
▁remain 3704
|
3706 |
+
▁remained 3705
|
3707 |
+
▁remains 3706
|
3708 |
+
▁remar 3707
|
3709 |
+
▁remark 3708
|
3710 |
+
▁remarkable 3709
|
3711 |
+
▁remarked 3710
|
3712 |
+
reme 3711
|
3713 |
+
▁remem 3712
|
3714 |
+
▁remember 3713
|
3715 |
+
▁remembered 3714
|
3716 |
+
▁remind 3715
|
3717 |
+
▁removed 3716
|
3718 |
+
ren 3717
|
3719 |
+
rence 3718
|
3720 |
+
rench 3719
|
3721 |
+
▁render 3720
|
3722 |
+
▁rendered 3721
|
3723 |
+
▁rent 3722
|
3724 |
+
rent 3723
|
3725 |
+
▁rep 3724
|
3726 |
+
▁repe 3725
|
3727 |
+
▁repeated 3726
|
3728 |
+
▁repl 3727
|
3729 |
+
▁replied 3728
|
3730 |
+
▁reply 3729
|
3731 |
+
▁report 3730
|
3732 |
+
▁repres 3731
|
3733 |
+
��represent 3732
|
3734 |
+
▁repro 3733
|
3735 |
+
▁repub 3734
|
3736 |
+
▁republic 3735
|
3737 |
+
▁requ 3736
|
3738 |
+
▁request 3737
|
3739 |
+
▁require 3738
|
3740 |
+
▁required 3739
|
3741 |
+
rer 3740
|
3742 |
+
▁res 3741
|
3743 |
+
res 3742
|
3744 |
+
▁resemb 3743
|
3745 |
+
resh 3744
|
3746 |
+
▁resist 3745
|
3747 |
+
▁resol 3746
|
3748 |
+
▁resolved 3747
|
3749 |
+
▁resp 3748
|
3750 |
+
resp 3749
|
3751 |
+
▁respect 3750
|
3752 |
+
▁respons 3751
|
3753 |
+
ress 3752
|
3754 |
+
ressed 3753
|
3755 |
+
▁rest 3754
|
3756 |
+
rest 3755
|
3757 |
+
▁rested 3756
|
3758 |
+
▁restr 3757
|
3759 |
+
▁result 3758
|
3760 |
+
▁resumed 3759
|
3761 |
+
▁ret 3760
|
3762 |
+
ret 3761
|
3763 |
+
retched 3762
|
3764 |
+
▁retired 3763
|
3765 |
+
▁retreat 3764
|
3766 |
+
▁return 3765
|
3767 |
+
▁returned 3766
|
3768 |
+
▁returning 3767
|
3769 |
+
▁rev 3768
|
3770 |
+
▁reve 3769
|
3771 |
+
▁reven 3770
|
3772 |
+
▁revol 3771
|
3773 |
+
▁revolution 3772
|
3774 |
+
rew 3773
|
3775 |
+
▁reward 3774
|
3776 |
+
rey 3775
|
3777 |
+
ri 3776
|
3778 |
+
riage 3777
|
3779 |
+
▁rib 3778
|
3780 |
+
rib 3779
|
3781 |
+
▁ric 3780
|
3782 |
+
ric 3781
|
3783 |
+
▁rich 3782
|
3784 |
+
▁richard 3783
|
3785 |
+
▁rid 3784
|
3786 |
+
rid 3785
|
3787 |
+
▁ride 3786
|
3788 |
+
▁riding 3787
|
3789 |
+
rie 3788
|
3790 |
+
ried 3789
|
3791 |
+
rier 3790
|
3792 |
+
ries 3791
|
3793 |
+
▁rif 3792
|
3794 |
+
▁rig 3793
|
3795 |
+
rig 3794
|
3796 |
+
▁right 3795
|
3797 |
+
right 3796
|
3798 |
+
▁ring 3797
|
3799 |
+
ring 3798
|
3800 |
+
▁ris 3799
|
3801 |
+
▁rise 3800
|
3802 |
+
▁rising 3801
|
3803 |
+
▁risk 3802
|
3804 |
+
rison 3803
|
3805 |
+
rit 3804
|
3806 |
+
▁river 3805
|
3807 |
+
▁ro 3806
|
3808 |
+
ro 3807
|
3809 |
+
▁road 3808
|
3810 |
+
road 3809
|
3811 |
+
▁rob 3810
|
3812 |
+
▁robert 3811
|
3813 |
+
▁robin 3812
|
3814 |
+
▁rock 3813
|
3815 |
+
▁rocks 3814
|
3816 |
+
▁rode 3815
|
3817 |
+
rodu 3816
|
3818 |
+
rog 3817
|
3819 |
+
▁roll 3818
|
3820 |
+
▁rolled 3819
|
3821 |
+
▁rom 3820
|
3822 |
+
▁roman 3821
|
3823 |
+
▁rome 3822
|
3824 |
+
ron 3823
|
3825 |
+
▁roof 3824
|
3826 |
+
▁room 3825
|
3827 |
+
room 3826
|
3828 |
+
▁rooms 3827
|
3829 |
+
rop 3828
|
3830 |
+
▁rope 3829
|
3831 |
+
ror 3830
|
3832 |
+
▁ros 3831
|
3833 |
+
▁rose 3832
|
3834 |
+
rose 3833
|
3835 |
+
ross 3834
|
3836 |
+
▁rough 3835
|
3837 |
+
▁round 3836
|
3838 |
+
▁rout 3837
|
3839 |
+
▁row 3838
|
3840 |
+
row 3839
|
3841 |
+
rows 3840
|
3842 |
+
roy 3841
|
3843 |
+
▁royal 3842
|
3844 |
+
rs 3843
|
3845 |
+
▁ru 3844
|
3846 |
+
ru 3845
|
3847 |
+
▁rub 3846
|
3848 |
+
ruct 3847
|
3849 |
+
ruction 3848
|
3850 |
+
▁rude 3849
|
3851 |
+
▁ruin 3850
|
3852 |
+
▁rul 3851
|
3853 |
+
▁rule 3852
|
3854 |
+
▁rum 3853
|
3855 |
+
▁run 3854
|
3856 |
+
▁running 3855
|
3857 |
+
rupt 3856
|
3858 |
+
▁rus 3857
|
3859 |
+
▁rush 3858
|
3860 |
+
▁rushed 3859
|
3861 |
+
▁russ 3860
|
3862 |
+
▁rust 3861
|
3863 |
+
ry 3862
|
3864 |
+
▁s 3863
|
3865 |
+
s 3864
|
3866 |
+
▁sa 3865
|
3867 |
+
▁sac 3866
|
3868 |
+
▁sacred 3867
|
3869 |
+
▁sacri 3868
|
3870 |
+
▁sacrifice 3869
|
3871 |
+
▁sad 3870
|
3872 |
+
▁saf 3871
|
3873 |
+
▁safe 3872
|
3874 |
+
▁safety 3873
|
3875 |
+
▁said 3874
|
3876 |
+
▁sail 3875
|
3877 |
+
▁saint 3876
|
3878 |
+
▁sake 3877
|
3879 |
+
▁sal 3878
|
3880 |
+
▁salt 3879
|
3881 |
+
▁sam 3880
|
3882 |
+
▁same 3881
|
3883 |
+
▁san 3882
|
3884 |
+
▁sand 3883
|
3885 |
+
▁sang 3884
|
3886 |
+
▁sank 3885
|
3887 |
+
▁sar 3886
|
3888 |
+
▁sat 3887
|
3889 |
+
▁satisf 3888
|
3890 |
+
▁satisfaction 3889
|
3891 |
+
▁satisfied 3890
|
3892 |
+
▁sav 3891
|
3893 |
+
▁savage 3892
|
3894 |
+
▁save 3893
|
3895 |
+
▁saved 3894
|
3896 |
+
▁saw 3895
|
3897 |
+
▁say 3896
|
3898 |
+
▁saying 3897
|
3899 |
+
▁says 3898
|
3900 |
+
▁sc 3899
|
3901 |
+
▁scar 3900
|
3902 |
+
▁scarce 3901
|
3903 |
+
▁scarcely 3902
|
3904 |
+
▁scattered 3903
|
3905 |
+
▁scen 3904
|
3906 |
+
▁scene 3905
|
3907 |
+
▁sch 3906
|
3908 |
+
▁school 3907
|
3909 |
+
▁science 3908
|
3910 |
+
▁scient 3909
|
3911 |
+
▁scorn 3910
|
3912 |
+
▁scot 3911
|
3913 |
+
▁scr 3912
|
3914 |
+
▁scra 3913
|
3915 |
+
▁scream 3914
|
3916 |
+
▁se 3915
|
3917 |
+
se 3916
|
3918 |
+
▁sea 3917
|
3919 |
+
▁sear 3918
|
3920 |
+
▁search 3919
|
3921 |
+
▁season 3920
|
3922 |
+
▁seat 3921
|
3923 |
+
▁seated 3922
|
3924 |
+
▁sec 3923
|
3925 |
+
sec 3924
|
3926 |
+
▁second 3925
|
3927 |
+
▁secret 3926
|
3928 |
+
▁secure 3927
|
3929 |
+
▁sed 3928
|
3930 |
+
▁see 3929
|
3931 |
+
▁seeing 3930
|
3932 |
+
▁seek 3931
|
3933 |
+
▁seem 3932
|
3934 |
+
▁seemed 3933
|
3935 |
+
▁seems 3934
|
3936 |
+
▁seen 3935
|
3937 |
+
▁sees 3936
|
3938 |
+
▁seized 3937
|
3939 |
+
sel 3938
|
3940 |
+
▁seldom 3939
|
3941 |
+
▁self 3940
|
3942 |
+
self 3941
|
3943 |
+
▁sell 3942
|
3944 |
+
selves 3943
|
3945 |
+
semb 3944
|
3946 |
+
▁sen 3945
|
3947 |
+
▁send 3946
|
3948 |
+
▁sens 3947
|
3949 |
+
▁sensation 3948
|
3950 |
+
▁sense 3949
|
3951 |
+
▁senses 3950
|
3952 |
+
▁sensible 3951
|
3953 |
+
▁sent 3952
|
3954 |
+
▁sentence 3953
|
3955 |
+
▁sentiment 3954
|
3956 |
+
▁separ 3955
|
3957 |
+
▁separate 3956
|
3958 |
+
▁ser 3957
|
3959 |
+
▁serious 3958
|
3960 |
+
▁serv 3959
|
3961 |
+
▁servant 3960
|
3962 |
+
▁servants 3961
|
3963 |
+
▁serve 3962
|
3964 |
+
▁served 3963
|
3965 |
+
▁service 3964
|
3966 |
+
▁set 3965
|
3967 |
+
set 3966
|
3968 |
+
▁sett 3967
|
3969 |
+
▁setting 3968
|
3970 |
+
▁settle 3969
|
3971 |
+
▁settled 3970
|
3972 |
+
▁seven 3971
|
3973 |
+
▁sevent 3972
|
3974 |
+
▁seventeen 3973
|
3975 |
+
▁seventy 3974
|
3976 |
+
▁sever 3975
|
3977 |
+
▁several 3976
|
3978 |
+
▁severe 3977
|
3979 |
+
▁sex 3978
|
3980 |
+
sey 3979
|
3981 |
+
▁sh 3980
|
3982 |
+
sh 3981
|
3983 |
+
▁sha 3982
|
3984 |
+
▁shad 3983
|
3985 |
+
▁shade 3984
|
3986 |
+
▁shadow 3985
|
3987 |
+
▁shadows 3986
|
3988 |
+
▁shake 3987
|
3989 |
+
▁shaking 3988
|
3990 |
+
▁shall 3989
|
3991 |
+
▁shame 3990
|
3992 |
+
▁shape 3991
|
3993 |
+
▁shar 3992
|
3994 |
+
▁share 3993
|
3995 |
+
▁sharp 3994
|
3996 |
+
▁sharply 3995
|
3997 |
+
▁she 3996
|
3998 |
+
▁sheep 3997
|
3999 |
+
▁shel 3998
|
4000 |
+
▁sher 3999
|
4001 |
+
▁shining 4000
|
4002 |
+
▁ship 4001
|
4003 |
+
ship 4002
|
4004 |
+
▁ships 4003
|
4005 |
+
▁sho 4004
|
4006 |
+
▁shock 4005
|
4007 |
+
▁shoes 4006
|
4008 |
+
▁shone 4007
|
4009 |
+
▁shook 4008
|
4010 |
+
▁shoot 4009
|
4011 |
+
▁shop 4010
|
4012 |
+
▁shore 4011
|
4013 |
+
▁short 4012
|
4014 |
+
▁shot 4013
|
4015 |
+
▁should 4014
|
4016 |
+
▁shoulder 4015
|
4017 |
+
▁shoulders 4016
|
4018 |
+
▁shout 4017
|
4019 |
+
▁shouted 4018
|
4020 |
+
▁show 4019
|
4021 |
+
▁showed 4020
|
4022 |
+
▁showing 4021
|
4023 |
+
▁shown 4022
|
4024 |
+
▁shows 4023
|
4025 |
+
▁shr 4024
|
4026 |
+
▁shut 4025
|
4027 |
+
▁sick 4026
|
4028 |
+
▁side 4027
|
4029 |
+
side 4028
|
4030 |
+
▁sides 4029
|
4031 |
+
sie 4030
|
4032 |
+
▁sigh 4031
|
4033 |
+
▁sighed 4032
|
4034 |
+
▁sight 4033
|
4035 |
+
▁sign 4034
|
4036 |
+
▁signs 4035
|
4037 |
+
▁sil 4036
|
4038 |
+
▁silence 4037
|
4039 |
+
▁silent 4038
|
4040 |
+
▁silk 4039
|
4041 |
+
▁silver 4040
|
4042 |
+
▁sim 4041
|
4043 |
+
▁similar 4042
|
4044 |
+
▁simpl 4043
|
4045 |
+
▁simple 4044
|
4046 |
+
▁simply 4045
|
4047 |
+
▁sin 4046
|
4048 |
+
▁since 4047
|
4049 |
+
▁sing 4048
|
4050 |
+
▁singing 4049
|
4051 |
+
▁single 4050
|
4052 |
+
▁singular 4051
|
4053 |
+
▁sink 4052
|
4054 |
+
▁sir 4053
|
4055 |
+
▁sister 4054
|
4056 |
+
▁sisters 4055
|
4057 |
+
▁sit 4056
|
4058 |
+
▁sitting 4057
|
4059 |
+
▁situ 4058
|
4060 |
+
▁situation 4059
|
4061 |
+
▁six 4060
|
4062 |
+
▁sixteen 4061
|
4063 |
+
▁sixty 4062
|
4064 |
+
▁size 4063
|
4065 |
+
▁sk 4064
|
4066 |
+
▁skill 4065
|
4067 |
+
▁skin 4066
|
4068 |
+
▁sky 4067
|
4069 |
+
▁sl 4068
|
4070 |
+
▁sla 4069
|
4071 |
+
▁slave 4070
|
4072 |
+
▁slaves 4071
|
4073 |
+
▁sle 4072
|
4074 |
+
▁sleep 4073
|
4075 |
+
▁sleeping 4074
|
4076 |
+
▁slept 4075
|
4077 |
+
▁slight 4076
|
4078 |
+
▁slightly 4077
|
4079 |
+
▁slipped 4078
|
4080 |
+
▁slow 4079
|
4081 |
+
▁slowly 4080
|
4082 |
+
▁sm 4081
|
4083 |
+
▁small 4082
|
4084 |
+
▁smell 4083
|
4085 |
+
▁smile 4084
|
4086 |
+
▁smiled 4085
|
4087 |
+
▁smiling 4086
|
4088 |
+
▁smith 4087
|
4089 |
+
▁smo 4088
|
4090 |
+
▁smoke 4089
|
4091 |
+
▁smooth 4090
|
4092 |
+
▁sn 4091
|
4093 |
+
▁snow 4092
|
4094 |
+
▁so 4093
|
4095 |
+
so 4094
|
4096 |
+
▁sob 4095
|
4097 |
+
▁soci 4096
|
4098 |
+
soci 4097
|
4099 |
+
▁social 4098
|
4100 |
+
▁society 4099
|
4101 |
+
▁soft 4100
|
4102 |
+
▁softly 4101
|
4103 |
+
▁soil 4102
|
4104 |
+
▁sol 4103
|
4105 |
+
▁sold 4104
|
4106 |
+
▁soldier 4105
|
4107 |
+
▁soldiers 4106
|
4108 |
+
▁sole 4107
|
4109 |
+
▁solemn 4108
|
4110 |
+
▁solid 4109
|
4111 |
+
▁som 4110
|
4112 |
+
▁some 4111
|
4113 |
+
▁somebody 4112
|
4114 |
+
▁somehow 4113
|
4115 |
+
▁somet 4114
|
4116 |
+
▁something 4115
|
4117 |
+
▁sometimes 4116
|
4118 |
+
▁somewh 4117
|
4119 |
+
▁somewhat 4118
|
4120 |
+
▁somewhere 4119
|
4121 |
+
▁son 4120
|
4122 |
+
son 4121
|
4123 |
+
▁song 4122
|
4124 |
+
▁sons 4123
|
4125 |
+
▁soon 4124
|
4126 |
+
▁sooner 4125
|
4127 |
+
▁sor 4126
|
4128 |
+
▁sore 4127
|
4129 |
+
▁sorrow 4128
|
4130 |
+
▁sorry 4129
|
4131 |
+
▁sort 4130
|
4132 |
+
▁sorts 4131
|
4133 |
+
▁sou 4132
|
4134 |
+
▁sought 4133
|
4135 |
+
▁soul 4134
|
4136 |
+
▁souls 4135
|
4137 |
+
▁sound 4136
|
4138 |
+
▁sounded 4137
|
4139 |
+
▁sounds 4138
|
4140 |
+
▁sour 4139
|
4141 |
+
▁sout 4140
|
4142 |
+
▁south 4141
|
4143 |
+
▁souther 4142
|
4144 |
+
▁southern 4143
|
4145 |
+
▁sovere 4144
|
4146 |
+
▁sp 4145
|
4147 |
+
▁space 4146
|
4148 |
+
▁span 4147
|
4149 |
+
▁spar 4148
|
4150 |
+
▁spare 4149
|
4151 |
+
▁spark 4150
|
4152 |
+
▁spe 4151
|
4153 |
+
▁speak 4152
|
4154 |
+
▁speaking 4153
|
4155 |
+
▁spec 4154
|
4156 |
+
▁special 4155
|
4157 |
+
▁species 4156
|
4158 |
+
▁spect 4157
|
4159 |
+
▁speech 4158
|
4160 |
+
▁speed 4159
|
4161 |
+
▁spend 4160
|
4162 |
+
▁spent 4161
|
4163 |
+
▁spir 4162
|
4164 |
+
▁spirit 4163
|
4165 |
+
▁spirits 4164
|
4166 |
+
▁spite 4165
|
4167 |
+
▁spl 4166
|
4168 |
+
▁splend 4167
|
4169 |
+
▁splendid 4168
|
4170 |
+
▁spo 4169
|
4171 |
+
▁spoke 4170
|
4172 |
+
▁spoken 4171
|
4173 |
+
▁sport 4172
|
4174 |
+
▁spot 4173
|
4175 |
+
▁spr 4174
|
4176 |
+
▁sprang 4175
|
4177 |
+
▁spread 4176
|
4178 |
+
▁spring 4177
|
4179 |
+
▁squ 4178
|
4180 |
+
▁square 4179
|
4181 |
+
ss 4180
|
4182 |
+
▁st 4181
|
4183 |
+
st 4182
|
4184 |
+
▁stage 4183
|
4185 |
+
▁stair 4184
|
4186 |
+
▁stairs 4185
|
4187 |
+
stairs 4186
|
4188 |
+
▁stamp 4187
|
4189 |
+
▁stand 4188
|
4190 |
+
stand 4189
|
4191 |
+
▁standing 4190
|
4192 |
+
standing 4191
|
4193 |
+
▁stands 4192
|
4194 |
+
▁star 4193
|
4195 |
+
▁stared 4194
|
4196 |
+
▁stars 4195
|
4197 |
+
▁start 4196
|
4198 |
+
▁started 4197
|
4199 |
+
▁startled 4198
|
4200 |
+
▁stat 4199
|
4201 |
+
▁state 4200
|
4202 |
+
▁states 4201
|
4203 |
+
▁station 4202
|
4204 |
+
▁stay 4203
|
4205 |
+
▁stayed 4204
|
4206 |
+
▁ste 4205
|
4207 |
+
▁stead 4206
|
4208 |
+
▁steam 4207
|
4209 |
+
▁steep 4208
|
4210 |
+
stem 4209
|
4211 |
+
▁step 4210
|
4212 |
+
▁stepped 4211
|
4213 |
+
▁steps 4212
|
4214 |
+
ster 4213
|
4215 |
+
▁stern 4214
|
4216 |
+
▁stick 4215
|
4217 |
+
▁stiff 4216
|
4218 |
+
▁still 4217
|
4219 |
+
▁stir 4218
|
4220 |
+
▁sto 4219
|
4221 |
+
▁stock 4220
|
4222 |
+
▁stone 4221
|
4223 |
+
stone 4222
|
4224 |
+
▁stones 4223
|
4225 |
+
▁stood 4224
|
4226 |
+
▁stoop 4225
|
4227 |
+
▁stop 4226
|
4228 |
+
▁stopped 4227
|
4229 |
+
▁store 4228
|
4230 |
+
▁stories 4229
|
4231 |
+
▁storm 4230
|
4232 |
+
▁story 4231
|
4233 |
+
▁stout 4232
|
4234 |
+
▁str 4233
|
4235 |
+
str 4234
|
4236 |
+
▁stra 4235
|
4237 |
+
▁straight 4236
|
4238 |
+
▁strange 4237
|
4239 |
+
▁stranger 4238
|
4240 |
+
▁straw 4239
|
4241 |
+
▁stre 4240
|
4242 |
+
▁stream 4241
|
4243 |
+
▁street 4242
|
4244 |
+
▁streets 4243
|
4245 |
+
▁stren 4244
|
4246 |
+
▁strength 4245
|
4247 |
+
▁stret 4246
|
4248 |
+
▁stretched 4247
|
4249 |
+
▁stri 4248
|
4250 |
+
▁strict 4249
|
4251 |
+
▁strike 4250
|
4252 |
+
▁striking 4251
|
4253 |
+
▁stro 4252
|
4254 |
+
▁strong 4253
|
4255 |
+
▁stronger 4254
|
4256 |
+
▁struck 4255
|
4257 |
+
▁strugg 4256
|
4258 |
+
▁struggle 4257
|
4259 |
+
▁stud 4258
|
4260 |
+
▁study 4259
|
4261 |
+
▁stuff 4260
|
4262 |
+
▁stup 4261
|
4263 |
+
▁stupid 4262
|
4264 |
+
▁sty 4263
|
4265 |
+
▁style 4264
|
4266 |
+
▁su 4265
|
4267 |
+
▁sub 4266
|
4268 |
+
▁subject 4267
|
4269 |
+
▁subjects 4268
|
4270 |
+
▁subm 4269
|
4271 |
+
▁subs 4270
|
4272 |
+
▁subst 4271
|
4273 |
+
▁substance 4272
|
4274 |
+
▁suc 4273
|
4275 |
+
▁succ 4274
|
4276 |
+
▁succeed 4275
|
4277 |
+
▁succeeded 4276
|
4278 |
+
▁success 4277
|
4279 |
+
▁successful 4278
|
4280 |
+
▁such 4279
|
4281 |
+
▁sudden 4280
|
4282 |
+
▁suddenly 4281
|
4283 |
+
▁suf 4282
|
4284 |
+
▁suff 4283
|
4285 |
+
▁suffer 4284
|
4286 |
+
▁suffered 4285
|
4287 |
+
▁suffering 4286
|
4288 |
+
▁suffic 4287
|
4289 |
+
▁sufficient 4288
|
4290 |
+
▁sufficiently 4289
|
4291 |
+
▁sugar 4290
|
4292 |
+
▁sugg 4291
|
4293 |
+
▁suggest 4292
|
4294 |
+
▁suggested 4293
|
4295 |
+
▁suit 4294
|
4296 |
+
▁sum 4295
|
4297 |
+
▁summer 4296
|
4298 |
+
▁sun 4297
|
4299 |
+
▁sunday 4298
|
4300 |
+
▁sunsh 4299
|
4301 |
+
▁sup 4300
|
4302 |
+
▁super 4301
|
4303 |
+
▁superior 4302
|
4304 |
+
▁supp 4303
|
4305 |
+
▁supper 4304
|
4306 |
+
▁suppl 4305
|
4307 |
+
▁supply 4306
|
4308 |
+
▁support 4307
|
4309 |
+
▁suppose 4308
|
4310 |
+
▁supposed 4309
|
4311 |
+
▁sur 4310
|
4312 |
+
▁sure 4311
|
4313 |
+
▁surely 4312
|
4314 |
+
▁surf 4313
|
4315 |
+
▁surface 4314
|
4316 |
+
▁surpr 4315
|
4317 |
+
▁surprise 4316
|
4318 |
+
▁surprised 4317
|
4319 |
+
▁surr 4318
|
4320 |
+
▁surround 4319
|
4321 |
+
▁surrounded 4320
|
4322 |
+
▁sus 4321
|
4323 |
+
▁suspic 4322
|
4324 |
+
▁suspicion 4323
|
4325 |
+
▁sw 4324
|
4326 |
+
▁swall 4325
|
4327 |
+
▁swe 4326
|
4328 |
+
▁sweet 4327
|
4329 |
+
▁swept 4328
|
4330 |
+
▁swift 4329
|
4331 |
+
▁swim 4330
|
4332 |
+
▁sword 4331
|
4333 |
+
▁sy 4332
|
4334 |
+
sy 4333
|
4335 |
+
▁sylv 4334
|
4336 |
+
▁sylvia 4335
|
4337 |
+
▁sym 4336
|
4338 |
+
▁symp 4337
|
4339 |
+
▁sympath 4338
|
4340 |
+
▁sympathy 4339
|
4341 |
+
▁system 4340
|
4342 |
+
▁t 4341
|
4343 |
+
t 4342
|
4344 |
+
▁table 4343
|
4345 |
+
▁tables 4344
|
4346 |
+
▁tad 4345
|
4347 |
+
▁tail 4346
|
4348 |
+
tain 4347
|
4349 |
+
▁take 4348
|
4350 |
+
▁taken 4349
|
4351 |
+
▁takes 4350
|
4352 |
+
▁taking 4351
|
4353 |
+
▁tal 4352
|
4354 |
+
▁tale 4353
|
4355 |
+
▁talk 4354
|
4356 |
+
▁talked 4355
|
4357 |
+
▁talking 4356
|
4358 |
+
▁tall 4357
|
4359 |
+
▁tar 4358
|
4360 |
+
▁task 4359
|
4361 |
+
▁tast 4360
|
4362 |
+
▁taste 4361
|
4363 |
+
▁taught 4362
|
4364 |
+
▁tax 4363
|
4365 |
+
▁te 4364
|
4366 |
+
te 4365
|
4367 |
+
▁tea 4366
|
4368 |
+
▁teach 4367
|
4369 |
+
▁teacher 4368
|
4370 |
+
▁tear 4369
|
4371 |
+
▁tears 4370
|
4372 |
+
ted 4371
|
4373 |
+
teen 4372
|
4374 |
+
teenth 4373
|
4375 |
+
▁teeth 4374
|
4376 |
+
▁tele 4375
|
4377 |
+
▁tell 4376
|
4378 |
+
▁telling 4377
|
4379 |
+
▁tem 4378
|
4380 |
+
▁temper 4379
|
4381 |
+
▁temple 4380
|
4382 |
+
▁tempt 4381
|
4383 |
+
▁ten 4382
|
4384 |
+
ten 4383
|
4385 |
+
▁tend 4384
|
4386 |
+
tend 4385
|
4387 |
+
tended 4386
|
4388 |
+
▁tender 4387
|
4389 |
+
tending 4388
|
4390 |
+
▁ter 4389
|
4391 |
+
ter 4390
|
4392 |
+
tered 4391
|
4393 |
+
tering 4392
|
4394 |
+
▁term 4393
|
4395 |
+
▁terms 4394
|
4396 |
+
tern 4395
|
4397 |
+
ternal 4396
|
4398 |
+
▁terri 4397
|
4399 |
+
▁terrible 4398
|
4400 |
+
▁terror 4399
|
4401 |
+
ters 4400
|
4402 |
+
▁test 4401
|
4403 |
+
▁th 4402
|
4404 |
+
th 4403
|
4405 |
+
▁than 4404
|
4406 |
+
▁thank 4405
|
4407 |
+
▁thanks 4406
|
4408 |
+
▁that 4407
|
4409 |
+
▁the 4408
|
4410 |
+
the 4409
|
4411 |
+
▁theat 4410
|
4412 |
+
▁thee 4411
|
4413 |
+
▁their 4412
|
4414 |
+
theless 4413
|
4415 |
+
▁them 4414
|
4416 |
+
▁themselves 4415
|
4417 |
+
▁then 4416
|
4418 |
+
▁theory 4417
|
4419 |
+
ther 4418
|
4420 |
+
▁there 4419
|
4421 |
+
▁therefore 4420
|
4422 |
+
▁these 4421
|
4423 |
+
▁they 4422
|
4424 |
+
▁thick 4423
|
4425 |
+
▁thin 4424
|
4426 |
+
▁thing 4425
|
4427 |
+
thing 4426
|
4428 |
+
▁things 4427
|
4429 |
+
▁think 4428
|
4430 |
+
▁thinking 4429
|
4431 |
+
▁thinks 4430
|
4432 |
+
▁thir 4431
|
4433 |
+
▁third 4432
|
4434 |
+
▁thirst 4433
|
4435 |
+
▁thirty 4434
|
4436 |
+
▁this 4435
|
4437 |
+
▁thom 4436
|
4438 |
+
▁thomas 4437
|
4439 |
+
▁thor 4438
|
4440 |
+
▁thorough 4439
|
4441 |
+
▁thoroughly 4440
|
4442 |
+
▁those 4441
|
4443 |
+
▁thou 4442
|
4444 |
+
▁though 4443
|
4445 |
+
▁thought 4444
|
4446 |
+
▁thoughts 4445
|
4447 |
+
▁thousand 4446
|
4448 |
+
▁thousands 4447
|
4449 |
+
▁thr 4448
|
4450 |
+
▁thread 4449
|
4451 |
+
▁threat 4450
|
4452 |
+
▁three 4451
|
4453 |
+
▁threw 4452
|
4454 |
+
▁thro 4453
|
4455 |
+
▁throat 4454
|
4456 |
+
▁throne 4455
|
4457 |
+
▁through 4456
|
4458 |
+
▁throughout 4457
|
4459 |
+
▁throw 4458
|
4460 |
+
▁throwing 4459
|
4461 |
+
▁thrown 4460
|
4462 |
+
▁thrust 4461
|
4463 |
+
▁thunder 4462
|
4464 |
+
▁thus 4463
|
4465 |
+
▁thy 4464
|
4466 |
+
▁tied 4465
|
4467 |
+
▁tight 4466
|
4468 |
+
▁till 4467
|
4469 |
+
▁tim 4468
|
4470 |
+
▁time 4469
|
4471 |
+
▁times 4470
|
4472 |
+
ting 4471
|
4473 |
+
▁tiny 4472
|
4474 |
+
▁tired 4473
|
4475 |
+
▁tis 4474
|
4476 |
+
▁tit 4475
|
4477 |
+
▁title 4476
|
4478 |
+
tle 4477
|
4479 |
+
▁to 4478
|
4480 |
+
to 4479
|
4481 |
+
▁together 4480
|
4482 |
+
▁told 4481
|
4483 |
+
▁tom 4482
|
4484 |
+
ton 4483
|
4485 |
+
▁tone 4484
|
4486 |
+
▁tong 4485
|
4487 |
+
▁tongue 4486
|
4488 |
+
▁too 4487
|
4489 |
+
▁took 4488
|
4490 |
+
▁top 4489
|
4491 |
+
▁tor 4490
|
4492 |
+
▁torn 4491
|
4493 |
+
▁toss 4492
|
4494 |
+
▁tot 4493
|
4495 |
+
▁tou 4494
|
4496 |
+
▁touch 4495
|
4497 |
+
▁touched 4496
|
4498 |
+
▁tow 4497
|
4499 |
+
▁toward 4498
|
4500 |
+
▁towards 4499
|
4501 |
+
▁tower 4500
|
4502 |
+
▁town 4501
|
4503 |
+
▁tr 4502
|
4504 |
+
▁tra 4503
|
4505 |
+
▁track 4504
|
4506 |
+
▁trad 4505
|
4507 |
+
▁trade 4506
|
4508 |
+
▁trail 4507
|
4509 |
+
▁train 4508
|
4510 |
+
▁trans 4509
|
4511 |
+
▁transp 4510
|
4512 |
+
▁trave 4511
|
4513 |
+
▁travel 4512
|
4514 |
+
▁travell 4513
|
4515 |
+
▁tre 4514
|
4516 |
+
▁treasure 4515
|
4517 |
+
▁treat 4516
|
4518 |
+
▁treated 4517
|
4519 |
+
▁tree 4518
|
4520 |
+
▁trees 4519
|
4521 |
+
▁tremb 4520
|
4522 |
+
▁trembling 4521
|
4523 |
+
▁tri 4522
|
4524 |
+
▁trial 4523
|
4525 |
+
▁trib 4524
|
4526 |
+
▁trick 4525
|
4527 |
+
▁tried 4526
|
4528 |
+
▁trif 4527
|
4529 |
+
▁trium 4528
|
4530 |
+
▁triumph 4529
|
4531 |
+
▁tro 4530
|
4532 |
+
▁troops 4531
|
4533 |
+
▁troub 4532
|
4534 |
+
▁trouble 4533
|
4535 |
+
▁troubled 4534
|
4536 |
+
▁troubles 4535
|
4537 |
+
▁true 4536
|
4538 |
+
▁truly 4537
|
4539 |
+
▁trust 4538
|
4540 |
+
▁truth 4539
|
4541 |
+
▁try 4540
|
4542 |
+
▁trying 4541
|
4543 |
+
ts 4542
|
4544 |
+
▁tur 4543
|
4545 |
+
ture 4544
|
4546 |
+
▁turn 4545
|
4547 |
+
▁turned 4546
|
4548 |
+
▁turning 4547
|
4549 |
+
▁tw 4548
|
4550 |
+
▁twel 4549
|
4551 |
+
▁twelve 4550
|
4552 |
+
▁twenty 4551
|
4553 |
+
▁twice 4552
|
4554 |
+
▁two 4553
|
4555 |
+
▁ty 4554
|
4556 |
+
ty 4555
|
4557 |
+
▁type 4556
|
4558 |
+
▁u 4557
|
4559 |
+
u 4558
|
4560 |
+
uable 4559
|
4561 |
+
ual 4560
|
4562 |
+
ually 4561
|
4563 |
+
ub 4562
|
4564 |
+
uc 4563
|
4565 |
+
uce 4564
|
4566 |
+
uck 4565
|
4567 |
+
uct 4566
|
4568 |
+
ud 4567
|
4569 |
+
ude 4568
|
4570 |
+
uded 4569
|
4571 |
+
udes 4570
|
4572 |
+
uding 4571
|
4573 |
+
ue 4572
|
4574 |
+
ued 4573
|
4575 |
+
uel 4574
|
4576 |
+
ues 4575
|
4577 |
+
uff 4576
|
4578 |
+
▁ug 4577
|
4579 |
+
ug 4578
|
4580 |
+
ugg 4579
|
4581 |
+
ught 4580
|
4582 |
+
▁ugly 4581
|
4583 |
+
uing 4582
|
4584 |
+
uit 4583
|
4585 |
+
ul 4584
|
4586 |
+
ular 4585
|
4587 |
+
ulated 4586
|
4588 |
+
ulation 4587
|
4589 |
+
ulf 4588
|
4590 |
+
ull 4589
|
4591 |
+
ully 4590
|
4592 |
+
ulous 4591
|
4593 |
+
uls 4592
|
4594 |
+
ulse 4593
|
4595 |
+
ult 4594
|
4596 |
+
ulty 4595
|
4597 |
+
uly 4596
|
4598 |
+
um 4597
|
4599 |
+
umb 4598
|
4600 |
+
umber 4599
|
4601 |
+
umbled 4600
|
4602 |
+
ume 4601
|
4603 |
+
umed 4602
|
4604 |
+
ument 4603
|
4605 |
+
uments 4604
|
4606 |
+
umn 4605
|
4607 |
+
ump 4606
|
4608 |
+
▁un 4607
|
4609 |
+
un 4608
|
4610 |
+
▁unable 4609
|
4611 |
+
▁unb 4610
|
4612 |
+
▁unc 4611
|
4613 |
+
unch 4612
|
4614 |
+
▁uncle 4613
|
4615 |
+
▁uncom 4614
|
4616 |
+
▁unconscious 4615
|
4617 |
+
▁und 4616
|
4618 |
+
und 4617
|
4619 |
+
▁under 4618
|
4620 |
+
under 4619
|
4621 |
+
▁underst 4620
|
4622 |
+
▁understand 4621
|
4623 |
+
▁understanding 4622
|
4624 |
+
▁understood 4623
|
4625 |
+
▁undert 4624
|
4626 |
+
▁une 4625
|
4627 |
+
une 4626
|
4628 |
+
▁uneas 4627
|
4629 |
+
▁unex 4628
|
4630 |
+
▁unexpected 4629
|
4631 |
+
▁unf 4630
|
4632 |
+
▁unfortun 4631
|
4633 |
+
▁unfortunate 4632
|
4634 |
+
ung 4633
|
4635 |
+
▁unh 4634
|
4636 |
+
▁unhapp 4635
|
4637 |
+
▁unhappy 4636
|
4638 |
+
▁uniform 4637
|
4639 |
+
▁union 4638
|
4640 |
+
▁united 4639
|
4641 |
+
unity 4640
|
4642 |
+
▁univers 4641
|
4643 |
+
▁universal 4642
|
4644 |
+
▁unk 4643
|
4645 |
+
unk 4644
|
4646 |
+
▁unknown 4645
|
4647 |
+
▁unl 4646
|
4648 |
+
▁unless 4647
|
4649 |
+
▁unp 4648
|
4650 |
+
▁uns 4649
|
4651 |
+
▁unt 4650
|
4652 |
+
unt 4651
|
4653 |
+
▁until 4652
|
4654 |
+
▁unto 4653
|
4655 |
+
▁unus 4654
|
4656 |
+
▁unusual 4655
|
4657 |
+
▁unw 4656
|
4658 |
+
uous 4657
|
4659 |
+
▁up 4658
|
4660 |
+
up 4659
|
4661 |
+
▁upon 4660
|
4662 |
+
upon 4661
|
4663 |
+
▁upper 4662
|
4664 |
+
▁ur 4663
|
4665 |
+
ur 4664
|
4666 |
+
ural 4665
|
4667 |
+
urd 4666
|
4668 |
+
ure 4667
|
4669 |
+
ured 4668
|
4670 |
+
ures 4669
|
4671 |
+
uries 4670
|
4672 |
+
uring 4671
|
4673 |
+
urity 4672
|
4674 |
+
urn 4673
|
4675 |
+
urs 4674
|
4676 |
+
ury 4675
|
4677 |
+
▁us 4676
|
4678 |
+
us 4677
|
4679 |
+
▁use 4678
|
4680 |
+
use 4679
|
4681 |
+
▁used 4680
|
4682 |
+
used 4681
|
4683 |
+
▁useful 4682
|
4684 |
+
▁useless 4683
|
4685 |
+
uses 4684
|
4686 |
+
ush 4685
|
4687 |
+
ushed 4686
|
4688 |
+
ushing 4687
|
4689 |
+
using 4688
|
4690 |
+
usion 4689
|
4691 |
+
uss 4690
|
4692 |
+
ust 4691
|
4693 |
+
usted 4692
|
4694 |
+
ustom 4693
|
4695 |
+
ustomed 4694
|
4696 |
+
▁usual 4695
|
4697 |
+
▁usually 4696
|
4698 |
+
▁ut 4697
|
4699 |
+
ut 4698
|
4700 |
+
utation 4699
|
4701 |
+
ute 4700
|
4702 |
+
uted 4701
|
4703 |
+
uten 4702
|
4704 |
+
utes 4703
|
4705 |
+
uth 4704
|
4706 |
+
ution 4705
|
4707 |
+
utions 4706
|
4708 |
+
▁utmost 4707
|
4709 |
+
▁utter 4708
|
4710 |
+
▁uttered 4709
|
4711 |
+
▁utterly 4710
|
4712 |
+
▁v 4711
|
4713 |
+
v 4712
|
4714 |
+
▁vague 4713
|
4715 |
+
▁vain 4714
|
4716 |
+
▁val 4715
|
4717 |
+
val 4716
|
4718 |
+
▁vall 4717
|
4719 |
+
▁valley 4718
|
4720 |
+
▁value 4719
|
4721 |
+
▁van 4720
|
4722 |
+
▁vanished 4721
|
4723 |
+
▁var 4722
|
4724 |
+
▁various 4723
|
4725 |
+
▁vast 4724
|
4726 |
+
▁ve 4725
|
4727 |
+
ve 4726
|
4728 |
+
ved 4727
|
4729 |
+
vel 4728
|
4730 |
+
velop 4729
|
4731 |
+
▁ven 4730
|
4732 |
+
ven 4731
|
4733 |
+
▁vent 4732
|
4734 |
+
vent 4733
|
4735 |
+
▁ver 4734
|
4736 |
+
ver 4735
|
4737 |
+
vere 4736
|
4738 |
+
vered 4737
|
4739 |
+
vern 4738
|
4740 |
+
▁vers 4739
|
4741 |
+
vers 4740
|
4742 |
+
verse 4741
|
4743 |
+
vert 4742
|
4744 |
+
▁very 4743
|
4745 |
+
very 4744
|
4746 |
+
▁ves 4745
|
4747 |
+
ves 4746
|
4748 |
+
▁vessel 4747
|
4749 |
+
vey 4748
|
4750 |
+
▁vi 4749
|
4751 |
+
▁vic 4750
|
4752 |
+
▁vict 4751
|
4753 |
+
▁victim 4752
|
4754 |
+
▁victory 4753
|
4755 |
+
▁view 4754
|
4756 |
+
▁vig 4755
|
4757 |
+
▁vill 4756
|
4758 |
+
▁village 4757
|
4759 |
+
ville 4758
|
4760 |
+
ving 4759
|
4761 |
+
▁viol 4760
|
4762 |
+
▁violence 4761
|
4763 |
+
▁violent 4762
|
4764 |
+
▁vir 4763
|
4765 |
+
▁virg 4764
|
4766 |
+
▁virgin 4765
|
4767 |
+
▁virt 4766
|
4768 |
+
▁virtue 4767
|
4769 |
+
▁vis 4768
|
4770 |
+
▁visible 4769
|
4771 |
+
▁vision 4770
|
4772 |
+
▁visit 4771
|
4773 |
+
▁visited 4772
|
4774 |
+
▁vo 4773
|
4775 |
+
▁voice 4774
|
4776 |
+
▁voices 4775
|
4777 |
+
▁vol 4776
|
4778 |
+
▁voy 4777
|
4779 |
+
▁w 4778
|
4780 |
+
w 4779
|
4781 |
+
▁wa 4780
|
4782 |
+
▁wag 4781
|
4783 |
+
▁waist 4782
|
4784 |
+
▁wait 4783
|
4785 |
+
▁waited 4784
|
4786 |
+
▁waiting 4785
|
4787 |
+
▁wake 4786
|
4788 |
+
▁wal 4787
|
4789 |
+
▁walk 4788
|
4790 |
+
▁walked 4789
|
4791 |
+
▁walking 4790
|
4792 |
+
▁wall 4791
|
4793 |
+
▁walls 4792
|
4794 |
+
▁wand 4793
|
4795 |
+
▁want 4794
|
4796 |
+
▁wanted 4795
|
4797 |
+
▁wants 4796
|
4798 |
+
▁war 4797
|
4799 |
+
▁ward 4798
|
4800 |
+
ward 4799
|
4801 |
+
wards 4800
|
4802 |
+
▁warm 4801
|
4803 |
+
▁warri 4802
|
4804 |
+
▁was 4803
|
4805 |
+
▁wash 4804
|
4806 |
+
▁washing 4805
|
4807 |
+
▁wasn 4806
|
4808 |
+
▁waste 4807
|
4809 |
+
▁wat 4808
|
4810 |
+
▁watch 4809
|
4811 |
+
▁watched 4810
|
4812 |
+
▁watching 4811
|
4813 |
+
▁water 4812
|
4814 |
+
▁waters 4813
|
4815 |
+
▁wave 4814
|
4816 |
+
▁waves 4815
|
4817 |
+
▁way 4816
|
4818 |
+
way 4817
|
4819 |
+
▁ways 4818
|
4820 |
+
ways 4819
|
4821 |
+
▁we 4820
|
4822 |
+
we 4821
|
4823 |
+
▁weak 4822
|
4824 |
+
▁wealth 4823
|
4825 |
+
▁weap 4824
|
4826 |
+
▁wear 4825
|
4827 |
+
▁weary 4826
|
4828 |
+
▁weather 4827
|
4829 |
+
▁wed 4828
|
4830 |
+
▁wedding 4829
|
4831 |
+
▁wee 4830
|
4832 |
+
▁week 4831
|
4833 |
+
▁weeks 4832
|
4834 |
+
ween 4833
|
4835 |
+
▁weight 4834
|
4836 |
+
▁wel 4835
|
4837 |
+
▁welcome 4836
|
4838 |
+
▁well 4837
|
4839 |
+
well 4838
|
4840 |
+
▁went 4839
|
4841 |
+
▁wept 4840
|
4842 |
+
wer 4841
|
4843 |
+
▁were 4842
|
4844 |
+
wered 4843
|
4845 |
+
▁wes 4844
|
4846 |
+
▁west 4845
|
4847 |
+
▁western 4846
|
4848 |
+
▁wet 4847
|
4849 |
+
▁wh 4848
|
4850 |
+
wh 4849
|
4851 |
+
▁what 4850
|
4852 |
+
▁whatever 4851
|
4853 |
+
▁whe 4852
|
4854 |
+
▁wheel 4853
|
4855 |
+
▁when 4854
|
4856 |
+
▁whence 4855
|
4857 |
+
▁whenever 4856
|
4858 |
+
▁where 4857
|
4859 |
+
where 4858
|
4860 |
+
▁wherever 4859
|
4861 |
+
▁whether 4860
|
4862 |
+
▁which 4861
|
4863 |
+
▁while 4862
|
4864 |
+
while 4863
|
4865 |
+
▁whilst 4864
|
4866 |
+
▁whis 4865
|
4867 |
+
▁whisper 4866
|
4868 |
+
▁whispered 4867
|
4869 |
+
▁whist 4868
|
4870 |
+
▁white 4869
|
4871 |
+
▁who 4870
|
4872 |
+
▁whole 4871
|
4873 |
+
▁wholly 4872
|
4874 |
+
▁whom 4873
|
4875 |
+
▁whose 4874
|
4876 |
+
▁why 4875
|
4877 |
+
▁wicked 4876
|
4878 |
+
▁wid 4877
|
4879 |
+
▁wide 4878
|
4880 |
+
▁wife 4879
|
4881 |
+
▁wil 4880
|
4882 |
+
▁wild 4881
|
4883 |
+
▁will 4882
|
4884 |
+
▁william 4883
|
4885 |
+
▁willing 4884
|
4886 |
+
▁win 4885
|
4887 |
+
win 4886
|
4888 |
+
▁wind 4887
|
4889 |
+
▁window 4888
|
4890 |
+
▁windows 4889
|
4891 |
+
▁winds 4890
|
4892 |
+
▁wine 4891
|
4893 |
+
▁wing 4892
|
4894 |
+
▁wings 4893
|
4895 |
+
▁winter 4894
|
4896 |
+
▁wis 4895
|
4897 |
+
▁wisdom 4896
|
4898 |
+
▁wise 4897
|
4899 |
+
wise 4898
|
4900 |
+
▁wish 4899
|
4901 |
+
▁wished 4900
|
4902 |
+
▁wishes 4901
|
4903 |
+
▁wit 4902
|
4904 |
+
▁with 4903
|
4905 |
+
with 4904
|
4906 |
+
▁withd 4905
|
4907 |
+
▁within 4906
|
4908 |
+
▁without 4907
|
4909 |
+
▁witness 4908
|
4910 |
+
wn 4909
|
4911 |
+
▁wo 4910
|
4912 |
+
▁wolf 4911
|
4913 |
+
▁wom 4912
|
4914 |
+
▁woman 4913
|
4915 |
+
▁women 4914
|
4916 |
+
▁won 4915
|
4917 |
+
▁wonder 4916
|
4918 |
+
▁wondered 4917
|
4919 |
+
▁wonderful 4918
|
4920 |
+
▁wondering 4919
|
4921 |
+
▁wood 4920
|
4922 |
+
wood 4921
|
4923 |
+
▁wooden 4922
|
4924 |
+
▁woods 4923
|
4925 |
+
▁wor 4924
|
4926 |
+
▁word 4925
|
4927 |
+
▁words 4926
|
4928 |
+
▁wore 4927
|
4929 |
+
▁work 4928
|
4930 |
+
▁worked 4929
|
4931 |
+
▁working 4930
|
4932 |
+
▁works 4931
|
4933 |
+
▁world 4932
|
4934 |
+
▁worn 4933
|
4935 |
+
▁worse 4934
|
4936 |
+
▁worship 4935
|
4937 |
+
▁worst 4936
|
4938 |
+
▁worth 4937
|
4939 |
+
worth 4938
|
4940 |
+
▁worthy 4939
|
4941 |
+
▁would 4940
|
4942 |
+
▁wouldn 4941
|
4943 |
+
▁wound 4942
|
4944 |
+
▁wounded 4943
|
4945 |
+
▁wr 4944
|
4946 |
+
▁wra 4945
|
4947 |
+
▁wretched 4946
|
4948 |
+
▁write 4947
|
4949 |
+
▁writing 4948
|
4950 |
+
▁written 4949
|
4951 |
+
▁wrong 4950
|
4952 |
+
▁wrote 4951
|
4953 |
+
x 4952
|
4954 |
+
xt 4953
|
4955 |
+
▁y 4954
|
4956 |
+
y 4955
|
4957 |
+
yal 4956
|
4958 |
+
▁yard 4957
|
4959 |
+
▁yards 4958
|
4960 |
+
▁ye 4959
|
4961 |
+
▁year 4960
|
4962 |
+
▁years 4961
|
4963 |
+
▁yellow 4962
|
4964 |
+
yer 4963
|
4965 |
+
▁yes 4964
|
4966 |
+
▁yester 4965
|
4967 |
+
▁yesterday 4966
|
4968 |
+
▁yet 4967
|
4969 |
+
▁yield 4968
|
4970 |
+
ying 4969
|
4971 |
+
yn 4970
|
4972 |
+
▁yo 4971
|
4973 |
+
▁york 4972
|
4974 |
+
▁you 4973
|
4975 |
+
▁young 4974
|
4976 |
+
▁younger 4975
|
4977 |
+
▁your 4976
|
4978 |
+
▁yours 4977
|
4979 |
+
▁yourself 4978
|
4980 |
+
▁youth 4979
|
4981 |
+
yr 4980
|
4982 |
+
ys 4981
|
4983 |
+
▁z 4982
|
4984 |
+
z 4983
|
4985 |
+
▁ze 4984
|
4986 |
+
ze 4985
|
4987 |
+
zen 4986
|
4988 |
+
zy 4987
|
4989 |
+
zz 4988
|
4990 |
+
<sos/eos> 4989
|